@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

:root {
  font-size: 20px;
}
#blogTitle .subtitle {
    font-size: 13.5pt;
    color: rgb(14, 26, 128);/*子标题*/
}

/* 导航栏样式修改 */
div#navigator {
  background: rgba(217, 217, 217, 0.024);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0; /* 增加内边距 */
}
/*菜单栏*/
div#navigator a {
  text-shadow: none !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  margin: 0 15px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  color: #CC0033 !important; /* 新增天蓝色字体 */
}

/* 推荐添加悬停效果 */
div#navigator a:hover {
  color: #1E90FF !important; /* 悬停时变为稍深的道奇蓝 */
  transform: translateY(-2px); /* 添加轻微上浮效果 */
}

/* 文章标题样式 */
#Header1_HeaderTitle {
  font-weight: 900 !important;
  font-size: 1.5rem !important;
  text-align: center;
  margin: 15px 0;
  display: block;
  width: 100%;
}

.postTitle, .entrylistPosttitle, .feedback_area_title {
  border-bottom: 1px solid #ddd;
  font-size: 25px; /* 文章字体调整 */
  font-weight: bold;
  margin: 20px 0 10px;
  /* text-align: center; 文章名称居中 */
}
/*整体文章背景色*/
body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  min-height: 100vh;
  background-color:#FFFFF0 ; /* 固态背景颜色   #a7a4a7 灰色 */
}

div.blogStats {
  color: rgb(6, 3, 0) !important;
}

a {
  color: rgb(6, 3, 0) !important;
}

td.CalTodayDay {
  font-size: 17px !important;
  font-weight: 100 !important;
}