* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, h2, ul, li, p, a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    color: inherit;
}

/* 导航栏开始 */

.navbar {
    background-color: rgba(255, 255, 255,1);
    padding: 15px 5%;
   position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
}

/* Logo和公司名称部分 */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: auto;
}

.company-info {
    color: #333;
}

.company-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.company-name-en {
    font-size: 14px;
    color: #333;
}

/* 导航菜单 */
.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s; display: block; height: 30px;
}

.nav-menu a:hover {
    color: #014da8;
}
.nav-menu .nLi{position: relative;}
.nav-menu .sub { display: none; width: 200px; left: 0; top: 30px; position: absolute; background: #005bac; line-height: 2; }
.nav-menu .sub li { zoom: 1;  width: 200px;height: 40px;line-height:40px;  text-align:center; }
.nav-menu .sub a { display: block; padding: 0 10px; color: #ffffff }
.nav-menu .sub a:hover { background: rgba(255,255,255,0.2); color: #fff; height: 40px;  }
.nav-menu li.nLi:hover .sub {
  display: block;
}

/* 语言切换 */
.language-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.globe-icon {
    font-size: 18px;
}

.language-select {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 1);
    color: #333;
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
}

.language-select option {
    background: rgba(255, 255, 255, 0.8);
    color: rgb(0, 0, 0);
}

/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    color: #333;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* 响应式设计 */
@media (max-width: 768px) {
    
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 255.9);
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .nav-menu .sub{ display:none;}
    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .language-switch {
        margin-right: 0px;
    }
}
/* 导航栏结束 */


.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 16px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.carousel-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-container {
        height: 70vh;
    }
    
    .carousel-button {
        padding: 12px;
        font-size: 16px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 70vh;
    }
    
    .carousel-button {
        padding: 8px;
        font-size: 14px;
    }
}
/* 轮播图结束 */


/* 轮播图开始 */
  .slider-container {
            position: relative;
            
            max-width: 100%;
            margin: 0 auto;
            overflow: hidden;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            object-fit: cover;
        }

        .prev,
        .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            z-index: 10;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }
        
        
            
/* 轮播图结束 */



/* 关于我们部分 */
.about {
    padding: 60px 0 20px;
    background: url(../images/gybj.jpg) center/cover;
}

.about-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.about-text {
    flex: 1;
    padding-right: 50px;
}

.about-text h2 {
    margin-bottom: 30px;
}

