/* ============================================
   道华婚姻家事 — 高级视觉增强（增量 v2）
   配色体系：主金 #C9A177 | 深金 #A0784C | 暖白 #F8F6F3 | 深色 #1A1A2E
   全部 GPU 加速动画，不影响 SEO
   ============================================ */

/* ========================================
   一、全局基础
   ======================================== */
html { scroll-behavior: smooth; }

/* 通用过渡 */
a, button, input[type="submit"], .sbtn {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 选中色 */
::selection { background: #C9A177; color: #fff; }

/* ========================================
   二、入场动画系统
   ======================================== */
.dh-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.dh-animate.dh-visible {
  opacity: 1;
  transform: translateY(0);
}
.dh-animate.dh-delay-1 { transition-delay: 0.08s; }
.dh-animate.dh-delay-2 { transition-delay: 0.16s; }
.dh-animate.dh-delay-3 { transition-delay: 0.24s; }
.dh-animate.dh-delay-4 { transition-delay: 0.32s; }
.dh-animate.dh-delay-5 { transition-delay: 0.40s; }

/* 侧滑入场（从左/右） */
.dh-animate.dh-from-left  { transform: translateX(-40px); }
.dh-animate.dh-from-right { transform: translateX(40px); }
.dh-animate.dh-visible.dh-from-left,
.dh-animate.dh-visible.dh-from-right { transform: translateX(0); }

/* 缩放入场 */
.dh-animate.dh-scale-in {
  transform: scale(0.92);
  opacity: 0;
}
.dh-animate.dh-visible.dh-scale-in {
  transform: scale(1);
  opacity: 1;
}

/* ========================================
   三、Header 增强
   ======================================== */
/* 导航下划线 */
.header .navcon li > a {
  position: relative;
  color: #333;
}
.header .navcon li > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #C9A177;
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.header .navcon li:hover > a,
.header .navcon li.on > a { color: #C9A177; }
.header .navcon li:hover > a::after,
.header .navcon li.on > a::after { width: 70%; }

/* 二级菜单 */
.header .secnav {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* header 滚动阴影 */
.header.dh-header-scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
}

/* ========================================
   四、首屏 Banner Hero
   ======================================== */
.section1 .banner {
  position: relative;
}
/* 遮罩渐变 — 增强文字可读性 */
.section1 .swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.0) 40%,
    rgba(0,0,0,0.35) 80%,
    rgba(0,0,0,0.55) 100%);
  z-index: 2;
  pointer-events: none;
}
/* 分页器金色 */
.section1 .swiper-pagination-bullet-active {
  background: #C9A177 !important;
  box-shadow: 0 0 8px rgba(201,161,119,0.5);
}

/* ========================================
   五、Section 背景节奏与微装饰
   ======================================== */
/* 奇数 section 暖白底，偶数 section 浅灰底 */
.section:nth-child(odd) .page-content {
  background-color: #FAF8F5;
}
.section:nth-child(even) .page-content {
  background-color: #FFF;
}

/* 首屏特殊 — 深色背景 */
.section1 {
  background-color: #1A1A2E !important;
}

/* 在线预约区 — 暖金渐变背景 */
.section12 .page-content {
  background: linear-gradient(180deg,
    #F8F6F3 0%,
    #F0EBE3 50%,
    #EDE7DC 100%) !important;
}

/* 页脚区 */
.section11 .page-content {
  background: #1A1A2E !important;
}

/* 微妙的角落装饰花纹（律师团、服务优势、经典案例区） */
.section2 .ixlst::before,
.section8 .ixyoushi::before,
.section9 .ixcase::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -20px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(201,161,119,0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.section2 .ixlst::before { right: auto; left: -40px; top: -60px; width: 240px; height: 240px; }
.section8 .ixyoushi::before { top: -50px; right: -40px; width: 220px; height: 220px; }

/* ========================================
   六、标题系统升级
   ======================================== */
.ixtitle {
  text-align: center;
  margin-bottom: 25px;
}

/* 标题主文字 */
.ixtitle .ixtitle_h1 {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #2C2C2C;
  letter-spacing: 2px;
}

/* 英文副标题 */
.ixtitle .ixtitle_h1 em {
  display: block;
  font-size: 13px;
  color: #B8B0A4;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 6px;
  font-style: normal;
  text-transform: uppercase;
}

/* 金色渐变装饰线 */
.ixtitle .ixtitle_h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg,
    rgba(201,161,119,0) 0%,
    rgba(201,161,119,0.8) 20%,
    #C9A177 50%,
    rgba(201,161,119,0.8) 80%,
    rgba(201,161,119,0) 100%);
  border-radius: 2px;
  transition: width 0.5s ease;
}
.section.active .ixtitle .ixtitle_h1::after { width: 72px; }

