/* =============================================
   基础重置与排版 - 优化性能与SEO语义
   ============================================= */
:root {
  /* 主色调变量 - 便于主题切换与维护 */
  --primary-red: #da301e;
  --primary-green: #42962e;
  --primary-orange: #f90;
  --dark-red: #dd3635;
  --light-yellow: #fff1dd;
  --light-green: #dff4e4;
  --light-red-bg: #fef2f1;
  --light-yellow-bg: #fffae8;
  --white: #fff;
  --black: #000;
  --gray-dark: #666;
  --gray-light: #ddd;
  --border-radius-sm: 6px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-round: 30px;
  --transition-speed: 0.2s;
}

/* 基础样式 - 提升渲染性能 */
body {
  font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: var(--black);
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: var(--white);
  line-height: 1.5; /* 提升可读性 */
}

/* 重置列表和表单元素 - 更具体的选择器减少全局影响 */
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: 400;
  font-size: 14px; /* 默认继承，具体尺寸在各组件中定义 */
}

/* 强调元素重置 - 保持语义但重置样式 */
em, i, optgroup, th, var {
  font-style: normal;
  font-weight: 400;
}

/* 链接样式 - 增加焦点状态提升可访问性 */
a {
  color: var(--black);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--primary-red);
  text-decoration: none;
}

/* 键盘焦点样式 - SEO友好，提升可访问性 */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}

/* =============================================
   布局工具类 - 保持原有类名，优化性能
   ============================================= */
.l, .le {
  float: left;
}

.r, .re {
  float: right;
}

/* 清除浮动 - 使用伪元素优化渲染 */
.blank {
  clear: both;
  height: 18px;
  overflow: hidden;
  display: block;
}

.none {
  display: none;
}

/* 背景色工具类 - 使用CSS变量 */
.green, .gkgee {
  background-color: var(--light-green);
}

.gkree {
  background-color: var(--light-red-bg);
}

.yellow {
  background-color: var(--light-yellow-bg);
}

/* 文字颜色工具类 */
.ree, .ree a {
  color: var(--primary-red);
}

.gee, .gee a {
  color: var(--primary-green);
}

/* 背景色覆盖 - 使用!important保持原有优先级 */
.bgree {
  background-color: var(--primary-red) !important;
}

.bggee {
  background-color: var(--primary-green) !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 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);
}

.ls {
  background-color: var(--gray-dark);
}

/* =============================================
   主要页面结构 - 响应式容器优化
   ============================================= */
.max, .foot {
  width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* 顶部区域 - 优化布局性能 */
.top {
  height: 60px;
  overflow: hidden;
  margin: 20px 0;
  clear: both;
}

.top img {
  height: 60px;
  width: 60px;
  border-radius: var(--border-radius-lg);
  float: left;
  margin-right: 16px;
  object-fit: cover; /* 防止图片变形 */
}

.top h1, .top b {
  font-size: 46px;
  font-weight: 700; /* bold 语义更准确 */
  float: left;
  line-height: 1.2;
}

.top span {
  float: right;
  display: block;
  background-color: #e02d2d;
  color: var(--white);
  padding: 8px 24px;
  font-size: 16px;
  border-radius: var(--border-radius-sm);
  margin-top: 11px;
  transition: opacity var(--transition-speed) ease;
}

.top span:hover {
  opacity: 0.9;
}

.top a {
  display: block;
  height: 60px;
  color: #e02d2d;
}

/* 导航栏 - 语义化优化 */
.dh {
  margin: 20px auto;
  padding: 5px 20px;
  clear: both;
  background-color: var(--dark-red);
  height: 32px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
}

.dh a {
  color: var(--white);
  padding: 3px 12px;
  margin-right: 20px;
  display: inline-block;
  transition: all var(--transition-speed) ease;
}

.dh .av, .dh a:hover {
  background-color: var(--white);
  color: var(--dark-red);
  border-radius: var(--border-radius-md);
}

/* 日历组件 */
.rili {
  width: 502px;
}

/* 记忆组件 - 语义化类名保持原有 */
.jiyi {
  width: 280px;
  min-height: 480px;
  background-color: var(--light-yellow);
}

.jiyi h2 {
  height: 42px;
  line-height: 42px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  background-color: var(--primary-orange);
  color: var(--white);
}

.jiyi h3 {
  margin: 30px auto;
  font-size: 78px;
  height: 120px;
  line-height: 120px;
  width: 120px;
  background-color: var(--primary-green);
  color: var(--white);
  text-align: center;
  border-radius: var(--border-radius-lg);
}

.jiyi h4 {
  padding: 0 20px 18px;
  font-size: 16px;
}

.jiyi p {
  border-top: 1px solid var(--white);
  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: 700;
  position: relative;
}

.hl h2 span, .hl h2 b {
  font-size: 30px;
  width: 40px;
  position: absolute;
  line-height: 36px;
}

.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; /* 隐藏文字，替代line-height: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: var(--border-radius-round);
  line-height: 30px;
  text-align: center;
}

.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: 700;
  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: 700;
}

/* 单行区域 */
.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;
}

