/* 自定义样式 */

  .rounded-b-xl {
    border-bottom-right-radius: var(--radius-xl);
    border-bottom-left-radius: var(--radius-xl);
  }
  
  
/* 视频播放按钮Z轴缩放动画 */
@keyframes playButtonScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

#play-button {
    animation: playButtonScale 2s infinite ease-in-out;
}

#play-button:hover {
    animation-play-state: paused;
    transform: scale(1.05);
}


@media (min-width: 1536px) and (max-width: 1664px){
    .container{
       padding-left:30px  !important;
	   padding-right:30px  !important;
    }
}


/* 字体定义 */
@font-face {
    font-family: 'SourceHanSansVF';
    src: url('../fonts/SourceHanSans/SourceHanSansCN-VF.otf.woff2') format('woff2-variations');
    font-weight: 100 900; /* 覆盖100-900全字重 */
    font-style: normal;
    font-display: swap;
 /* font-stretch: 75% 125%; /* 宽度轴（可选） */
}

/* 自定义颜色变量 */
:root {
    --primary-green: #298D42;
    --primary-green-dark: #1D6436;
    --primary-gray: #3C3F3F;
    --primary-gray-dark: #272A2A;
    --primary-gray-light: #626565;
    --primary-gray-lighter: #8D9090;
    --primary-gray-lightest: #B7B9B9;
    --primary-gray-lightestest: #f1f1f1;
    --primary-green-light: #f5f5f5;
    /* Font Variables */
    --font-primary: 'SourceHanSansVF', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'STHeiti', 'SimHei', sans-serif;
}

/* 颜色工具类 */
.border-primary-green{
    border:1px solid var(--primary-green);
}
.bg-primary-green {
    background-color: var(--primary-green);
}
.hover\:bg-primary-green:hover {
    background-color: var(--primary-green);
}
.hover\:border-primary-green:hover {
    border-color: var(--primary-green);
}
.hover\:text-white:hover {
    color: white;
}

.bg-primary-green-dark {
    background-color: var(--primary-green-dark);
}

.hover\:bg-primary-green-dark:hover {
    background-color: var(--primary-green-dark);
}

.text-primary-green {
    color: var(--primary-green);
}

.text-primary-green-dark {
    color: var(--primary-green-dark);
}

.bg-primary-green-light {
    background-color: var(--primary-green-light);
}

.bg-primary-gray {
    background-color: var(--primary-gray);
}

.bg-primary-gray-dark {
    background-color: var(--primary-gray-dark);
}

/* Group hover */
.group:hover .group-hover\:text-primary-green {
    color: var(--primary-green);
}
/* Group hover */
.group:hover .group-hover\:text-white {
    color: white;
}
.group:hover .group-hover\:bg-primary-green {
    background-color: var(--primary-green);
}
.group:hover .group-hover\:bg-primary-green-dark {
    background-color: var(--primary-green-dark);
}

/* Global Styles */
body {
    font-family: var(--font-primary);
    font-weight: 400;
    overflow-x: hidden;
    color: #5e5e5e;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-dark);
}




/* GSAP 动画类 - 初始隐藏状态 */
.gsap-animate {
    visibility: hidden;
}

/* Fade In Up - 从下方淡入 */
.gsap-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}

/* Fade In Down - 从上方淡入 */
.gsap-fade-in-down {
    opacity: 0;
    transform: translateY(-30px);
}

/* Fade In Left - 从左侧淡入 */
.gsap-fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
}

/* Fade In Right - 从右侧淡入 */
.gsap-fade-in-right {
    opacity: 0;
    transform: translateX(30px);
}

/* Fade In - 仅淡入 */
.gsap-fade-in {
    opacity: 0;
}

/* Zoom In - 缩放进入 */
.gsap-zoom-in {
    opacity: 0;
    transform: scale(0.8);
}

/* Zoom Out - 放大进入 */
.gsap-zoom-out {
    opacity: 0;
    transform: scale(1.2);
}