/* 描述文字 */
.ixtitle p {
  font-size: 15px;
  color: #8C8C8C;
  max-width: 680px;
  margin: 12px auto 0;
  line-height: 1.75;
}

/* ========================================
   七、Section2 律师团区域
   ======================================== */
.section2 .ixlst { position: relative; }

/* 图片区增强 */
.section2 .ixlst-con .pic {
  position: relative;
}
.section2 .ixlst-con .pic img {
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.section2 .ixlst-con .pic:hover img {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(201,161,119,0.12);
}

/* 主标题 */
.section2 .toptext h2 {
  font-size: 28px;
  line-height: 1.5;
  color: #2C2C2C;
  font-weight: 600;
}
.section2 .toptext h2 b {
  color: #C9A177;
  position: relative;
}
.section2 .toptext h2 b::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(201,161,119,0.18);
  border-radius: 2px;
  z-index: -1;
}
.section2 .toptext p {
  font-size: 16px;
  color: #8C8C8C;
  letter-spacing: 2px;
  margin-top: 10px;
}

/* 图标卡片增强 — 3D 悬浮 */
.section2 .ixlst-con .icon ul li {
  transition: transform 0.35s ease;
}
.section2 .ixlst-con .icon ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 24px;
  border: 1px solid rgba(201,161,119,0.15);
  border-radius: 12px;
  background: #FFF;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.section2 .ixlst-con .icon ul li a:hover {
  transform: translateY(-8px);
  border-color: rgba(201,161,119,0.4);
  box-shadow: 0 16px 40px rgba(201,161,119,0.15);
  background: #FFFDF9;
}
.section2 .ixlst-con .icon ul li a img {
  transition: transform 0.4s ease;
}
.section2 .ixlst-con .icon ul li a:hover img {
  transform: scale(1.1) rotate(-3deg);
}
.section2 .ixlst-con .icon ul li a em {
  font-style: normal;
  margin-top: 8px;
  color: #4A4A4A;
  font-size: 14px;
  font-weight: 500;
}

/* 电话区 */
.section2 .lst-tel .tel1 {
  color: #C9A177;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}
.section2 .lst-tel .tel2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #C9A177, #B8905E);
  color: #FFF;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.35s ease;
}
.section2 .lst-tel .tel2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201,161,119,0.35);
}

/* ========================================
   八、Section3/4/5 离婚纠纷/遗产继承/家族财富
   ======================================== */
/* 服务图标项 */
.section3 .ixlihun-con ul li a,
.section4 .ixyichan-con ul li a,
.section5 .ixcaifu-con ul li a {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 10px;
}
.section3 .ixlihun-con ul li a:hover,
.section4 .ixyichan-con ul li a:hover,
.section5 .ixcaifu-con ul li a:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(201,161,119,0.12);
  background: #FFF;
}
.section3 .ixlihun-con ul li a:hover img,
.section4 .ixyichan-con ul li a:hover img,
.section5 .ixcaifu-con ul li a:hover img {
  transform: scale(1.12) rotate(-2deg);
  transition: transform 0.4s ease;
}

/* 统计数字区 */
.section3 .ixlihun-text {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2330 100%);
  padding: 40px 0;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.section3 .ixlihun-text::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,161,119,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.section3 .ixlihun-text ul {
  position: relative;
  z-index: 1;
}
.section3 .ixlihun-text ul li {
  position: relative;
}
.section3 .ixlihun-text ul li b {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #C9A177 0%, #F0D6A4 50%, #C9A177 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  letter-spacing: 1px;
}
.section3 .ixlihun-text ul li h3 {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  margin-top: 6px;
}
.section3 .ixlihun-text ul li p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
/* 数字之间的竖线 */
.section3 .ixlihun-text ul li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* ========================================
   九、Section6 专注解决（财产分割）
   ======================================== */