.one h4 {
  margin-left: 1%;
  width: 33%;
  line-height: 40px;
  height: 80px;
  font-size: 18px;
}

.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;
}

.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: 102px;
}

.sx img {
  width: 100px;
  height: 100px;
  padding: 1px;
}

/* 多列布局工具类 */
.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%;
}

/* 特殊样式区域 */
.ses {
  padding: 10px;
  font-size: 18px;
}

.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;
}

.scjx p {
  clear: both;
  padding-top: 10px;
}

/* 特殊文字样式 */
.ss p {
  padding-top: 15px;
}

.ss p b {
  font-size: 18px;
  padding-bottom: 15px;
  display: inline-block;
}

/* 图标样式优化 */
.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-color: var(--primary-green);
  border-radius: 3px;
}

.two .jy p i, .two .jy p em {
  border-radius: 40px;
  margin: 15px auto;
  float: none;
}

.two .jy p em {
  display: block;
  font-size: 18px;
  height: 40px;
  font-weight: 700;
  line-height: 40px;
}

.scjx p i {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.jiyi p span, .two .jy p span {
  display: block;
  min-height: 60px;
  overflow: hidden;
  line-height: 20px;
}

.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: 700;
  padding: 10px 0;
}

.two .js li {
  float: left;
  line-height: 24px;
  width: 20%;
}

.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;
}

.jiyi .ji i, .scjx .ji i {
  background-color: var(--primary-red);
}

.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 var(--white);
  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: 40px;
  color: var(--white);
}

.lsr li b {
  left: 0;
  top: 50px;
  font-size: 18px;
  width: 60px;
  height: 60px;
  color: var(--gray-dark);
  line-height: 60px;
  border-radius: 60px;
  border: 1px solid var(--gray-light);
}

.scjx {
  margin-left: 80px;
}

/* 导航菜单 */
.nav {
  background-color: var(--primary-red);
  color: var(--white);
  height: 42px;
  position: relative;
}

.nav a {
  color: var(--white);
}

.nav li {
  cursor: pointer;
  text-align: center;
  float: left;
}

.nav li.goyear a, .nav li.afteryear a {
  background-color: var(--white);
  padding: 2px 6px;
  font-size: 17px;
  color: var(--gray-dark);
  display: block;
  margin-left: 10px;
  font-weight: 700;
  font-family: Verdana, Arial, Tahoma, sans-serif;
  border-radius: var(--border-radius-sm);
}

.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: var(--white);
  border-radius: var(--border-radius-sm);
}

.nav li.today a {
  color: #b81414;
  font-weight: 700;
}

.nav li {
  margin-top: 8px;
}

.nav .year, .nav .month {
  position: relative;
}

#year, #month {
  float: left;
  color: var(--gray-dark);
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  text-align: center;
  background-color: var(--white);
  padding: 2px 6px;
  font-size: 16px;
}

.nav .years, .nav .months {
  top: 28px;
  left: -1px;
  width: 85px;
  height: 210px;
  position: absolute;
  display: none;
  z-index: 10000;
  overflow: auto;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.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: var(--gray-dark);
  display: block;
}

/* 万年历样式 */
.wnl {
  border: 1px solid var(--gray-light);
  padding: 5px;
}

.wnl ul {
  clear: both;
  overflow: hidden;
  border-top: 1px solid var(--gray-light);
}

.wnl li {
  width: 66px;
  border: 2px solid var(--white);
  float: left;
  text-align: center;
  position: relative;
}

.wnl li i {
  position: absolute;
  left: -2px;
  top: -2px;
  font-size: 12px;
  background-color: #f43;
  color: var(--white);
  z-index: 1;
  padding: 1px 3px;
}

.wnl li span {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  height: 30px;
  overflow: hidden;
}

.wnl li:hover, .wnl .jy {
  border-color: #fb0;
}

.wnl .zm {
  color: #e02d2d;
}

.wnl .nl {
  font-size: 14px;
  font-weight: 400;
}

.wnl .op span {
  color: #bfbfbf;
}

.wnl .op i {
  opacity: 0.5;
}

.wnl .jr {
  color: #e02d2d;
  font-weight: 400;
  font-size: 14px;
}

.wnl .day {
  background-color: #e02d2d;
  border-color: #e02d2d;
}

.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);
}

.wnl .ban {
  background-color: #999;
}

/* 标题区域 */
.tit {
  clear: both;
  height: 42px;
  margin: 0 20px;
}

.tit h2 {
  font-size: 16px;
  border-bottom: 1px solid var(--white);
  font-weight: 700;
  line-height: 42px;
}

.tits h2 {
  font-size: 16px;
  line-height: 42px;
  height: 42px;
  font-weight: 700;
}