.about-text h2 span {
    display: block;
    color: #000;
}
.about-text h2 .about_a1{ color: #d1d1d1; font-size: 68px;}
.about-text h2 .about_a2{ color: #333; font-size: 24px;}
.company-intro p{ color: #666; line-height:2;}

.about-video {
    flex: 1;
}

.about-video video {
    width: 100%;
    margin-bottom: 30px;
}

.statistics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 20px;
}

.stat-item {
    text-align: center;
}

/* 指示点 */
.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: white;
}

.data-container {
            display: flex;
            gap: 40px;
            padding: 30px;
            border-radius: 12px;
            overflow: hidden;
           
        }

        .data-item {
            text-align: center;
            padding: 30px;
            width: 25%;
        }

        /* 数字样式 */
        .number {
            font-size: 64px;
            font-weight: 700;
            color: #000; /* 黑色字体 */
            margin-bottom: 8px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 1s ease;
        }
        .number:hover{color: #1750ae;}

        /* 文案样式 */
        .text {
            font-size: 16px;
            color: #333; /* 深灰色文案 */
            letter-spacing: 0.5px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 1s ease 0.2s;
        }

        /* 加载完成后的状态 */
        .loaded .number,
        .loaded .text {
            opacity: 1;
            transform: translateY(0);
        }

        /* 产品展示css开始 */
        .products-section {
            padding: 80px 5%;
            background: url('../images/cdmo_bj.jpg') no-repeat center center;
            background-size: cover;
        }
        
        .products-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 36px;
            color: #fff;
            margin-bottom: 15px;
        }
        
        .section-description {
            font-size: 18px;
            color: #fff;
        }
        
        .product-categories {
            display: flex;
            /*flex-direction: column;*/
            align-items: center;
    justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .category-btn {
            padding: 10px 50px;
            border: 1px solid #fff;
            background: transparent;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 50px;
            font-size: 16px;
        }
        
        .category-btn:hover,
        .category-btn.active {
            background: #fff;
            color: #333;
        }
        
        .products-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1500px;
            margin: 0 auto;
        }
        
        .product-card {
            background: #fff;
            border: 1px solid #eee;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .product-image {
            width: 100%;
            height: 336px;
            overflow: hidden;
    
           
        }
      
        .product-image:hover img{
            transform: scale(1.1); -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1);
        }   
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
          
        }

        .product-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .product-image :hover::after {
            opacity: 1;
        }
        
        .product-info {
            padding: 30px;
        }
        
        .product-info h3 {
            font-size: 22px;
            color: #333;
            margin-bottom: 10px;
            font-weight: normal;
        }
        
        .product-info p {
            color: #666;
            font-size: 16px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .view-more {
            display: inline-block;
            padding: 8px 30px;
            border: 1px solid #999;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 50px;
            font-size: 14px;
            max-width: 120px;
        }
        
        
        .view-more:hover {
            background: #005bac;
            color: #fff;
            border: none;
        }
        
        @media (max-width: 1024px) {
            .products-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .product-categories {
                flex-wrap: wrap;
            }
            
            .products-container {
                grid-template-columns: 1fr;
            }
            
            .product-image {
                height: 250px;
            }
           
        }
        /* 产品展示css结束 */

        /* CDMO检测代码开始 */
        .cdmo-section {
            padding: 80px 5%;
            background: #fff;
        }
        
        .cdmo-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .cdmo-header .section-title {
            font-size: 36px;
            color: #333;
            margin-bottom: 15px;
        }
        
        .cdmo-header .section-description {
            font-size: 18px;
            color: #666;
        }
        
        .cdmo-tabs {
            max-width: 1500px;
            margin: 0 auto;
        }
        
        .tab-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .tab-btn1 {
            padding: 8px 40px;
            border: none;
            background: none;
            font-size: 18px;
            color: #666;
            cursor: pointer;
            position: relative;
            transition: color 0.3s;
            border: 1px solid #333;
            border-radius: 50px;
        }
        .tab-btn1:hover{ 
        bottom: 0;
        transition: width 0.3s;
        color: #014da8;
        border: 1px solid #014da8;
        }
        
        .tab-btn1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #014da8;
            transition: width 0.3s;
        }
        
        .tab-btn1.active {
            color: #014da8;
        }
        
        .tab-btn1.active::after {
            width: 100%;
        }
        
      /*  .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        */

.tab-header {
    display: flex;
    border-bottom: 1px solid #ccc;
}

.tab-link {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 16px;
    color: #333;
}

.tab-link.active {
    border-bottom: 2px solid #014da8;
    color: #014da8;
}