.section6 .ixfenge-con li { position: relative; }
.section6 .ixfenge-con li .ixfgbox .itembox {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 12px;
  overflow: hidden;
}
.section6 .ixfenge-con li .ixfgbox .itembox:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}
/* 第一个卡片特殊标记 — 金色描边 */
.section6 .ixfenge-con li.cur .ixfgbox .itembox {
  border: 2px solid rgba(201,161,119,0.3);
  background: linear-gradient(180deg, #FFFDF9 0%, #FFF 100%);
}
.section6 .ixfenge-con li.cur .ixfgbox .itembox:hover {
  border-color: rgba(201,161,119,0.6);
  box-shadow: 0 20px 50px rgba(201,161,119,0.15);
}

/* 分类标签增强 */
.section6 .itembtm a {
  transition: all 0.3s ease;
  border-radius: 6px;
}
.section6 .itembtm a:hover {
  background: rgba(201,161,119,0.08);
  color: #C9A177;
  transform: translateY(-2px);
}

/* ========================================
   十、Section7 律师团队
   ======================================== */
.section7 .ixteambox {
  border-radius: 12px;
  overflow: hidden;
  background: #FFF;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.section7 .ixteambox:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(201,161,119,0.15);
}
.section7 .ixteambox .pic {
  overflow: hidden;
}
.section7 .ixteambox .pic img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.section7 .ixteambox:hover .pic img {
  transform: scale(1.06);
}
.section7 .ixteambox .txt h2 {
  font-size: 18px;
  color: #2C2C2C;
}
.section7 .ixteambox:hover .txt h2 {
  color: #C9A177;
}
/* 金色标签 */
.section7 .ixteambox .txt h2 em {
  font-style: normal;
  display: inline-block;
  font-size: 12px;
  color: #C9A177;
  background: rgba(201,161,119,0.1);
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Swiper 导航箭头金色 */
.section7 .swiper-button-prev,
.section7 .swiper-button-next {
  color: #C9A177 !important;
  transition: all 0.3s ease;
}
.section7 .swiper-button-prev:hover,
.section7 .swiper-button-next:hover {
  transform: scale(1.15);
}

/* ========================================
   十一、Section8 服务优势
   ======================================== */
.section8 .ixyoushi-con .swiper-slide .icon {
  transition: all 0.35s ease;
  cursor: pointer;
}
.section8 .ixyoushi-con .swiper-slide .icon:hover {
  transform: translateY(-4px);
}
.section8 .ixyoushi-con .swiper-slide.on .icon {
  position: relative;
}
.section8 .ixyoushi-con .swiper-slide.on .icon::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: #C9A177;
  border-radius: 1px;
}

.section8 .ixyoushi-con .pic {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}
.section8 .ixyoushi-con .pic:hover {
  box-shadow: 0 20px 60px rgba(201,161,119,0.1);
}

/* CTA 文字 */
.section8 .ixys-text h5 {
  font-size: 18px;
  color: #4A4A4A;
  line-height: 1.6;
}
.section8 .ixys-text h5 b {
  color: #C9A177;
}
.section8 .ixys-text h6 a {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, #C9A177, #B8905E);
  color: #FFF;
  border-radius: 30px;
  font-size: 15px;
  letter-spacing: 1px;
  transition: all 0.35s ease;
}
.section8 .ixys-text h6 a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201,161,119,0.3);
}

/* ========================================
   十二、Section9 经典案例
   ======================================== */
.section9 .ixcasebox li {
  background: #FFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.section9 .ixcasebox li:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(0,0,0,0.08);
}
.section9 .ixcasebox li .pic {
  overflow: hidden;
}
.section9 .ixcasebox li .pic img {
  transition: transform 0.5s ease;
}
.section9 .ixcasebox li:hover .pic img {
  transform: scale(1.05);
}
.section9 .ixcasebox li .txt h2 {
  transition: color 0.3s ease;
}
.section9 .ixcasebox li:hover .txt h2 {
  color: #C9A177;
}
/* 案例分类标签 */
.section9 .ixcasebox li .icon i {
  display: inline-block;
  font-style: normal;
  font-size: 11px;
  padding: 3px 10px;
  background: linear-gradient(135deg, rgba(201,161,119,0.15), rgba(201,161,119,0.05));
  color: #C9A177;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* 案例 Swiper 分页器 */
.section9 .swiper-pagination-bullet-active {
  background: #C9A177 !important;
}

/* ========================================
   十三、Section10 团队动态
   ======================================== */
.section10 .ixdongtai-con .pic a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.section10 .ixdongtai-con .pic a:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 45px rgba(0,0,0,0.08);
}
.section10 .ixdongtai-con .pic img {
  transition: transform 0.5s ease;
}
.section10 .ixdongtai-con .pic a:hover img {
  transform: scale(1.04);
}
.section10 .ixdongtai-con .dlist ul li a {
  display: block;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: all 0.35s ease;
}
.section10 .ixdongtai-con .dlist ul li a:hover {
  padding-left: 20px;
  border-left-color: #C9A177;
  background: rgba(201,161,119,0.04);
}
.section10 .ixdongtai-con .dlist ul li .date {
  color: #C9A177;
  font-size: 13px;
}
.section10 .ixdongtai-con .pic .txt b {
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  font-size: 12px;
}

/* ========================================
   十四、"了解更多" 按钮
   ======================================== */
