   :root {
      --primary: #25B7D3;
      --secondary: #FF7D00;
      --neutral: #F5F7FA;
      --gray-800: #1F2937;
      --gray-500: #6B7280;
      --white: #FFFFFF;
    }
/* 基础样式 */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', system-ui, sans-serif;
    }
    body {
      background-color: #f9fafb;
    }
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }
    a:link,    /* 未访问的链接 */
    a:visited, /* 已访问的链接 */
    a:hover,   /* 鼠标悬停的链接 */
    a:active { /* 鼠标点击时的链接 */
      text-decoration: none; /* 去除下划线 */
      color: inherit; /* 继承父元素的颜色（灵活适配上下文） */
      /* 也可设置具体颜色，例如：color: #333; */
    }

    /* 顶部信息栏 */
    .top-bar {
      background-color: #2C3E50;
      color: white;
      padding: 8px 0;
    }
    .top-bar-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
    .top-bar-text {
      font-size: 14px;
    }
    @media (min-width: 768px) {
      .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
      }
      .top-bar-text {
        font-size: 16px;
      }
    }

 /* 导航栏 */
    .navbar {
      background-color: white;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 12px 0;
      position: relative; /* 新增：作为子元素定位参考 */
      z-index: 101; /* 提高层级，确保菜单在最上层 */
    }

    /* 2. 修改导航栏内容布局为 Flexbox */
    .navbar-content {
      display: flex;
      align-items: center;
      justify-content: space-between; /* 这会把空间分配给子元素 */
      padding: 0 15px;
    }

    .logo {
      font-size: 32px;
      font-weight: bold;
      color: #2D3748;
      margin: 0 auto; /* 3. Logo 自动居中 */
    }
    .logo img {
      height: 40px; /* 建议给Logo一个固定高度 */
    }
    
    /* 电话图标样式 */
    .phone-icon {
      color: #2D3748;
      cursor: pointer;
    }

    /* 导航链接 */
    li {
    list-style: none;
    }
    .nav-links {
      display: none;
      gap: 4px;
      margin-top: 12px; /* 与上方保持距离 */
    }
    .nav-links.show {
      display: flex;
    }
    .nav-item a{
      padding: 8px 16px;
      color: #333;
      text-decoration: none;
      position: relative;
      transition: color 0.3s;
      text-align: center;
    }
    .nav-item:hover {
      color: #25B7D3;
    }
    .nav-item::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #25B7D3;
      transition: width 0.3s;
    }
    .nav-item:hover::after {
      width: 100%;
    }

    /* 覆盖原有样式，重置为默认值 */
    .nav-item.active {
      background-color: #25B7D3;
      color: white;
    }
    .nav-item.active::after {
      display: none;
    }
    
    /* 菜单按钮 - 核心：固定在右上角 */
    .menu-btn {
      background: none;
      border: none;
      color: #2D3748;
      font-size: 24px;
      cursor: pointer;
      width: 40px; /* 固定尺寸 */
      height: 40px;
      display: flex; /* 图标居中 */
      align-items: center;
      justify-content: center;
      /* 不需要 margin-left: auto; 了，因为父容器是 justify-content: space-between; */
    }

    /* 4. PC端样式：隐藏电话图标 */
    @media (min-width: 768px) {
      .phone-icon {
        display: none;
      }
      .nav-links {
        display: flex;
        flex-direction: row;
        width: auto;
        gap: 4px;
        margin-top: 0; /* 取消顶部间距 */
      }
      .menu-btn {
        display: none;
      }
      /* PC端Logo不再需要居中，它会和导航链接一起被推到右边 */
      .logo {
        margin: 0;
      }
    }

    /* 移动端样式 */
    @media (max-width: 767px) {
      /* 5. 移动端菜单展开后向下移动，避免覆盖导航栏 */
      .nav-links {
        position: absolute;
        top: 100%; /* 定位在导航栏底部 */
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 100;
        margin-top: 0;
        padding: 12px 0;
      }
      /* 移动端下，下拉菜单中的选择框宽度100% */
      .nav-item .region-select {
          width: 100%;
          padding: 8px 16px;
          border: 1px solid #e2e8f0;
          border-radius: 4px;
      }
    }
    /* banner开始区域 */
    /* 轮播图容器 */
.carousel-container {
  position: relative;
  width: 100%; /* 如需全屏改为 width: 100% */
  height: 500px;
  margin: 0 auto; /* 仅保留水平居中，删除上下外边距 */
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
    
    /* 轮播轨道 */
    .carousel-track {
      display: flex;
      height: 500px;
      transition: transform 0.5s ease-in-out;
    }
    
    @media (min-width: 768px) {
      .carousel-track {
        height: 600px;
      }
    }
    
    /* 轮播项 */
    .carousel-slide {
      min-width: 100%;
      position: relative;
    }
    
    /* 图片样式 */
    .carousel-img {
      width: 100%;
      height: 506px;
      object-fit: cover;
    }
    
    /* 响应式图片切换 */
    .desktop-img {
      display: none;
    }
    
    .mobile-img {
      display: block;
    }
    
    @media (min-width: 768px) {
      .desktop-img {
        display: block;
      }
      
      .mobile-img {
        display: none;
      }
    }
    
    /* 文字叠加层 */
    .carousel-caption {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.5rem;
      color: white;
    }
    
    @media (min-width: 768px) {
      .carousel-caption {
        padding: 3rem;
      }
    }
    
    .carousel-title {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
    }
    
    @media (min-width: 768px) {
      .carousel-title {
        font-size: 2.5rem;
      }
    }
    
    .carousel-desc {
      font-size: 0.875rem;
      max-width: 500px;
      margin-bottom: 1rem;
    }
    
    @media (min-width: 768px) {
      .carousel-desc {
        font-size: 1.125rem;
      }
    }
    
    /* 按钮样式 */
    .carousel-btn {
      background-color: #25B7D3;
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 0.5rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      transition: all 0.3s ease;
      width: fit-content;
    }
    
    .carousel-btn:hover {
      background-color: #0E4BDB;
      transform: scale(1.05);
    }
    
    .btn-icon {
      margin-left: 0.5rem;
    }
    
    /* 控制按钮 */
    .control-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(4px);
      color: white;
      border: none;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 10;
    }
    
    .control-btn:hover {
      background-color: rgba(255, 255, 255, 0.5);
    }
    
    .prev-btn {
      left: 1rem;
    }
    
    .next-btn {
      right: 1rem;
    }
    
    /* 指示器 */
    .indicators {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.5rem;
      z-index: 10;
    }
    
    .indicator {
      height: 0.5rem;
      border-radius: 0.25rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }
    
    .indicator-active {
      background-color: #2C3E50;
      width: 1.5rem;
    }
    
    .indicator-inactive {
      background-color: #d1d5db;
      width: 0.75rem;
    }
    
    .indicator-inactive:hover {
      background-color: #9ca3af;
    }
