/* 自定义样式文件 */


/* 全局字体变量 */
:root {
    --font-chinese: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'STHeiti', 'SimHei', sans-serif;
    --font-fallback: 'Helvetica Neue', Arial, sans-serif;
    --font-primary: var(--font-chinese), var(--font-fallback);
}

/* 全局样式 */
* {
    box-sizing: border-box;
}

/* 字体定义 - 整合自fonts.css */
:root {
    --font-chinese-primary: 'Microsoft YaHei', '微软雅黑';
    --font-chinese-secondary: 'PingFang SC', '苹方';
    --font-chinese-fallback: 'Hiragino Sans GB', 'STHeiti', 'SimHei', '黑体';
    --font-english: 'Helvetica Neue', Arial, sans-serif;
    
    /* 主要字体组合 */
    --font-primary: var(--font-chinese-primary), var(--font-chinese-secondary), var(--font-chinese-fallback), var(--font-english);
    --font-sans: var(--font-primary);
    --font-body: var(--font-primary);
}

/* 强制所有元素使用中文字体 */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, button, input, textarea, select, label, li, td, th, caption, legend, fieldset, form, table, tr, ul, ol, dl, dt, dd, blockquote, pre, code, samp, kbd, var, cite, dfn, em, strong, small, sub, sup, ins, del, mark, time, b, i, u, s, q, abbr, acronym, address, big, center, font, strike, tt {
    font-family: var(--font-primary) !important;
}

/* 特定元素的字体设置 */
html, body {
    font-family: var(--font-primary) !important;
}

/* 标题字体 */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary) !important;
}

/* 段落和文本 */
p, span, div, a, li, td, th, label, input, textarea, select, button {
    font-family: var(--font-primary) !important;
}

/* 表单元素 */
input, textarea, select, button, label {
    font-family: var(--font-primary) !important;
}

/* 表格元素 */
table, tr, td, th, caption {
    font-family: var(--font-primary) !important;
}

/* 列表元素 */
ul, ol, li, dl, dt, dd {
    font-family: var(--font-primary) !important;
}

/* 引用和代码 */
blockquote, pre, code, samp, kbd, var {
    font-family: var(--font-primary) !important;
}

/* 内联元素 */
em, strong, small, sub, sup, ins, del, mark, time, b, i, u, s, q, abbr, acronym, cite, dfn {
    font-family: var(--font-primary) !important;
}

/* 确保所有可能的元素都使用中文字体 */
[class*="text-"], [class*="font-"] {
    font-family: var(--font-primary) !important;
}

/* Tailwind CSS 字体类覆盖 */
.font-sans {
    font-family: var(--font-primary) !important;
}

.text-base, .text-sm, .text-lg, .text-xl, .text-2xl, .text-3xl, .text-4xl, .text-5xl, .text-6xl {
    font-family: var(--font-primary) !important;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
}

.container {
    @media (width >= 96rem) {
        max-width: 96rem;
    }
}

/* 企业主题色彩 */
:root {
    --color-primary-blue: #2a82e4;
    --color-primary-blue-dark: #174f85;
    --color-primary-blue-light: #1e569d;
    --color-text-dark: #333333;
    --color-text-gray: #666666;
    --color-bg-primary-gray:#eaedf0;
    --color-bg-light: #F5F7FA;
    --color-border-light: #e5e7eb;
    --color-accent-gold: #eec23d;
    --color-accent-gold-dark: #c58d14;
}