/* Slide In Up - 从下方滑入（无淡入） */
.gsap-slide-in-up {
    transform: translateY(50px);
}

/* Slide In Down - 从上方滑入 */
.gsap-slide-in-down {
    transform: translateY(-50px);
}

/* Slide In Left - 从左侧滑入 */
.gsap-slide-in-left {
    transform: translateX(-50px);
}

/* Slide In Right - 从右侧滑入 */
.gsap-slide-in-right {
    transform: translateX(50px);
}

/* 移动端禁用 GSAP 动画 */
@media (max-width: 767px) {
    /* 单个元素在移动端禁用动画 */
    .gsap-animate[data-mobile-disable="true"] {
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* 如果容器有 data-mobile-disable，禁用容器内所有子元素的动画 */
    [data-mobile-disable="true"] .gsap-animate,
    [data-stagger][data-mobile-disable="true"] .gsap-animate {
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.nav-pc .group:hover .absolute {
    transform: scaleY(1) translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}
.nav-pc .group .absolute {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scaleY(0) translateY(-10px);
    transform-origin: top center;
}

/* 导航栏样式 */
.navbar {
    background-color: white;
    transition: background-color 0.5s ease;
    
}
@media (max-width: 1023px) {
    .navbar{border-bottom:1px solid #e0e0e0;}
    }

.navbar.navbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar.navbar-visible {
    transform: translateY(0);
    opacity: 1;
}

.nav-social-phone span,.nav-social-phone svg{
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.nav-link {
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}
.child-menu .nav-link:not(:first-child)::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 1rem;
    background-color: #bdbdbd;
    transform: translateY(-50%);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active,.nav-link:hover {
    color: var(--primary-green);
}

/* 移动端导航栏样式 */
@media (max-width: 1023px) {
    .navbar {
        background-color: white;
    }
    
    .navbar-logo-white {
        display: none;
    }
    
    .navbar-logo {
        display: block;
    }
}

/* 社交媒体二维码悬停效果 */
.social-qrcode-tooltip {
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: transform, opacity;
    transform: translateX(-50%) translateY(2rem);
    /* 初始状态：在图标上方，但向下偏移 2rem（隐藏在图标位置） */
}

.social-media:hover .social-qrcode-tooltip {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
    /* 悬停状态：向上滑动到图标上方的正常位置 */
    pointer-events: auto;
}

/* 顶部导航栏微信二维码提示框 */
.wechat-tooltip {
    z-index: 9999 !important;
    /* 确保二维码提示框在导航栏上方，即使导航栏有 transform */
}

.social-icon-wechat:hover .wechat-tooltip,
.group:hover .wechat-tooltip {
    opacity: 1 !important;
    pointer-events: auto;
}







/* 轮播图样式 */

/* 图片加载状态样式 */
.hero-swiper img {
    transition: opacity 0.5s ease-in-out;
}

.hero-swiper img.loading {
    opacity: 0;
}

.hero-swiper img.loaded {
    opacity: 1;
}

/* 加载动画优化 */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.hero-swiper .animate-pulse {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* 图片预加载优化 */
.hero-swiper img[data-srcPc] {
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}
/* 轮播图加载优化样式 */
.hero-swiper-container {
    position: relative;
    overflow: hidden;
}
.hero-swiper {
    width: 100%;
    height: 100%;
}
.hero-swiper .swiper-slide {
    overflow: hidden;
}
.hero-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hero-swiper-pagination {
    margin-top: 20px;
    text-align: center;
    z-index: 40;
}
.hero-swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 4px;
    background-color: rgba(255,255,255, 0.6);
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 4px;
    border-radius: 0;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-green-dark);
}


.hero-swiper-button-prev.swiper-button-disabled,
.hero-swiper-button-next.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
}
@media(max-width: 767px) {
    .hero-swiper-pagination .swiper-pagination-bullet {
        width: 20px;
        height: 2px;
    }
    }











.product-index-swiper-pagination {
    text-align: center;
    z-index: 40;
}
.product-index-swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 4px;
    background-color: rgba(185, 185, 185, 0.5);
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 4px;
    border-radius: 0;
}
.product-index-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-green-dark);
}
.product-index-swiper-button-prev:hover{
    color:white;
}
@media(max-width: 767px) {
    .product-index-swiper-pagination .swiper-pagination-bullet {
        width: 20px;
        height: 2px;
    }
}

