@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
      font-family: "Noto Sans SC", "PingFang SC", Arial, 微软雅黑;
    font-weight: 400;
}
body {
  color: #333;
  line-height: 1.6;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
	margin-bottom: 20px;
  max-width: 100%;
  display: block;
}
.container {
  width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}
/* 全局变量 */ :root {
  --main-blue: #0099cc;
  --light-gray: #f5f5f5;
  --dark-gray: #666;
}
/* -------------------- 1. 顶部导航栏 -------------------- */
.header {
  height: 80px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}
.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 209px;
  height: 42px;
}
.nav-bar {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-list {
  display: flex;
  gap: 60px;
  position: relative;
}
.nav-item {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
}
.nav-item > a {
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}



.tech-pages {
    margin-top: 30px;
    text-align: center;
}
.tech-pages ul,
.tech-pages li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}
.tech-pages a,
.tech-pages span {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid #eee;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}
.tech-pages a:hover {
    background: #f5f5f5;
    border-color: #ddd;
}
.tech-pages .active span {
    background: #0066ff;
    color: #fff;
    border-color: #0066ff;
    font-weight: bold;
}

.glx-active a::after{
	content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-blue);
    transition: width 0.3s;
}
.glx-active a::after {
    width: 100%;
}
.nav-item > a:hover {
  color: var(--main-blue);
}
.nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--main-blue);
  transition: width 0.3s;
}
.nav-item:hover::after {
  width: 100%;
}
/* 下拉菜单 */
.dropdown {
  position: absolute;
  top: 80px;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 190px;
  display: none;
}
.nav-item:hover .dropdown {
  display: block;
}
.dropdown li {
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
}
.dropdown li:last-child {
  border-bottom: none;
}
.dropdown li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* 搜索框 */
.search-box {
  position: relative;
}
.search-input {
  width: 60px;
  height: 30px;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 0 10px;
  outline: none;
  transition: width 0.3s;
  background: url('https://cdn.bootcdn.net/ajax/libs/font-awesome/6.4.0/svgs/solid/magnifying-glass.svg') no-repeat center right 8px;
  background-size: 16px;
}
.search-box:hover .search-input {
  width: 180px;
  padding-right: 30px;
}
/* 语言切换 */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--dark-gray);
}
.lang-switch span.active {
  color: var(--main-blue);
}



/* -------------------- 2. 轮播图（修改为3组轮播） -------------------- */
.banner {
    /* 核心：全屏高度 */
    height: 100vh;
    min-height: 100vh;
    
    position: relative;
    color: #fff;
    overflow: hidden;
    
    /* 可选：让内容垂直居中（非常常用） */
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.banner-slide.active {
  opacity: 1;
}
.banner-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.banner-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-subtitle {
  font-size: 18px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
  animation-delay: 0.3s;
}
.banner-title {
  font-size: 48px;
  font-weight: bold;
  margin: 10px 0 15px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
  animation-delay: 0.5s;
}
.banner-en-title {
  font-size: 22px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
  animation-delay: 0.7s;
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.banner-next-btn {
  position: absolute;
  left: 600px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1;
  margin-top: 150px;
}
.banner-next-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.banner-indicators {
  position: absolute;
  bottom: 30px;
  margin-left: 50%;
  display: flex;
  gap: 10px;
  z-index: 1;
}
.banner-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.banner-indicator.active {
  background: #fff;
}
.banner-scroll {
  position: absolute;
  right: 100px;
  bottom: 50px;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
}
.banner-scroll::before {
  content: "";
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}
/* -------------------- 通用标题样式（修改为中文覆盖英文） -------------------- */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.section-title .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 110px;
    font-family: Arial;
    font-weight: bold;
  color: rgba(0, 0, 0, 0.05);
  text-transform: uppercase;
  z-index: 0;
}
.section-title h2 {
    font-size: 42px;
    position: relative;
    z-index: 1;
    line-height: 44px;
    color: #333;
    font-weight: 600;
}
.section-title .line {
  width: 60px;
  height: 2px;
  background: var(--main-blue);
  margin: 10px auto 0;
  transition: width 0.3s;
}
.section-title:hover .line {
  width: 100px;
}
/* -------------------- 3. 服务介绍模块（修改文字位置和hover效果） -------------------- */
.service-section {
  padding: 80px 0;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.service-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 350px;
}
.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-item:hover img {
  transform: scale(1.05);
}
.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  transition: background 0.3s;
}
.service-text-wrapper {
  position: absolute;
  bottom: 13%;
  left: 30px;
  transition: bottom 0.3s;
}
.service-en-title {
    margin-bottom: 5px;
    transition: transform 0.3s;
    font-size: 24px;
    line-height: 26px;
    opacity: 0.7;
}
.service-zh-title {
  text-align: left;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  transition: transform 0.3s;
}
.service-line {
    margin: 0;
    width: 40px;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s;
}
.service-desc {
  opacity: 0;
  margin-top: 15px;
  font-size: 14px;
  transition: opacity 0.3s;
}
.service-item:hover .service-overlay {
  background: rgba(0, 0, 0, 0.6);
}
.service-item:hover .service-text-wrapper {
  bottom: 45%;
}
.service-item:hover .service-en-title, .service-item:hover .service-zh-title {
  transform: translateY(-10px);
}
.service-item:hover .service-line {
  width: 80px;
}
.service-item:hover .service-desc {
  opacity: 1;
}
/* -------------------- 4. 关于我们模块（修改高度、标题、布局） -------------------- */
.about-section {
  height: 700px;
  background: url('/uploadfile/202605/92d003a28a43d8f6caf94ef7b3f5fb1d.jpg') center/cover no-repeat;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
}
/*
.about-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
*/
.about-content {
  position: relative;
  z-index: 1;
  width: 1320px;
  margin: 0 auto;
  padding-left: 15px;
}
.about-text {
  width: 68%;    line-height: 1.8;
}
.about-title {
  text-align: left;
  margin-bottom: 30px;
  position: relative;
}
.about-title .bg-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 60px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  z-index: 0;
}
.about-title h2 {
  font-size: 32px;
  position: relative;
  z-index: 1;
  margin-left: 80px;
}
.about-title .line {
  width: 60px;
  height: 2px;
  background: var(--main-blue);
  margin: 10px 0 0 100px;
  transition: width 0.3s;
}
.about-title:hover .line {
  width: 100px;
}
.about-desc {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
  animation-delay: 0.7s;
}
.about-btn {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #fff;
  border-radius: 20px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
  animation-delay: 0.9s;
  transition: all 0.3s;
}
.about-btn:hover {
  background: #fff;
  color: var(--main-blue);
}
/* -------------------- 5. 数据与资质模块（修改高度，保持标题样式一致） -------------------- */
.data-section {
    padding: 200px 0;
    color: #fff;
    background: url(/uploadfile/202606/31726fc935aa8f70afb7f699fa2a7528.jpg) center / cover no-repeat;
}


