/* 自定义样式 */

/* 视频播放按钮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;
    }
}


/* 自定义颜色变量 */
:root {
    --primary-blue: #0269B6;
    --primary-red: #f3342f;
    --primary-gray: #505050;
    --blue-light: #0284c7;
    --primary-blue-dark: #1e40af;
    --red-light: #dc2626;
    --red-dark: #991b1b;
    --gray-light: #6b7280;
    --gray-dark: #374151;
    /* Font Variables */
    --font-primary: 'HarmonyOS Sans', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'STHeiti', 'SimHei', sans-serif;
}

/* Global Styles */
body {
    font-family: var(--font-primary);
    font-weight: 400;
}

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

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

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

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

/* 自定义颜色工具类 */
.text-primary-blue {
    color: var(--primary-blue);
}
.text-primary-blue-dark {
    color: var(--blue-dark);
}
.text-primary-red {
    color: var(--primary-red);
}

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

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


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

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

.border-primary-blue {
    border-color: var(--primary-blue);
}
.border-primary-blue-dark {
    border-color: var(--primary-blue-dark);
}
.border-primary-red {
    border-color: var(--primary-red);
}

.border-b-primary-blue {
    border-bottom-color: var(--primary-blue);
}

.border-b-white {
    border-bottom-color: white;
}


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

/* 悬停效果 */
.hover\:text-primary-blue:hover {
    color: var(--primary-blue);
}
.hover\:text-primary-blue-dark:hover {
    color: var(--primary-blue-dark);
}

.hover\:primary-blue:hover {
    color: var(--primary-blue);
}
.hover\:primary-blue-dark:hover {
    color: var(--primary-blue-dark);
}

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

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

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

.hover\:border-primary-blue-dark:hover {
    border-color: var(--primary-blue-dark);
}
.hover\:border-primary-red-dark:hover {
    border-color: var(--red-dark);
}

/* Group hover 效果 */
.group:hover .group-hover\:bg-primary-blue {
    background-color: var(--primary-blue);
}
/* 悬停样式 */
.hover\:bg-primary-blue:hover {
    background-color: var(--primary-blue);
}

.hover\:text-white:hover {
    color: white;
}

.hover\:bg-primary-blue-dark:hover {
    background-color: var(--primary-blue-dark);
}
/* 基础边框颜色类 */
.border-primary-blue {
    border-color: var(--primary-blue);
}

.hover\:border-primary-blue:hover {
    border-color: var(--primary-blue);
}

.group:hover .group-hover\:border-primary-blue {
    border-color: var(--primary-blue);
}
.group:hover .group-hover\:border-primary-red {
    border-color: var(--primary-red);
}

.group:hover .group-hover\:text-white {
    color: white;
}

.group:hover .group-hover\:text-primary-blue {
    color: var(--primary-blue);
}

.group:hover .group-hover\:border-white {
    border-color: white !important;
}




/* 渐变遮罩层 */
.gradient-overlay {
    background: linear-gradient(to right, rgba(2, 105, 182, 1) 0%, rgba(2, 105, 182, 1) 20%, transparent 100%);
}


/* 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-link {
    color: #333333;
}
.nav-link:hover,.nav-link.active {
    background: var(--primary-blue);
	color:white;
}
.nav-social-phone span,.nav-social-phone svg{
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

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

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

.relative: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-blue-dark);
}


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


/* 产品中心样式 */
.product-content-swiper {
    overflow: hidden;
}

.product-content-swiper .swiper-slide {
    height: auto;
}

/* 产品轮播图分页器样式 - 仅保留必要的自定义样式 */
.product-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-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-blue);
}

.product-swiper-button-prev.swiper-button-disabled,
.product-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-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-info {
    display: flex;
    flex-direction: column;

}
.product-image{
    position: relative;
}
.product-image img{
mix-blend-mode: multiply;
transition: transform 0.5s ease;
}
.product-card:hover .product-image img{

    transition: transform 0.5s ease;
    transform: scale(1.05);
}

/* 首页应用场景领域轮播样式 */
.application-scenarios-content p{
    transition: 0.5s height  ease ;
    height: 0; 
    overflow: hidden;
}

.application-scenarios-swiper .swiper-slide:hover .application-scenarios-content p{ 
    height: 3.5rem; /* 大约2行文字的高度 */
}
.application-scenarios-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) {
.application-scenarios-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 2px;
}
}

.application-scenarios-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-blue);
}

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




/* 新闻卡片样式 */
.news-card-img{
    max-height: 500px;
    aspect-ratio: 16 / 9;
}