/* 解决方案轮播样式 */
.solution-carousel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.solution-image-swiper-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.solution-image-swiper {
    height: 100%;
    width: 100%;
}
.solution-image-swiper .swiper-slide {
    height: 100%;
    min-height: 600px;
}
.solution-content-swiper-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.solution-content-swiper {
    height: 100%;
    width: 100%;
}
.solution-content-swiper .swiper-slide {
    height: 100%;
}
.solution-bg-image {
    opacity: 0;
    transition: opacity 1s ease-in;
    will-change: opacity;
}

@media (min-width: 1024px) {
    .solution-image-swiper .swiper-slide {
        min-height: 700px;
    }
}

@media (min-width: 1280px) {
    .solution-image-swiper .swiper-slide {
        min-height: 800px;
    }
}
.solution-nav-item {
    border-top: 3px solid transparent;

}
.solution-nav-swiper .active .solution-nav-item,.solution-nav-swiper .swiper-slide:hover .solution-nav-item {
    border-color: var(--primary-green);
}
.solution-nav-swiper .active .solution-nav-item span,.solution-nav-swiper .swiper-slide:hover .solution-nav-item span {
    color: var(--primary-green) !important;
}
.solution-nav-swiper-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    width: 100%;
    pointer-events: auto;
}

.solution-swiper-pagination {
    text-align: center;
    z-index: 40;
}
.solution-swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 4px;
    background-color: rgba(255, 255, 255, 1);
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 4px;
    border-radius: 0;
}
.solution-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-green-dark);
}
.solution-swiper-button-prev:hover{
    color:white;
}
@media(max-width: 767px) {
    .solution-swiper-pagination .swiper-pagination-bullet {
        width: 20px;
        height: 2px;
    }
}


/* 客户案例轮播样式 */
.case-image-wrapper {
    max-height: 500px;
    aspect-ratio: 16 / 9;
}

.case-swiper-button-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
}

@media (max-width: 1023px) {
    .case-swiper-button-wrapper {
        display: none;
    }
}


.case-swiper-pagination {
    text-align: center;
    z-index: 40;
}
.case-swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 4px;
    background-color: rgba(185, 185, 185, 0.6);
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 4px;
    border-radius: 0;
}
.case-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-green-dark);
}
.case-swiper-button-prev:hover{
    color:white;
}
@media(max-width: 767px) {
    .case-swiper-pagination .swiper-pagination-bullet {
        width: 20px;
        height: 2px;
    }
}

/* 相关产品轮播样式 */


.product-related-swiper-pagination {
    text-align: center;
    z-index: 40;
}
.product-related-swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 4px;
    background-color: rgba(185, 185, 185, 0.6);
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 4px;
    border-radius: 0;
}
.product-related-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-green-dark);
}
.product-related-swiper-button-prev:hover{
    color:white;
}
@media(max-width: 767px) {
       .product-related-swiper-pagination .swiper-pagination-bullet {
        width: 20px;
        height: 2px;
    }
}

/* 解决方案详情页轮播样式 */
.solution-detail-swiper-pagination {
    text-align: center;
    z-index: 40;
}
.solution-detail-swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 4px;
    background-color: rgba(185, 185, 185, 0.6);
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 4px;
    border-radius: 0;
}
.solution-detail-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-green-dark);
}
.solution-detail-swiper-button-prev:hover{
    color:white;
}
@media(max-width: 767px) {
       .solution-detail-swiper-pagination .swiper-pagination-bullet {
        width: 20px;
        height: 2px;
    }
}