.data-section .container-1 h2 {
    color: #ffffff!important;
}




.data-section .section-title .bg-text {
  color: rgba(255, 255, 255, 0.1);
}
.data-list {
  margin-top: 150px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  text-align: center;
}
.data-item {
  position: relative;
}
.data-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.3);
}
.data-item:first-child::before {
  display: none;
}
.data-label {
  font-size: 16px;
  margin-bottom: 10px;
  opacity: 0.8;
}
.data-num {
  font-size: 48px;
  font-weight: bold;
}
/* -------------------- 6. 新闻中心模块 -------------------- */
.news-section {
  padding: 80px 0;
}
.news-content {
  display: flex;
  gap: 30px;
}
.news-top {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.news-top img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-top:hover img {
  transform: scale(1.05);
}
.news-top-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
}
.news-top-title {
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-top-date {
  font-size: 14px;
  opacity: 0.8;
  font-weight: normal;
}
.news-top-desc {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 10px;
}
.news-top-link {
  color: var(--main-blue);
  font-size: 14px;
}
.news-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-card {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: all 0.3s;
}
.news-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.news-card-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-date {
  font-size: 14px;
  color: #999;
  font-weight: normal;
}
.news-card-desc {
  font-size: 14px;
  color: var(--dark-gray);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* -------------------- 7. 页脚（修改二维码区域布局） -------------------- */
.footer {
  background: #f0f0f0;
  padding: 60px 0 30px;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: #666;
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: var(--main-blue);
}
.footer-qrcode-area {
  display: flex;
  gap: 20px;
}
.footer-qrcode {
  text-align: center;
}
.footer-qrcode img {
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
  border: 1px solid #ddd;
  padding: 5px;
  background: #fff;
}
.footer-qrcode p {
  font-size: 14px;
  color: #666;
}
.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-social {
  display: flex;
  justify-content: center;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--main-blue);
  color: #fff;
  border-color: var(--main-blue);
}
.friend-link {
  position: relative;
}
.friend-link-btn {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  background: #fff;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
}
.friend-link-list {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  display: none;
}
.friend-link:hover .friend-link-list {
  display: block;
}
.friend-link-list li {
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.friend-link-list li:last-child {
  border-bottom: none;
}
.copyright {
 display: block !important;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 14px;
}
/* 响应式适配 */
@media (max-width: 1320px) {
  .container {
    width: 100%;
  }
}
.footer-contact-item{
	margin-top: 10px;
}

/* -------------------- 1. 顶部Banner -------------------- */
        .service-banner {
    height: 280px;
    background-position: center;
    background-size: cover;
    background-repeat: repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
        .service-banner::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(0 0 0 / 14%);
        }
    .banner-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 1320px;
    margin: 0 auto;
}
        .banner-en-title {
            font-size: 20px;
            margin-bottom: 10px;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s ease forwards;
            animation-delay: 0.3s;
        }
        .banner-zh-title {
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s ease forwards;
            animation-delay: 0.5s;
        }
        .banner-line {
            width: 60px;
            height: 2px;
            background: var(--main-blue);
            margin: 0 auto;
            transition: width 0.3s;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s ease forwards;
            animation-delay: 0.7s;
        }
        .service-banner:hover .banner-line {
            width: 100px;
        }
        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

.container-1{
    width: 1320px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-direction: column;
}

/* 查看更多按钮外层 */
.faq-more-wrap {
    text-align: center;
    margin-top: 30px;
}

/* 查看更多按钮 */
.faq-more-btn {
    padding: 12px 35px;
    background: #0099CC;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-more-btn:hover {
    background: #007799;
}

.faq-more-btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

ul { list-style: none; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        .faq-container {
            width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }
        :root {
            --faq-main-blue: #0099cc;
            --faq-light-gray: #f5f5f5;
            --faq-dark-gray: #666;
        }

        .faq-tab-section {
            margin-top: 40px;
        }
        .faq-tab-header {
            display: flex;
            justify-content: center;
            border-bottom: 1px solid #eee;
        }
        .faq-tab-item {
            padding: 15px 60px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
        }
        .faq-tab-item.active {
            color: #fff;
            background: var(--faq-main-blue);
            border-bottom-color: var(--faq-main-blue);
        }
        .faq-tab-content {
            padding: 40px 0;
        }
        .faq-tab-title {
            text-align: center;
            font-size: 24px;
            margin-bottom: 30px;
        }

        .faq-list {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 4px;
            padding: 30px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: faq-slideUp 0.6s ease forwards;
        }
        .faq-list:nth-child(1) { animation-delay: 0.1s; }
        .faq-list:nth-child(2) { animation-delay: 0.2s; }
        .faq-list:nth-child(3) { animation-delay: 0.3s; }
        .faq-list:nth-child(4) { animation-delay: 0.4s; }
        .faq-list:nth-child(5) { animation-delay: 0.5s; }
        @keyframes faq-slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .faq-question {
            flex: 1;
        }
        .faq-question h4 {
            font-size: 16px;
            margin-bottom: 10px;
        }
        .faq-question p {
            font-size: 14px;
            color: var(--faq-dark-gray);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .faq-btn {
            flex-shrink: 0;
            background: var(--faq-main-blue);
            color: #fff;
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s;
        }
        .faq-btn:hover {
            background: #007799;
        }
        .faq-expand-more {
            text-align: center;
            margin-top: 30px;
            cursor: pointer;
            color: var(--faq-dark-gray);
            font-size: 14px;
        }
        .faq-expand-more i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        .faq-expand-more:hover i {
            transform: translateY(3px);
        }

        .faq-contact-section {
            margin-top: 60px;
            background: url('/uploadfile/202605/1f37879410365f13f64162a6446614f3.jpg') center/cover no-repeat;
            padding: 60px 0;
            color: #fff;
            text-align: center;
            position: relative;
        }
        .faq-contact-section::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
        }
        .faq-contact-content {
            position: relative;
            z-index: 1;
        }
        .faq-contact-title {
            font-size: 24px;
            margin-bottom: 30px;
        }
        .faq-contact-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
        }
        .faq-contact-btn {
            background: #fff;
            color: #333;
            padding: 10px 30px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            cursor: pointer;
        }
        .faq-contact-btn:hover {
            background: var(--faq-light-gray);
        }
        .faq-contact-btn.email {
            color: var(--faq-main-blue);
        }
        .faq-contact-btn.message {
            color: var(--faq-main-blue);
        }
        .faq-contact-hotline {
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .faq-contact-hotline i {
            color: var(--faq-main-blue);
            font-size: 20px;
        }
		


ul { list-style: none; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        .tech-deta-container {
            width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }
        :root {
            --tech-deta-main-blue: #0099cc;
            --tech-deta-light-gray: #f5f5f5;
            --tech-deta-dark-gray: #666;
        }

        /* 面包屑 */
        .tech-deta-breadcrumb {
            padding: 20px 0;
            font-size: 14px;
            color: var(--tech-deta-dark-gray);
            border-bottom: 1px solid #eee;
        }
        .tech-deta-breadcrumb a {
            color: var(--tech-deta-dark-gray);
        }
        .tech-deta-breadcrumb a:hover {
            color: var(--tech-deta-main-blue);
        }

        /* 标题区域 */
        .tech-deta-faq-header {
            text-align: center;
            padding: 40px 0;
        }
        .tech-deta-faq-title {
            font-size: 36px;
            margin-bottom: 20px;
        }
        .tech-deta-faq-date {
            font-size: 16px;
            color: var(--tech-deta-dark-gray);
        }

        /* 正文内容 */
        .tech-deta-faq-content {
            padding: 40px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .tech-deta-faq-content p {
            font-size: 16px;
            color: var(--tech-deta-dark-gray);
            line-height: 2;
        }

        /* 分享与导航 */
        .tech-deta-faq-footer {
            padding: 30px 0;
            display: flex;
            justify-content: flex-end; /* 分享移到右侧 */
            align-items: center;
        }
        .tech-deta-share {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .tech-deta-share span {
            font-size: 14px;
            color: var(--tech-deta-dark-gray);
        }
        .tech-deta-share-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--tech-deta-light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--tech-deta-main-blue);
            cursor: pointer;
            transition: all 0.3s;
        }
        .tech-deta-share-icon:hover {
            background: var(--tech-deta-main-blue);
            color: #fff;
        }
        .tech-deta-nav {
            display: flex;
            justify-content: space-between;
            width: 100%;
            margin-top: 40px;
        }
        .tech-deta-nav-item {
            width: 30%;
            padding: 15px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .tech-deta-nav-label {
            font-size: 14px;
            color: var(--tech-deta-dark-gray);
            margin-bottom: 5px;
        }
        .tech-deta-nav-title {
            font-size: 16px;
        }
        .tech-deta-nav-title:hover {
            color: var(--tech-deta-main-blue);
        }
        .tech-deta-back-list {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            color: var(--tech-deta-dark-gray);
            cursor: pointer;
            transition: color 0.3s;
        }
        .tech-deta-back-list:hover {
            color: var(--tech-deta-main-blue);
        }

ul { list-style: none; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        .tech-container {
            width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }
        :root {
            --tech-main-blue: #0099cc;
            --tech-light-gray: #f5f5f5;
            --tech-dark-gray: #666;
        }

        .tech-tab-section {
            margin-top: 40px;
        }
        .tech-tab-header {
            display: flex;
            justify-content: center;
            border-bottom: 1px solid #eee;
        }
        .tech-tab-item {
            padding: 15px 60px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
        }
        .tech-tab-item.active {
            color: #fff;
            background: var(--tech-main-blue);
            border-bottom-color: var(--tech-main-blue);
        }
        .tech-tab-content {
            padding: 40px 0;
        }
        .tech-tab-title {
            text-align: center;
            font-size: 24px;
            margin-bottom: 30px;
        }

        .tech-list {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 4px;
            padding: 20px 30px;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            opacity: 0;
            transform: translateY(30px);
            animation: tech-slideUp 0.6s ease forwards;
        }
		.tech-list:hover .tech-name span {
    color: 0099cc !important;
}
        .tech-list:nth-child(1) { animation-delay: 0.1s; }
        .tech-list:nth-child(2) { animation-delay: 0.2s; }
        .tech-list:nth-child(3) { animation-delay: 0.3s; }
        .tech-list:nth-child(4) { animation-delay: 0.4s; }
        .tech-list:nth-child(5) { animation-delay: 0.5s; }
        @keyframes tech-slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .tech-name {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
        }
        .tech-name i {
            color: var(--tech-main-blue);
            font-size: 20px;
        }
        .tech-download-btn {
            border: 1px solid #eee;
            padding: 8px 20px;
            border-radius: 4px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s;
        }

        .tech-download-btn:hover{
            background: #0099cc;
        }
        .tech-expand-more {
            text-align: center;
            margin-top: 30px;
            cursor: pointer;
            color: var(--tech-dark-gray);
            font-size: 14px;
        }
        .tech-expand-more i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        .tech-expand-more:hover i {
            transform: translateY(3px);
        }

        .tech-contact-section {
            margin-top: 60px;
            background: url('/uploadfile/202605/1f37879410365f13f64162a6446614f3.jpg') center/cover no-repeat;
            padding: 60px 0;
            color: #fff;
            text-align: center;
            position: relative;
        }
        .tech-contact-section::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
        }
        .tech-contact-content {
            position: relative;
            z-index: 1;
        }
        .tech-contact-title {
            font-size: 24px;
            margin-bottom: 30px;
        }
        .tech-contact-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
        }
        .tech-contact-btn {
            background: #fff;
            color: #333;
            padding: 10px 30px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            cursor: pointer;
        }
        .tech-contact-btn:hover {
            background: var(--tech-light-gray);
        }
        .tech-contact-btn.email {
            color: var(--tech-main-blue);
        }
        .tech-contact-btn.message {
            color: var(--tech-main-blue);
        }
        .tech-contact-hotline {
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .tech-contact-hotline i {
            color: var(--tech-main-blue);
            font-size: 20px;
        }



 ul { list-style: none; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        .gs-deta-container {
            width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }
        :root {
            --gs-deta-main-blue: #0099cc;
            --gs-deta-light-gray: #f5f5f5;
            --gs-deta-dark-gray: #666;
        }

        /* ===================== 顶部分类菜单（A标签跳转版） ===================== */
        .gs-deta-category {
            margin-top: 40px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: center;
        }
        .gs-deta-category-item {
            padding: 15px 50px;
            font-size: 16px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
        }
        .gs-deta-category-item.active {
            color: var(--gs-deta-main-blue);
        }
        .gs-deta-category-item.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 100%;
            height: 3px;
            background: var(--gs-deta-main-blue);
        }
        .gs-deta-category-item:hover {
            color: var(--gs-deta-main-blue);
        }

        /* ===================== 新闻列表 ===================== */
        .gs-deta-news-list {
            padding: 40px 0;
        }
        .gs-deta-news-item {
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 25px 20px;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
            /* 滑入动画 */
            opacity: 0;
            transform: translateY(30px);
            animation: gs-deta-slideUp 0.6s ease forwards;
        }
        /* 依次滑入 */
        .gs-deta-news-item:nth-child(1) { animation-delay: 0.1s; }
        .gs-deta-news-item:nth-child(2) { animation-delay: 0.2s; }
        .gs-deta-news-item:nth-child(3) { animation-delay: 0.3s; }
        .gs-deta-news-item:nth-child(4) { animation-delay: 0.4s; }
        .gs-deta-news-item:nth-child(5) { animation-delay: 0.5s; }

        @keyframes gs-deta-slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 鼠标悬停效果 */
        .gs-deta-news-item:hover {
            background: #f9f9f9;
            padding-left: 30px;
        }

        /* 左图 */
        .gs-deta-news-img {
            width: 400px;
            height: 220px;
            object-fit: cover;
            flex-shrink: 0;
        }

        /* 右文 */
        .gs-deta-news-content {
            flex: 1;
        }
        .gs-deta-news-title {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 10px;
        }
        .gs-deta-news-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 10px;
        }
        .gs-deta-news-date {
            font-size: 13px;
            color: #999;
        }

        /* 右侧箭头（修改为带边框和hover背景） */
        .gs-deta-news-arrow {
            width: 50px;
            height: 50px;
            border: 1px solid #ccc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 18px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        .gs-deta-news-item:hover .gs-deta-news-arrow {
            background: var(--gs-deta-main-blue);
            border-color: var(--gs-deta-main-blue);
            color: #fff;
            transform: translateX(5px);
        }

        /* ===================== 更多新闻按钮 ===================== */
        .gs-deta-news-more {
            text-align: center;
            margin: 30px 0;
        }
        .gs-deta-news-more button {
            padding: 12px 40px;
            border: 1px solid #ddd;
            background: #fff;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .gs-deta-news-more button:hover {
            background: var(--gs-deta-main-blue);
            color: #fff;
            border-color: var(--gs-deta-main-blue);
        }


.hy-container {
            width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }
        :root {
            --hy-main-blue: #0099cc;
            --hy-light-gray: #f5f5f5;
            --hy-dark-gray: #666;
        }

        .hy-category {
            margin-top: 40px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: center;
        }
        .hy-category-item {
            padding: 15px 50px;
            font-size: 16px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
        }
        .hy-category-item.active {
            color: var(--hy-main-blue);
        }
        .hy-category-item.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 100%;
            height: 3px;
            background: var(--hy-main-blue);
        }
        .hy-category-item:hover {
            color: var(--hy-main-blue);
        }

        .hy-news-list {
            padding: 40px 0;
        }
        .hy-news-item {
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 25px 20px;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: hy-slideUp 0.6s ease forwards;
        }
        .hy-news-item:nth-child(1) { animation-delay: 0.1s; }
        .hy-news-item:nth-child(2) { animation-delay: 0.2s; }
        .hy-news-item:nth-child(3) { animation-delay: 0.3s; }

        @keyframes hy-slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hy-news-item:hover {
            background: #f9f9f9;
            padding-left: 30px;
        }

        .hy-news-img {
            width: 200px;
            height: 140px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .hy-news-content {
            flex: 1;
        }
        .hy-news-title {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 10px;
        }
        .hy-news-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 10px;
        }
        .hy-news-date {
            font-size: 13px;
            color: #999;
        }

        /* 箭头样式统一修改 */
        .hy-news-arrow {
            width: 50px;
            height: 50px;
            border: 1px solid #ccc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 18px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        .hy-news-item:hover .hy-news-arrow {
            background: var(--hy-main-blue);
            border-color: var(--hy-main-blue);
            color: #fff;
            transform: translateX(5px);
        }

        .hy-news-more {
            text-align: center;
            margin: 30px 0;
        }
        .hy-news-more button {
            padding: 12px 40px;
            border: 1px solid #ddd;
            background: #fff;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .hy-news-more button:hover {
            background: var(--hy-main-blue);
            color: #fff;
            border-color: var(--hy-main-blue);
        }
.gs-about-container {
            width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }
        :root {
            --gs-about-main-blue: #0099cc;
            --gs-about-light-gray: #f5f5f5;
            --gs-about-dark-gray: #666;
        }

   
   .gs-about-tab-header {
    display: flex;
    width: 100%; /* 占满整行 */
    border-bottom: 1px solid #eee;
}

/* 核心：三等分 */
.faq-tab-item {
    flex: 1; /* 自动均分宽度 */
    padding: 23px 15px; /* 内边距，不要用固定 60px */
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    text-align: center; /* 文字居中 */    font-weight: 500;
}

.faq-tab-item.active {
    color: #fff;
    background: var(--faq-main-blue);
    border-bottom-color: var(--faq-main-blue);
}

        /* 2. 公司简介 - 左右结构 + 图片放大hover + 滑入动画 */
        .gs-about-company-section {
            padding: 60px 0;
            display: flex;
            align-items: center;
            gap: 60px;
        }
        .gs-about-img-wrap {
            width: 50%;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
        }
        .gs-about-img-wrap img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .gs-about-img-wrap:hover img {
            transform: scale(1.05);
        }
        .gs-about-text-wrap {
			
			align-self: flex-start;
            width: 50%;
        }
    .gs-about-text-wrap h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 600;
}
        .gs-about-text-wrap p {
            font-size: 14px;
            color: var(--gs-about-dark-gray);
            margin-bottom: 10px;
        }

        /* 3. 发展历程 - 背景图 + 时间线切换 */
        .gs-about-timeline-section {
    background: url('/uploadfile/202605/8db0f7f7dfc92956ee08a673e699c6ed.jpg') center/cover no-repeat;
    padding: 120px 0;
    color: #fff;
    position: relative;
}
.gs-about-timeline-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 24%);
}
.gs-about-timeline-content {
    position: relative;
    z-index: 1;
    width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}