.tab-content {
    padding: 20px 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.news-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}





        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .service-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .service-image {
            position: relative;
            width: 100%;
            height: 300px;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(38,111,175,0.8));
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .service-card:hover .overlay {
            opacity: 1;
        }
        
        .overlay h3 {
            color: #fff;
            font-size: 20px;
            margin: 0;
        }
        
        @media (max-width: 1024px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .tab-buttons {
                flex-direction: column;
                align-items: center;
                gap: 20px;
                margin-bottom: 10px;
                
            }
            
            .tab-btn1{width: 100%;}
            
            .service-grid {
                grid-template-columns: 1fr;
            }
            
            .cdmo-header .section-title {
                font-size: 28px;
            }
            .cdmo-header{margin-bottom: 30px;}
            .cdmo-section{padding: 30px 5%;}
            .honors-section{padding: 30px 0;}
            .products-section{padding: 30px 0;}
            .product-card{margin:20px;}
            .products-container{gap: 0px;}
        }
        /* CDMO检测代码结束 */

        /* 公司荣誉开始 */
        .honors-section {
            padding: 80px 0;
            background: url('../images/ry_bj.jpg') no-repeat center center;
            background-size: cover;
        }
        
        .honors-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .honors-header {
            text-align: left;
            margin-bottom: 50px;
        }
        
        .honors-header h2 {
            font-size: 48px;
            color: #adadad;
            margin-bottom: 10px;
        }
        
        .honors-header h3 {
            font-size: 36px;
            color: #333;
            margin-bottom: 15px;
        }
        
        .honors-header p {
            font-size: 18px;
            color: #666;
        }
        
        .honors-carousel {
            position: relative;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .honors-btn {
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
        
        .honors-btn:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        
        .honors-wrapper {
            overflow: hidden;
            width: 100%;
        }
        
        .honors-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }
        
        .honor-item {
            min-width: 240px;
            text-align: center;
        }
        
        .honor-item img {
            width: 100%;
            height: 313px;
            object-fit: cover;
            margin-bottom: 15px;
            transition: transform 0.3s;
        }
        
        .honor-item:hover img {
            transform: scale(1.05);
        }
        
        .honor-item p {
            color: #333;
            font-size: 16px;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .honor-item {
                min-width: 250px;
            }
            
            .honor-item img {
                height: 350px;
            }
        }
        
        @media (max-width: 768px) {
            .honors-header h2 {
                font-size: 36px;
            }
            
            .honors-header h3 {
                font-size: 28px;
            }
            
            .honor-item {
                min-width: 200px;
            }
            
            .honor-item img {
                height: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .honor-item {
                min-width: 150px;
            }
            
            .honor-item img {
                height: 250px;
            }
        }
        /* 公司荣誉结束 */


        /* 新闻开始 */
        .news-section {
            padding: 40px 0;
            background: #fff;
        }
        
        .news-header {
            max-width: 1500px;
            margin: 0 auto;
            
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
        }
        
        .news-title h2 {
            font-size: 36px;
            color: #333;
            margin-bottom: 10px;
        }
        
        .news-title p {
            font-size: 16px;
            color: #666;
        }
        
        .news-tabs {
            display: flex;
            gap: 20px;
        }
        
        .news-tab {
            padding: 10px 30px;
            border: none;
            background: none;
            font-size: 16px;
            cursor: pointer;
            position: relative;
            color: #666;
            transition: all 0.3s;
        }
        
        .news-tab.active {
            color: #014da8;
        }
        
        .news-tab.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #014da8;
        }
        
        .news-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .news-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
        }
        
        .news-image {
            width: 100%;
            height: 185px;
            overflow: hidden;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .news-card:hover .news-image img {
            transform: scale(1.1);
        }
        
        .news-content {
            padding: 30px 30px 50px 30px;
            border: 1px solid #dede;
            border-top: none;
        }
        
        .news-headline {
            font-size: 20px;
            color: #333;
            margin-bottom: 20px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-weight: normal;
        }
        
        .news-date {
            font-size: 14px;
            color: #999;
            margin-bottom: 10px;
        }
        
        .news-excerpt {
            font-size: 14px;
            color: #999;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .read-more {
            color: #014da8;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .read-more:hover {
            color: #0056b3;
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .news-header {
                flex-direction: column;
                gap: 20px;
            }
            
            .news-tabs {
                width: 100%;
                justify-content: flex-start;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
            }
        }
        /* 新闻结束 */

        /* 合作客户开始 */
        /* 合作客户样式 */
.partners-section {
    padding: 0px 5% 60px 5%;
    background: #fff;
}

.partners-header {
    
    max-width: 1500px;
 margin: 0 auto;
 padding: 0 20px;

}

.partners-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.partners-header p {
    font-size: 18px;
    color: #666;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding-top: 30px;
}

.partner-item {
    min-width: calc(20% - 16px); /* 显示5个项目 */
    border: 1px solid #eee;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.partner-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.partner-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .partner-item {
        min-width: calc(25% - 15px); /* 显示4个项目 */
    }
}

@media (max-width: 992px) {
    .partner-item {
        min-width: calc(33.333% - 14px); /* 显示3个项目 */
    }
}

@media (max-width: 768px) {
    .partner-item {
        min-width: calc(50% - 10px); /* 显示2个项目 */
    }
    
    .partners-header h2 {
        font-size: 28px;
    }
    
    .partners-header p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .partner-item {
        min-width: calc(100% - 20px); /* 显示1个项目 */
    }
}
/* 合作客户结束 */
/*

/*  表单开始 */
.solution-request {
    background-color: #005bac;
    padding: 40px 0;
}

.solution-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.solution-text {
    flex: 1;
}

.solution-text h2 {
    color: #fff;
    font-size: 32px;
}

.solution-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.solution-form {
   /* flex: 2;*/
    display: flex;
    gap: 20px;
}

.form-input {
    flex: 1;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
}

.form-input::placeholder {
    color: #666;
}

.submit-btn {
    padding: 12px 60px;
    background: #0273d8;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #ff8533;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .solution-container {
        flex-direction: column;
        text-align: center;
    }

    .solution-form {
        flex-direction: column;
        width: 100%;
    }

    .submit-btn {
        width: 100%;
    }
}
/* 表单结束 */

/* 页脚开始 */
/* 页脚样式 */
.footer {
    background-color: #161616;
    padding: 40px 0;
    color: #fff;
}