.culture-section .culture-section-content .culture-section-item:hover{
    background-color: rgba(255, 255, 255, 0.8);
    transition: background-color 0.5s ease;
}
.culture-section .culture-section-content .culture-section-item h3,.culture-section .culture-section-content .culture-section-item p{
    transition: all 0.3s ease-in;
}
.culture-section .culture-section-content .culture-section-item:hover h3,.culture-section .culture-section-content .culture-section-item:hover p{
    color: black;
}


.news-card-img{
    max-height: 500px;
    aspect-ratio: 16 / 9;
}
.news-category-btn.active{
    background-color: var(--primary-green);
    color: white;
}


/* 合作伙伴轮播样式 */

.partner-swiper-button-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
}

@media (max-width: 1023px) {
    .partner-swiper-button-wrapper {
        display: none;
    }
}


.partner-swiper-pagination {
    text-align: center;
    z-index: 40;
}
.partner-swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 4px;
    background-color: rgba(185, 185, 185, 0.6);
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 4px;
    border-radius: 0;
}
.partner-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-green-dark);
}
.partner-swiper-button-prev:hover{
    color:white;
}
@media(max-width: 767px) {
    .partner-swiper-pagination .swiper-pagination-bullet {
        width: 20px;
        height: 2px;
    }
}



/* 产品列表页面样式 */
.product-category .category-toggle{
    transition: color 0.5s ease;
}
.product-category.active .category-toggle,.product-category:hover .category-toggle {
    color: var(--primary-green);
}
.product-category.active .category-toggle svg {
    color: var(--primary-green);
}
.product-category.active .product-category-items{
    color: var(--primary-green);
    font-weight:700;

}
.product-category .product-achievement-item.active{
    background-color:#F3F4F6;
    color:var(--primary-green);
    font-weight:500;
}

.category-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}
.category-toggle-btn svg {
    transform: rotate(0deg) !important;
    transition: transform 0.5s ease;
}
.category-toggle-btn:hover svg {
    color: var(--primary-green);
}
.category-toggle-btn svg.rotate-180 {
    transform: rotate(90deg) !important;
}

#mobile-nav-toggle {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#mobile-nav-panel {
    max-width: 320px;
    height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
}
#mobile-nav-overlay {
    backdrop-filter: blur(2px);
}
/* 移动端导航中的分类样式调整 */
#mobile-nav-content {
    -webkit-overflow-scrolling: touch; /* iOS平滑滚动 */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    max-height: 100% !important;
}



#mobile-nav-content .category-toggle {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

#mobile-nav-content .category-content {
    padding-left: 1rem;
}

/* 移动端导航滚动条样式 */
#mobile-nav-content::-webkit-scrollbar {
    width: 4px;
}

#mobile-nav-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

#mobile-nav-content::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 2px;
}

#mobile-nav-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-dark);
}

/* 确保移动端导航内容可以滚动 */
@media (max-width: 1023px) {
    #mobile-nav-panel {
        height: 100vh !important;
        max-height: 100vh !important;
    }
    
    #mobile-nav-content {
        flex: 1 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

/* 防止移动端滚动穿透 */
body.overflow-hidden {
    overflow: hidden;
}


.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card .product-image {
    overflow: hidden;
    flex-shrink: 0;
}

.product-card .product-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform 0.8s ease;
}

.product-card:hover .product-image img{
    transform: scale(1.05);
}


/* 产品详情主图轮播图样式 */
.product-main-swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 4px;
    background-color: #d1d5db;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
    border-radius: 0;
}

.product-main-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-green);
}
@media(max-width: 767px) {
    .product-main-swiper-pagination .swiper-pagination-bullet {
        width: 20px;
        height: 2px;
    }
}


/* 案例详情主图轮播图样式 */
.case-detail-swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 4px;
    background-color: #d1d5db;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
    border-radius: 0;
}