.gs-about-timeline-title {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 600;
}
.gs-about-timeline-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 130px;
    margin-bottom: 30px;
    position: relative;
}

/* 隐藏原来的横线元素 */
.gs-about-timeline-slider .line-left,
.gs-about-timeline-slider .line-right {
    display: none;
}

/* 使用左右独立的绝对定位横线，完全不经过元素区域 */
.gs-about-timeline-slider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: calc(50% - 220px);
    height: 1px;
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%);
    z-index: 0;
}

.gs-about-timeline-slider::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: calc(50% - 220px);
    height: 1px;
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%);
    z-index: 0;
}

.gs-about-timeline-side-year,
.gs-about-timeline-year,
.gs-about-timeline-btn {
    position: relative;
    z-index: 2;
    background: transparent;
}

.gs-about-timeline-side-year {
    font-size: 60px;
    opacity: 0.6;
    position: relative;
    z-index: 2;
    background: transparent;
}

.gs-about-timeline-year {
    font-size: 60px;
    font-weight: bold;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    background: transparent;
}

.gs-about-timeline-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.gs-about-timeline-btn:hover {
    background: var(--gs-about-main-blue);
    border-color: var(--gs-about-main-blue);
}

.gs-about-timeline-text {
    font-size: 16px;
    margin-top: 20px;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .gs-about-timeline-slider {
        gap: 30px;
    }
    .gs-about-timeline-side-year {
        font-size: 30px;
    }
    .gs-about-timeline-year {
        font-size: 30px;
        padding: 0 15px;
    }
    .gs-about-timeline-slider::before,
    .gs-about-timeline-slider::after {
        width: calc(50% - 100px);
    }
}
        /* 4. 使命愿景价值观 - 三列卡片 + 底部滑入 */
        .gs-about-value-section {
            padding: 60px 0;
        }
        .gs-about-value-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            text-align: center;
        }
        .gs-about-value-item {
            opacity: 0;
            transform: translateY(30px);
            animation: gs-about-slideUp 0.6s ease forwards;
            position: relative;
            padding: 0 20px;
        }
        /* 左右竖线 */
        .gs-about-value-item::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 100px;
            background: #cad1d3;
        }
        .gs-about-value-item::after {
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 100px;
            background: #cad1d3;
        }
        /* 单独去掉 愿景 的竖线 */
        .gs-about-value-item:nth-child(2)::before,
        .gs-about-value-item:nth-child(2)::after {
            display: none;
        }