/* 新闻分类按钮样式 */
.news-category-btn.active,.news-category-btn:hover{
    background-color: var(--primary-blue);
    color: white;
}
/* 新闻列表轮播图分页器样式 */
.news-list-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) {
.news-list-swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 2px;
}
}

.news-list-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-blue);
}



/* 分页器样式 */
.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-blue);
    border: 1px solid var(--primary-blue);
}
.pagination a:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}
.pagination b:hover {
    background-color: var(--primary-blue-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;
    }
}



/* 产品列表页：Tabs对应的内容淡入淡出，仅active可交互 */
.products-tab-swiper .swiper-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease;
}

.products-tab-swiper .swiper-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.product-tab-btn {
    transition: all 0.3s ease;
}

.product-tab-btn.active {
    background-color: var(--primary-blue) !important;
    color: white !important;
    border-color: var(--primary-blue) !important;
}

.product-tab-btn:hover:not(.active) {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.product-swiper-nav-btn.active,.product-swiper-nav-btn:hover,.product-swiper-nav a:hover{
    cursor: pointer;
    background-color: var(--primary-blue);
    color: #ffffff;
}
.product-list-tabs li{
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
}
.product-list-tabs li:after{
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: transparent;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: all 0.5s ease;
    margin: 0 auto;
    right:0;
}
.product-list-tabs li.active,
.product-list-tabs li:hover{
    color: var(--primary-blue);
}
.product-list-tabs li.active:after,
.product-list-tabs li:hover:after{
    background-color:var(--primary-blue);
    width: 80%;
}
.product-list-tabs li svg {
    transition: stroke 0.5s ease;
}
.product-list-tabs li.active svg,
.product-list-tabs li:hover svg {
    stroke: var(--primary-blue);
}



/* 导航面板滚动条样式 */
#mobile-nav-content::-webkit-scrollbar {
    width: 3px;
}

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

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

#mobile-nav-content::-webkit-scrollbar-thumb:hover {
    background: var(--blue-light);
}

/* 导航分类项样式 */
.mobile-nav-category-title {
    position: relative;
}
.mobile-nav-category.active .mobile-nav-category-title{
    background-color: var(--primary-blue);
    color: white;
}
.mobile-nav-category.active .mobile-nav-category-title span,
.mobile-nav-category.active .mobile-nav-category-title svg {
    color: white;
}
.mobile-nav-submenu-item.active{background-color:var(--primary-blue);color:white;}


/* 导航面板动画增强 */
#mobile-nav-panel {
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

/* 遮罩层动画 */
#mobile-nav-overlay {
    backdrop-filter: blur(2px);
}


/* 产品详情主图轮播图样式 */
.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;
}

@media(max-width: 767px) {
.product-main-swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 2px;
}
}

.product-main-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-blue);
}

/* 正常状态：product-nav-container 发光 */
.product-nav-container{
    position: relative;
    box-shadow: 
        0px 4px 10px 6px rgba(64, 123, 255, 0.05), 
        0px 7px 16px 0px rgba(41, 107, 255, 0.06), 
        0px 2px 6px 0px rgba(186, 203, 238, 0.10),
        0px 0px 8px 0px rgba(64, 123, 255, 0.08),
        0px 0px 16px 0px rgba(41, 107, 255, 0.04),
        inset 0px 0px 8px 0px rgba(64, 123, 255, 0.02);
}

/* 浮动状态：product-nav-section 发光，container 不发光 */
.product-nav-section.fixed {
    position: fixed;
    top: 80px; /* 导航栏高度 */
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    /* 浮动时 section 发光 */
    box-shadow: 
        0px 4px 10px 6px rgba(64, 123, 255, 0.05), 
        0px 7px 16px 0px rgba(41, 107, 255, 0.06), 
        0px 2px 6px 0px rgba(186, 203, 238, 0.10),
        0px 0px 8px 0px rgba(64, 123, 255, 0.08),
        0px 0px 16px 0px rgba(41, 107, 255, 0.04),
        inset 0px 0px 8px 0px rgba(64, 123, 255, 0.02);
}

.product-nav-section.fixed .product-nav-container {
    /* 浮动时 container 不发光 */
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}


.product-nav-btn {
    transition: all 0.5s ease;
    cursor: pointer;
    text-decoration: none;
}
.product-nav-btn.active,.product-nav-btn:hover {
    color: var(--primary-blue);
}

/* 参数表格样式 */
/* 表格滚动条样式 */
.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-blue);
}

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

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

.canshu td {
    color: #333333;
    min-width: 68px;
}

/* 相关产品产品轮播统一高度 - 使用flexbox方式 */
.product-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.product-swiper .swiper-slide {
    display: flex;
    height: auto;
}