.case-detail-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-green);
}
@media(max-width: 767px) {
    .case-detail-swiper-pagination .swiper-pagination-bullet {
        width: 20px;
        height: 2px;
    }
}




.solution-contents-swiper-container {
    position: relative;
}

@media (max-width: 1024px) {
    .solution-contents-swiper-container {
        padding: 0;
    }
}

.solution-contents-swiper .swiper-slide {
    height: auto;
}

.solution-contents-swiper-pagination {
    margin-top: 20px;
    text-align: center;
    z-index: 40;
}

.solution-contents-swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 4px;
    background-color: #d1d5db;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
    border-radius: 0;
}
@media(max-width: 767px) {
.solution-contents-swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 2px;
}
}

.solution-contents-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-green);
}

.solution-contents-swiper-button-prev.swiper-button-disabled,
.solution-contents-swiper-button-next.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
}


.solution-features-swiper-container {
    position: relative;
}

@media (max-width: 1024px) {
    .solution-features-swiper-container {
        padding: 0;
    }
}

.solution-features-swiper .swiper-slide {
    height: auto;
}

.solution-features-pagination {
    margin-top: 20px;
    text-align: center;
    z-index: 40;
}

.solution-features-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 4px;
    background-color: #d1d5db;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
    border-radius: 0;
}
@media(max-width: 767px) {
.solution-features-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 2px;
}
}

.solution-features-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-green);
}

.solution-features-swiper-button-prev.swiper-button-disabled,
.solution-features-swiper-button-next.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
}








/* 分页器样式 */
.pagination a,
.pagination b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    cursor: pointer;
    user-select: none;
    position: relative;
    overflow: hidden;
}
.pagination a {
    color: #374151;
    background-color: white;
    border: 1px solid #d1d5db;
}
.pagination b {
    color: white;
    background-color: var(--primary-green);
    border: 1px solid var(--primary-green);
}
.pagination a:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}
.pagination b:hover {
    background-color: var(--primary-green-dark);
}

@media (max-width: 768px) {
    .pagination a,
    .pagination b {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.8rem;
    }
}
@media (max-width: 480px) {
    .pagination a,
    .pagination b {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
}




/* 参数表格样式 */
/* 表格滚动条样式 */
.table-container::-webkit-scrollbar {
    width: 6px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.table-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.canshu{ font-size: 14px; overflow: hidden;}
/* 表格容器支持横向滚动 */
.canshu .table-container{
    max-height: 500px;
    max-width: 100vw;
    width: 100%;
    position: relative;
    overflow-x: auto;
    overflow-y: auto;
    padding-right: 16px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}
.canshu .table-container p {
    margin: 20px 0;
    font-size:14px;
}

.canshu .table-container h3{
font-size: 16px;
font-weight: 600;
margin-bottom: 1.25rem;
position: relative;
}

/* 自定义滚动条样式 - 让滚动条更细 */
.canshu .table-container::-webkit-scrollbar {
    width: 3px; /* 竖向滚动条宽度 */
    height: 3px; /* 水平滚动条高度 */

}

.canshu .table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0;
}

.canshu .table-container::-webkit-scrollbar-thumb {
    background: #1E579E;
    border-radius: 0;
}

.canshu .table-container::-webkit-scrollbar-thumb:hover {
    background: #0f3d6b;
}

.canshu table{
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    
}

.canshu th,.canshu td {
    padding: 10px;
    text-align: center;
    font-size: 14px;
    background-color:white;
    transition: background-color 0.1s ease,color 0.3s ease;
    border-bottom: 1px solid #e0e0e0;

}

.canshu-img {
    background-color: transparent !important;
}

.canshu-img img {
    background-color: transparent !important;
    mix-blend-mode: normal;
}
@media (max-width: 767px) {

    .canshu th,.canshu td {
        font-size: 12px !important;
    
    }
    .canshu table tr:first-child td{
        font-size: 12px !important;
    }
}
@media (max-width: 1023px) {
    .canshu .canshu-img {
        max-width: 300px !important;
    }
    /* 确保移动端滚动条间距也生效 */
    .canshu .table-container {
        padding-right: 16px;
        padding-bottom: 16px;
    }
}
@media (min-width: 1024px) {

.canshu .table-container p {
    font-size:16px;
}
.canshu .table-container h3{
font-size: 18px;
}

.canshu th,.canshu td {
    font-size: 16px;
    padding: 20px;

   }
}
/* 固定表头样式 */
.canshu table tr:first-child {
    position: sticky;
    -webkit-position: sticky;
    -moz-position: sticky;
    -ms-position: sticky;
    -o-position: sticky;
    top: 0px;
    z-index: 20;
    color: white;
}
.canshu table tr:first-child td{
    font-size: 16px;
}

.canshu table tr:first-child td {
   color: white;
    background-color: var(--primary-green);
}

.canshu tr:nth-child(odd) td {
    background-color: #f0f0f0;
}

.canshu tr:hover td {
    background-color: var(--primary-green);
    color: white;
}

.canshu td {
    color: #333333;
}


/* 新闻详情样式 */
.blog-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    line-height: 1.4;
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
    line-height: 1.4;
}