.gs-about-value-icon img {
    text-align: center;
    margin: 0 auto;
}


        .gs-about-value-item:nth-child(1) { animation-delay: 0.1s; }
        .gs-about-value-item:nth-child(2) { animation-delay: 0.2s; }
        .gs-about-value-item:nth-child(3) { animation-delay: 0.3s; }
        @keyframes gs-about-slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .gs-about-value-icon {
            font-size: 60px;
            color: var(--gs-about-main-blue);
            margin-bottom: 20px;
        }
 .gs-about-value-title {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}
        .gs-about-value-desc {
            font-size: 14px;
            color: var(--gs-about-dark-gray);
        }


.recruit-container {
            width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }
        :root {
            --recruit-main-blue: #0099cc;
            --recruit-bg-gray: #f5f7fa;
            --recruit-detail-gray: #f7f8fa;
            --recruit-dark-gray: #666;
        }

        .recruit-tab-section {
            margin-top: 40px;
        }
        .recruit-tab-header {
            display: flex;
            justify-content: center;
            border-bottom: 1px solid #eee;
        }
        .recruit-tab-item {
            padding: 15px 60px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
        }
        .recruit-tab-item.active {
            color: #fff;
            background: var(--recruit-main-blue);
            border-bottom-color: var(--recruit-main-blue);
        }

        .recruit-job-section {
            padding: 60px 0;
        }
        .recruit-job-table {
            width: 100%;
            border-collapse: collapse;
        }
        .recruit-job-header {
            background: var(--recruit-bg-gray);
        }
        .recruit-job-header th {
            padding: 16px;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            text-align: center;
        }
        .recruit-job-row {
            background: #fff;
            border-bottom: 1px solid #eee;
        }
        .recruit-job-row td {
            padding: 18px 12px;
            font-size: 14px;
            text-align: center;
        }
        .recruit-job-toggle {
            cursor: pointer;
            font-size: 26px;
            font-weight: bold;
            color: #333;
            display: inline-block;
            width: 30px;
            height: 30px;
            line-height: 30px;
            text-align: center;
        }
        .recruit-job-detail {
            background: var(--recruit-detail-gray);
            display: none;
        }
        .recruit-job-detail.active {
            display: table-row;
        }
        .recruit-detail-content {
            display: flex;
            justify-content: space-between;
            padding: 30px 20px;
            gap: 60px;
        }
        .recruit-detail-left,
        .recruit-detail-right {
            width: 50%;
            font-size: 14px;
            line-height: 1.8;
        }
        .recruit-detail-left h4,
        .recruit-detail-right h4 {
            font-size: 15px;
            margin-bottom: 12px;
            color: #333;
        }
        .recruit-detail-left ul,
        .recruit-detail-right ul {
            list-style: decimal;
            padding-left: 20px;
        }
        .recruit-detail-left li,
        .recruit-detail-right li {
            margin-bottom: 6px;
        }
        .recruit-apply-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 8px 30px;
            background: var(--recruit-main-blue);
            color: #fff;
            border-radius: 3px;
            font-size: 14px;
        }
        .recruit-more-wrap {
            width: 100%;
            text-align: center;
            margin-top: 20px;
        }
        .recruit-more-btn {
            display: inline-block;
            padding: 12px 40px;
            background: var(--recruit-bg-gray);
            font-size: 14px;
            color: #333;
            cursor: pointer;
            border-radius: 4px;
        }