/* banner结束 */

/*四大优势开始*/
 /* section容器样式 */
    .section {
      margin: 0 auto;
      min-height: 400px;
      display: flex;
      justify-content: center;  
      align-items: center;
      padding: 30px 50px;
      position: relative;
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    /* 左右模块初始状态（隐藏+偏移） */
    .section-left, .section-right {
      flex: 1;
      opacity: 0;
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .section-left {
      transform: translateX(-50px); /* 左模块初始左偏移 */
    }
    .section-right {
      transform: translateX(50px); /* 右模块初始右偏移 */
    }

    /* 激活状态（显示+归位） */
    .section.active .section-left,
    .section.active .section-right {
      opacity: 1;
      transform: translateX(0);
    }

    /* 优势模块样式 */
    .advantage {
      margin-bottom: 40px;
      margin-left: 30px;
    }
    .advantage h2 {
      font-size: 26px;
      color: #25B7D3;
      margin-bottom: 12px;
      position: relative;
      padding-left: 15px;
    }
    .advantage h2::before {
      content: '';
      position: absolute;
      left: 0;
      top: 5px;
      height: 20px;
      width: 5px;
      background-color: #25B7D3;
      border-radius: 3px;
    }
    .advantage p {
      color: #666;
      margin-bottom: 20px;
      font-size: 16px;
      font-weight: 500;
    }
    .advantage ul {
      list-style: none;
      margin-left: 10px;
    }
    .advantage li {
      margin-bottom: 12px;
      color: #666;
      position: relative;
      padding-left: 22px;
      line-height: 1.5;
    }
    .advantage li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 8px;
      height: 8px;
      background-color: #25B7D3;
      border-radius: 50%;
    }

    /* 图片容器样式 */
    .img-box {
      width: 100%;
      height: auto;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .img-box:hover {
      transform: translateY(-5px);
    }
    .img-box img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }
    .img-box:hover img {
      transform: scale(1.03);
    }

    /* 响应式适配（移动端垂直排列） */
    @media (max-width: 768px) {
      .section {
        flex-direction: column;
        padding: 30px 20px;
        margin: 0 auto;
      }
      .section-left, .section-right {
        width: 100%;
        margin-bottom: 30px;
      }
      .section-left {
        transform: translateY(30px);
      }
      .section-right {
        transform: translateY(30px);
      }
      .advantage h2 {
        font-size: 22px;
      }
    }
/*四大优势结束*/


    /* 答疑开始 */

    /* 容器样式 */
    .faq-container {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: 0 1rem;
    }
    
    /* 标题样式 */
    .title-section {
      text-align: center;
      /*margin-bottom: 2.5rem;*/
    }
    
    .main-title {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: bold;
      color: var(--gray-800);
      margin-bottom: 0.5rem;
    }
    
    .sub-title {
      color: var(--gray-500);
      font-size: 1.125rem;
      margin-bottom: 1rem;
    }
    
    .title-divider {
      width: 5rem;
      height: 0.25rem;
      background-color: var(--primary);
      border-radius: 0.5rem;
      margin: 0 auto;
    }
    
    /* 问答列表样式 */
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      padding: 10px;
    }
    
    /* 问答对容器 */
    .faq-item {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: all 0.3s ease;
    }
    
    .faq-item:hover {
      transform: translateY(-0.25rem);
    }
    
    /* 问题卡片样式 */
    .question-card {
      background-color: var(--primary);
      color: var(--white);
      padding: 1rem;
      border-radius: 0.5rem;
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      transition: all 0.3s ease;
    }
    
    .question-card:hover {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    /* 答案卡片样式 */
    .answer-card {
      background-color: var(--white);
      color: var(--gray-800);
      padding: 1rem;
      border-radius: 0.5rem;
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      transition: all 0.3s ease;
    }
    
    .answer-card:hover {
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    /* 图标样式 */
    .icon {
      font-size: 1.5rem;
      margin-top: 0.125rem;
    }
    
    .question-icon {
      color: var(--white);
    }
    
    .answer-icon {
      color: var(--secondary);
    }
    
    /* 文本样式 */
    .text-content {
      font-size: 1.125rem;
    }
    
    /* 响应式样式 - 平板及以上设备 */
    @media (min-width: 768px) {
      .faq-item {
        flex-direction: row;
        align-items: flex-start;
      }
      
      .question-card, .answer-card {
        width: 50%;
      }
    }
    
    /* 交互效果 */
    .scale-effect {
      animation: scale 0.2s ease;
    }
    
    @keyframes scale {
      0% { transform: scale(1); }
      50% { transform: scale(1.01); }
      100% { transform: scale(1); }
    }
    /* 答疑结束 */


    /* 关于我们开始 */
            /* 容器样式 */
        .about-container {
            max-width: 1200px; /* 对应max-w-6xl */
            margin: 0 auto;
            padding: 3rem 1rem; /* 对应py-12 px-4 */
        }

        /* 卡片容器 */
        .about-card {
            background-color: white;
            padding: 2rem; /* 对应p-8 */
            border-radius: 0.5rem; /* 对应rounded-lg */
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* 对应shadow-sm */
        }

        /* 弹性布局容器 */
        .about-flex {
            display: flex;
            flex-direction: column;
            gap: 2rem; /* 对应gap-8 */
        }

        /* 左侧文本区域 */
        .about-text {
            flex: 1;
        }

        /* 标题样式 */
        .about-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: bold;
            color: #25B7D3; /* 主色primary */
        }

        /* 标题下划线 */
        .about-title-underline {
            height: 3px;
            width: 60px;
            background-color: #25B7D3;
            margin-top: 8px;
        }

        /* 文本内容区域 */
        .about-content {
            margin-top: 1.5rem; /* 对应mt-6 */
        }

        .about-content p {
            margin-bottom: 1rem; /* 对应space-y-4 */
        }

        /* 右侧图片区域 */
        .about-image {
            flex: 1;
            margin-top: 1.5rem; /* 对应mt-6 */
            display: flex;
            justify-content: center; /* 图片居中 */
        }

        /* 图片样式 */
        .about-hose-img {
            width: 400px; /* 修正单位空格错误 */
            height: 234px;
            border-radius: 0.25rem; /* 对应rounded */
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* 对应shadow-sm */
            object-fit: cover; /* 保持比例填充 */
            margin-top: 85px;
        }

        /* 响应式布局 - 中等屏幕及以上 */
        @media (min-width: 768px) {
            .about-flex {
                flex-direction: row; /* 横向排列 */
            }

            .about-image {
                margin-top: 0; /* 移除顶部margin */
            }
            
        }
        /* 修正媒体查询单位缺失 */
        @media (max-width: 430px) {
            .about-hose-img {
                margin-top: 0;
            }
        }
    /* 关于我们结束 */

    /* 新闻模块开始 */
    
    /* 文章模块容器 */
    .article-module {
      max-width: 1200px; /* 最大宽度 */
      margin: 0 auto;
      padding: 2rem 1rem; /* 内边距 */
    }
    .news-title-h{
      width: 206px;
      height: 48px;
      border: 1px solid #25B7D3;
      border-radius: 24px;
      background-color: #25B7D3;
      color: white;
      text-align: center;
      margin: 30px auto 30px;
      line-height: 40px;
    }
    /* 主网格布局 */
    .article-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem; /* 网格间距 */
    }

    /* 左侧区域（大图+主要文章） */
    .article-left {
      display: flex;
      flex-direction: column;
      gap: 1.5rem; /* 内部间距 */
    }

    /* 特色图片容器 */
    .featured-image {
      border-radius: 0.5rem; /* 圆角 */
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* 基础阴影 */
      transition: all 0.3s ease; /* 过渡效果 */
    }

    .featured-image:hover {
      transform: scale(1.02); /* 悬停缩放 */
    }

    .featured-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    /* 文章卡片通用样式 */
    .article-card {
      background-color: #FFFFFF; /* 白色背景 */
      border-radius: 0.5rem; /* 圆角 */
      padding: 1.0rem; /* 内边距 */
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* 基础阴影 */
      transition: all 0.3s ease; /* 过渡效果 */
    }

    .article-card:hover {
      transform: translateY(-5px); /* 悬停上移 */
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* 悬停阴影 */
      cursor: pointer;
    }

    /* 卡片头部（日期区域） */
    .card-header {
      display: flex;
      align-items: center;
      margin-bottom: 1rem; /* 底部间距 */
    }

    .date-number {
      width: 2.5rem; /* 宽度 */
      height: 2.5rem; /* 高度 */
      border-radius: 0.25rem; /* 圆角 */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem; /* 字体大小 */
      font-weight: bold;
      margin-right: 0.5rem; /* 右侧间距 */
    }

    .date-text {
      color: #6B7280; /* 次要文本色 */
      font-size: 0.875rem; /* 字体大小 */
    }

    /* 主要文章卡片 */
    .main-article .date-number {
      background-color: #25B7D3; /* 主色 */
      color: #FFFFFF; /* 白色文本 */
    }

    .main-article .card-title {
      font-size: 1.25rem; /* 标题大小 */
      margin-bottom: 1rem; /* 底部间距 */
    }

    .main-article .card-desc {
      color: #9CA3AF; /* 描述文本色 */
      font-size: 1rem; /* 字体大小 */
    }

    /* 右侧文章网格 */
    .article-right {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem; /* 网格间距 */
    }

    /* 右侧文章卡片 */
    .sub-article .date-number {
      background-color: #F3F4F6; /* 浅灰背景 */
      color: #1F2937; /* 深色文本 */
    }

    .sub-article .card-title {
      font-size: 1.125rem; /* 标题大小 */
      margin-bottom: 0.5rem; /* 底部间距 */
    }

    .sub-article .card-desc {
      color: #9CA3AF; /* 描述文本色 */
      font-size: 0.875rem; /* 字体大小 */
    }

    /* 文本平衡工具类 */
    .text-balance {
      text-wrap: balance;
    }

    /* 响应式调整 */
    @media (min-width: 768px) {
      .article-right {
        grid-template-columns: repeat(2, 1fr); /* 平板：右侧双列 */
      }
    }

    @media (min-width: 1200px) {
      .article-grid {
        grid-template-columns: 1fr 2fr; /* 桌面：左右分栏 */
      }
    }
    /* 新闻模块结束 */

    /* 项目开始 */
        /* 基础样式重置（仅作用于模块内部） */
    .inv-container * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
    }

    /* 外层容器样式 */
    .inv-wrapper {
      background-color: #F9FAFB;
      padding: 2rem 1rem;
    }

    .inv-container {
      max-width: 960px;
      margin: 0 auto;
    }

    /* 标题样式 */
    .inv-section-title {
      text-align: center;
      margin-bottom: 4rem;
    }

    .inv-main-title {
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      font-weight: 700;
      color: #333333;
      margin-bottom: 1rem;
    }

    .inv-sub-title {
      color: #666666;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 1.125rem;
    }

    /* 卡片网格布局 */
    .inv-features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .inv-features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .inv-features-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* 卡片样式（左右排列） */
    .inv-feature-card {
      background-color: #FFFFFF;
      padding: 1.5rem 2rem;
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      transition: all 300ms ease;
      opacity: 0;
      transform: translateY(16px);
    }

    .inv-feature-card:hover {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      transform: translateY(-4px);
    }

    /* 圆形图标 */
    .inv-circle-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background-color: #25B7D3;
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 700;
      flex-shrink: 0; /* 防止图标被压缩 */
    }

    /* 卡片内容区 */
    .inv-card-content {
      text-align: left;
    }

    .inv-card-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: #333333;
      margin-bottom: 0.5rem;
    }

    .inv-card-desc {
      color: #666666;
      line-height: 1.6;
    }

    /* 动画相关 */
    .inv-fade-in {
      opacity: 1;
      transform: translateY(0);
      transition: all 700ms ease;
    }
    /* 项目结束 */