.ixmore a {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid rgba(201,161,119,0.35);
  border-radius: 30px;
  color: #C9A177;
  font-size: 14px;
  letter-spacing: 2px;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ixmore a:hover {
  background: linear-gradient(135deg, #C9A177, #B8905E);
  color: #FFF;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,161,119,0.3);
}

/* ========================================
   十五、Section12 在线预约
   ======================================== */
.section12 .ixyuyue {
  position: relative;
}
/* 背景装饰光晕 */
.section12 .ixyuyue::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,161,119,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* 表单卡片 */
.section12 .ixyuyue-con {
  background: #FFF;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.05);
  border: 1px solid rgba(201,161,119,0.12);
  transition: all 0.3s ease;
}
.section12 .ixyuyue-con:hover {
  box-shadow: 0 16px 60px rgba(201,161,119,0.08);
  border-color: rgba(201,161,119,0.25);
}

/* 表单输入框 */
.section12 .ixyuyue-con input[type="text"],
.section12 .ixyuyue-con textarea {
  border: 1px solid #E8E8E8 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 14px;
  transition: all 0.35s ease;
  background: #FAFAFA;
}
.section12 .ixyuyue-con input[type="text"]:focus,
.section12 .ixyuyue-con textarea:focus {
  border-color: #C9A177 !important;
  background: #FFF;
  box-shadow: 0 0 0 4px rgba(201,161,119,0.08);
  outline: none;
}

/* 提交按钮 */
.section12 .sbtn {
  width: 100%;
  padding: 14px 0;
  background: linear-gradient(135deg, #C9A177, #B8905E);
  color: #FFF;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.section12 .sbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201,161,119,0.35);
  background: linear-gradient(135deg, #D4B07C, #C9A177);
}
.section12 .sbtn:active {
  transform: translateY(0) scale(0.98);
}

/* 联系信息 */
.section12 .ixyuyue-contact ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 14px;
  color: #666;
}
.section12 .ixyuyue-contact ul li b {
  color: #C9A177;
  font-weight: 600;
}
.section12 .ewm dl {
  text-align: center;
  transition: transform 0.3s ease;
}
.section12 .ewm dl:hover {
  transform: translateY(-3px);
}
.section12 .ewm dl dt img {
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* ========================================
   十六、Section11 Footer
   ======================================== */
.section11 .footer {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}
.section11 .footer a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}
.section11 .footer a:hover {
  color: #C9A177;
}
.section11 .link {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
  margin-top: 16px;
}

/* ========================================
   十七、侧边栏
   ======================================== */
.fixed-layer ul li {
  transition: all 0.35s ease;
}
.fixed-layer ul li:hover {
  transform: translateX(-6px);
}
.fixed-layer .to-top {
  opacity: 0.65;
  transition: all 0.35s ease;
}
.fixed-layer .to-top:hover {
  opacity: 1;
  transform: translateY(-4px) translateX(-6px);
}

/* ========================================
   十八、底部移动导航
   ======================================== */
.footfix ul li a {
  transition: all 0.25s ease;
}
.footfix ul li a:active {
  transform: scale(0.9);
}

/* ========================================
   十九、内页增强
   ======================================== */
/* Banner 遮罩 */
.nybanner {
  position: relative;
  overflow: hidden;
}
.nybanner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.45), rgba(0,0,0,0.15));
  z-index: 1;
}

/* 新闻/案例列表卡片 */
.nynews-con li,
.nycase-con li {
  background: #FFF;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.nynews-con li:hover,
.nycase-con li:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.nynews-con li:hover .txt .tcon h2,
.nycase-con li:hover .txt h2 {
  color: #C9A177;
}

/* 通用列表卡片 */
.bg-white, .list-news {
  border-radius: 8px;
  transition: all 0.3s ease;
}
.bg-white:hover, .list-news:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

/* 锦囊卡片 */
.nyjinnao-con li {
  border-radius: 10px;
  transition: all 0.35s ease;
}
.nyjinnao-con li:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(201,161,119,0.12);
}

/* 分页 */
.pagination a, .pagination span {
  transition: all 0.25s ease;
}
.pagination a:hover {
  background: #C9A177;
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,161,119,0.3);
}

/* ========================================
   二十、无障碍：减弱动画偏好
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .dh-animate { opacity: 1; transform: none; }
}

/* ========================================
   二十一、移动端适配
   ======================================== */
@media screen and (max-width: 1000px) {
  .dh-animate { transform: translateY(15px); }
  .dh-animate.dh-from-left,
  .dh-animate.dh-from-right { transform: translateX(15px); }
  .ixtitle .ixtitle_h1 { font-size: 26px; }
  .section3 .ixlihun-text ul li b { font-size: 32px; }
  .ixfenge-con li .ixfgbox .itembox:hover,
  .ixteambox:hover,
  .ixcasebox li:hover { transform: translateY(-3px); }
  .section2 .ixlst::before,
  .section8 .ixyoushi::before,
  .section9 .ixcase::before { display: none; }
}