.product-swiper .swiper-slide .product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}



/* 应用场景轮播图分页器样式 */
.application-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) {
.application-swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 2px;
}
}

.application-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-blue);
}

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

/* 新闻列表轮播样式 */
.news-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) {
.news-swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 2px;
}
}
.news-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-blue);
}


.related-news-swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 4px;
    background-color: rgba(161, 160, 160, 0.6);
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 4px;
    border-radius: 0;
}

@media(max-width: 767px) {
.related-news-swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 2px;
}
}

.related-news-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-blue-dark);
}
.related-news-swiper-button-prev.swiper-button-disabled,
.related-news-swiper-button-next.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
}
/* 相关新闻轮播统一高度 - 使用flexbox方式 */
.related-news-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.related-news-swiper .swiper-slide {
    display: flex;
    height: auto;
}

.related-news-swiper .swiper-slide > a {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.related-news-swiper .swiper-slide .news-card-content  {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 新闻详情样式 */
.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;
    border-radius: 8px;
}
.blog-content a{
    color: var(--primary-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 600;
}
.blog-content a:hover{
    color: var(--primary-blue-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-blue);
    border-radius: 4px;
}

.blog-content .table-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue-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-blue);

}


/* 手风琴式服务流程样式 */
.service-accordion-container {
    display: flex;
    width: 100%;
    overflow: hidden;
}
.service-panel {
    width: 20%;
    flex: 0 0 20%;
    position: relative;
    height: 100%;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}
.service-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 活动面板：40%宽度 */
.service-panel.active {
    width: 40%;
    flex: 0 0 40%;
}

.service-panel .service-panel-content{
    position: absolute;
    top:0;   
    left: 0;
    right: 0;
    bottom:0;
    transition: all 0.6s ease;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;

}
.service-panel .service-panel-content:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:  rgba(0, 0, 0, 0.35);
    height:100%;
    z-index: -10;

    transition: all 0.6s ease;
}
.service-panel .service-panel-content p{
    /* 默认无停顿（鼠标离开时立即收起） */
    transition: height 0.5s ease-in 0s, opacity 0.4s ease 0s;
    height: 0; 
    overflow: hidden;
    opacity: 0;
}
.service-panel.active .service-panel-content:after,.service-panel:hover .service-panel-content:after{
    background:  rgba(0, 0, 0, 0.5);
}

.service-panel.active .service-panel-content p,.service-panel:hover .service-panel-content p{ 
    /* 仅悬停/激活时增加停顿（展开前延迟） */
    transition: height 0.5s ease 0.6s, opacity 0.4s ease 0s;
    height: 3.8rem; /* 大约2行文字的高度 */
    opacity: 1;
}

/* 移动端适配 */
@media (max-width: 767px) {
    .service-accordion-container {
        display: flex;
        flex-direction: column;
        height: auto;
    }
    
    .service-panel {
        position: relative;
        width: 100% !important;
        flex: none !important;
        height: auto;

    }
    
    .service-panel:last-child {
        margin-bottom: 0;
    }
    .service-panel .service-panel-content p{
        height: auto; 
        overflow: hidden;
        opacity: 1;
    }
    .service-panel .service-panel-content:after{
        background:  rgba(0, 0, 0, 0.5);
    }
    .service-panel.active .service-panel-content p,.service-panel:hover .service-panel-content p{ 

        height: auto; /* 大约2行文字的高度 */
        opacity: 1;
    }
}
/* 服务网络背景样式 */
.service-network-section::before {
    content: '';
    display: block;
    width: 100%;
    height: 300px;
    background-image: url(../images/service/wangluo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
@media (min-width: 1024px) {
    .service-network-section::before {
        height: 500px;
    }
}
@media (min-width: 1280px) {
    .service-network-section::before {
        height: 600px;
    }
}


/* 企业文化样式 */
.culture-section .culture-section-content .culture-section-item:hover{
    background-color: rgba(2, 105, 182, 0.8); /* primary-blue with 80% opacity */
    transition: all 0.5s ease;

}
/* 荣誉资质模态框样式 */
.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);
}


/* 解决方案功能轮播样式 */
.solution-content-swiper-container {
    position: relative;
}

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

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

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

.solution-content-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-content-swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 2px;
}
}

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

.solution-content-swiper-button-prev.swiper-button-disabled,
.solution-content-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-blue);
}

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


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

.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;
    min-width: 140px;
    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-blue);
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.enterprise-cluster-dropdown {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 50;
    width: 250px;
}

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

.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: 4px 12px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

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

.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 #ffffff;
}

.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;
}