/* 信息列表 */
.info {
  clear: both;
  padding: 0 20px 20px;
}

.info li {
  float: left;
  width: 50%;
  line-height: 32px;
  border-bottom: 1px dotted var(--white);
  padding: 5px 0;
}

.info label {
  display: block;
  float: left;
  width: 70px;
  text-align: right;
  margin-right: 6px;
}

.info ul, .info p {
  clear: both;
}

.info p {
  line-height: 32px;
  border-bottom: 1px dotted var(--white);
  padding: 5px 0;
}

/* 内容区域 - SEO关键区域 */
.content {
  padding: 20px;
}

.content p {
  line-height: 30px;
  margin: 0 auto 20px;
  text-indent: 2em; /* 使用em相对单位，提升响应式 */
  font-size: 16px;
}

.content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.content .tc {
  text-align: center;
  text-indent: 0;
}

/* 底部区域 */
.foot {
  text-align: center;
}

.foot p {
  padding-top: 10px;
  clear: both;
  color: var(--gray-dark);
}

/* 链接区域 */
.link {
  clear: both;
}

.link a {
  margin-right: 9px;
  display: inline-block;
}

/* 节日活动区域 */
.hdjr {
  clear: both;
  margin-bottom: 20px;
  overflow: hidden;
}

.hdjr a {
  display: block;
  float: left;
  padding: 6px 34px;
  border: 1px solid #c00;
  background-color: var(--white);
  color: #c00;
  margin: 20px 0 0 20px;
  font-size: 18px;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-speed) ease;
}

.hdjr a:hover {
  background-color: #c00;
  color: var(--white);
}

/* 电影/视频列表 */
.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: var(--border-radius-lg);
  height: auto;
}

.muv a {
  width: 100%;
  display: block;
  text-align: center;
}

.muv p {
  font-size: 18px;
  margin-top: 8px;
}

.muv i {
  display: block;
  font-size: 14px;
  color: var(--gray-dark);
}

/* 列表卡片样式 */
.list {
  border: 1px solid var(--white);
  margin-bottom: 20px;
  background-color: var(--white);
  overflow: hidden;
  padding: 12px;
  line-height: 24px;
  color: var(--gray-dark);
  transition: background-color var(--transition-speed) ease;
}

.list:hover {
  background-color: var(--light-yellow-bg);
}

.list p {
  font-size: 14px;
  color: var(--gray-dark);
}

.jia {
  width: 20%;
  float: left;
  text-align: center;
  border-right: 2px solid #cc0000;
}

.qi {
  width: 74%;
  float: right;
  overflow: hidden;
  padding-left: 4%;
}

.qi h2 {
  font-size: 18px;
}

.qi span {
  padding-left: 12px;
}

.title {
  padding: 20px;
  margin: 0 20px;
  border-bottom: 1px solid var(--white);
}

.title h2 {
  text-align: center;
  font-size: 24px;
}

/* =============================================
   响应式设计 - 移动优先优化
   ============================================= */
@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: 40px;
    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;
  }

  .top {
    height: 50px;
    clear: both;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    margin: 0;
  }

  .top img {
    height: 42px;
    width: 42px;
    border-radius: var(--border-radius-lg);
    float: left;
    margin: 4px 10px 0 16px;
  }

  .top h1, .top b {
    font-size: 36px;
    line-height: 42px;
    margin: 3px 0 0 10px;
    font-weight: 700;
    color: #e02d2d;
    float: left;
  }

  .top span {
    float: right;
    display: block;
    background-color: #e02d2d;
    color: var(--white);
    padding: 5px 25px;
    border-radius: var(--border-radius-sm);
    margin: 10px 16px 0 0;
  }

  .top a {
    display: block;
    height: 50px;
  }

  .dh {
    margin: 9px 0 0;
    padding: 5px 1px;
    font-size: 16px;
  }

  .dh a {
    color: var(--white);
    padding: 3px 8px;
    margin: 0;
  }

  .dh .av {
    background-color: var(--white);
    color: #f60;
  }

  .nav li.today {
    position: absolute;
    top: 0;
    right: 0;
  }

  .nav li.goyear a, .nav li.afteryear a {
    margin-left: 6px;
  }

  .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: 0;
    padding: 1%;
    border: 1px solid var(--gray-light);
  }

  .wnl li {
    width: 14%;
    float: left;
    border: 0;
    text-align: center;
    position: relative;
  }

  .wnl li span {
    display: block;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    height: 24px;
    overflow: hidden;
  }

  .wnl li:hover, .wnl .jy {
    border: 0;
  }

  .wnl .jy {
    background-color: var(--light-yellow);
  }

  .wnl .nl, .wnl .jr {
    font-size: 12px;
    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;
  }
}

/* =============================================
   打印样式 - SEO友好，提升可打印性
   ============================================= */
@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;
  }
}