.bg-primary-gray {
    background-color: var(--color-primary-gray, #eaedf0);
}
.text-text-gray{
    color: var(--color-text-gray, #666666);
}

.nav-pc li{margin: 0;}
/* Tailwind CSS v4 自定义颜色支持 */
.bg-primary-blue {
    background-color: var(--color-primary-blue, #2d7dd2);
}

.bg-primary-blue-dark {
    background-color: var(--color-primary-blue-dark, #154a7a);
}

.bg-primary-blue-light {
    background-color: var(--color-primary-blue-light, #1e569d);
}

.text-primary-blue {
    color: var(--color-primary-blue, #2d7dd2);
}

.text-primary-blue-dark {
    color: var(--color-primary-blue-dark, #154a7a);
}

.text-primary-blue-light {
    color: var(--color-primary-blue-light, #1e569d);
}

.border-primary-blue {
    border-color: var(--color-primary-blue, #2d7dd2);
}

.border-primary-blue-dark {
    border-color: var(--color-primary-blue-dark, #154a7a);
}

.border-primary-blue-light {
    border-color: var(--color-primary-blue-light, #1e569d);
}
.hover\:border-primary-blue-light:hover {
    border-color: var(--color-primary-blue-light, #1e569d);
}
.hover\:bg-primary-blue:hover {
    background-color: var(--color-primary-blue, #2d7dd2);
}
.hover\:bg-primary-blue-dark:hover {
    background-color: var(--color-primary-blue-dark, #154a7a);
}
.hover\:bg-primary-blue-light:hover {
    background-color: var(--color-primary-blue-light, #1e569d);
}

.hover\:text-primary-blue:hover {
    color: var(--color-primary-blue, #2d7dd2);
}
.hover\:text-primary-blue-light:hover {
    color: var(--color-primary-blue-light, #1e569d);
}

.hover\:border-primary-blue:hover {
    border-color: var(--color-primary-blue, #2d7dd2);
}
.hover\:bg-primary-gray:hover {
    background-color: var(--color-bg-primary-gray, #eaedf0);
}

/* 确保hover:text-white有足够高的优先级 */
.hover\:text-white:hover {
    color: #ffffff !important;
}

.group:hover .group-hover\:bg-primary-blue {
    background-color: var(--color-primary-blue, #2d7dd2);
}

.group:hover .group-hover\:text-primary-blue {
    color: var(--color-primary-blue, #2d7dd2);
}
.group:hover .group-hover\:text-primary-blue-light {
    color: var(--color-primary-blue-light, #1e569d);
}
.group:hover .group-hover\:bg-primary-blue-light {
    background-color: var(--color-primary-blue-light, #1e569d);
}
.group:hover .group-hover\:text-white {
    color: #ffffff;
}

.group:hover .group-hover\:bg-primary-blue-dark {
    background-color: var(--color-primary-blue-dark, #154a7a);
}

.group:hover .group-hover\:to-primary-blue-dark {
    --tw-gradient-to: var(--color-primary-blue-dark, #154a7a);
}

.group:hover .group-hover\:from-primary-blue {
    --tw-gradient-from: var(--color-primary-blue, #2d7dd2);
}



/* 企业级按钮样式 */
.btn-enterprise {
    background: var(--color-primary-blue);
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


.btn-enterprise:hover {
    transform: translateY(-2px);
}

.btn-enterprise-secondary {
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-gold-dark) 100%);
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-enterprise-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

/* 企业级卡片样式 */
.enterprise-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-border-light);
    overflow: hidden;
}

.enterprise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary-blue);
}

/* 关于我们板块样式 */
.about-section {
    position: relative;
    background: #ffffff;
}

/* 产品中心自定义导航按钮样式 */
.products-swiper-prev,
.products-swiper-next {
    position: static;
}



/* 产品中心自定义分页指示器样式 */
.products-swiper-pagination {
    position: static;
    width: auto;
    margin: 0;
    text-align: center;
    width: 40% !important;
}

.products-swiper-bullet {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.8;
    margin: 0 5px;
    display: inline-block;
    transform-origin: center;
}

.products-swiper-bullet-active {
    width: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* 生产流程样式 */
.flow-step {
    transition: transform 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
}

.flow-step .w-16 {
    transition: all 0.3s ease;
}

.flow-step:hover .w-16 {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* 生产流程连接线动画 */
.flow-step:nth-child(1) .w-16,
.flow-step:nth-child(21) .w-16 {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.flow-step:nth-child(2) .w-16,
.flow-step:nth-child(3) .w-16,
.flow-step:nth-child(4) .w-16,
.flow-step:nth-child(5) .w-16,
.flow-step:nth-child(6) .w-16,
.flow-step:nth-child(7) .w-16,
.flow-step:nth-child(8) .w-16,
.flow-step:nth-child(9) .w-16,
.flow-step:nth-child(10) .w-16,
.flow-step:nth-child(11) .w-16,
.flow-step:nth-child(12) .w-16,
.flow-step:nth-child(13) .w-16,
.flow-step:nth-child(14) .w-16,
.flow-step:nth-child(15) .w-16,
.flow-step:nth-child(16) .w-16,
.flow-step:nth-child(17) .w-16,
.flow-step:nth-child(18) .w-16,
.flow-step:nth-child(19) .w-16,
.flow-step:nth-child(20) .w-16 {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

/* 工序卡片样式 */
.process-section {
    transition: all 0.3s ease;
}

.process-header {
    transition: all 0.3s ease;
}

.process-header:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* 设备卡片样式 */
.equipment-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

/* 产品卡片悬停效果 - 统一样式 */
.product-card-image-simple {
    position: relative;
    overflow: hidden;
}

.product-card-image-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 136, 236, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 10;
}

.product-card-image-simple::after {
    content: '查看详情 >';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 11;
}
@media (max-width: 768px) {
.product-card-image-simple::after {
	font-size:0.8rem;
}

}
.product-card-simple:hover .product-card-image-simple::before {
    opacity: 1;
}

.product-card-simple:hover .product-card-image-simple::after {
    opacity: 1;
}

.about-content {
    position: relative;
    z-index: 1;
}

/* 产品板块样式 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.product-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--colorborder-light);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary-blue);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 20px;
    text-align: center;
}

.product-features p,.product-usage p,.product-environment p{
    position: relative;
    margin-left: 30px;
}
.product-features p:before,.product-usage p:before,.product-environment p:before{
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 100%;
    border: 1px solid var(--color-primary-blue-light);
}
.product-features p:after,.product-usage p:after,.product-environment p:after{
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--color-primary-blue-light);
    border-radius: 100%;
}


/* 联系方式模块样式 */
.contact-section {
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-primary-blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-button {
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-gold-dark) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
}

.contact-button-secondary {
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-primary-blue-dark) 100%);
    box-shadow: 0 4px 20px rgba(30, 87, 158, 0.4);
}

.contact-button-secondary:hover {
    box-shadow: 0 8px 30px rgba(30, 87, 158, 0.6);
}

/* 新的联系方式按钮样式 */
.contact-button-primary {
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-gold-dark) 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 200px;
}

.contact-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-button-primary:hover::before {
    left: 100%;
}

.contact-button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.6);
}

.contact-button-secondary-new {
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-primary-blue-dark) 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(30, 87, 158, 0.4);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 200px;
}

.contact-button-secondary-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-button-secondary-new:hover::before {
    left: 100%;
}

.contact-button-secondary-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(30, 87, 158, 0.6);
}
/* 头部样式 */
.header-shadow {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 导航栏样式 */
.nav-link {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fbbf24;
    transition: width 0.3s ease;
}

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


/* 轮播图样式 */
.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-pagination-bullet {
    background-color: #ffffff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #dc2626;
}

/* 产品卡片样式 */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #dc2626;
}

/* 新闻卡片样式 */
.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #dc2626;
}

/* 案例卡片样式 */
.case-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.case-card:hover {
    transform: scale(1.05);
}

.case-card img {
    transition: transform 0.3s ease;
}

.case-card:hover img {
    transform: scale(1.1);
}

/* 按钮样式 */
.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

/* 搜索框样式 */
.search-input {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-card {
        padding: 24px;
    }
    
    .contact-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .contact-button-primary,
    .contact-button-secondary-new {
        padding: 16px 32px;
        font-size: 16px;
        min-width: 180px;
    }
    
    .news-item-horizontal {
        padding: 16px;
    }
    
    .news-content-horizontal h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image-simple {
        padding: 10px;
    }
    
    .product-image-simple img {
        height: 180px;
    }
    
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .btn-enterprise {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .btn-enterprise-secondary {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .contact-button-primary,
    .contact-button-secondary-new {
        padding: 14px 28px;
        font-size: 14px;
        min-width: 160px;
    }
    
    .news-item-horizontal {
        padding: 12px;
    }
    
    .news-content-horizontal h4 {
        font-size: 1.25rem;
    }
    
    .contact-card h2 {
        font-size: 2.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.5rem;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 滚动动画 */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 工具提示样式 */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

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

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

::-webkit-scrollbar-thumb {
    background: #1E579E;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #154a7a;
}

/* 打印样式 */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .page-break {
        page-break-before: always;
    }
}

/* 简化产品样式 */
.product-item-simple {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #f8f8f8;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    cursor: pointer;
}

.product-item-simple:hover {
    transform: translateY(-4px);
}

.product-image-simple {
    background: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f8fafc;
}

.product-image-simple img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.product-item-simple:hover .product-image-simple img {
    transform: scale(1.05);
    filter: brightness(1.1);
}



.product-info-simple h4 {
    transition: color 0.3s ease;
}


.product-item-simple {
    position: relative;
}

.product-item-simple .product-info-simple {
    position: relative;
    z-index: 1;
}

.product-info-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-primary-blue);
    transition: width 0.5s ease;
    z-index: -1;
}

.product-item-simple:hover .product-info-simple::before {
    width: 100%;
}

.product-item-simple:hover .product-info-simple h4 {
    color: white;
}





/* 新闻模块新样式 */
.news-left-section {
    display: flex;
    flex-direction: column;
}

/* 新闻轮播样式 */
.news-swiper {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
}

.news-swiper .swiper-slide {
    height: auto;
    padding: 0;
}

.news-swiper .news-item-main {
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-swiper .news-content-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-swiper .news-button {
    margin-top: auto;
    align-self: flex-start;
}

/* 新闻轮播分页器样式 */
.news-pagination {
    position: relative;
    bottom: 20px;
    margin-top: 20px;
}

.news-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #e5e7eb;
    opacity: 0.6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary-blue);
    opacity: 1;
    transform: scale(1.2);
}


.news-swiper{overflow: hidden;}
/* 新闻轮播导航按钮样式 */
.news-swiper .swiper-button-next,
.news-swiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    background: var(--color-primary-blue-light);
    border-radius: 50%;
    color: #ffffff;
    transition: transform 0.5s ease, background-color 0.5s ease;
    top: 30%;
    margin-top: 0;
}

.news-swiper .swiper-button-prev {
    left: 20px;
}

.news-swiper .swiper-button-next {
    right: 20px;
}


.news-button-next:hover,
.news-button-prev:hover {
    background: var(--color-primary-blue);
    color: white;
    transform: scale(1.1);
}

.news-button-next::after,
.news-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .news-swiper .swiper-button-next,
    .news-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        top: 30%;
    }
}

.news-item-main {
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 24px;
}


.news-image-main {
    position: relative;
    overflow: hidden;
}

.news-image-main img {
    transition: transform 0.3s ease;
}

.news-item-main:hover .news-image-main img {
    transform: scale(1.05);
}



.category-tab{background-color:transparent;}
.category-tab.active{background-color:var(--color-primary-blue-light)}

  /* 简洁产品卡片样式 */
  .product-card-simple {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-color: #fbfbfb;
    will-change: transform, box-shadow;
}


.product-card-image-simple {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    
}

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

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

/* 产品标签 */
.product-badge-simple {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--color-accent-gold);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    z-index: 2;
}

/* 产品信息区域 */
.product-info-simple {
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.product-title-simple {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.product-card-simple:hover .product-title-simple {
    color: var(--color-primary-blue);
}



/* 产品网格动画 - 移除自定义动画，使用wow.js */

/* 确保wow.js动画完成后，产品卡片的悬停效果正常 */
.product-grid-item.animate__animated .product-card-simple {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation-fill-mode: both;
    position: relative;
    z-index: 1;
}


/* 确保wow.js动画完成后重置transform属性 */
.product-grid-item.animate__animated.animate__fadeInUp {
    animation-fill-mode: both;
}

/* 优化产品卡片的过渡效果 - 已在上面定义 */

/* 新闻网格动画 */
/* 移除自定义动画，使用animate.css */





/* 平板端优化 */
@media (min-width: 769px) and (max-width: 1024px) {
    .product-grid-item {
        animation-delay: calc(var(--index, 0) * 0.05s);
    }
    
    .news-grid-item {
        animation-delay: calc(var(--index, 0) * 0.05s);
    }
}



/* 新闻卡片样式 - 参考产品卡片 */
.news-card-simple {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
    background-color: #fbfbfb;
}


.news-card-image-simple {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.news-card-image-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card-simple:hover .news-card-image-simple img {
    transform: scale(1.1);
}




/* 新闻信息区域 */
.news-info-simple {
    border-top: 1px solid #e5e7eb;
    text-align: left;
}

.news-card-simple:hover .news-info-simple {
    background-color: var(--color-bg-primary-gray);
}

.news-title-simple {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.news-card-simple:hover .news-title-simple {
    color: var(--color-primary-blue-light);
   
}

.news-read-more-simple {
    background: transparent;
    color: var(--color-primary-blue);
    padding: 0;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.news-read-more-simple::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary-blue);
    transition: width 0.3s ease;
}

.news-card-simple:hover .news-read-more-simple::after {
    width: 100%;
}

.news-card-simple:hover .news-read-more-simple {
    color: var(--color-primary-blue-dark);
}

/* 产品卡片点击状态 */


/* 新闻卡片点击状态 */
.news-card-simple:active {
    transform: translateY(-4px);
}

/* Hero Banner 轮播图样式 - 完全复制企业实力模块的样式 */

.hero-swiper .swiper-slide {
    overflow: hidden;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}


/* Hero Banner 导航按钮样式 - 完全复制企业实力模块的样式 */
.hero-swiper-button-next,
.hero-swiper-button-prev {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary-blue-light);
    border-radius: 50%;
    color: white;
    transition: transform 0.5s ease, background-color 0.5s ease;
}

.hero-swiper-button-next:hover,
.hero-swiper-button-prev:hover {
    background-color: var(--color-primary-blue);
    transform: scale(1.1);
}

.hero-swiper-button-next::after,
.hero-swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Hero Banner 分页器样式 - 完全复制企业实力模块的样式 */
.hero-swiper-pagination {
    margin-top: 20px;
    text-align: center;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255, 0.6);
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 4px;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary-blue-light);
    transform: scale(1.2);
}
.hero-swiper-button-next{
    right: 80px;
}
.hero-swiper-button-prev {
left: 80px;
}

/* Hero Banner 响应式调整 - 完全复制企业实力模块的样式 */
@media (max-width: 1024px) {
    
    .hero-swiper-button-next,
    .hero-swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    .hero-swiper-button-next{
        right: 20px;
    }
.hero-swiper-button-prev {
    left: 20px;
}
}
@media (max-width: 768px) {
        
    .hero-swiper-button-next::after,
    .hero-swiper-button-prev::after {
        font-size: 16px;
    }
}

/* 分页控件样式 */
.pagination-btn {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination-btn:hover {
    background-color: var(--color-primary-blue);
    border-color: var(--color-primary-blue);
    color: white;
}

/* 分页按钮激活状态 */
.pagination-btn.active {
    background-color: var(--color-primary-blue) !important;
    color: white !important;
    border-color: var(--color-primary-blue) !important;
    box-shadow: 0 4px 12px rgba(30, 87, 158, 0.3);
}

.pagination-btn.active:hover {
    background-color: var(--color-primary-blue-dark) !important;
    box-shadow: 0 6px 16px rgba(30, 87, 158, 0.4);
}

/* 分页按钮禁用状态 */
.pagination-btn:disabled,
.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* 分页按钮悬停效果增强 */
.pagination-btn:not(:disabled):not(.disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* 分页按钮点击效果 */
.pagination-btn:not(:disabled):not(.disabled):active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



/* 桌面导航子菜单动画效果 */
.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;
}






/* 移动端子菜单动画效果 */
.mobile-submenu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: none;
    padding: 0;
    margin: 0;
    border: none;
    line-height: 0;
}

.mobile-submenu.active {
    max-height: 300px;
    opacity: 1;
    pointer-events: auto;
    padding: 0.5rem 0;
    margin: 0.5rem 0;
    line-height: normal;
}

.mobile-submenu-content {
    padding: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-submenu.active .mobile-submenu-content {
    padding: 0.5rem 0;
    opacity: 1;
    transform: translateY(0);
}

/* 移动端子菜单链接样式 */
.mobile-submenu a {
    transition: color 0.2s ease, background-color 0.2s ease;
    color: #374151 !important;
    display: block;
    padding: 0.5rem 1rem;
}

.mobile-submenu a:hover {
    background-color: var(--color-primary-blue);
    color: white !important;
}

/* Hero Banner 响应式高度优化 */


.hero-swiper .swiper-slide {
    height: 100%;
}

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




      /* 产品分类导航样式 */
      .category-nav {
        background: #fdfdfd;
        border-bottom: 2px solid #f1f1f1;
    }
    
    
/* 响应式调整 */
@media (max-width: 1024px) {
    .category-nav {
        background: var(--color-primary-blue, #2d7dd2);;
        white-space: nowrap;
        padding: 0 16px;
    }
    
    .category-nav-item {
        flex-shrink: 0;
        margin-right: 8px;
    }

}

    /* 桌面端分类项样式 */
    .category-item {
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 0;
        font-weight: 500;
        color: #6c757d;
        border-bottom: none;
        overflow: hidden;
        margin-bottom: -2px;
        padding: 1.5rem 2rem;
        text-decoration: none;
        text-align: center;
    }
    
    .category-item:hover {
        background-color: transparent;
        color: var(--color-primary-blue);
        font-weight: bold;
    }
    
    .category-item.active {
        background-color: transparent;
        color: var(--color-primary-blue);
        font-weight: bold;

    }

    
    /* 伪元素短线 - 从中间向两边展开 */
    .category-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--color-primary-blue);
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(-50%);
        opacity: 0;
        border-radius: 2px;
    }
    
    .category-item.active::after,
    .category-item:hover::after {
        width: 80%;
        opacity: 1;
    }
    
    /* 添加焦点状态的样式 */
    .category-item:focus::after {
        width: 80%;
        opacity: 1;
    }
    
    /* 确保按钮在移动端也有良好的触摸反馈 */
    @media (max-width: 768px) {
        .category-item::after {
            height: 2px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .category-item.active::after,
        .category-item:hover::after {
            width: 70%;
        }
    }
    
    /* 移除原有的active-indicator */
    .active-indicator {
        display: none;
    }
    
    /* 手机端分类菜单样式 */
    .mobile-category-item {
        display: block;
        width: 100% !important;
        padding: 0.75rem 1rem;
        color: var(--color-text-dark, #333333);
        text-decoration: none;
        transition: color 0.2s ease, background-color 0.2s ease;
        border-bottom: 1px solid #f3f4f6;
        position: relative;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .mobile-category-item:last-child {
        border-bottom: none;
    }
    
    .mobile-category-item:hover {
        background: #f9fafb;
        color: var(--color-primary-blue, #2d7dd2);
    }
    
    .mobile-category-item.active {
        background: #eff6ff;
        color: var(--color-primary-blue, #2d7dd2);
        font-weight: 600;
    }
    
    /* 手机端菜单容器样式修复 */
    #mobileCategoryMenu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 0.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        z-index: 9999;
        overflow: visible;
    }
    
    /* 确保菜单项能够正确展开 */
    #mobileCategoryMenu .py-2 {
        width: 100%;
        min-width: 100%;
    }
    
    

    /* 响应式调整 */
    @media (max-width: 768px) {
        .category-nav-item {
            flex-shrink: 0;
            margin-right: 8px;
        }

        .product-title-simple {
            font-size: 13px;
        }

        .product-category-simple {
            font-size: 10px;
        }
    }

    /* 平板端优化 */
    @media (min-width: 769px) and (max-width: 1024px) {
        .product-grid-item {
            animation-delay: calc(var(--index, 0) * 0.05s);
        }
    }





        
        /* 手机端菜单特殊处理 - 使用absolute定位避免页面固定 */
        #mobileCategoryMenu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            width: 100% !important;
            max-width: 100% !important;
            margin-top: 0.5rem;
            z-index: 9;
            transform: none !important;
            /* 确保菜单不会阻止页面滚动 */
            pointer-events: auto;
            overflow: visible;
        }
        
        /* 确保分类导航的z-index层级正确 */
        .category-nav {
            position: relative;
            z-index: 9;
        }

        

        
        /* 手机端菜单展开状态 */
        #mobileCategoryMenu.opacity-100 {
            transform: none !important;
            opacity: 1 !important;
            visibility: visible !important;
        }

        




        /* 新闻分类导航样式 - 参考Crafto设计 */
        .news-category-nav {
            background: #fdfdfd;
            border-bottom: 2px solid #f1f1f1;
        }

        /* WOW.js 动画初始状态 */
        .news-category-nav.wow {
            opacity: 0;
            transform: translateY(-30px);
            visibility: hidden;
        }

        .news-category-nav.wow.animate__animated {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }

        .news-category-item {
            position: relative;
            transition: color 0.3s ease, font-weight 0.3s ease;
            border-radius: 0;
            font-weight: 500;
            border-bottom: none;
            overflow: hidden;
            margin-bottom: -2px;
        }

        /* 伪元素短线 - 从中间向两边展开 */
        .news-category-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 4px;
            background-color: var(--color-primary-blue-light);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
            opacity: 0;
            border-radius: 2px;
        }

        .news-category-item.active::after,
        .news-category-item:hover::after {
            width: 80%;
            opacity: 1;
        }

        /* 添加焦点状态的样式 */
        .news-category-item:focus::after {
            width: 80%;
            opacity: 1;
        }

        /* 确保按钮在移动端也有良好的触摸反馈 */
        @media (max-width: 768px) {
            .news-category-item::after {
                height: 2px;
            }
            
            .news-category-item.active::after,
            .news-category-item:hover::after {
                width: 70%;
            }
        }

        .news-category-item.active, .news-category-item:hover {
            background-color: transparent;
            color: var(--color-primary-blue-light);
            font-weight: bold;
        }




                /* 博客内容样式优化 */
                .blog-content h2 {
                    font-size: 28px;
                    font-weight: 700;
                    color: var(--color-text-dark);
                    margin-bottom: 1.5rem;
                    margin-top: 2.5rem;
                    line-height: 1.4;
                }
                
                .blog-content h3 {
                    font-size: 22px;
                    font-weight: 700;
                    color: var(--color-text-dark);
                    margin-bottom: 1.2rem;
                    margin-top: 2rem;
                    line-height: 1.4;
                }
                
                .blog-content h4 {
                    font-size: 18px;
                    font-weight: 700;
                    color: var(--color-text-dark);
                    margin-bottom: 1rem;
                    margin-top: 1.8rem;
                    line-height: 1.4;
                }
                
                .blog-content h5 {
                    font-size: 16px;
                    font-weight: 700;
                    color: var(--color-text-dark);
                    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(--color-text-gray);
                    font-size: 16px;
                }
                
                .blog-content img {
                    display: block;
                    height: auto !important;
                    margin: 2rem auto;
                    max-width: 100% !important;
                    border-radius: 8px;
                    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
                }
                .blog-content a{
                    color: var(--color-primary-blue);
                    text-decoration: underline;
                    transition: color 0.3s ease;
                    font-weight: 600;
                }
                .blog-content a:hover{
                    color: var(--color-primary-blue-dark);
                }
                
                /* 表格容器 - 支持横向滚动 */
                .blog-content .table-container {
                    overflow-x: auto;
                    overflow-y: visible;
                    -webkit-overflow-scrolling: touch;
                    margin: 2rem 0;
                    border-radius: 8px;
                    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                    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(--color-primary-blue);
                    border-radius: 4px;
                }

                .blog-content .table-container::-webkit-scrollbar-thumb:hover {
                    background: var(--color-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(--color-text-dark);
                    font-size: 14px;
                    border-bottom: 2px solid #d1d5db;
                }
                
                .blog-content table td {
                    color: var(--color-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: 24px;
                        margin-bottom: 1.2rem;
                        margin-top: 2rem;
                    }
                    
                    .blog-content h3 {
                        font-size: 20px;
                        margin-bottom: 1rem;
                        margin-top: 1.8rem;
                    }
                    
                    .blog-content p,
                    .blog-content li {
                        font-size: 15px;
                        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;
                    }
                }




                   /* 页面加载动画 */
        .fade-in {
            animation: fadeIn 0.8s ease-in-out;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 模块悬停效果 */
        .module-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .module-hover:hover {
            transform: translateY(-5px);
        }
        

        
        /* 企业愿景卡片样式 */
        .vision-card {
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        .vision-stat-card {
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .vision-stat-card:hover {
            transform: translateY(-2px);
            background-color: rgba(255, 255, 255, 0.15);
        }
        
        /* 展开/收起动画 */
        #hidden-content {
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
        }
        
        #hidden-content.hidden {
            opacity: 0;
            max-height: 0;
            overflow: hidden;
        }
        
        #hidden-content:not(.hidden) {
            opacity: 1;
            max-height: 500px;
        }
        

        

         
         /* 企业实力模块样式 */
         .aspect-w-4 {
             position: relative;
             padding-bottom: 75%; /* 4:3 比例 */
         }
         
         .aspect-w-4 img {
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             object-fit: cover;
         }
         
         /* 图片悬停效果已移除 */
         
         /* 数字动画样式 */
         [data-count] {
             transition: transform 0.3s ease, box-shadow 0.3s ease;
         }
         
         /* 模态框动画 */
         .modal-enter {
             animation: modalEnter 0.3s ease-out;
         }
         
                   @keyframes modalEnter {
              from {
                  opacity: 0;
                  transform: scale(0.9);
              }
              to {
                  opacity: 1;
                  transform: scale(1);
              }
          }
          
          /* 工厂轮播图样式 */
          .factory-swiper-container {
              position: relative;
          }
          
          .factory-swiper {
              overflow: hidden;
          }
          
          .factory-swiper .swiper-slide {
              overflow: hidden;
          }
          
          .factory-swiper .swiper-slide img {
              width: 100%;
              height: auto;
              display: block;
          }
          

          

          
          /* 导航按钮样式 */
          .factory-swiper-button-next,
          .factory-swiper-button-prev {
              width: 60px;
              height: 60px;
              background-color: var(--color-primary-blue-light);
              border-radius: 50%;
              color: white;
              transition: background-color 0.5s ease, transform 0.5s ease;
          }
          
          .factory-swiper-button-next {
              right: 80px;
          }
          
          .factory-swiper-button-prev {
              left: 80px;
          }
          
          .factory-swiper-button-next:hover,
          .factory-swiper-button-prev:hover {
              background-color: var(--color-primary-blue);
              transform: scale(1.1);
          }
          
          .factory-swiper-button-next::after,
          .factory-swiper-button-prev::after {
              font-size: 20px;
              font-weight: bold;
          }
          
                     /* 分页器样式 */
           .factory-swiper-pagination {
               position: static;
               margin-top: 20px;
               text-align: center;
           }
          
                     .factory-swiper-pagination .swiper-pagination-bullet {
               width: 12px;
               height: 12px;
               background-color: rgba(30, 87, 158, 0.3);
               opacity: 1;
               transition: transform 0.3s ease, box-shadow 0.3s ease;
               margin: 0 4px;
           }
           
           .factory-swiper-pagination .swiper-pagination-bullet-active {
               background-color: #1E579E;
               transform: scale(1.2);
           }
          
                     /* 解决方案背景图片样式 */
           .solution-bg-card {
               position: relative;
               overflow: hidden;
               border-radius: 16px;
               min-height: 300px;
               background-size: cover;
               background-position: center;
               background-repeat: no-repeat;
           }
           
           .solution-bg-card::before {
               content: '';
               position: absolute;
               inset: 0;
               background-color: var(--color-primary-blue);
               opacity: 0.8;
               transition: opacity 0.3s ease;
           }
           
           .solution-bg-card:hover::before {
               opacity: 0.9;
           }
           
           .solution-content {
               position: relative;
               z-index: 10;
           }
           
                       /* 子导航样式优化 */
            .sub-nav {
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            
            .sub-nav::-webkit-scrollbar {
                display: none;
            }



            @media (max-width: 1024px) {
                .factory-swiper-button-next,
                .factory-swiper-button-prev {
                    width: 40px;
                    height: 40px;
                }
            .factory-swiper-button-next {
                right: 20px;
            }
            
            .factory-swiper-button-prev {
                left: 20px;
            }
        }

/* 解决方案Swiper按钮样式 */
.solution-swiper-button-next,
.solution-swiper-button-prev {
    background: var(--color-primary-blue-light);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: #ffffff;
    transition: background-color 0.5s ease, transform 0.5s ease;
}

.solution-swiper-button-next:hover,
.solution-swiper-button-prev:hover {
    background: var(--color-primary-blue);
    transform: scale(1.1);
}

.solution-swiper-button-next::after,
.solution-swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.solution-swiper-button-next {
    right: 20px;
}

.solution-swiper-button-prev {
    left: 20px;
}

@media (max-width: 1024px) {
.solution-swiper-button-next,
.solution-swiper-button-prev {
    width: 40px;
    height: 40px;
}
}
            
            /* 响应式调整 */
            @media (max-width: 768px) {
       

                
                

                

                
                .factory-swiper-button-next::after,
                .factory-swiper-button-prev::after {
                    font-size: 16px;
                }
                
                .solution-bg-card {
                    min-height: 250px;
                }
                
                .sub-nav {
                    padding: 0 1rem;
                }
                
                .sub-nav a {
                    font-size: 0.875rem;
                    padding: 0.5rem 0.75rem;
                }
            }
        
        /* 子导航标签样式 - 与新闻分类导航和产品分类导航保持一致 */
        .sub-nav-tabs {
            background: #fdfdfd;
            border-bottom: 2px solid #f1f1f1;
        }
        
		        /* 640px以下启用横向滚动 */
        @media (max-width: 640px) {
            .sub-nav-tabs .container {
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none; /* Firefox */
                -ms-overflow-style: none; /* IE and Edge */
            }
            
            .sub-nav-tabs .container::-webkit-scrollbar {
                display: none; /* Chrome, Safari, Opera */
            }
            
            .sub-nav-tabs .flex {
                flex-wrap: nowrap;
                min-width: max-content;
            }
            
            .sub-nav-item {
                flex-shrink: 0;
                white-space: nowrap;
            }
        }
		
        .sub-nav-item {
            position: relative;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            border-radius: 0;
            border-bottom: none;
            overflow: hidden;
            margin-bottom: -3px;
            padding: 1.5rem 2rem;
            text-decoration: none;
            text-align: center;
        }
        
        .sub-nav-item:hover {
            background-color: transparent;
            color: var(--color-primary-blue-light);
        }
        
        .sub-nav-item.active {
            background-color: transparent;
            color: var(--color-primary-blue-light);
        }
        
        /* 伪元素短线 - 从中间向两边展开 */
        .sub-nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 4px;
            background-color: var(--color-primary-blue-light);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
            opacity: 0;
            border-radius: 2px;
        }
        
        .sub-nav-item.active::after,
        .sub-nav-item:hover::after {
            width: 80%;
            opacity: 1;
        }
        
        /* 添加焦点状态的样式 */
        .sub-nav-item:focus::after {
            width: 80%;
            opacity: 1;
        }
        
        /* 确保按钮在移动端也有良好的触摸反馈 */

		
        @media (max-width: 768px) {
            .sub-nav-item {
                padding: 1.5rem 1rem;
            }
            .sub-nav-item::after {
                height: 2px;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            
            .sub-nav-item.active::after,
            .sub-nav-item:hover::after {
                width: 70%;
            }
        }

	@media (max-width: 460px) {
            .sub-nav-item {
                padding: 1.5rem 0.5rem;
            }

        }


                  /* 工厂轮播图样式 */
                  .product-swiper-container {
                    position: relative;
                }
                
                .product-swiper {
                    overflow: hidden;
                }
                
                .product-swiper .swiper-slide {
                    overflow: hidden;
                }
                
                
                
      
                
                /* 导航按钮样式 */
                .product-swiper-button-next,
                .product-swiper-button-prev {
                    width: 60px;
                    height: 60px;
                    background-color: var(--color-primary-blue-light);
                    border-radius: 50%;
                    color: white;
                    transition: transform 0.5s ease, background-color 0.5s ease;
                }
                
                .product-swiper-button-next:hover,
                .product-swiper-button-prev:hover {
                    background-color: var(--color-primary-blue);
                    transform: scale(1.1);
                }
                
                .product-swiper-button-next::after,
                .product-swiper-button-prev::after {
                    font-size: 20px;
                    font-weight: bold;
                }
                    
                                /* 响应式调整 */
            @media (max-width: 1024px) {
       
                .product-swiper-button-next,
                .product-swiper-button-prev {
                    width: 40px;
                    height: 40px;
                }
                
                .product-swiper-button-next::after,
                .product-swiper-button-prev::after {
                    font-size: 16px;
                }
            }
                /* 分页器样式 */
              .product-swiper-pagination {
                     position: static;
                     margin-top: 20px;
                     text-align: center;
                 }
                
                .product-swiper-pagination .swiper-pagination-bullet {
                     width: 12px;
                     height: 12px;
                     background-color: rgba(30, 87, 158, 0.3);
                     opacity: 1;
                     transition: transform 0.3s ease, box-shadow 0.3s ease;
                     margin: 0 4px;
                 }
                 
                 .product-swiper-pagination .swiper-pagination-bullet-active {
                     background-color: var(--color-primary-blue-light);
                     transform: scale(1.2);
                 }
      


      
                                                         /* 技术参数样式 - 简化版 */
                    .tech-params-simple {
                        background: #ffffff;
                        border: 1px solid #e5e7eb;
                    }
      
                    .tech-param-row {
                        display: flex;
                        gap: 3rem;
                    }
      
                    .tech-param-col {
                        flex: 1;
                        min-width: 0;
                    }
      
                        .tech-param-title-simple {
                        
                         font-weight: 600;
                         color: var(--color-text-dark);
                         margin-bottom: 1.25rem;
                         padding-bottom: 0.75rem;
                         border-bottom: 2px solid var(--color-primary-blue-light);
                         position: relative;
                         display: flex;
                         align-items: center;
                     }
      
                     .tech-param-title-simple::before {
                         content: '';
                         position: absolute;
                         left: 0;
                         bottom: -2px;
                         width: 2.5rem;
                         height: 2px;
                         background: var(--color-primary-blue-light);
                     }
      
                    .tech-param-list {
                        list-style: none;
                        padding: 0;
                        margin: 0;
                    }
      
                         .tech-param-list p {
                         color: var(--color-text-gray);
                         font-size: 0.95rem;
                         line-height: 1.6;
                         margin-bottom: 0.875rem;
                         padding-left: 1.5rem;
                         position: relative;
                         transition: color 0.2s ease;
                     }
      
                    .tech-param-list p::before {
                        content: '•';
                        color: var(--color-primary-blue-light);
                        font-weight: bold;
                        position: absolute;
                        left: 0;
                        top: 0;
                    }
      
                    .tech-param-list p:hover {
                        color: var(--color-text-dark);
                    }
      
                    .tech-param-list p:last-child {
                        margin-bottom: 0;
                    }
      
                                   /* 注意事项样式 - 简化版 */
                     .tech-notes-simple {
                         background: #fefce8;
                         border: 1px solid #fbbf24;
                         border-radius: 0.5rem;
                         padding: 1.5rem;
                     }
      
                     .tech-notes-title-simple {
                         font-size: 1.125rem;
                         font-weight: 600;
                         color: var(--color-text-dark);
                         margin-bottom: 1.25rem;
                         display: flex;
                         align-items: center;
                         padding-bottom: 0.75rem;
                         border-bottom: 2px solid #fbbf24;
                     }
      
                     .tech-notes-list {
                         list-style: none;
                         padding: 0;
                         margin: 0;
                     }
      
                     .tech-notes-list li {
                         color: var(--color-text-gray);
                         font-size: 0.95rem;
                         line-height: 1.6;
                         margin-bottom: 0.75rem;
                         padding-left: 1.25rem;
                         position: relative;
                         transition: color 0.2s ease;
                     }
      
                     .tech-notes-list li::before {
                         content: '';
                         position: absolute;
                         left: 0;
                         top: 0;
                         font-size: 0.875rem;
                     }
      
                     .tech-notes-list li:hover {
                         color: var(--color-text-dark);
                     }
      
                     .tech-notes-list li:last-child {
                         margin-bottom: 0;
                     }
      
                     /* 响应式设计 */
                     @media (max-width: 768px) {
                         .tech-param-row {
                             flex-direction: column;
                             gap: 2rem;
                         }
                         
                         .tech-param-col {
                             min-width: 100%;
                         }
                     }
      
                   /* 注意事项样式 */
                   .tech-notes {
                       background: #fefce8;
                       border: 2px solid #fbbf24;
                       border-radius: 0.75rem;
                       padding: 1.5rem;
                       margin-top: 2rem;
                       position: relative;
                       overflow: hidden;
                   }
      
                   .tech-notes::before {
                       content: '';
                       position: absolute;
                       top: 0;
                       left: 0;
                       right: 0;
                       height: 4px;
                       background: linear-gradient(90deg, #f59e0b, #fbbf24);
                   }
      
                   .tech-notes-title {
                       font-size: 1.125rem;
                       font-weight: 600;
                       color: var(--color-text-dark);
                       margin-bottom: 1rem;
                       display: flex;
                       align-items: center;
                       gap: 0.5rem;
                   }
      
                   .tech-notes-title::before {
                       content: '';
                       font-size: 1rem;
                   }
      
                   .tech-notes-content {
                       display: flex;
                       flex-direction: column;
                       gap: 0.75rem;
                   }
      
                   .tech-note-item {
                       color: var(--color-text-gray);
                       font-size: 0.95rem;
                       line-height: 1.5;
                       padding: 0.75rem 1rem;
                       background: #fef3c7;
                       border-radius: 0.5rem;
                       border-left: 3px solid #f59e0b;
                       transition: transform 0.3s ease, box-shadow 0.3s ease;
                       position: relative;
                   }
      
                   .tech-note-item::before {
                       content: '→';
                       color: #f59e0b;
                       font-weight: bold;
                       position: absolute;
                       left: 0.5rem;
                       top: 50%;
                       transform: translateY(-50%);
                   }
      
                   .tech-note-item:hover {
                       background: #fde68a;
                       color: var(--color-text-dark);
                       border-left-color: #d97706;
                   }
      
      .canshu{  font-size: 14px;}
      
      /* 表格容器支持横向滚动 */
	    .canshu .table-container p {
          margin: 20px 0;
		  font-size:14px;
      }
      
            .canshu .table-container h3{
        font-size: 16px;
        font-weight: 600;
        color: var(--color-text-dark);
        margin-bottom: 1.25rem;
        position: relative;
      }

      .canshu .table-container {
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;

      }
      
      /* 自定义滚动条样式 - 让滚动条更细 */
      .canshu .table-container::-webkit-scrollbar {
          height: 6px; /* 水平滚动条高度 */
      }
      
      .canshu .table-container::-webkit-scrollbar-track {
          background: #f1f1f1;
          border-radius: 3px;
      }
      
      .canshu .table-container::-webkit-scrollbar-thumb {
          background: #1E579E;
          border-radius: 3px;
      }
      
      .canshu .table-container::-webkit-scrollbar-thumb:hover {
          background: #0f3d6b;
      }
      
      .canshu table{
          width: 100%;
          border-collapse: collapse;
          margin: 0;
          font-size: 16px;
          border-radius: 8px;
          min-width: 720px;
          white-space: nowrap;
      }
      .canshu table tr:first-child{
background-color: var(--color-primary-blue-light);
color: white !important;
    }
    .canshu table tr:first-child th,
    .canshu table tr:first-child td{
        color: white !important;
        border: 1px solid #e5e7eb;
            }

      .canshu th,
      .canshu td {
          padding: 12px 15px;
          text-align: center;
          border: 1px solid #e5e7eb;
          font-size: 14px;
      }
   @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: 30px 15px;
      }
	    }
      .canshu th {
          background-color: #1E579E;
          color: white;
          font-weight: bold;
          text-transform: uppercase;
          letter-spacing: 0.5px;
      }
      
      .canshu tr:nth-child(even) {
          background-color: #f8f9fa;
      }
      
      .canshu tr:hover {
          background-color: #eef2ff;
      }
      
       .canshu td {
           color: #666666;
       }
      
       /* 相关产品轮播样式 */
      
       .related-products-swiper .swiper-slide {
           height: auto;
       }
      
      
      
       /* 相关产品轮播导航按钮样式 */
       .related-products-button-next,
       .related-products-button-prev {
           width: 40px;
           height: 40px;
           background-color: var(--color-primary-blue-light);
           border-radius: 50%;
           color: white;
           transition: transform 0.3s ease;
       }
      
       .related-products-button-next:hover,
       .related-products-button-prev:hover {
           background-color: var(--color-primary-blue);
           transform: scale(1.1);
       }
      
       .related-products-button-next::after,
       .related-products-button-prev::after {
           font-size: 16px;
           font-weight: bold;
       }



        /* 联系页面特定样式 */
        .contact-info-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--color-border-light);
        }
        
        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
        
        .contact-form {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--color-border-light);
        }
        
        .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--color-border-light);
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background: white;
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--color-primary-blue);
            box-shadow: 0 0 0 3px rgba(30, 87, 158, 0.1);
        }
        
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-primary-blue-dark) 100%);
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 12px rgba(30, 87, 158, 0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(30, 87, 158, 0.4);
        }
        
        /* WOW.js 动画优化 - 防止闪现 */
        .wow {
            visibility: hidden;
        }
        
        .wow.animate__animated {
            visibility: visible;
        }
        
        
        
        
        
        
        .contact-icon {
            width: 48px;
            height: 48px;
            background: var(--color-primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        /* 分页导航自定义样式 - 模仿分页控件效果 */


        .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(--color-primary-blue);
            border: 1px solid var(--color-primary-blue);
            box-shadow: 0 4px 12px rgba(30, 87, 158, 0.3);
        }

        /* 悬停效果 */
        .pagination a:hover {
            background-color: var(--color-primary-blue);
            border-color: var(--color-primary-blue);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        
        /* 当前页码悬停效果 */
        .pagination b:hover {
            background-color: var(--color-primary-blue-dark);
            box-shadow: 0 6px 16px rgba(30, 87, 158, 0.4);
        }

        /* 点击效果 */
        .pagination a:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .pagination b:active {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(30, 87, 158, 0.3);
        }

        /* 响应式设计 */
        @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;
            }
        }

/* 产品列表页面样式 */
.sticky-nav {
    position: sticky;
    top: 20px;

}

.category-nav-list {
    border-left: 2px solid var(--color-primary-blue-light);
}


.category-nav-item:hover::before,.category-nav-item.active::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    bottom: 0;
    width: 8px;
    background-color:   var(--color-primary-blue-light);
    border-radius: 4px;
}

.category-nav-item:hover,.category-nav-item.active {
    color: var(--color-primary-blue-light) !important;
    
}


/* 移动端导航样式 */
.mobile-category-nav-item.active {
    color: var(--color-primary-blue-light);
    border-left: 4px solid var(--color-primary-blue-light);

}



/* 响应式调整 */
@media (max-width: 1024px) {

    
    .category-nav-item:hover::before,.category-nav-item.active::before {
        width: 4px;
        border-radius: 2px;
    }
    

    

}


.solution-nav-item.active h4,.solution-nav-item.active svg,.solution-nav-item:hover h4,.solution-nav-item:hover svg {
    color: var(--color-primary-blue-light);
    transition: color 0.5s ease;
}
.solution-nav-item-content{position: relative;padding-left: 30px;}
.solution-nav-item-content h5{position: relative;}
.solution-nav-item-content h5:before{
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 100%;
    border: 1px solid #ffffff;
}
.solution-nav-item-content h5:after{
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 100%;
}


.solution-swiper .swiper-slide > div:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.4;
}

/* 荣誉资质轮播样式 - 简洁单证书展示 */
.honor-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px 100px;
    background: linear-gradient(to bottom, #f8f6f0 0%, #f0ede5 100%);
    border-radius: 20px;
    overflow: hidden;
}

/* Swiper 容器 */
.honor-3d-swiper {
    position: relative;
    padding: 0 80px;
    overflow: hidden;
}

/* 证书卡片 */
.honor-certificate {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-frame {
    position: relative;
    width: 320px;
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.certificate-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

.certificate-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4CAF50, #66BB6A, #4CAF50);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 激活状态的证书 */
.honor-3d-swiper .swiper-slide-active .certificate-frame {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.honor-3d-swiper .swiper-slide-active .certificate-glow {
    opacity: 1;
}

/* 导航按钮 */
.honor-nav-next,
.honor-nav-prev {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.honor-nav-next:hover,
.honor-nav-prev:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.honor-nav-next:after,
.honor-nav-prev:after {
    font-size: 20px;
    color: #666;
    font-weight: bold;
}

.honor-nav-next:hover:after,
.honor-nav-prev:hover:after {
    color: #333;
}

/* 分页器 */
.honor-pagination {
    bottom: 30px;
}

.honor-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.honor-pagination .swiper-pagination-bullet-active {
    background: #ffd700;
    border-color: #ffd700;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .honor-carousel-container {
        padding: 40px 15px 80px;
    }
    
    .honor-3d-swiper {
        padding: 0 60px;
    }
    
    .honor-certificate {
        height: 450px;
    }
    
    .certificate-frame {
        width: 240px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .honor-carousel-container {
        padding: 30px 10px 60px;
        border-radius: 20px;
    }
    
    .honor-3d-swiper {
        padding: 0 50px;
    }
    
    .honor-certificate {
        height: 400px;
    }
    
    .certificate-frame {
        width: 200px;
        height: 300px;
    }
    
    .honor-nav-next,
    .honor-nav-prev {
        width: 50px;
        height: 50px;
    }
    
    .honor-nav-next:after,
    .honor-nav-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .honor-3d-swiper {
        padding: 0 40px;
    }
    
    .honor-certificate {
        height: 350px;
    }
    
    .certificate-frame {
        width: 180px;
        height: 280px;
    }
}


.honor-swiper .swiper-button-next,
.honor-swiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    background: var(--color-primary-blue-light);
    border-radius: 50%;
    color: #ffffff;
    transition: transform 0.5s ease, background-color 0.5s ease;
}

.honor-swiper .swiper-button-prev {
    left: 20px;
}

.honor-swiper .swiper-button-next {
    right: 20px;
}

.honor-swiper .swiper-button-next:hover,
.honor-swiper .swiper-button-prev:hover {
    background: var(--color-primary-blue);
    transform: scale(1.1);
}

.honor-swiper .swiper-button-next::after,
.honor-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}
@media (max-width: 1024px) {
.honor-swiper .swiper-button-next,
.honor-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
}
}


  /* 服务流程导航样式 */
  .service-nav-item h4 {
    color: #333333; /* text-gray-500 */
}

.service-nav-item li {
    color: #333333; /* text-gray-500 */
}

.service-nav-item li span:first-child {
    background-color: var(--color-primary-blue-light); /* bg-primary-blue-light */
}

/* 激活状态样式 */
.service-nav-item.active{
    background-color: var(--color-primary-blue-light);
}
.service-nav-item.active h4 {
    color: white;
}

.service-nav-item.active li {
    color: white;
}

.service-nav-item.active li span:first-child {
    background-color: white;
}


/* ===== 服务流程手风琴样式 ===== */
/* 手风琴容器 */
.horizontal-accordion-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;

    padding: 0 8px;
}

/* 手风琴面板 */
.accordion-panel {
    position: absolute;
    top: 0;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 4px;
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1), width 0.7s cubic-bezier(0.4, 0, 0.2, 1), z-index 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}


/* 默认面板位置 */
.accordion-panel[data-panel="pre"] { left: 0; width: calc(50% - 8px); z-index: 3; }
.accordion-panel[data-panel="mid"] { left: calc(50% + 4px); width: calc(25% - 8px); z-index: 2; }
.accordion-panel[data-panel="post"] { left: calc(75% + 8px); width: calc(25% - 8px); z-index: 1; }

/* Manufacturing页面面板位置 */
.accordion-panel[data-panel="equipment1"] { left: 0; width: calc(75% - 8px); z-index: 3; }
.accordion-panel[data-panel="equipment2"] { left: calc(75% + 4px); width: calc(25% - 8px); z-index: 2; }

.accordion-panel.active { z-index: 3; }

/* 内容区域 */
.accordion-panel .max-w-md {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 1));
    padding: 24px;
    max-width: 100%;
    height: 140px;
    display: flex;
    flex-direction: column;
}

/* 标题样式 */
.accordion-panel h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
    text-align: left;
    display: flex;
    align-items: center;
}