.zxly-container {
            width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }
        :root {
            --zxly-main-blue: #0099cc;
            --zxly-light-gray: #f5f7fa;
            --zxly-dark-gray: #666;
        }

        .zxly-tab-section {
            margin-top: 40px;
        }
        .zxly-tab-header {
            display: flex;
            justify-content: center;
            border-bottom: 1px solid #eee;
        }
        .zxly-tab-item {
            padding: 15px 60px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
        }
        .zxly-tab-item.active {
            color: #fff;
            background: var(--zxly-main-blue);
            border-bottom-color: var(--zxly-main-blue);
        }

        .zxly-map-section {
            margin-top: 20px;
        }
        .zxly-map-placeholder {
            width: 100%;
            height: 400px;
            background: #888;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
        }

        .zxly-form-section {
            padding: 60px 0;
        }
        .zxly-contact-form {
            width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .zxly-form-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 30px;
        }
        .zxly-form-row {
            display: flex;
            gap: 30px;
            margin-bottom: 20px;
        }
        .zxly-form-group {
            flex: 1;
        }
        .zxly-form-group.full {
            width: 100%;
        }
        .zxly-form-group label {
            display: block;
            font-size: 16px;
            margin-bottom: 8px;
        }

        /* ========== 自定义下拉菜单样式 ========== */
        .zxly-custom-select {
            position: relative;
            width: 100%;
        }
        .zxly-select-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            border: 1px solid #ddd;
            background: #fff;
            cursor: pointer;
            font-size: 16px;
            color: #333;
        }
        .zxly-select-trigger i {
            transition: transform 0.3s;
        }
        .zxly-select-trigger.open i {
            transform: rotate(180deg);
        }
        .zxly-select-options {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #fff;
            border: 1px solid #ddd;
            border-top: none;
            list-style: none;
            display: none;
            z-index: 10;
        }
        .zxly-select-options.open {
            display: block;
        }
        .zxly-select-option {
            padding: 15px;
            cursor: pointer;
            font-size: 16px;
            color: #333;
            background: #fff;
            transition: all 0.2s;
        }

        /* 核心：通过父元素 hover 强制重置所有选项，再给当前 hover 项最高优先级 */
        .zxly-select-options:hover .zxly-select-option {
            background: #fff !important;
            color: #333 !important;
        }
        .zxly-select-options .zxly-select-option:hover {
            background: var(--zxly-main-blue) !important;
            color: #fff !important;
        }

        /* 打开时，默认第一项高亮（仅当父元素未被 hover 时生效） */
        .zxly-select-options:not(:hover) .zxly-select-option:first-child {
            background: var(--zxly-main-blue);
            color: #fff;
        }

        .zxly-form-group input,
        .zxly-form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            font-size: 16px;
            color: #666;
        }
        .zxly-form-group textarea {
            height: 200px;
            resize: none;
        }
        .zxly-submit-btn {
            display: block;
            margin: 30px auto 0;
            background: var(--zxly-main-blue);
            color: #fff;
            border: none;
            padding: 12px 60px;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .zxly-submit-btn:hover {
            background: #007799;
        }



 .lx-container {
      width: 1320px;
      margin: 60px auto;
      display: flex;
      gap: 40px;
    }

    .lx-left {
      width: 35%;
      background: #ffffff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      height: fit-content;
      position: sticky;
      top: 40px;
    }

    .lx-right {
      width: 65%;
    }

    .lx-jy-tabservice-title {
      font-size: 22px;
      font-weight: 600;
      color: #222;
      margin-bottom: 28px;
      position: relative;
      padding-bottom: 14px;
    }
    .lx-jy-tabservice-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 3px;
      background: #0991c3;
      border-radius: 3px;
    }

    .lx-jy-tabservice {
      background: #fff;
      padding: 35px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      margin-bottom: 40px;
    }

    /* 一级菜单（无a标签） */
    .lx-menu-item {
      margin-bottom: 12px;
      border-radius: 12px;
      overflow: hidden;
    }
    .lx-menu-title {
      padding: 16px 20px;
      background: #f9fafb;
      border-radius: 10px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 500;
      color: #333;
      transition: all 0.3s ease;
      border: 1px solid #eee;
      position: relative;
      overflow: hidden;
    }
    .lx-menu-title::before {
      content: '';
      position: absolute;
      left: -100%;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
      transition: 0.6s ease;
    }
    .lx-menu-title:hover::before {
      left: 100%;
    }
    .lx-menu-title:hover {
      background: #eff6ff;
      color: #3b82f6;
      border-color: #dbeafe;
    }

    .lx-menu-title .lx-arrow {
      width: 12px;
      height: 12px;
      border-right: 2px solid #666;
      border-bottom: 2px solid #666;
      transform: rotate(45deg);
      transition: 0.3s ease;
    }

    .lx-open > .lx-menu-title {
      background: #3b82f6;
      color: #fff;
      border-color: #3b82f6;
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    }
    .lx-open > .lx-menu-title .lx-arrow {
      transform: rotate(135deg);
      border-color: #fff;
    }

    /* 二级菜单 */
    .lx-sub-menu {
      padding-left: 12px;
      margin-top: 10px;
      display: none;
      animation: lxFadeIn 0.3s ease;
    }
    @keyframes lxFadeIn {
      from { opacity: 0; transform: translateY(5px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .lx-sub-menu > li {
      margin-bottom: 8px;
      border-radius: 8px;
      overflow: hidden;
    }

    /* 二级a标签基础样式 */
    .lx-sub-menu > li a.lx-menu-title {
      background: #f8fafc;
      border-radius: 8px;
      padding: 14px 20px;
      font-weight: 400;
      font-size: 14.5px;
      border: 1px solid #f0f2f5;
      position: relative;
      border-left: 3px solid transparent;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: 0.3s;
    }
    .lx-sub-menu > li a.lx-menu-title:hover {
      background: #e0e7ff;
      color: #3b82f6;
      border-color: #c7d2fe;
      border-left-color: #3b82f6;
    }

    /* 有三级的二级菜单样式 */
    .lx-sub-menu > li.lx-has-third.lx-open a.lx-menu-title {
      background: #eff6ff;
      color: #3b82f6;
      border-color: #bfdbfe;
      border-left-color: #3b82f6;
      box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
    }
    .lx-sub-menu > li.lx-has-third a.lx-menu-title .lx-arrow {
      border-color: #3b82f6;
    }

    /* 三级菜单 带a标签 */
    .lx-third-menu {
      padding-left: 12px;
      margin-top: 8px;
      display: none;
      animation: lxFadeIn 0.2s ease;
    }
    .lx-third-menu li a {
      display: block;
      padding: 12px 20px;
      background: #f1f5f9;
      border-radius: 6px;
      font-size: 14px;
      color: #555;
      margin-bottom: 6px;
      transition: 0.3s ease;
      border: 1px solid #e2e8f0;
    }
    .lx-third-menu li a:hover {
      background: #dbeafe;
      color: #3b82f6;
      border-color: #bfdbfe;
      transform: translateX(2px);
    }

    /* 展开控制 */
    .lx-open > .lx-sub-menu,
    .lx-open > .lx-third-menu {
      display: block;
    }

    /* ==================== 右侧统一改为 jy-tabservice 开头 ==================== */
    .lx-jy-tabservice-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 24px;
      border-bottom: 1px solid #eee;
      padding-bottom: 10px;
    }
    .lx-jy-tabservice-nav button {
      padding: 0;
      border: none;
      background: none;
      font-size: 16px;
      font-weight: 500;
      color: #666;
      cursor: pointer;
      position: relative;
      transition: 0.3s;
    }




   .lx-jy-tabservice-nav button.lx-jy-active {
    color: #0991c3;
}
    .lx-jy-tabservice-nav button.lx-jy-active::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 100%;
      height: 2px;
      background: #0991c3;
    }



   



    .lx-jy-tabservice-nav button:hover {
      color: #0991c3;
    }

    .lx-jy-tabservice-content {
      padding: 25px 0;
      line-height: 1.8;
      font-size: 15px;
      color: #444;
    }
    .lx-jy-tabservice-item {
      display: none;
    }
    .lx-jy-tabservice-item.lx-jy-active {
      display: block;
    }

    .lx-jy-tabservice-desc {
      line-height: 1.9;
      color: #444;
      font-size: 15px;
    }

    .lx-jy-tabservice-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 15px;
    }
    .lx-jy-tabservice-table th,
    .lx-jy-tabservice-table td {
      padding: 18px 20px;
      text-align: left;
      border-bottom: 1px solid #eee;
    }
    .lx-jy-tabservice-table th:first-child,
    .lx-jy-tabservice-table td:first-child {
      border-right: 1px solid #eee;
    }
    .lx-jy-tabservice-table th {
      background: #f9fafb;
      font-weight: 600;
      color: #333;
    }
    .lx-jy-tabservice-table tr:hover td {
      background: #fafbfc;
    }

    .lx-jy-tabservice-link-group {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    .lx-jy-tabservice-link-item {
      width: calc(33.333% - 14px);
      padding: 18px 20px;
      background: #f9fafb;
      border-radius: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: 0.3s;
      border: 1px solid #eee;
    }
    .lx-jy-tabservice-link-item:hover {
      background: #eff6ff;
      transform: translateY(-3px);
      box-shadow: 0 4px 10px rgba(59, 130, 246, 0.1);
    }
    .lx-jy-tabservice-link-item a {
      color: #333;
      font-weight: 500;
      font-size: 15px;
    }
    .lx-jy-tabservice-link-item:hover a {
      color: #0490c6;
    }
    .lx-jy-tabservice-link-item .lx-arrow {
      width: 8px;
      height: 8px;
      border-right: 2px solid #999;
      border-top: 2px solid #999;
      transform: rotate(45deg);
      transition: 0.3s;
    }



.container {
      width: 1320px;
      margin: 0 auto;
      display: flex;
      gap: 40px;
    }
    
    
.gl {
    background: #e0e7ff!important;
    color: #333333!important;
    border-color: #c7d2fe!important;
    border-left-color: #0991c3!important;
}

  .left {
      width: 35%;
      background: #ffffff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      height: fit-content;
      position: sticky;
      top: 40px;
    }

    .right {
      width: 65%;
    }

   



.jy-tabservice-title {
      font-size: 22px;
      font-weight: 600;
      color: #222;
      margin-bottom: 28px;
      position: relative;
      padding-bottom: 14px;
    }
    .jy-tabservice-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 3px;
      background: #3b82f6;
      border-radius: 3px;
    }

    .jy-tabservice {
      background: #fff;
      padding: 35px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      margin-bottom: 40px;
    }

    /* 一级菜单（无a标签） */
    .menu-item {
      margin-bottom: 10px;
      border-radius: 12px;
      overflow: hidden;
    }
    .menu-title {
      padding: 12px 20px;
      background: #f9fafb;
      border-radius: 10px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 500;
      color: #333;
      transition: all 0.3s ease;
      border: 1px solid #eee;
      position: relative;
      overflow: hidden;
    }
    .menu-title::before {
      content: '';
      position: absolute;
      left: -100%;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
      transition: 0.6s ease;
    }
    .menu-title:hover::before {
      left: 100%;
    }
    .menu-title:hover {
      background: #eff6ff;
      color: #f9fafb;
      border-color: #dbeafe;
    }

    
     .menu-title:hover span {
     
      color: #0991c3;
     
    }
    
    
    
    .menu-title .arrow {
      width: 12px;
      height: 12px;
      border-right: 2px solid #666;
      border-bottom: 2px solid #666;
      transform: rotate(45deg);
      transition: 0.3s ease;
    }

    .open > .menu-title {
      background: #0991c3;
      color: #fff;
      border-color: #0991c3;
     
    }
    .open > .menu-title .arrow {
      transform: rotate(135deg);
      border-color: #fff;
    }

    /* 二级菜单 */
    .sub-menu {
      padding-left: 12px;
      margin-top: 10px;
      display: none;
      animation: fadeIn 0.3s ease;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(5px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .sub-menu > li {
      margin-bottom: 6px;
      border-radius: 8px;
      overflow: hidden;
    }

    /* 二级a标签基础样式 */
    .sub-menu > li a.menu-title {
      background: #f8fafc;
      border-radius: 8px;
      padding: 10px 20px;
      font-weight: 400;
      font-size: 14.5px;
      border: 0px solid #f0f2f5;
      position: relative;
      border-left: 3px solid transparent;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: 0.3s;
    }
    .sub-menu > li a.menu-title:hover {
      background: #e0e7ff;
      color: #333333;
      border-color: #c7d2fe;
      border-left-color: #0991c3;
    }

    /* 有三级的二级菜单样式 */
    .sub-menu > li.has-third.open a.menu-title {
      background: #eff6ff;
      color: #3b82f6;
      border-color: #bfdbfe;
      border-left-color: #3b82f6;
      box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
    }
    .sub-menu > li.has-third a.menu-title .arrow {
      border-color: #3b82f6;
    }

    /* 三级菜单 带a标签 */
    .third-menu {
      padding-left: 12px;
      margin-top: 8px;
      display: none;
      animation: fadeIn 0.2s ease;
    }
    .third-menu li a {
      display: block;
      padding: 12px 20px;
      background: #f1f5f9;
      border-radius: 6px;
      font-size: 14px;
      color: #555;
      margin-bottom: 6px;
      transition: 0.3s ease;
      border: 1px solid #e2e8f0;
    }
    .third-menu li a:hover {
      background: #dbeafe;
      color: #3b82f6;
      border-color: #bfdbfe;
      transform: translateX(2px);
    }

    /* 展开控制 */
    .open > .sub-menu,
    .open > .third-menu {
      display: block;
    }

    /* ==================== 右侧统一改为 jy-tabservice 开头 ==================== */
    .jy-tabservice-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 24px;
      border-bottom: 1px solid #eee;
      padding-bottom: 10px;
    }
    .jy-tabservice-nav button {
      padding: 0;
      border: none;
      background: none;
      font-size: 16px;
      font-weight: 500;
      color: #666;
      cursor: pointer;
      position: relative;
      transition: 0.3s;
    }
    .jy-tabservice-nav button.jy-active {
      color: #3b82f6;
    }
    .jy-tabservice-nav button.jy-active::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 100%;
      height: 2px;
      background: #3b82f6;
    }
    .jy-tabservice-nav button:hover {
      color: #3b82f6;
    }

    .jy-tabservice-content {
      padding: 25px 0;
      line-height: 1.8;
      font-size: 15px;
      color: #444;
    }
    .jy-tabservice-item {
      display: none;
    }
    .jy-tabservice-item.jy-active {
      display: block;
    }

    .jy-tabservice-desc {
      line-height: 1.9;
      color: #444;
      font-size: 15px;
    }

    .jy-tabservice-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 15px;
    }
    .jy-tabservice-table th,
    .jy-tabservice-table td {
      padding: 18px 20px;
      text-align: left;
      border-bottom: 1px solid #eee;
    }
    .jy-tabservice-table th:first-child,
    .jy-tabservice-table td:first-child {
      border-right: 1px solid #eee;
    }
    .jy-tabservice-table th {
      background: #f9fafb;
      font-weight: 600;
      color: #333;
    }
    .jy-tabservice-table tr:hover td {
      background: #fafbfc;
    }

    .jy-tabservice-link-group {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    .jy-tabservice-link-item {
      width: calc(33.333% - 14px);
      padding: 18px 20px;
      background: #f9fafb;
      border-radius: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: 0.3s;
      border: 1px solid #eee;
    }
    .jy-tabservice-link-item:hover {
      background: #eff6ff;
      transform: translateY(-3px);
      box-shadow: 0 4px 10px rgba(59, 130, 246, 0.1);
    }
    .jy-tabservice-link-item a {
      color: #333;
      font-weight: 500;
      font-size: 15px;
    }
    .jy-tabservice-link-item:hover a {
      color: #3b82f6;
    }
    .jy-tabservice-link-item .arrow {
      width: 8px;
      height: 8px;
      border-right: 2px solid #999;
      border-top: 2px solid #999;
      transform: rotate(45deg);
      transition: 0.3s;
    }