.blog-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1.8rem;
    line-height: 1.4;
}

.blog-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    line-height: 1.4;
}

.blog-content p,
.blog-content li {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--primary-gray);
    font-size: 16px;
}

.blog-content img {
    display: block;
    height: auto !important;
    margin: 2rem auto;
    max-width: 100% !important;
}
.blog-content a{
    color: var(--primary-green);
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 600;
}
.blog-content a:hover{
    color: var(--primary-green-dark);
}

.blog-content .table-container {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    margin: 2rem 0;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    max-height: none;
    height: auto;
}

.blog-content .table-container::-webkit-scrollbar {
    height: 3px;
    width: 0px;
}

.blog-content .table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.blog-content .table-container::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

.blog-content .table-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-dark);
}

.blog-content .table-container {
    overflow-y: hidden !important;
}

.blog-content table {
    width: 100% !important;
    min-width: 700px !important;
    border-collapse: collapse !important;
    margin: 0;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    border: none !important;
    height: auto !important;
    max-height: none !important;
}

.blog-content table th,
.blog-content table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    vertical-align: top;
    white-space: nowrap;
    height: auto;
}

.blog-content table th:last-child,
.blog-content table td:last-child {
    border-right: none;
}

.blog-content table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: var(---text-dark);
    font-size: 14px;
    border-bottom: 2px solid #d1d5db;
}

.blog-content table td {
    color: var(---text-gray);
    font-size: 14px;
    line-height: 1.5;
}

.blog-content table tr:hover {
    background-color: #f9fafb;
}




.blog-content table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .blog-content h2 {
        font-size: 20px;
        margin-bottom: 1.2rem;
        margin-top: 2rem;
    }
    
    .blog-content h3 {
        font-size: 18px;
        margin-bottom: 1rem;
        margin-top: 1.8rem;
    }
    
    .blog-content p,
    .blog-content li {
        font-size: 14px;
        margin-bottom: 1.2rem;
    }
    
    .blog-content img {
        margin: 1.5rem auto;
    }
    
    .blog-content .table-container {
        margin: 1.5rem 0;
    }
    
    .blog-content table {
        font-size: 13px;
    }
    
    .blog-content table th,
    .blog-content table td {
        padding: 8px 12px;
        font-size: 13px;
    }
}
.blog-next-prev a{
    transition: color 0.5s ease;
}
.blog-next-prev a:hover {
    color: var(--primary-green);

}