/* 服务网点开始 */
    /* 基础样式重置（仅针对当前模块内元素，避免影响全局） */
    .info-list-container * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', system-ui, sans-serif;
    }

    .info-list-container {
      background-color: #f9fafb;
      color: #1e293b;
      line-height: 1.5;
    }

    .info-list-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 48px 16px;
    }

    /* 标题样式 */
    .info-list-title {
      font-size: clamp(1.5rem, 3vw, 2.5rem);
      font-weight: bold;
      text-align: center;
      margin-bottom: 40px;
      color: #1e293b;
    }

    /* 列表容器 - 调整为可换行的Flex布局 */
    .info-list-ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    /* 列表项样式 */
    .info-list-item {
      background-color: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      width: 100%; /* 移动端占满宽度 */
    }

    .info-list-item:hover {
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
      transform: translateY(-4px);
    }

    .info-list-item-content {
      display: flex;
      flex-direction: column;
    }

    /* 图片容器 */
    .info-list-img-box {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .info-list-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /*opacity: 0;*/
      transition: opacity 0.5s ease-in-out;
    }

    /* 信息内容 */
    .info-list-details {
      padding: 24px;
    }

    .info-list-item-title {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 12px;
      color: #1e293b;
    }

    .info-list-group {
      color: #64748b;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .info-list-detail-item {
      display: flex;
      align-items: center;
    }

    .info-list-icon {
      color: #25B7D3;
      margin-right: 8px;
      width: 20px;
      text-align: center;
    }

    /* 查看更多按钮 */
    .info-list-more-btn-box {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }

    .info-list-more-btn {
      background-color: #25B7D3;
      color: white;
      font-weight: 500;
      padding: 12px 32px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .info-list-more-btn:hover {
      background-color: #0e4cd1;
    }

    /* 响应式设计 - 大屏幕显示左右两个 */
    @media (min-width: 768px) {
      /* 列表改为横向排列并允许换行 */
      .info-list-ul {
        flex-direction: row;
        flex-wrap: wrap;
      }
      
      /* 每个列表项占50%宽度（减去间隙） */
      .info-list-item {
        flex: 0 0 calc(50% - 12px);
      }

      .info-list-item-content {
        flex-direction: row;
      }

      .info-list-img-box {
        width: 160px; /* 调整图片宽度适应双列布局 */
        height: auto;
      }

      .info-list-details {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
    }

    /* 更大屏幕优化 */
    @media (min-width: 1024px) {
      .info-list-img-box {
        width: 200px;
      }
    }
/* 服务网点结束 */


    /* 页脚开始 */
    .footer {
      background-color: #2c3e50;
      color: #fff;
      padding: 40px 0 20px;
      margin-bottom: 64px;
    }
    .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-logo {
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .footer-contact {
      font-size: 14px;
      margin-bottom: 20px;
      line-height: 1.8;
    }
    .copyright {
      font-size: 12px;
      color: #bbb;
      margin-top: 20px;
    }
/* 页脚结束 */

/* 底部悬浮开始 */

      /* 底部框架整体容器 - 固定在底部 */
    .app-footer-nav {
      display: flex;
      height: 64px;
      background-color: #000; /* 黑色背景 */
      align-items: center;    /* 垂直居中 */
      justify-content: space-around; /* 水平均匀分布 */
      padding: 10px 0;       /* 上下内边距 */
      
      /* 固定在底部的核心样式 */
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%; /* 确保占满屏幕宽度 */
      z-index: 999; /* 避免被其他元素遮挡 */
    }

    /* 每个区域的通用样式 */
    .app-footer-nav__item {
      display: flex;
      align-items: center;    /* 垂直居中对齐 */
    }

    /* 左侧/右侧图标大小及布局 */
    .app-footer-nav__item--left, .app-footer-nav__item--right {
      gap: 8px; /* 图标与文字的间距 */
    }
    .app-footer-nav__item--left img, .app-footer-nav__item--right img {
      width: 50px;
      height: 50px;
    }

    /* 中间品牌标志区域 - 叠加效果 */
    .app-footer-nav__logo {
      display: flex;
      align-items: center;
      position: relative; /* 作为子元素绝对定位的参考 */
      width: 160px; /* 与主logo宽度一致 */
      height: 50px; /* 固定高度，避免缩放错乱 */
    }
    /* 主logo样式 */
    .app-footer-nav__main-logo {
      width: 160px;
      height: auto;
      position: absolute;
      top: -60px;
      left: 0;
      z-index: 1; /* 底层 */
    }
    /* 叠加logo样式 */
    .app-footer-nav__overlay-logo {
      width: 80px; /* 叠加logo大小 */
      height: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); /* 居中叠加 */
      z-index: 2; /* 上层 */
    }

    /* 文字区域样式 */
    .app-footer-nav__text {
      text-align: left;
    }

    /* 大文字（中文） */
    .app-footer-nav__text--large {
      color: gold;
      font-size: 18px;
      display: block;
    }

    /* 小文字（英文） */
    .app-footer-nav__text--small {
      color: gold;
      font-size: 14px;
      display: block;
    }

    /* 响应式适配：小屏幕设备（如手机） */
    @media (max-width: 768px) {
      /* 缩小左侧/右侧图标 */
      .app-footer-nav__item--left img, .app-footer-nav__item--right img {
        width: 40px;
        height: 40px;
      }

      /* 缩小文字大小，避免换行 */
      .app-footer-nav__text--large {
        font-size: 16px;
      }
      .app-footer-nav__text--small {
        font-size: 12px;
      }

      /* 缩小中间logo区域，适配小屏 */
      .app-footer-nav__logo {
        width: 120px; /* 主logo宽度缩小 */
        height: 40px;
      }
      .app-footer-nav__main-logo {
        width: 120px;
        top:-40px
      }
      .app-footer-nav__overlay-logo {
        width: 60px; /* 叠加logo按比例缩小 */
      }

      /* 减小图标与文字的间距 */
      .app-footer-nav__item--left, .app-footer-nav__item--right {
        gap: 5px;
      }
    }

    /* 更小屏幕适配（如小屏手机） */
    @media (max-width: 375px) {
      .app-footer-nav__text--large {
        font-size: 14px;
      }
      .app-footer-nav__text--small {
        font-size: 10px;
      }
      .app-footer-nav__logo {
        width: 100px;
      }
      .app-footer-nav__main-logo {
        width: 100px;
      }
      .app-footer-nav__overlay-logo {
        width: 50px;
      }
    }
/* 底部悬浮结束 */

/* 分页背景图开始 */
/* Banner容器样式 */
    .resp-banner-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      /* 保持宽高比，自适应不同屏幕 */
      padding-top: 35%; /* 约2.85:1的比例，可调整 */
    }
    
    /* Banner图片样式 */
    .resp-banner-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; /* 保持比例并覆盖容器 */
      transition: transform 0.5s ease;
    }
    
    /* 悬停放大效果 */
    .resp-banner-container:hover .resp-banner-img {
      transform: scale(1.02);
    }
    
    /* 渐变叠加层（增强文字可读性） */
    .resp-banner-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    }
    
    /* Banner内容容器 */
    .resp-banner-content {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: 100%;
      max-width: 1200px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: white;
      z-index: 10;
    }
    
    /* 标题样式 */
    .resp-banner-title {
      font-size: clamp(2rem, 5vw, 3.5rem); /* 响应式字体 */
      font-weight: 700;
      margin-bottom: 1rem;
      line-height: 1.2;
      opacity: 0;
      transform: translateY(20px);
      animation: respBannerFadeUp 0.8s ease forwards 0.3s;
    }
    
    /* 副标题样式 */
    .resp-banner-subtitle {
      font-size: clamp(1rem, 2vw, 1.25rem);
      max-width: 600px;
      margin-bottom: 1.5rem;
      opacity: 0;
      transform: translateY(20px);
      animation: respBannerFadeUp 0.8s ease forwards 0.6s;
    }
    
    /* 按钮样式 */
    .resp-banner-btn {
      display: inline-block;
      padding: 0.8rem 1.8rem;
      background-color: #2563eb;
      color: white;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 600;
      transition: all 0.3s ease;
      width: fit-content;
      opacity: 0;
      transform: translateY(20px);
      animation: respBannerFadeUp 0.8s ease forwards 0.9s;
    }
    
    .resp-banner-btn:hover {
      background-color: #1d4ed8;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }
    
    /* 动画（修改名称避免冲突） */
    @keyframes respBannerFadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* 移动设备适配 */
    @media (max-width: 768px) {
       /* .ny_banner{
        padding-top: 105px;
       } */
      .resp-banner-container {
        padding-top: 60%; /* 移动设备调整比例 */
      }
      
      .resp-banner-content {
        padding: 1.5rem;
      }
      
      .resp-banner-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
      }
    }
