/* =============================================
   古色古香配色方案 - 中国传统色彩
   主色调：赭石、檀棕、米黄、暗红、墨绿
   ============================================= */
:root {
  /* 主色调变量 - 古色古香风格 */
  --primary-red: #b85c1a;      /* 赭石色 - 温暖古朴 */
  --primary-green: #5b6e3c;    /* 苔绿色 - 古雅沉稳 */
  --primary-orange: #d48c3b;   /* 檀棕色 - 温润雅致 */
  --dark-red: #9b4b2c;         /* 朱砂暗红 */
  --light-yellow: #faf3e0;     /* 米白宣纸色 */
  --light-green: #e8edda;      /* 淡竹青色 */
  --light-red-bg: #fcf5e8;     /* 淡米色背景 */
  --light-yellow-bg: #fdf8ef;  /* 淡黄宣纸色 */
  --white: #fffef7;            /* 米白 */
  --black: #3a2a1f;            /* 墨褐色 - 古朴黑色 */
  --gray-dark: #8b7355;        /* 檀褐色 */
  --gray-light: #e2d9cf;       /* 浅米灰色 */
  --border-radius-sm: 4px;
  --border-radius-md: 6px;
  --border-radius-lg: 8px;
  --border-radius-round: 30px;
  --transition-speed: 0.2s;
  
  /* 新增古风辅助色 */
  --bamboo: #7c8a4a;           /* 竹青色 */
  --cinnabar: #c95a2c;         /* 朱砂红 */
  --ink: #5c4b3a;              /* 墨色 */
  --paper: #fef7e8;            /* 宣纸色 */
  --golden: #c9a87b;           /* 金色 */
}

/* 基础样式 - 古风基调 */
body {
  font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Noto Serif SC", "华文楷书", "KaiTi", Georgia, serif;
  font-size: 14px;
  color: var(--black);
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #f5efe5;    /* 仿古纸色背景 */
  background-image: linear-gradient(to bottom, rgba(210, 180, 140, 0.05), rgba(210, 180, 140, 0.08));
  line-height: 1.6;
}

/* 重置列表和表单元素 */
dd, div, dl, dt, form, img, input, li, ol, p, ul {
  margin: 0;
  padding: 0;
  border: 0;
}

ul, ol, li {
  list-style: none;
}

/* 标题样式 - 古风韵味 */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 14px;
  font-family: inherit;
  letter-spacing: 1px;
}

/* 强调元素重置 */
em, i, optgroup, th, var {
  font-style: normal;
  font-weight: 400;
}

/* 链接样式 - 古风韵味 */
a {
  color: var(--black);
  text-decoration: none;
  transition: color var(--transition-speed) ease, border-bottom 0.2s ease;
}

a:hover {
  color: var(--primary-red);
  text-decoration: none;
  border-bottom: 1px dotted var(--primary-red);
}

/* 键盘焦点样式 */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--primary-orange);
  outline-offset: 2px;
}

/* =============================================
   布局工具类 - 保持原有类名
   ============================================= */
.l, .le {
  float: left;
}

.r, .re {
  float: right;
}

.blank {
  clear: both;
  height: 18px;
  overflow: hidden;
  display: block;
}

.none {
  display: none;
}

/* 背景色工具类 - 古风配色 */
.green, .gkgee {
  background-color: var(--light-green);
  border: 1px solid rgba(91, 110, 60, 0.2);
}

.gkree {
  background-color: var(--light-red-bg);
  border: 1px solid rgba(184, 92, 26, 0.15);
}

.yellow {
  background-color: var(--light-yellow-bg);
  border: 1px solid rgba(210, 180, 140, 0.3);
}

/* 文字颜色工具类 */
.ree, .ree a {
  color: var(--primary-red);
}

.gee, .gee a {
  color: var(--primary-green);
}