.case-description h3 {
    font-size: 1.25rem;
    font-weight: bolder;
    margin-bottom:1rem;
}
.case-description h4 {
    font-size: 1.125rem;
    font-weight: bolder;
    margin-bottom:1rem;
}
.case-description p,
.case-description li {
    margin-bottom:1rem;
    font-size: 1rem;
}
.case-description li{
    list-style: disc;
    color: var(--primary-gray);
    list-style-position: inside;
    margin-left: 10px;
}
.case-description a{
    display: inline-block;
    padding: 0.2rem 0;
    color:#2c2c2c;
    font-size: 1rem;
    transition: color 0.5s ease;
    font-weight: 600;
    border-bottom: 1px solid #2c2c2c;
}
.case-description a:not(:last-child){
    margin-right:0.3rem;
}
.case-description a:hover{
    color: var(--primary-green);
    border-bottom: 1px solid var(--primary-green);
}
@media (max-width: 1023px) {
.case-description h3 {
    font-size: 1.125rem
}
.case-description h4 {
    font-size: 1rem
}
.case-description p,
.case-description li {
  font-size: 0.875rem
}
}



/* 企业集群下拉菜单样式 */
.enterprise-cluster-container {
    overflow: visible;
    position: relative;
    z-index: 99;
}

.enterprise-cluster-wrapper {
    position: relative;
    display: inline-block;
}

.enterprise-cluster-wrapper:hover .enterprise-cluster-dropdown {
    opacity: 1;
    pointer-events: auto;
}

.enterprise-cluster-wrapper:hover .enterprise-cluster-icon {
    transform: rotate(180deg);
}

.enterprise-cluster-button {
    padding: 8px 16px;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: #374151;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enterprise-cluster-text {
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.enterprise-cluster-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    color: var(--primary-green);
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.enterprise-cluster-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 500;
    width: 248px;
}

.enterprise-cluster-menu {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	margin-top:18px;
}

.enterprise-cluster-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.enterprise-cluster-list li {
    margin-bottom: 8px;
}

.enterprise-cluster-list li:last-child {
    margin-bottom: 0;
}

.enterprise-cluster-link {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
}

.enterprise-cluster-link:hover {
    background-color: var(--primary-green);
    color: #ffffff;
}

.enterprise-cluster-arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -1px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #cccccc;
}

.enterprise-cluster-arrow-border {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -1px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #e5e7eb;
}

/* 或者使用媒体查询检测高DPI屏幕 */
@media screen and (-webkit-min-device-pixel-ratio: 1.5),
       screen and (min-resolution: 144dpi) {
    .enterprise-cluster-menu {
        transform: scale(0.68);
        transform-origin: bottom right;
    }
	
.enterprise-cluster-arrow {
display:none;
}

.enterprise-cluster-arrow-border {
display:none;
}
}

/* 产品导航轮播样式 */
.product-nav-index-swiper .swiper-wrapper {
    flex-direction: column;
    display: flex;
    transform: none !important;
}
.product-nav-index-swiper .swiper-slide-item {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* 产品卡片左右列等高居中 */

.product-nav-index-swiper .swiper-slide-item:hover {
    color: var(--primary-green);
}
.product-nav-index-swiper .swiper-slide-item.active {
    color: var(--primary-green);
    font-weight: 500;
}
/* 产品图片轮播样式 */
.product-image-index-swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.product-image-index-swiper .swiper-wrapper {
    position: relative;
}
/* Fade 效果支持 - 每个 slide 占据 100% 宽度，重叠显示 */
.product-image-index-swiper .swiper-slide-item {
    width: 100% !important;
    flex-shrink: 0;
    opacity: 0 !important;
    transition: opacity 0.6s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.product-image-index-swiper .swiper-slide-item.active {
    opacity: 1 !important;
    position: relative;
    z-index: 1;
    
}


.certificate-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.certificate-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.certificate-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    animation: zoomIn 0.3s ease;
}

.certificate-modal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.certificate-modal-close {
    position: absolute;
    top: -50px;
    right: 0px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    text-align: center;
    border: 2px solid #ffffff;
    padding: 8px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}