/* 上部分样式 */
.footer-top {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.company-logo-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    width: 50px;
    height: auto;
    margin-right: 15px;
}

.footer-company-names {
    display: flex;
    flex-direction: column;
}

.footer-company-name {
    font-size: 20px;
    margin: 0;
}

.footer-company-name-en {
    font-size: 14px;
    margin: 5px 0 0;
    color: #666;
}

/* 分隔线样式 */
.footer-divider {
    height: 1px;
    background-color: #666666;
    margin: 30px 0;
}

/* 中间部分样式 */
.footer-middle {
    max-width: 1500px;
    margin: 0 auto;
    padding: 30px 20px;
}

.footer-nav-columns {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.footer-nav-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: normal;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column ul li {
    margin-bottom: 10px;
}

.footer-nav-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.footer-nav-column ul li a:hover {
    color: #333;
}

/* 二维码样式 */
.footer-qr-column {
    text-align: center;
}

.qr-code {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

.qr-description {
    font-size: 14px;
    color: #666;
}

/* 底部版权信息样式 */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 12px;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .footer-nav-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-nav-columns {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-qr-column {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-nav-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-qr-column {
        grid-column: span 1;
    }
    
    .company-logo-info {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
/* 页脚结束 */


/* 内页导航栏开始 */

.navbar_1 {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px 5%;
    width: 100%;
    top: 0;
    color: #333;

}

.nav-container_1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
}

/* Logo和公司名称部分 */
.logo-section_1 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: auto;
}

.company-info_1 {
    color: #005bac;
}

.company-name_1 {
    font-size: 20px;

    font-weight: bold;
}

.company-name-en_1 {
    font-size: 14px;
    color: #333;
}

/* 导航菜单 */
.nav-menu_1 {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu_1 a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu_1 a:hover {
    color: #014da8;
}

/* 语言切换 */
.language-switch_1 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.globe-icon_1 {
    font-size: 18px;
}

.language-select_1 {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333;
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
}

.language-select option {
    background: rgba(0, 0, 0, 0.8);
    color: #333;
}

/* 移动端菜单按钮 */
.menu-toggle_1 {
    display: none;
    color: #333;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu_1 {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-menu_1.active {
        display: flex;
    }

        .menu-toggle_1 {
        display: block;
    }

    .language-switch_1 {
        margin-right: 50px;
    }
}
/* 内页导航栏结束 */

/* 内页banner样式 */
.inner-banner {
    position: relative;
    height: 500px;
    width: 100%;
    background-image: url('../images/lxwm_bj.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-banner_xw {
    position: relative;
    height: 500px;
    width: 100%;
    background-image: url('../images/xw_bj.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-banner_cp {
    position: relative;
    height: 500px;
    width: 100%;
    background-image: url('../images/cp_bj.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-banner_gy {
    position: relative;
    height: 500px;
    width: 100%;
    background-image: url('../images/gy_bj.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-banner_sys {
    position: relative;
    height: 500px;
    width: 100%;
    background-image: url('../images/sys_bj.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 添加一个暗色遮罩，使文字更容易阅读 */
.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
}

.banner-content {
    position: relative; /* 确保内容在遮罩层上方 */
    text-align: center;
    color: #fff;
    padding: 20px;
}

.page-title {
    font-size: 48px;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 16px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 响应式适配 */
@media screen and (max-width: 768px) {
    .inner-banner {
        height: 300px; /* 在移动端降低高度 */
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .breadcrumb {
        font-size: 14px;
    }
}
/* 内页banner样式结束 */

/* 锚点链接开始 */
/* 锚点容器 */
.anchor-nav {
    height: 80px;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.0); /* 底部投影 */
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

/* 锚点列表 */
.anchor-nav ul {
    display: flex;
    gap: 30px; /* 锚点之间的间距 */
}

/* 锚点项 */
.anchor-nav li {
    position: relative;
}

/* 锚点链接 */
 /* 重置样式 */
 body, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.anchor-nav a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
}

/* 鼠标经过时文字颜色变化 */
.anchor-nav a:hover {
    color: #014da8;
}

/* 鼠标经过时底部蓝色线条 */
.anchor-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px; /* 调整线条位置 */
    width: 100%;
    height: 2px;
    background-color: #014da8;
    transform: scaleX(0); /* 初始状态隐藏 */
    transition: transform 0.3s ease;
}

.anchor-nav a:hover::after {
    transform: scaleX(1); /* 鼠标经过时显示线条 */
}
/* 锚点链接结束 */

/* 内页联系开始 */
.lxwm_ny_2 {
    background-color: #f5f5f5;
    width: 100%;
}
       /* 页面容器 */
       .contact-page {
        max-width: 1500px;
        margin: 0 auto;
        padding: 20px;
    }

    /* 上部：标题和描述 */
    .contact-header {
        margin-bottom: 40px;
    }

    .contact-header h1 {
        font-size: 24px;
        color: #333;
        margin-top: 10px;
        margin-bottom: 10px;
        font-weight: normal;
    }

    .contact-header p {
        font-size: 16px;
        color: #999;
    }

    /* 中部：联系方式卡片 */
    .contact-cards {
        display: flex;
        gap: 20px;
        margin-bottom: 40px;
    }

    .contact-card {
        flex: 1;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        display: flex;
        align-items: center;
    }

    .contact-card .icon {
        font-size: 40px;
        color: #014da8;
        margin-right: 20px;
    }

    .contact-card .info h2 {
        font-size: 20px;
        color: #333;
        margin-bottom: 10px;
    }

    .contact-card .info p {
        font-size: 18px;
        color: #666;
    }

    /* 下部：地图 */
    .contact-map {
        height: 400px;
        background-color: #f1f1f1;
        border-radius: 10px;
        overflow: hidden;
        border-radius: 20px
    }

    .contact-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .contact-cards {
            flex-direction: column;
        }

        .contact-header h1 {
            font-size: 28px;
        }

        .contact-header p {
            font-size: 16px;
        }

        .contact-card .icon {
            font-size: 30px;
        }

        .contact-card .info h2 {
            font-size: 18px;
        }

        .contact-card .info p {
            font-size: 16px;
        }
    }
    /* 内页联系结束 */

    /* 新闻资讯内页开始 */
     /* 页面容器 */
      /* 页面容器 */
      .news-page {
        max-width: 1500px;
        margin: 0 auto;
        padding: 20px;
    }

    /* 上部：分类切换 */
    .news-tabs {
        display: flex;
        gap: 20px;
        margin-bottom: 40px;
    }

    .news-tabs .tab {
        font-size: 18px;
        font-weight: bold;
        color: #666;
        cursor: pointer;
        padding-bottom: 5px;
        border-bottom: 2px solid transparent;
        transition: color 0.3s ease, border-color 0.3s ease;
    }

    .news-tabs .tab.active,
    .news-tabs .tab:hover {
        color: #014da8;
        border-bottom-color: #014da8;
    }

    /* 下部：新闻列表 */
    .news-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .news-item {
        display: flex;
        align-items: center;
        padding-bottom: 40px;
        border-bottom: 1px solid #ddd;
        transition: border-color 0.3s ease;
    }

    .news-item:hover {
        border-bottom-color: #014da8;
    }

    .news-item .date {
        width: 80px;
        /*text-align: center;*/
    }

    .news-item .date .month-day {
        font-size: 24px;
        font-weight: bold;
        color: #014da8;
    }

    .news-item .date .year {
        font-size: 14px;
        color: #666;
    }

    .news-item .content {
        flex: 1;
        margin: 0 20px;
    }

    .news-item .content h3 {
        font-size: 20px;
        color: #333;
        margin-bottom: 10px;
        font-weight: normal;

    }

    .news-item .content p {
        font-size: 16px;
        color: #999;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .news-item .arrow {
        font-size: 24px;
        color: #014da8;
        cursor: pointer;
    }

    /* 分页效果 */
    .pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .pagination .page-item {
        padding: 10px 15px;
        font-size: 16px;
        color: #666;
        cursor: pointer;
        border: 1px solid #ddd;
        border-radius: 5px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .pagination .page-item.active,
    .pagination .page-item:hover {
        background-color: #014da8;
        color: #fff;
        border-color: #014da8;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .news-item {
            flex-direction: column;
            align-items: flex-start;
        }

        .news-item .date {
            width: 100%;
            text-align: left;
            margin-bottom: 10px;
        }

        .news-item .content {
            margin: 0;
        }

        .news-item .arrow {
            align-self: flex-end;
        }
    }
    /*新闻资讯内页结束*/

    /* 产品列表内页开始 */
    /* 页面容器 */
    .product-page {
        max-width: 1500px;
        margin: 0 auto;
        padding: 20px;
        display: flex;
        gap: 20px;
    }

    /* 左侧：产品分类 */
    .product-categories_1 {
        width: 16%;
    }

    .product-categories_1 h2 {
        font-size: 24px;
        color: #333;
        margin-bottom: 20px;
    }

    .product-categories_1 ul {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .product-categories_1 li {
        cursor: pointer;
        padding: 20px;
        background-color: #f1f1f1;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .product-categories_1 li:hover {
        background-color: #005bac;
        color: #fff;
    }

    .product-categories_1 li.active {
        background-color: #005bac;
        color: #fff;
    }
.product-categories_1 li a{ display: block; }

    /* 右侧：产品列表 */
    .product-list {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        margin-top: 50px;
    }

    .product-item {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .product-item img {
        width: 100%;
        /*height: 200px;*/
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .product-item:hover img {
        transform: scale(1.1);
    }

    .product-item .name {
        padding: 15px;
        text-align: center;
        font-size: 16px;
        color: #333;
    }
    .product-item .name:hover{
        color: #005bac;
    }

    /* 分页 */
    .pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 40px;
    }

    .pagination .page-item {
        padding: 10px 15px;
        font-size: 16px;
        color: #666;
        cursor: pointer;
        border: 1px solid #ddd;
        border-radius: 5px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .pagination .page-item.active,
    .pagination .page-item:hover {
        background-color: #014da8;
        color: #fff;
        border-color: #014da8;
    }
.page { text-align: center }
.pagination { display: inline-block; padding-left: 0; margin: 1.25rem 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: #014da8; 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: #014da8; 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: #014da8; border-color: #014da8; cursor: default; }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .product-page {
            flex-direction: column;
        }

        .product-categories {
            width: 100%;
        }

        .product-list {
            /*grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));*/
        }
    }
    /*产品列表内页结束*/

    /* 产品内容页开始 */
    /* 页面容器 */
    .product-page1 {
        max-width: 1500px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    /* 上部：产品图片和描述 */
    .product-top {
        display: flex;
        gap: 20px;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid #ddd;
    }

    /* 左侧：产品图片 */
    .product-images {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .product-images .main-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .product-images .thumbnails {
        display: flex;
        gap: 10px;
    }

    .product-images .thumbnails img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 5px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: border-color 0.3s ease;
    }

    .product-images .thumbnails img.active,
    .product-images .thumbnails img:hover {
        border-color: #014da8;
    }

    /* 右侧：产品描述 */
    .product-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .product-info h1 {
        font-size: 28px;
        color: #333;
    }

    .product-info p {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
    }

    .product-info .contact-button {
        width: 120px;
        padding: 10px 20px;
        background-color: #014da8;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .product-info .contact-button:hover {
        background-color: #005bb5;
    }

    /* 下部：产品内容 */
    .product-content {
        margin-top: 40px;
    }

    .product-content h2 {
        font-size: 24px;
        color: #333;
        margin-bottom: 20px;
    }

    .product-content p {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .product-content img {
        max-width: 800px;
        height: auto;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .product-top {
            flex-direction: column;
        }

        .product-images .thumbnails img {
            width: 60px;
            height: 60px;
        }

        .product-info h1 {
            font-size: 24px;
        }

        .product-info p {
            font-size: 14px;
        }

        .product-content h2 {
            font-size: 20px;
        }

        .product-content p {
            font-size: 14px;
        }
    }
    /*产品内容页结束*/


    /* 内页关于我们开始 */
    /* 页面容器 */
    .about-us {
        max-width: 1500px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    /* 上部：关于我们 */
    .about-top {
        display: flex;
        gap: 40px;
        margin-bottom: 60px;
    }

    .about-top .left {
        flex: 1;
    }

    .about-top .left h2 {
        font-size: 36px;
        color: #333;
        margin-bottom: 10px;
    }

    .about-top .left .line {
        width: 30px;
        height: 2px;
        background-color: #014da8;
        margin-top: 60px;
    }

    .about-top .right {
        flex: 2;
        font-size: 16px;
        color: #666;
        line-height: 2;
    }

    .data-container_1 {
        display: flex;
        gap: 40px;
        padding: 30px;
        border-radius: 12px;
        overflow: hidden;
        background-color: #f1f1f1;
       
    }

    /* 下部：数字统计 */
    .about-stats {
        background-color: #f5f5f5;
        padding: 60px 20px;
        text-align: center;
    }

    .about-stats .stats-container {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 20px;
    }

    .about-stats .stat {
        flex: 1;
        min-width: 200px;
    }

    .about-stats .stat .number {
        font-size: 48px;
        font-weight: bold;
        color: #014da8;
        margin-bottom: 10px;
    }

    .about-stats .stat .label {
        font-size: 18px;
        color: #333;
    }
    .gsjj_tp{
        width: 100%;
        height: 100%;
        margin-top: 60px;
       
    }
    .gsjj_tp img{
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .about-top {
            flex-direction: column;
        }

        .about-top .left h2 {
            font-size: 28px;
        }

        .about-top .right {
            font-size: 14px;
        }

        .about-stats .stat .number {
            font-size: 36px;
        }

        .about-stats .stat .label {
            font-size: 16px;
        }
    }
    /*内页关于我们结束*/
    /* 企业文化开始 */
    /* 页面容器 */
    .culture-section {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0px 20px 60px 20px;
    }

    /* 标题 */
    .culture-section h2 {
        font-size: 36px;
        color: #333;
        
        margin-bottom: 30px;
    }

    /* 内容块 */
    .culture-blocks {
        display: flex;
        gap: 30px;
        justify-content: space-between;
    }

    .culture-block {
        flex: 1;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 50px;
        
        transition: background-color 0.3s ease, color 0.3s ease;
        cursor: pointer;
    }

    .culture-block:hover {
        background-color: #005bac;
        color: #fff;
    }

    .culture-block:hover .icon img.default {
        display: none;
    }

    .culture-block:hover .icon img.hover {
        display: block;
    }

    .culture-block .icon img.hover {
        display: none;
    }

    .culture-block .icon img {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .culture-block h3 {
        font-size: 24px;
        margin-bottom: 10px;
        font-weight: normal;
    }

    .culture-block p {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
    }

    .culture-block:hover p {
        color: #fff;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .culture-blocks {
            flex-direction: column;
        }

        .culture-section h2 {
            font-size: 28px;
        }

        .culture-block h3 {
            font-size: 20px;
        }

        .culture-block p {
            font-size: 14px;
        }
    }
    /*企业文化结束*/

    /* 发展历程开始 */
    /* 页面容器 */
    .fzlc{
        max-width: 100%;
        margin: 0 auto;
        background-image: url('../images/fzlc.jpg');
    }
    .timeline-section {
        max-width: 1500px;
        margin: 0 auto;
        padding: 60px 0px;
    }

    /* 标题 */
    .timeline-section h2 {
        font-size: 36px;
        color: #fff;
        text-align: center;
        margin-bottom: 40px;
    }
   
    /* 时间轴 */
    .timeline {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* 年份导航 */
    .timeline-nav {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 60px;
        flex-wrap: wrap;
    }

    .timeline-nav .year {
        font-size: 24px;
        font-weight: bold;
        color: #fff;
        cursor: pointer;
        padding: 10px 60px;
    border: 1px solid;
        border-radius: 5px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .timeline-nav .year.active {
        background-color: #014da8;
        color: #fff;
        border: none;
    }

    /* 内容区域 */
    .timeline-content {
        width: 100%;
    }

    .timeline-content .event {
        display: none;
    
        gap: 40px;
    }

    .timeline-content .event.active {
        display: flex;
        max-width: 1000px;
    margin: 0 auto;
    }

    .timeline-content .event img {
        width: 400px;
        height: 300px;
        object-fit: cover;
        border-radius: 10px;
    }



    .timeline-content .event .falv_text {
        max-width: 600px;
        flex: 1;
        color: #fff;
    }
    .timeline-content .event .falv_text  {
        flex: 1;
        color: #fff;
    }

    .timeline-content .event h3 {
        font-size: 24px;
        color: #fff;
        margin-bottom: 20px;
    }

    .timeline-content .event p {
        font-size: 16px;
        color: #fff;
        line-height: 1.6;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .timeline-section h2 {
            font-size: 28px;
        }
        
.timeline-section{width:90%;}
        .timeline-nav .year {
            font-size: 18px;
            padding: 8px 16px;
        }

        .timeline-content .event {
            flex-direction: column;
            gap: 20px;
        }

        .timeline-content .event img {
            width: 100%;
            height: auto;
        }

        .timeline-content .event h3 {
            font-size: 20px;
        }

        .timeline-content .event p {
            font-size: 14px;
        }
    }
    /*发展历程结束*/
    
    
    
    /*团队介绍开始*/
    .ny_gstd{ max-width: 1500px;margin: 60px auto;}
    .ny_gstd h2{font-size: 36px;}
    .team-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: 30px 0px ;
    }
    .team-member {
        width: 30%;
        text-align: center;
        border: 1px solid #ccc;
        box-sizing: border-box;
        margin-bottom: 20px;
        position: relative;
        overflow: hidden;
        color: #333;
    }
    .team-member img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
    }
    .team-member:hover img {
        transform: scale(1.1);
    }
    .team-member .info {
        padding: 25px;
        background-color: white;
    
    }
    .team-member:hover .info {
        background-color: #014da8;
        color: white;
    }
    .team-member h3 {
        margin: 0px 0 5px;
        font-size: 18px;
        text-align: left;
    }
    .team-member p {
        margin: 0;
        font-size: 14px;
        text-align: left;
        line-height: 24px;
        
    }
 
    .team-member .gstd_tit{ display: block;
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 24px;
       }
    /*团队介绍结束*/


@media (max-width: 800px) {
 .about-text { flex:auto; padding-right: 0; }
 .about-text h2 .about_a1{ font-size: 36px; }
 .number{ font-size: 36px; }
 .data-item{ width: 48%; padding:0px; }
 .data-container,.data-container_1{ flex-wrap: wrap; column-gap: 0; }
.form-input{ width: 100%; margin-bottom: 15px; }
.product-categories_1{ width: 100%;}
.ny_gstd{width: 90%}
}

.jiance img{ max-width:100%;}
.xgcp{/* display: flex; flex-wrap: wrap; */display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto;}
.xgcp li{ /*width: 31.333%; margin:0 1%; text-align: center;*/background: #fff;
    transition: transform 0.3s ease;  text-align: center;}
    
    @media (max-width: 1024px) {
            .xgcp {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    @media (max-width: 768px) {
        .xgcp {
                grid-template-columns: 1fr; 
            }
    }
    
    
    
    
    /* 实验室展示代码开始 */
        .sys-section {
            padding: 80px 5%;
            background: #fff;
        }
        
        .sys-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .sys-header .sys-title {
            font-size: 36px;
            color: #333;
            margin-bottom: 15px;
        }
        
        .sys-header .sys-description {
            font-size: 18px;
            color: #666;
        }
        
        .sys-tabs {
            max-width: 1500px;
            margin: 0 auto;
        }
        
        .sys-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .sys-btn1 {
            padding: 8px 40px;
            border: none;
            background: none;
            font-size: 18px;
            color: #666;
            cursor: pointer;
            position: relative;
            transition: color 0.3s;
            border: 1px solid #333;
            border-radius: 50px;
        }
        .sys-btn1:hover{ 
        bottom: 0;
        transition: width 0.3s;
        color: #014da8;
        border: 1px solid #014da8;
        }
        
        .sys-btn1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #014da8;
            transition: width 0.3s;
        }
        
        .sys-btn1.active {
            color: #014da8;
        }
        
        .sys-btn1.active::after {
            width: 100%;
        }
        
      /*  .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        */



.sys-link {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 16px;
    color: #333;
}

.sys-link.active {
    border-bottom: 2px solid #014da8;
    color: #014da8;
}

.sys-content {
    padding: 20px 0;
}

.sys-pane {
    display: none;
}

.sys-pane.active {
    display: block;
}

.sys-news-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}





        .sys-service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .sys-service-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .sys-service-image {
            position: relative;
            width: 100%;
            height: 300px;
        }
        
        .sys-service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .sys-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(38,111,175,0.8));
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .sys-service-card:hover .sys-overlay {
            opacity: 1;
        }
        
        .sys-overlay h3 {
            color: #fff;
            font-size: 20px;
            margin: 0;
        }
        
        @media (max-width: 1024px) {
            .sys-service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .sys-tab-buttons {
                flex-direction: column;
                align-items: center;
                gap: 20px;
                margin-bottom: 10px;
                
            }
            
            .sys-tab-btn1{width: 100%;}
            
            .sys-service-grid {
                grid-template-columns: 1fr;
            }
            
            .sys-header .sys-section-title {
                font-size: 28px;
            }
            .sys-header{margin-bottom: 30px;}
            .sys-section{padding: 30px 5%;}
            .sys-honors-section{padding: 30px 0;}
            .sys-products-section{padding: 30px 0;}
            .sys-product-card{margin:20px;}
            .sys-products-container{gap: 0px;}
        }
        
        
        
        .jjq_ms{     max-width: 1500px;
    margin: 20px auto 0;
    padding-left: 20px;}
    .sys-product-list{ flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    }
        /* CDMO检测代码结束 */