/* 内容区域控制 */
.accordion-panel .accordion-content {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease 0.3s;
}

.accordion-panel.active .accordion-content {
    opacity: 1;
    height: auto;
}

/* 描述文字 */
.accordion-panel .accordion-content p {
    margin: 0 0 16px 0;
    color: white;
    font-size: 16px;
    line-height: 1.5;
}

/* 图片和遮罩效果 */
.accordion-panel img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-panel:hover img {
    transform: scale(1.1);
}

.accordion-panel .absolute.inset-0:last-child {
    transition: background-color 0.6s ease;
}

.accordion-panel.active .absolute.inset-0:last-child {
    background-color: rgba(0, 0, 0, 0.4);
}

.accordion-panel:not(.active) .absolute.inset-0:last-child {
    background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 1280px) {
    .accordion-panel .max-w-md {
        height: 140px;
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .horizontal-accordion-container {
        height: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .accordion-panel {
        position: relative;
        height: 300px;
        margin: 0;
        width: 100% !important;
        left: auto !important;
        z-index: auto !important;
    }
    .process-content-container    .accordion-panel {
        height: auto !important;
    }
    .accordion-panel .max-w-md {
        padding: 16px;
        height: 100px;
    }
    
    .accordion-panel h3 {
        font-size: 1.25rem;
        margin: 0 0 12px 0;
    }
    
    .accordion-panel .accordion-content {
        opacity: 1 !important;
        height: auto !important;
    }
    
    .accordion-panel .accordion-content p {
        margin-bottom: 12px !important;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .accordion-panel .max-w-md {
        padding: 12px;
    }
    
    .accordion-panel h3 {
        font-size: 1rem;
        margin: 0 0 8px 0;
    }
    
    .accordion-panel .accordion-content p {
        margin-bottom: 8px !important;
        line-height: 1.4;
    }
}
/* ===== 服务流程手风琴样式结束 ===== */

/* ===== 团队风采Swiper样式 ===== */
.team-swiper {
    width: 100%;
    height: auto;
}

.team-swiper .swiper-slide {
    height: auto;
}

.team-swiper .swiper-slide > div {
    height: 100%;
}

                /* 导航按钮样式 */
                .team-button-next,
                .team-button-prev {
                    width: 60px;
                    height: 60px;
                    background: var(--color-primary-blue-light);
                    border-radius: 50%;
                    color: #ffffff;
                    transition: transform 0.5s ease, background-color 0.5s ease;
                }
                
                .team-button-prev {
                    left: 20px;
                }
                
                .team-button-next {
                    right: 20px;
                }
                
                
                .team-button-next:hover,
                .team-button-prev:hover {
                    background: var(--color-primary-blue);
                    color: white;
                    transform: scale(1.1);
                }
                
                .team-button-next::after,
                .team-button-prev::after {
                    font-size: 16px;
                    font-weight: bold;
                }
                
                @media (max-width: 1024px) {
                    .team-button-next,
                    .team-button-prev {
                        width: 40px;
                        height: 40px;
                    }
                }

/* ===== 团队风采Swiper样式结束 ===== */

/* ===== Manufacturing页面样式 ===== */
/* 流程导航样式 */
.process-nav-container {
    position: relative;
}

.process-nav-list {
    display: flex;
    flex-direction: column;
}

.process-step {
    height: 16.67%; /* 显示6个步骤，每个占1/6高度 */
    flex-shrink: 0;
    cursor: pointer;
}

/* 右侧内容样式 */
.process-content-container {
    position: relative;
    overflow: visible; /* 改为visible，允许内容完全显示 */
    height: auto; /* 使用自动高度 */
    min-height: auto; /* 移除固定最小高度 */
}

/* 响应式调整 - 确保小屏幕设备上内容可见 */
@media (max-width: 1024px) {
    .process-content-container {
        height: auto; /* 小屏幕设备也使用自动高度 */
        min-height: auto;
    }
}

/* 桌面端：使用绝对定位和opacity过渡 */
@media (min-width: 1024px) {
    .process-content-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease;
        pointer-events: none;
    }

    .process-content-slide.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* 移动端：使用相对定位和display控制 */
@media (max-width: 1023px) {
    .process-content-slide {
        position: relative;
        width: 100%;
        display: none;
        height: auto;
    }

    .process-content-slide.active {
        display: block;
    }
}

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

/* 左侧长线 */
.process-nav-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-primary-blue-light);
    z-index: -1;
}

/* 流程步骤容器 */
.process-step {
    position: relative;
    cursor: pointer;
    z-index: 10; /* 确保步骤容器在线上方 */
}

/* 流程步骤内容 */
.process-step-content {
    position: relative;
    padding-left: 50px;
    z-index: 11; /* 确保内容在容器上方 */
}

/* 外层圆圈 - before伪元素 */
.process-step-content::before {
    content: '';
    position: absolute;
    left: 9px; /* 调整位置，让圆圈居中在线上 (20px - 12px = 8px) */
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 1px solid var(--color-primary-blue-light);
    border-radius: 50%;
    background-color: var(--color-primary-gray, #eaedf0);
    z-index: 12; /* 确保外层圆圈在最上层 */
    transition: all 0.3s ease;
}

/* 内层实心圆 - after伪元素 */
.process-step-content::after {
    content: '';
    position: absolute;
    left: 15px; /* 调整位置，让内圆居中在外圆中 (8px + 6px = 14px) */
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    z-index: 13; /* 确保内层圆圈在最上层 */
    transition: all 0.3s ease;
}

.process-step.active .process-step-content::before,
.process-step:hover .process-step-content::before {
    border-color: var(--color-primary-blue-light);
}

.process-step.active .process-step-content::after,
.process-step:hover .process-step-content::after {
    background-color: var(--color-primary-blue-light);
}

.process-step.active .process-step-content span,
.process-step:hover .process-step-content span {
    color: var(--color-primary-blue-light);
    font-size: 24px;
    transition: all 0.5s ease;
}

/* Manufacturing页面手风琴样式 - 与service.html一致，使用通用样式 */

/* 移动端抽屉样式 */
.process-drawer-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.process-drawer-item:hover {
    background-color: #f3f4f6;
}

.process-drawer-item.active {
    background-color: var(--color-primary-blue-light);
    color: #ffffff;
}

.process-drawer-item .step-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}

.process-drawer-item.active .step-text {
    color: #ffffff;
}



/* 新闻轮播导航按钮样式 */
.manufacturing-swiper .manufacturing-button-next,
.manufacturing-swiper .manufacturing-button-prev {
    width: 60px;
    height: 60px;
    background: var(--color-primary-blue-light);
    border-radius: 50%;
    color: #ffffff;
    transition: transform 0.5s ease, background-color 0.5s ease;
}

.manufacturing-swiper .manufacturing-button-prev {
    left: 20px;
}

.manufacturing-swiper .manufacturing-button-next {
    right: 20px;
}


.manufacturing-button-next:hover,
.manufacturing-button-prev:hover {
    background: var(--color-primary-blue);
    color: white;
    transform: scale(1.1);
}

.manufacturing-button-next::after,
.manufacturing-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .manufacturing-swiper .manufacturing-button-next,
    .manufacturing-swiper .manufacturing-button-prev {
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 768px) {
.contact-bg{background-color:#ffffff;}
}