/* 分页背景图结束 */

/* 详情页开始 */

    .news-article-wrap {
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1rem;
      padding-right: 1rem;
      padding-top: 2.5rem;
      padding-bottom: 2.5rem;
    }
    
    @media (min-width: 640px) {
      .news-article-wrap {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
    }
    
    .news-section-title {
      text-align: center;
      margin-bottom: 2rem;
    }
    
    .news-section-title h1 {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 700;
      color: #25B7D3;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid #25B7D3;
      display: inline-block;
    }
    
    .news-main-title {
      font-size: clamp(1.4rem, 3vw, 1.8rem);
      font-weight: 600;
      color: #1F2937;
      margin-bottom: 1rem;
      line-height: 1.3;
    }
    
    .news-publish-info {
      background-color: #F3F4F6;
      padding: 0.625rem 1rem;
      border-radius: 0.375rem;
      margin-bottom: 1.5rem;
      color: #6B7280;
      font-size: 0.875rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    
    .news-content {
      color: #374151;
      line-height: 1.6;
      margin-bottom: 2.5rem;
    }
    
    .news-content p {
      margin-bottom: 1rem;
    }
    
    .news-content p:last-child {
      margin-bottom: 0;
    }
    
    .news-nav-links {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .news-nav-item {
      background-color: #F3F4F6;
      padding: 0.75rem 1rem;
      border-radius: 0.375rem;
      transition: all 0.2s ease;
    }
    
    .news-nav-item:hover {
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }
    
    .news-nav-link {
      color: #6B7280;
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: color 0.3s ease;
    }
    
    .news-nav-link:hover {
      color: #25B7D3;
    }
    
    .news-nav-link span, .news-nav-text {
      display: flex;
      align-items: center;
      color: #6B7280;
    }
    
    .news-icon {
      margin-right: 0.5rem;
    }
/* 详情页结束 */


/* 新闻列表开始 */
    /* 容器样式 */
    .news-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    
    /* 头部导航样式 */
    .news-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background-color: white;
      box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
    }
    
    .news-header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
    }
    
    .news-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .news-logo-icon {
      color: #1e40af;
      font-size: 1.5rem;
    }
    
    .news-logo-text {
      font-size: 1.25rem;
      font-weight: bold;
      color: #1e40af;
    }
    
    .news-nav {
      display: none;
    }
    
    @media (min-width: 768px) {
      .news-nav {
        display: flex;
        align-items: center;
        gap: 1.5rem;
      }
    }
    
    .news-nav-link {
      color: #4b5563;
      font-weight: 500;
      transition: color 0.3s;
      text-decoration: none;
    }
    
    .news-nav-link:hover {
      color: #f97316;
    }
    
    .news-nav-link.active {
      color: #1e40af;
    }
    
    .news-header-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .news-subscribe-btn {
      display: none;
      padding: 0.5rem 1rem;
      background-color: #1e40af;
      color: white;
      border-radius: 9999px;
      border: none;
      font-weight: 500;
      transition: background-color 0.3s;
      cursor: pointer;
    }
    
    @media (min-width: 768px) {
      .news-subscribe-btn {
        display: block;
      }
    }
    
    .news-subscribe-btn:hover {
      background-color: rgba(30, 64, 175, 0.9);
    }
    
    .news-menu-btn {
      color: #4b5563;
      background: none;
      border: none;
      font-size: 1.25rem;
      cursor: pointer;
    }
    
    @media (min-width: 768px) {
      .news-menu-btn {
        display: none;
      }
    }
    
    /* 主内容区样式 */
    .news-main {
      padding: 2rem 0;
    }
    
    .news-content-layout {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    
    @media (min-width: 1024px) {
      .news-content-layout {
        flex-direction: row;
      }
    }
    
    .news-section {
      width: 100%;
    }
    
    @media (min-width: 1024px) {
      .news-section {
        width: 66.666667%;
      }
    }
    
    .news-section-title {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid #e5e7eb;
    }
    
    .news-list {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    
    /* 新闻卡片样式 */
    .news-card {
      background-color: white;
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
      animation: fadeIn 0.6s ease-in-out forwards;
    }
    
    .news-card:hover {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      transform: translateY(-0.25rem);
    }
    
    .news-card-content {
      display: flex;
      flex-direction: column;
    }
    
    @media (min-width: 768px) {
      .news-card-content {
        flex-direction: row;
      }
    }
    
    .news-image {
      width: 100%;
      height: 12rem;
      object-fit: cover;
    }
    
    @media (min-width: 768px) {
      .news-image {
        /* width: 33.333333%;
        height: auto; */
      }
    }
    
    .news-details {
      padding: 1.5rem;
      width: 100%;
    }
    
    @media (min-width: 768px) {
      .news-details {
        width: 66.666667%;
      }
    }
    
    .news-meta {
      display: flex;
      align-items: center;
      font-size: 0.875rem;
      color: #6b7280;
      margin-bottom: 0.5rem;
    }
    
    .news-meta-item {
      display: flex;
      align-items: center;
    }
    
    .news-meta-separator {
      margin: 0 0.5rem;
    }
    
    .news-title {
      font-size: 1.25rem;
      font-weight: bold;
      margin-bottom: 0.75rem;
      color: #1e40af;
      transition: color 0.3s;
    }
    
    .news-title:hover {
      color: #f97316;
    }
    
    .news-title a {
      color:black;
      text-decoration: none;
    }
    
    .news-excerpt {
      color: #4b5563;
      margin-bottom: 1rem;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-wrap: balance;
    }
    
    .news-read-more {
      display: inline-flex;
      align-items: center;
      color: #3b82f6;
      font-weight: 500;
      transition: color 0.3s;
      text-decoration: none;
    }
    
    .news-read-more:hover {
      color: #f97316;
    }
    
    /* 分页样式 */
    .news-pagination {
      margin-top: 2.5rem;
      display: flex;
      justify-content: center;
    }
    
    .news-pagination-nav {
      display: inline-flex;
      border-radius: 0.375rem;
      box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    }
    
    .news-pagination-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      background-color: white;
      border: 1px solid #d1d5db;
      color: #6b7280;
      font-weight: 500;
      transition: background-color 0.3s;
      text-decoration: none;
    }
    
    .news-pagination-link:hover {
      background-color: #f9fafb;
    }
    
    .news-pagination-link:first-child {
      border-top-left-radius: 0.375rem;
      border-bottom-left-radius: 0.375rem;
    }
    
    .news-pagination-link:last-child {
      border-top-right-radius: 0.375rem;
      border-bottom-right-radius: 0.375rem;
    }
    
    .news-pagination-link.active {
      color: #1e40af;
      background-color: white;
    }
    
    /* 侧边栏样式 */
    .news-sidebar {
      width: 100%;
    }
    
    @media (min-width: 1024px) {
      .news-sidebar {
        width: 33.333333%;
      }
    }
    
    .news-recommended-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 5px;
    }
    
    .news-recommended-item {
      background-color: white;
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
    }
    
    .news-recommended-header {
      width: 100%;
      padding: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: none;
      border: none;
      transition: background-color 0.3s;
      cursor: pointer;
    }
    
    .news-recommended-header:hover {
      background-color: #f9fafb;
    }
    
    .news-recommended-title {
      font-weight: 500;
    }
    
    .news-recommended-icon {
      color: #9ca3af;
      transition: transform 0.3s;
    }
    
    .news-recommended-content {
      /* padding: 0 1rem 1rem; */
      border-top: 1px solid #f3f4f6;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
    }
    
    .news-recommended-image {
      width: 100%;
      height: 10rem;
      object-fit: cover;
      border-radius: 0.5rem;
      margin-bottom: 0.75rem;
    }
    
    .news-recommended-excerpt {
      color: #4b5563;
      font-size: 0.875rem;
      margin-bottom: 0.75rem;
    }
    
    /* 标签样式 */
    .news-tags-section {
      margin-top: 2.5rem;
    }
    
    .news-tags-title {
      font-size: 1.25rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }
    
    .news-tags-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    
    .news-tag {
      padding: 0.25rem 0.75rem;
      background-color: white;
      border: 1px solid #e5e7eb;
      border-radius: 9999px;
      font-size: 0.875rem;
      color: inherit;
      text-decoration: none;
      transition: all 0.3s;
    }
    
    .news-tag:hover {
      background-color: #1e40af;
      color: white;
      border-color: #1e40af;
    }
    
    /* 页脚样式 */
    .news-footer {
      background-color: #1e40af;
      color: white;
      margin-top: 4rem;
    }
    
    .news-footer-content {
      padding: 3rem 0;
    }
    
    .news-footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    @media (min-width: 768px) {
      .news-footer-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    
    .news-footer-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
    
    .news-footer-logo-icon {
      font-size: 1.5rem;
    }
    
    .news-footer-logo-text {
      font-size: 1.25rem;
      font-weight: bold;
    }
    
    .news-footer-description {
      color: #d1d5db;
      font-size: 0.875rem;
    }
    
    .news-footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }
    
    .news-social-link {
      color: #d1d5db;
      transition: color 0.3s;
      text-decoration: none;
    }
    
    .news-social-link:hover {
      color: white;
    }
    
    .news-footer-heading {
      font-weight: bold;
      margin-bottom: 1rem;
    }
    
    .news-footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .news-footer-link {
      color: #d1d5db;
      font-size: 0.875rem;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .news-footer-link:hover {
      color: white;
    }
    
    .news-footer-subscribe {
      display: flex;
    }
    
    .news-subscribe-input {
      padding: 0.5rem 0.75rem;
      color: #1f2937;
      border-top-left-radius: 0.375rem;
      border-bottom-left-radius: 0.375rem;
      border: none;
      width: 100%;
      font-size: 0.875rem;
    }
    
    .news-subscribe-input:focus {
      outline: none;
    }
    
    .news-subscribe-btn-footer {
      padding: 0.5rem 1rem;
      background-color: #f97316;
      color: white;
      border: none;
      border-top-right-radius: 0.375rem;
      border-bottom-right-radius: 0.375rem;
      transition: background-color 0.3s;
      cursor: pointer;
    }
    
    .news-subscribe-btn-footer:hover {
      background-color: rgba(249, 115, 22, 0.9);
    }
    
    .news-footer-bottom {
      border-top: 1px solid #374151;
      padding-top: 2rem;
      text-align: center;
      font-size: 0.875rem;
      color: #9ca3af;
    }
    
    /* 动画 */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .news-rotate-180 {
      transform: rotate(180deg);
    }
    
    /* 滚动行为 */
    html {
      scroll-behavior: smooth;
    }
    
    /* 图标伪元素 */
    .news-icon-calendar::before {
      content: "📅";
      margin-right: 0.25rem;
    }
    
    .news-icon-folder::before {
      content: "📁";
      margin-right: 0.25rem;
    }
    
    .news-icon-angle-right::before {
      content: "→";
      margin-left: 0.25rem;
    }
    
    .news-icon-chevron-down::before {
      content: "▼";
    }
    
    .news-icon-chevron-left::before {
      content: "←";
      margin-right: 0.25rem;
    }
    
    .news-icon-chevron-right::before {
      content: "→";
      margin-left: 0.25rem;
    }
    
    .news-icon-newspaper::before {
      content: "📰";
    }
    
    .news-icon-bars::before {
      content: "☰";
    }
    
    .news-icon-paper-plane::before {
      content: "✉️";
    }
    
    .news-icon-weibo::before {
      content: "微博";
      font-size: 0.75rem;
    }
    
    .news-icon-wechat::before {
      content: "微信";
      font-size: 0.75rem;
    }
    
    .news-icon-twitter::before {
      content: "推特";
      font-size: 0.75rem;
    }
    
    .news-icon-facebook::before {
      content: "脸书";
      font-size: 0.75rem;
    }
/* 新闻列表结束 */



/* 产品项目开始 */
/* 补充缺失的工具类定义 */
.df { display: flex; }
.spjz { justify-content: space-between; }
.czjz { align-items: center; }
.wrap { flex-wrap: wrap; }
.w1200 { width: 100%; max-width: 1200px; }

.lao05 { 
  width: 100%; 
  margin: 0 auto; 
  padding: 10px 0; 
  background-color: #F3F3F3;
}
.lao05a { 
  margin: 0 auto 24px; 
  position: relative;
  padding: 0 15px; /* 增加内边距防止内容贴边 */
}
.lao05aa { width: 35%; }
.lao05aa_a { 
  width: 96%; 
  margin: 0 auto; 
  padding: 20px 2%;
}
.lao05aa_a h3 { margin-bottom: 24px; }
.lao05aa_a h3 .lao05aa_aa { 
  color: #333; 
  margin-right: 8px; 
  font-weight: bold; 
  font-size: 52px; 
  line-height: 52px;
}
.lao05aa_a h3 .lao05aa_ab { 
  color: #060404; 
  font-weight: bold; 
  line-height: 30px; 
  padding-top: 4px;
}
.lao05aa_a p { margin: 0 auto; }
.lao05aa_a p, .lao05aa_a p a { 
  color: #060404; 
  line-height: 30px;
}

.lao05aa_b { border-bottom: 1px solid #333; }
.lao05ab { width: 30%; }
.lao05ab img { max-width: 80%; }
.lao05ac { width: 35%; }
.lao05ac h3 { text-align: right; }

/* 服务项目样式修复 */
.fwxm_nav {
  padding: 1.5rem 5%;
  background-color: #e3e2de;
  width: 100%;
  display: flex; /* 确保flex布局生效 */
  flex-wrap: wrap;
  gap: 1rem; /* 使用gap代替margin，更稳定 */
  box-sizing: border-box; /* 防止padding撑大容器 */
}
.nav_item {
  text-align: center;
  width: calc(25% - 0.75rem); /* 4列布局，减去gap的影响 */
  padding: 2rem 0;
  background-color: #c2b2a4;
  box-sizing: border-box; /* 确保padding不影响宽度计算 */
  transition: transform 0.3s ease; /* 增加悬停效果 */
}
.nav_item:hover {
  transform: translateY(-5px); /* 悬停上浮效果 */
}
.nav_item img {
  max-width: 50%;
  display: block;
  margin: 0 auto;
  height: auto; /* 确保图片比例正确 */
}
.nav_item .item_tit {
  margin-top: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: #333; /* 增加文字颜色确保可读性 */
}

/* 响应式优化 */
@media (max-width: 780px) {
  .lao05 { 
    background: url(../images/ls15sj.jpg) center top no-repeat; 
    background-size: cover; /* 改用cover更合适 */
    background-attachment: fixed;
  }
  .lao05aa, .lao05ab, .lao05ac { width: 100%; }
  .lao05ab img { max-width: 40%; margin: 0 auto; } /* 居中图片 */
  .lao05 .pcshow { display: none !important; }
  .lao05 .sjshow { display: flex !important; }
  
  /* 服务项在平板改为2列 */
  .nav_item {
    width: calc(50% - 0.5rem);
  }
}

@media (max-width: 480px) {
  .lao05ab img { max-width: 60%; }
  
  /* 服务项在手机改为1列 */
  .nav_item {
    width: 100%;
    margin-right: 0 !important;
  }
  
  /* 调整字体大小适配小屏幕 */
  .lao05aa_a h3 .lao05aa_aa {
    font-size: 36px;
    line-height: 36px;
  }
  .nav_item .item_tit {
    font-size: 1rem;
  }
}
/* 产品项目结束 */

/* 联系我们服务项目开始 */
    /* 容器布局 */
    .tab-container {
      display: flex;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      border-radius: 10px;
      overflow: hidden;
      background: white;
    }
    /* 左侧选项卡列表 */
    .tab-list {
      width: 200px;
      display: flex;
      flex-direction: column;
      background: #f1f3f5;
    }
    
    /* 选项卡项样式 */
    .tab-item {
      padding: 16px 12px;
      border-bottom: 1px solid #e9ecef;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
      font-size: 14px;
      line-height: 1.4;
    }
    
    .tab-item:hover {
      background-color: #e9ecef;
    }
    
    /* 激活态选项卡 */
    .tab-item.active {
      background-color: #4dabf7;
      color: white;
      font-weight: 500;
    }
    
    /* 右侧内容区 */
    .tab-content {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      padding: 20px;
      background: #fff;
    }
    
    /* 图片样式 */
    .tab-img {
      display: none;
      max-width: 100%;
      max-height: 100%;
      border-radius: 6px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: opacity 0.5s ease;
    }
    
    .tab-img.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    /* 响应式设计 - 移动端3×2布局 */
    @media (max-width: 760px) {
      .tab-container {
        flex-direction: column;
        border-radius: 8px;
      }
      
      .tab-list {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        background: #f8f9fa;
        border-bottom: 1px solid #e9ecef;
      }
      
      .tab-item {
        width: 33.333%; /* 3列布局 */
        border-bottom: none;
        border-right: 1px solid #e9ecef;
        padding: 14px 8px;
      }
      
      /* 每行的第三个元素去除右边框 */
      .tab-item:nth-child(3n) {
        border-right: none;
      }
      
      /* 最后一行添加底部边框 */
      .tab-item:nth-child(n+4) {
        border-bottom: 1px solid #e9ecef;
      }
      
      .tab-content {
        min-height: 350px;
        padding: 15px;
      }
    }
    
    /* 更小屏幕的优化 */
    @media (max-width: 480px) {
      .tab-item {
        font-size: 13px;
        padding: 12px 6px;
      }
      
      .tab-content {
        min-height: 300px;
      }
    }
    
    /* 标题样式 */
    .section-title {
      text-align: center;
      margin-bottom: 25px;
      color: #343a40;
      font-size: 24px;
      font-weight: 600;
    }
    
    /* 英文文本样式 */
    .en-text {
      font-size: 12px;
      opacity: 0.8;
    }
/* 联系我们服务项目结束 */

/* 服务中心开始 */
        .center-con{
          max-width: 1200px;
          margin: 0 auto;
        }
        .center-title {
            text-align: center;
            margin-bottom: 30px;
            padding: 0 10px;
        }

        .english-title {
            font-size: 36px;
            color: #b09780;
            margin: 0;
            padding-bottom: 5px;
            border-bottom: 3px solid #b09780;
            display: inline-block;
        }

        .chinese-title {
            font-size: 24px;
            color: #000;
            margin-top: 10px;
        }

        .info-div {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .brand-logo {
            text-align: center;
            margin-right: 30px;
            margin-bottom: 15px;
        }

        .star-icon {
            font-size: 24px;
            color: #b09780;
            margin-bottom: 5px;
        }

        .brand-logo p {
            font-size: 18px;
            color: #b09780;
            margin: 0;
        }

        .service-info {
            flex: 1;
            min-width: 300px;
        }

        .service-info p {
            font-size: 16px;
            color: #333;
            margin: 8px 0;
        }

        hr {
            border: none;
            border-top: 1px solid #b09780;
            margin: 20px 0;
        }

        .description-div {
            display: flex;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .text-content {
            flex: 1;
            margin-right: 20px;
            min-width: 300px;
        }

        .text-content p {
            font-size: 14px;
            color: #333;
            line-height: 1.8;
            margin: 10px 0;
            text-align: justify;
        }

        .image-content {
            flex: 0 0 auto;
            text-align: center;
            max-width: 350px;
        }

        .image-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            body {
                padding: 15px;
            }
            
            .english-title {
                font-size: 28px;
            }
            
            .chinese-title {
                font-size: 20px;
            }
            
            .info-div {
                flex-direction: column;
                text-align: center;
            }
            
            .brand-logo {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .service-info {
                width: 100%;
            }
            
            .description-div {
                flex-direction: column;
            }
            
            .text-content {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .image-content {
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 10px;
            }
            
            .english-title {
                font-size: 24px;
            }
            
            .chinese-title {
                font-size: 18px;
            }
            
            .brand-logo p {
                font-size: 16px;
            }
            
            .service-info p {
                font-size: 14px;
            }
            
            .text-content p {
                font-size: 13px;
            }
        }

        /* 额外增强样式 */
        .contact-info {
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
            border-left: 3px solid #b09780;
        }
        
        .contact-info h3 {
            color: #b09780;
            margin-top: 0;
        }
        
        .service-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 20px 0;
        }
        
        .feature {
            text-align: center;
            margin: 10px;
            flex: 1;
            min-width: 150px;
        }
        
        .feature-icon {
            font-size: 24px;
            color: #b09780;
            margin-bottom: 10px;
        }
/* 服务中心开始 */

/* 服务中心黑色模块开始 */
    .clause-section {
      color: #eaeaea; 
      padding: 40px;
      text-align: center;
      font-family: "Microsoft YaHei", sans-serif;
      background-image: url('../images/ls05.jpg'); 
      background-size: cover; 
      background-position: center;
    }
    .clause-title .clause-en {
      font-size: 32px;
      margin-bottom: 10px;
      color: #d4af37; /* 模拟金色标题 */
      font-weight: normal;
    }
    .clause-title .clause-zh {
      font-size: 24px;
      margin-bottom: 30px;
      font-weight: bold;
    }
    .clause-text {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 20px;
      text-align: left;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
/* 服务中心黑色模块结束 */

/*分页开始*/
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px; }
.pagination > li {
    display: inline; }
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857;
    text-decoration: none;
    color: #337ab7;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px; }
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px; }
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px; }
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #ddd; }
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #25B7D3;
    border-color: #25B7D3;
    cursor: default; }
/*分页结束*/

            /*专业服务*/
    .service-module {
            width: 1200px;
            margin: 0 auto;
        }
        
        /* 第一部分：文字介绍 */
        .service-intro {
            height: 130px;
            display: flex;
            align-items: center;
            background-color: #fff;
            padding: 20px 30px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            line-height: 1.6;
            font-size: 16px;
            color: #333;
            text-align: justify;
        }
        
        /* 第二部分：五个服务项目 */
        .service-container {
            width: 1200px;
            height: 400px;
            display: flex;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .service-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }
        
        .service-image {
            height: 50%;
            background-color: #f0f0f0;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-item:hover .service-image img {
            transform: scale(1.05);
        }
        
        .service-content {
            height: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 15px;
            text-align: center;
            background: linear-gradient(to bottom, #ffffff, #f9f9f9);
        }
        
        .service-title {
            font-size: 18px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 8px;
        }
        
        .service-divider {
            width: 30px;
            height: 2px;
            background-color: #c8a97e;
            margin: 8px 0;
        }
        
        .service-subtitle {
            font-size: 14px;
            color: #7f8c8d;
            font-style: italic;
        }
        
        /* 交替排列样式 */
        .service-item:nth-child(even) {
            flex-direction: column-reverse;
        }
        
        /* 移动端样式 */
       /* 移动端样式 */
        @media (max-width: 1200px) {
            .service-module {
                width: 100%;
            }
            
            .service-container {
                width: 100%;
            }
        }
        
        @media (max-width: 992px) {
            .service-container {
                height: auto;
                flex-wrap: wrap;
            }
            
            .service-item {
                flex: 0 0 50%;
                max-width: 50%;
            }
            
            .service-item:nth-child(even) {
                flex-direction: column;
            }
            
            .service-item:nth-child(4),
            .service-item:nth-child(5) {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding: 15px;
                align-items: flex-start;
            }
            
            .service-intro {
                height: auto;
                padding: 15px 20px;
                margin-bottom: 20px;
                font-size: 15px;
                line-height: 1.5;
            }
            
            .service-container {
                flex-direction: column;
                height: auto;
            }
            
            .service-item {
                flex: 1;
                max-width: 100%;
                flex-direction: column !important;
                margin-bottom: 1px;
            }
            
            .service-image {
                height: 180px;
            }
            
            .service-content {
                height: auto;
                padding: 20px 15px;
            }
            
            .service-title {
                font-size: 17px;
            }
            
            .service-subtitle {
                font-size: 13px;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 10px;
            }
            
            .service-intro {
                padding: 12px 15px;
                font-size: 14px;
                margin-bottom: 15px;
            }
            
            .service-image {
                height: 160px;
            }
            
            .service-content {
                padding: 15px 10px;
            }
            
            .service-title {
                font-size: 16px;
            }
            
            .service-divider {
                margin: 6px 0;
            }
        }

    /*专业结束*/