/* 背景色覆盖 */
.bgree {
  background-color: var(--primary-red) !important;
  background-image: linear-gradient(135deg, var(--primary-red), #9b4b2c) !important;
}

.bggee {
  background-color: var(--primary-green) !important;
  background-image: linear-gradient(135deg, var(--primary-green), #4a5a2e) !important;
}

/* 边框工具类 - 古风边框 */
.bkree {
  border: 1px solid var(--primary-red);
}

.bkgee {
  border: 1px solid var(--primary-green);
}

.btree {
  border-left: 1px solid var(--primary-red);
  border-right: 1px solid var(--primary-red);
}

.btgee {
  border-left: 1px solid var(--primary-green);
  border-right: 1px solid var(--primary-green);
}

.bmree {
  border-bottom: 1px solid var(--primary-red);
}

.bmgee {
  border-bottom: 1px solid var(--primary-green);
}

.lxree {
  border-left: 1px solid var(--primary-red);
}

.rxree {
  border-right: 1px solid var(--primary-red);
}

.lxgee {
  border-left: 1px solid var(--primary-green);
}

.rxgee {
  border-right: 1px solid var(--primary-green);
}

.jsree {
  border-top: 1px solid var(--primary-red);
}

.jsgee {
  border-top: 1px solid var(--primary-green);
}

/* 背景色快捷类 */
.hs {
  background-color: var(--primary-orange);
  background-image: linear-gradient(135deg, var(--primary-orange), #b56f2e);
}

.ls {
  background-color: var(--gray-dark);
}

/* =============================================
   主要页面结构
   ============================================= */
.max, .foot {
  width: 800px;
  margin: 0 auto;
  text-align: left;
  background-color: rgba(255, 254, 247, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 0 0 20px 0;
}

/* 顶部区域 - 古风韵味 */
.top {
  height: 60px;
  overflow: hidden;
  margin: 20px 0;
  clear: both;
  padding: 0 20px;
}

.top img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  float: left;
  margin-right: 16px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--golden);
}

.top h1, .top b {
  font-size: 42px;
  font-weight: 500;
  float: left;
  line-height: 1.2;
  font-family: "华文楷书", "KaiTi", serif;
  color: var(--black);
  letter-spacing: 4px;
  text-shadow: 1px 1px 0 rgba(210, 180, 140, 0.3);
}

.top span {
  float: right;
  display: block;
  background: linear-gradient(135deg, var(--primary-red), #9b4b2c);
  color: var(--white);
  padding: 8px 24px;
  font-size: 16px;
  border-radius: 30px;
  margin-top: 11px;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.top span:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.top a {
  display: block;
  height: 60px;
  color: var(--primary-red);
}

/* 导航栏 - 古风红木色 */
.dh {
  margin: 20px auto;
  padding: 5px 20px;
  clear: both;
  background: linear-gradient(135deg, #8b5a2b, #6b4220);
  height: 32px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dh a {
  color: #fef0d8;
  padding: 3px 12px;
  margin-right: 20px;
  display: inline-block;
  transition: all var(--transition-speed) ease;
  border-radius: 20px;
}

.dh .av, .dh a:hover {
  background: linear-gradient(135deg, #fef0d8, #ffe6c4);
  color: #6b4220;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 日历组件 */
.rili {
  width: 502px;
}

/* 记忆组件 - 古风纸色 */
.jiyi {
  width: 280px;
  min-height: 480px;
  background: linear-gradient(135deg, #fffaf0, #fef5e6);
  border: 1px solid #e8dccc;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.jiyi h2 {
  height: 42px;
  line-height: 42px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-orange), #b56f2e);
  color: var(--white);
  border-radius: 12px 12px 0 0;
  letter-spacing: 2px;
}

.jiyi h3 {
  margin: 30px auto;
  font-size: 78px;
  height: 120px;
  line-height: 120px;
  width: 120px;
  background: linear-gradient(135deg, var(--primary-green), #4a5a2e);
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--golden);
}

.jiyi h4 {
  padding: 0 20px 18px;
  font-size: 16px;
  color: #5c4b3a;
}

.jiyi p {
  border-top: 1px solid #e8dccc;
  clear: both;
  overflow: hidden;
  margin: 0 20px;
  padding: 20px 0;
}

/* =============================================
   通用内容区域
   ============================================= */
.hl, .two, .fres {
  text-align: center;
  clear: both;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* 特殊标题区域 */
.hl h2 {
  font-size: 198px;
  height: 300px;
  line-height: 300px;
  font-weight: 500;
  position: relative;
  font-family: "华文楷书", "KaiTi", serif;
  color: var(--black);
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.05);
}

.hl h2 span, .hl h2 b {
  font-size: 30px;
  width: 40px;
  position: absolute;
  line-height: 36px;
  font-family: inherit;
}

.hl h2 span {
  left: 60px;
  top: 40px;
  height: 180px;
  overflow: hidden;
}

.hl h2 b {
  right: 60px;
  top: 114px;
  height: 72px;
}

.hl h2 em {
  display: block;
  height: 50px;
  width: 50px;
  position: absolute;
  top: 125px;
  background: url("lhl.png") no-repeat;
  overflow: hidden;
  text-indent: 999px;
  white-space: nowrap;
}

.hl h2 i {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 16px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--primary-red);
  color: var(--primary-red);
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
}

.hl .ban {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.hl .al {
  left: 0;
  background-position: 23px 0;
}

.hl .ar {
  background-position: 0 -50px;
  right: 0;
}

/* 辅助区域 */
.hls {
  height: 42px;
}

.hls h1 {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-right: 8px;
}

.hls i {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url("down.png") 0 16px no-repeat;
  margin-left: 8px;
}

.hls span {
  margin-top: 7px;
}

.hls span a {
  font-weight: 500;
}

/* 单行区域 */
.one {
  position: relative;
  text-align: center;
  clear: both;
  width: 100%;
  height: 80px;
  margin-bottom: 10px;
}

.one h3 {
  height: 80px;
  width: 15%;
}

.one h3 span {
  display: block;
}

.one h3 img {
  width: 50px;
  height: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.one h4 {
  margin-left: 1%;
  width: 33%;
  line-height: 40px;
  height: 80px;
  font-size: 18px;
  color: #5c4b3a;
}

.one p {
  color: var(--white);
  height: 40px;
}

/* 双栏区域 */
.two li {
  float: left;
  width: 33.2%;
}

.two .zs {
  line-height: 50px;
  font-size: 18px;
  height: 50px;
  clear: both;
  color: var(--gray-dark);
}

.two .zs b {
  padding-right: 15px;
}

.two .jx {
  width: 90%;
  margin: 15px auto;
}

/* 节日区域 */
.fres {
  border-top: none;
  position: relative;
}

.sx {
  position: absolute;
  width: 102px;
  height: 102px;
  background-color: var(--white);
  top: -40px;
  left: 349px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--golden);
}

.sx img {
  width: 100px;
  height: 100px;
  padding: 1px;
  border-radius: 50%;
}

/* 多列布局工具类 */
.la {
  width: 13%;
  height: 200px;
  overflow: hidden;
}

.lb {
  width: 20.2%;
  height: 100px;
  overflow: hidden;
  box-sizing: border-box;
}

.lc {
  width: 33.2%;
  height: 100px;
  overflow: hidden;
}

.ld {
  width: 73.6%;
  height: 85px;
  padding-top: 15px;
  border-bottom: none;
  overflow: hidden;
  position: absolute;
  left: 13%;
  top: 100px;
}

.ld li {
  float: left;
  font-size: 18px;
  width: 2.33%;
  padding: 0 3%;
  color: var(--gray-dark);
}

/* 特殊样式区域 */
.ses {
  padding: 10px;
  font-size: 18px;
  color: #5c4b3a;
}

.ses p {
  display: block;
  float: left;
  width: 42%;
  padding-top: 30px;
  height: 80px;
}

.ses .pt {
  padding-top: 50px;
}

/* 收藏夹样式 */
.scjx h4, .scjx h3 {
  font-size: 18px;
  padding-top: 10px;
  color: var(--black);
}

.scjx p {
  clear: both;
  padding-top: 10px;
}

/* 特殊文字样式 */
.ss p {
  padding-top: 15px;
}

.ss p b {
  font-size: 18px;
  padding-bottom: 15px;
  display: inline-block;
  color: var(--primary-red);
}

/* 图标样式优化 - 古风圆形 */
.jiyi p i, .scjx p i, .two .jy p i {
  display: block;
  float: left;
  text-align: center;
  margin-right: 12px;
  width: 40px;
  line-height: 40px;
  font-size: 18px;
  overflow: hidden;
  height: 40px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-green), #4a5a2e);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.two .jy p i, .two .jy p em {
  border-radius: 50%;
  margin: 15px auto;
  float: none;
}

.two .jy p em {
  display: block;
  font-size: 18px;
  height: 40px;
  font-weight: 500;
  line-height: 40px;
  color: var(--primary-red);
}

.scjx p i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
}

.jiyi p span, .two .jy p span {
  display: block;
  min-height: 60px;
  overflow: hidden;
  line-height: 1.6;
  color: #5c4b3a;
}

.two .jy p span {
  height: 80px;
  max-height: 80px;
  overflow: hidden;
  padding: 0 10px;
}

.two .jy p {
  padding-bottom: 10px;
}

.two .js {
  padding-bottom: 15px;
  width: 100%;
  overflow: hidden;
}

.two .js h2 {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
  color: var(--black);
  border-bottom: 1px dotted var(--gray-light);
}

.two .js li {
  float: left;
  line-height: 24px;
  width: 20%;
  color: #6b5a48;
}

.scjx p span {
  display: block;
  line-height: 30px;
  height: 30px;
  overflow: hidden;
}

.jiyi p span a, .scjx p span a, .two .jy p span a {
  margin-right: 8px;
  color: var(--primary-red);
}

.jiyi .ji i, .scjx .ji i {
  background: linear-gradient(135deg, var(--primary-red), #9b4b2c);
}

.jiyi .ji span {
  max-height: 40px;
  overflow: hidden;
  line-height: 20px;
}

/* 列表区域 */
.lsr {
  clear: both;
  margin: 0 20px;
}

.lsr li {
  height: 160px;
  border-bottom: 1px solid #e8dccc;
  position: relative;
}

.lsr li em, .lsr li b {
  display: block;
  position: absolute;
  text-align: center;
  z-index: 1;
}

.lsr li em {
  right: 10px;
  top: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-red), #9b4b2c);
}

.lsr li b {
  left: 0;
  top: 50px;
  font-size: 18px;
  width: 60px;
  height: 60px;
  color: var(--gray-dark);
  line-height: 60px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  background: var(--white);
}

.scjx {
  margin-left: 80px;
}

/* 导航菜单 - 古风红木色 */
.nav {
  background: linear-gradient(135deg, #8b5a2b, #6b4220);
  color: var(--white);
  height: 42px;
  position: relative;
  border-radius: 8px 8px 0 0;
}

.nav a {
  color: #fef0d8;
}

.nav li {
  cursor: pointer;
  text-align: center;
  float: left;
}

.nav li.goyear a, .nav li.afteryear a {
  background-color: #fef0d8;
  padding: 2px 6px;
  font-size: 17px;
  color: #6b4220;
  display: block;
  margin-left: 10px;
  font-weight: 500;
  font-family: inherit;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.nav li.goyear a:hover, .nav li.afteryear a:hover {
  background-color: var(--white);
  transform: translateY(-1px);
}

.nav li.goyear a {
  margin-right: 10px;
}

.nav li.today, .hls span {
  padding: 2px 6px;
  font-size: 16px;
  float: right;
  margin-right: 10px;
  background-color: #fef0d8;
  border-radius: 20px;
}

.nav li.today a {
  color: var(--primary-red);
  font-weight: 500;
}

.nav li {
  margin-top: 8px;
}

.nav .year, .nav .month {
  position: relative;
}

#year, #month {
  float: left;
  color: #6b4220;
  font-weight: 500;
  border-radius: 20px;
  text-align: center;
  background-color: #fef0d8;
  padding: 2px 6px;
  font-size: 16px;
  cursor: pointer;
}

.nav .years, .nav .months {
  top: 28px;
  left: -1px;
  width: 85px;
  height: 210px;
  position: absolute;
  display: none;
  z-index: 10000;
  overflow: auto;
  background-color: #fef7e8;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #e8dccc;
}

.nav .years li, .nav .months li {
  line-height: 24px;
  height: 24px;
  margin-bottom: 1px;
  width: 68px;
  font-size: 16px;
}

.nav .years li a, .nav .months li a {
  color: #5c4b3a;
  display: block;
  padding: 0 4px;
}

.nav .years li a:hover, .nav .months li a:hover {
  background-color: #e8dccc;
  color: #6b4220;
}

/* 万年历样式 - 古风边框 */
.wnl {
  border: 1px solid #e8dccc;
  padding: 5px;
  background: var(--white);
  border-radius: 8px;
}

.wnl ul {
  clear: both;
  overflow: hidden;
  border-top: 1px solid #e8dccc;
}

.wnl li {
  width: 66px;
  border: 2px solid transparent;
  float: left;
  text-align: center;
  position: relative;
  transition: all 0.2s ease;
}

.wnl li i {
  position: absolute;
  left: -2px;
  top: -2px;
  font-size: 12px;
  background: linear-gradient(135deg, var(--primary-red), #9b4b2c);
  color: var(--white);
  z-index: 1;
  padding: 1px 3px;
  border-radius: 4px;
}

.wnl li span {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  height: 30px;
  overflow: hidden;
  color: #5c4b3a;
}

.wnl li:hover, .wnl .jy {
  border-color: var(--golden);
  background: rgba(210, 180, 140, 0.1);
  border-radius: 8px;
}

.wnl .zm {
  color: var(--primary-red);
}

.wnl .nl {
  font-size: 14px;
  font-weight: 400;
  color: #8b7355;
}

.wnl .op span {
  color: #bfb39f;
}

.wnl .op i {
  opacity: 0.5;
}

.wnl .jr {
  color: var(--primary-red);
  font-weight: 400;
  font-size: 14px;
}

.wnl .day {
  background: linear-gradient(135deg, var(--primary-red), #9b4b2c);
  border-color: var(--primary-red);
  border-radius: 8px;
}

.wnl .day span {
  color: var(--white);
}

.wnl .yy {
  height: 36px;
  border: none;
  line-height: 32px;
  font-size: 16px;
}

.wnl .yy li:hover {
  border-color: var(--white);
  background: transparent;
}

.wnl .ban {
  background-color: #d4c8b8;
  border-radius: 8px;
}

/* 标题区域 */
.tit {
  clear: both;
  height: 42px;
  margin: 0 20px;
}

.tit h2 {
  font-size: 16px;
  border-bottom: 1px solid #e8dccc;
  font-weight: 500;
  line-height: 42px;
  color: var(--black);
}

.tits h2 {
  font-size: 16px;
  line-height: 42px;
  height: 42px;
  font-weight: 500;
  color: var(--black);
}

/* 信息列表 */
.info {
  clear: both;
  padding: 0 20px 20px;
}

.info li {
  float: left;
  width: 50%;
  line-height: 32px;
  border-bottom: 1px dotted #e8dccc;
  padding: 5px 0;
  color: #5c4b3a;
}

.info label {
  display: block;
  float: left;
  width: 70px;
  text-align: right;
  margin-right: 6px;
  color: var(--gray-dark);
}

.info ul, .info p {
  clear: both;
}

.info p {
  line-height: 32px;
  border-bottom: 1px dotted #e8dccc;
  padding: 5px 0;
}

/* 内容区域 */
.content {
  padding: 20px;
}

.content p {
  line-height: 1.8;
  margin: 0 auto 20px;
  text-indent: 2em;
  font-size: 16px;
  color: #5c4b3a;
}

.content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content .tc {
  text-align: center;
  text-indent: 0;
}

/* 底部区域 */
.foot {
  text-align: center;
  border-top: 1px solid #e8dccc;
  margin-top: 20px;
  padding-top: 20px;
}

.foot p {
  padding-top: 10px;
  clear: both;
  color: var(--gray-dark);
}

/* 链接区域 */
.link {
  clear: both;
  padding: 10px 0;
}

.link a {
  margin-right: 9px;
  display: inline-block;
  color: #7c6b55;
}

.link a:hover {
  color: var(--primary-red);
}

/* 节日活动区域 */
.hdjr {
  clear: both;
  margin-bottom: 20px;
  overflow: hidden;
}

.hdjr a {
  display: block;
  float: left;
  padding: 6px 34px;
  border: 1px solid var(--primary-red);
  background-color: transparent;
  color: var(--primary-red);
  margin: 20px 0 0 20px;
  font-size: 18px;
  border-radius: 30px;
  transition: all var(--transition-speed) ease;
}

.hdjr a:hover {
  background: linear-gradient(135deg, var(--primary-red), #9b4b2c);
  color: var(--white);
  transform: translateY(-2px);
}

/* 电影/视频列表 */
.muv {
  padding: 20px;
  overflow: hidden;
}

.muv li {
  float: left;
  width: 25%;
  text-align: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.muv li img {
  width: 50%;
  border-radius: 12px;
  height: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.muv li img:hover {
  transform: scale(1.05);
}

.muv a {
  width: 100%;
  display: block;
  text-align: center;
}

.muv p {
  font-size: 18px;
  margin-top: 8px;
  color: var(--black);
}

.muv i {
  display: block;
  font-size: 14px;
  color: var(--gray-dark);
}

/* 列表卡片样式 */
.list {
  border: 1px solid #e8dccc;
  margin-bottom: 20px;
  background-color: var(--white);
  overflow: hidden;
  padding: 12px;
  line-height: 24px;
  color: #5c4b3a;
  transition: all var(--transition-speed) ease;
  border-radius: 8px;
}

.list:hover {
  background-color: #fef7e8;
  border-color: var(--golden);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.list p {
  font-size: 14px;
  color: #7c6b55;
}

.jia {
  width: 20%;
  float: left;
  text-align: center;
  border-right: 2px solid var(--primary-red);
}

.qi {
  width: 74%;
  float: right;
  overflow: hidden;
  padding-left: 4%;
}

.qi h2 {
  font-size: 18px;
  color: var(--black);
}

.qi span {
  padding-left: 12px;
  color: var(--gray-dark);
}

.title {
  padding: 20px;
  margin: 0 20px;
  border-bottom: 1px solid #e8dccc;
}

.title h2 {
  text-align: center;
  font-size: 24px;
  font-family: "华文楷书", "KaiTi", serif;
  color: var(--black);
  letter-spacing: 4px;
}

/* =============================================
   响应式设计 - 移动端适配
   ============================================= */
@media screen and (max-width: 768px) {
  .blank {
    height: 9px;
  }

  .hl, .one, .two, .fres {
    width: auto;
  }

  .lc, .two li {
    width: 33%;
  }

  .one h4 {
    width: 32.4%;
    height: 60px;
    line-height: 30px;
  }

  .one h3, .one {
    height: 60px;
  }

  .one h3 img {
    width: 36px;
  }

  .one p {
    height: 30px;
  }

  .two .zs, .one h4, .one h3, .two .jy p em, .ss p b, .ld li, .ses {
    font-size: 14px;
  }

  .two .zs {
    line-height: 40px;
    height: 40px;
  }

  .two .jy p i, .two .jy p em {
    border-radius: 50%;
    margin: 9px auto;
  }

  .ld {
    width: 73.4%;
  }

  .ld li {
    width: 4.33%;
    padding: 0 2%;
  }

  .ses p {
    width: 50%;
  }

  .l, .r {
    clear: both;
  }

  .sx {
    width: 72px;
    height: 72px;
    top: -30px;
    left: 40%;
  }

  .sx img {
    width: 70px;
    height: 70px;
  }

  .max, .foot {
    width: 100%;
    clear: both;
    border-radius: 0;
    padding: 0 0 20px 0;
  }

  .top {
    height: 50px;
    clear: both;
    margin: 0;
    padding: 8px 16px;
    background: var(--white);
  }

  .top img {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    float: left;
    margin: 4px 10px 0 0;
  }

  .top h1, .top b {
    font-size: 28px;
    line-height: 42px;
    margin: 3px 0 0 0;
    font-weight: 500;
    color: var(--primary-red);
    float: left;
    letter-spacing: 2px;
  }

  .top span {
    float: right;
    display: block;
    background: linear-gradient(135deg, var(--primary-red), #9b4b2c);
    color: var(--white);
    padding: 5px 18px;
    border-radius: 30px;
    margin: 8px 0 0 0;
    font-size: 14px;
  }

  .top a {
    display: block;
    height: 50px;
  }

  .dh {
    margin: 9px 0 0;
    padding: 5px 8px;
    font-size: 14px;
    border-radius: 30px;
  }

  .dh a {
    color: #fef0d8;
    padding: 3px 8px;
    margin: 0 4px;
  }

  .dh .av {
    background: linear-gradient(135deg, #fef0d8, #ffe6c4);
    color: #6b4220;
  }

  .nav li.today {
    position: absolute;
    top: 0;
    right: 0;
  }

  .nav li.goyear a, .nav li.afteryear a {
    margin-left: 6px;
    font-size: 14px;
  }

  .nav li.goyear a {
    margin-right: 6px;
  }

  .rili, .jiyi, .yellow {
    width: 100%;
    margin-top: 9px;
  }

  .hl h2 span {
    left: 45px;
    top: 20px;
  }

  .hl h2 b {
    right: 45px;
    top: 20px;
  }

  .two .jy p span {
    height: 60px;
    max-height: 60px;
  }

  .wnl {
    border: 1px solid #e8dccc;
    padding: 4px;
    border-radius: 8px;
  }

  .wnl li {
    width: 14%;
    float: left;
    border: 0;
    text-align: center;
    position: relative;
  }

  .wnl li span {
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    height: 24px;
    overflow: hidden;
  }

  .wnl li:hover, .wnl .jy {
    border: 0;
    background: rgba(210, 180, 140, 0.2);
    border-radius: 8px;
  }

  .wnl .jy {
    background-color: #faf3e0;
  }

  .wnl .nl, .wnl .jr {
    font-size: 10px;
    font-weight: 400;
  }

  .info li {
    clear: both;
    width: 100%;
  }

  .content img {
    max-width: 100%;
  }

  .tits, .link {
    padding: 0 16px;
  }

  .list p {
    font-size: 12px;
  }

  .scjx {
    margin-left: 60px;
  }

  .scjx h4, .scjx h3 {
    font-size: 14px;
  }

  .lsr li em {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .lsr li b {
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .muv {
    padding: 16px;
  }

  .tit {
    margin: 0 16px;
  }

  .foot {
    font-size: 12px;
    padding-bottom: 20px;
  }
}

/* =============================================
   打印样式
   ============================================= */
@media print {
  .nav, .dh, .top span, .blank, .hdjr, .muv, .link {
    display: none;
  }

  body {
    background-color: var(--white);
    color: var(--black);
  }

  a {
    color: var(--black);
    text-decoration: underline;
  }

  .max, .foot {
    width: 100%;
    margin: 0;
  }

  .content img {
    max-width: 100%;
    page-break-inside: avoid;
  }
}

/* =============================================
   辅助功能 - 减少动画偏好
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}