/* 基本样式 */
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background: white;
    min-height: 100vh;
    padding-top: 80px; /* 为固定导航栏留出空间，避免内容被遮挡 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

/* 顶部导航栏 */
header {
    background: rgba(255, 255, 255, 0.95); /* 半透明白色背景 */
    color: #333;
    padding: 10px 0; /* 减少上下padding */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0; /* 初始状态显示水平线 */
    box-shadow: none; /* 初始无阴影 */
    transition: all 0.3s ease, transform 0.3s ease; /* 添加transform过渡效果 */
    transform: translateY(0) !important; /* 强制显示，避免任何隐藏 */
    opacity: 1 !important; /* 强制显示，避免任何透明度变化 */
    visibility: visible !important; /* 强制显示，避免任何隐藏 */
}

/* 当滚动时导航栏样式 */
header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: none; /* 滚动时隐藏水平线 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 滚动时显示灰色阴影 */
}

/* 导航栏内容布局 */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px; /* 减少菜单项间距 */
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px; /* 减小字体大小 */
    padding: 5px 8px; /* 添加一些内边距 */
    transition: color 0.3s ease;
}

/* 英雄区域容器 - 已废弃，使用 hero-slider-container 替代 */

/* 水平轮播图容器 */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

/* 轮播图滑动容器 */
.hero-slider {
    display: flex;
    width: 300%; /* 3张图片的宽度 */
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

/* 轮播图单张 */
.hero-slide {
    width: 33.333%; /* 每张图片占1/3宽度 */
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
    padding-top: 120px; /* 为导航栏留出空间 */
}

/* 轮播图内容 */
.hero-slide .container {
    position: relative;
    z-index: 3;
    padding-top: 20px;
}

/* 添加遮罩层，确保文字可读 */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* 导航箭头 */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(255, 165, 0, 0.8); /* 浅橙色背景 */
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* 指示点 */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.slider-dots .dot.active {
    background: white;
    transform: scale(1.3);
}

.slider-dots .dot:hover {
    background: white;
}

/* 按钮样式 */
.cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #0056b3;
}

/* 公司简介 */
.about-section {
    background: #fff;
    padding: 50px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 60px; /* 确保与导航栏有足够间距 */
}

/* 产品与服务 */
.products-section {
    background: #fff;
    padding: 50px 0;
    text-align: center;
}

.products-section h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
}

.product-card {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 10px;
}

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

.product-card .cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.product-card .cta-btn:hover {
    background-color: #0056b3;
}

/* 新闻与动态 */
.news-section {
    background: #fff;
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

.news-list article {
    margin-bottom: 20px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 5px;
}

/* 底部信息 */
footer {
    background: white !important; /* 白色背景，与产品页面保持一致 */
    color: #333; /* 深色文字 */
    text-align: center;
    padding: 10px 0; /* 减少padding与顶部导航栏保持一致 */
    position: relative;
    z-index: 2;
    width: 100%;
    border-top: 1px solid #e0e0e0; /* 添加顶部边框线 */
    /* 移除动画效果 */
}

/* 移除footer动画 */
/* @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* Footer内容样式 */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    width: 120px;
    height: auto;
}

.footer-column {
    margin: 0 20px;
}

.footer-column h3 {
    color: #333 !important; /* 深色标题 */
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-column a {
    color: #333 !important; /* 深色链接 */
    text-decoration: underline; /* 添加下划线 */
    transition: color 0.3s ease;
    font-size: 13px;
}

.footer-column a:hover {
    color: #007bff; /* 悬停时变为蓝色 */
}

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

.footer-column li {
    margin-bottom: 5px;
}

.copyright {
    text-align: center;
    margin-top: 10px;
}

.copyright p {
    font-size: 12px;
    color: #333 !important;
    margin: 0;
}

.social-links a {
    color: white;
    margin: 0 10px;
    font-size: 1.2rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    header {
        padding: 8px 0; /* 在移动设备上进一步减少padding */
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    nav a {
        font-size: 13px;
        padding: 3px 6px;
    }

    .hero-slider-container {
        height: 80vh; /* 在移动设备上调整高度 */
    }

    .hero-slide {
        padding: 10px;
    }

    .hero-slide .container {
        max-width: 90%;
    }
    
    .header-logo img {
        width: 100px !important; /* 在移动设备上进一步缩小logo */
    }
    

    
    /* 导航箭头在移动设备上的调整 */
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    /* 指示点在移动设备上的调整 */
    .slider-dots {
        bottom: 20px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    /* 底部信息在移动设备上的调整 */
    footer {
        padding: 8px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-logo img {
        width: 100px !important;
    }
    
    .footer-column h3 {
        font-size: 14px !important;
        margin-bottom: 6px !important;
        color: #333 !important; /* 确保移动设备上也是深色 */
    }
    
    .footer-column a {
        font-size: 12px !important;
        color: #333 !important; /* 确保移动设备上也是深色 */
    }
    
    .footer-column li {
        margin-bottom: 3px !important;
    }
    
    .copyright p {
        font-size: 11px !important;
        margin-top: 8px !important;
    }
}



/* 旧轮播图样式 - 已废弃，使用新的 hero-slider-container 替代 */

/* 重复的指示点样式 - 已在上方定义 */

/* 移除页面切换动画，避免灰色内容浮现 */

/* 新增英雄使命区域样式 */
.hero-mission-section {
    margin: 20px 0 10px;
    padding: 40px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    padding-right: 15px;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.1;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.5px;
}



.hero-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #ff9800;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(42, 82, 152, 0.05) 100%);
    padding: 18px 22px;
    border-radius: 0 10px 10px 0;
    margin-left: -20px;
}

/* 移除fadeInUp动画 */
/* @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 16px 30px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    min-width: 140px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-btn::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;
}

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

.hero-btn.primary {
    background: linear-gradient(135deg, #ff9800 0%, #e68900 100%);
    color: white;
    border: 2px solid #ff9800;
}

.hero-btn.primary:hover {
    background: linear-gradient(135deg, #e68900 0%, #d17a00 100%);
    border-color: #e68900;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.hero-btn.secondary {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    color: #2a5298;
    border: 2px solid #2a5298;
}

.hero-btn.secondary:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 100%);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(42, 82, 152, 0.4);
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 550px;
}



/* 使命区域样式 */
.mission-section {
    text-align: center;
    margin: 10px 0 160px;
    padding: 40px 0;
    background: white;
    border-radius: 15px;
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 15px;
    z-index: 1;
}

.mission-section > * {
    position: relative;
    z-index: 2;
}

.mission-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2a5298;
    margin-bottom: 25px;
    line-height: 1.3;
}

.mission-description {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-image {
        height: 450px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-left: 0;
        padding: 15px 20px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .mission-title {
        font-size: 1.8rem;
    }
    
    .mission-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .hero-mission-section {
        margin: 40px 0;
        padding: 20px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-image {
        height: 350px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
        margin-left: 0;
        padding: 12px 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 200px;
        padding: 12px 25px;
    }
    
    .mission-section {
        margin: 50px 0 40px;
        padding: 30px 20px;
    }
    
    .mission-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .mission-description {
        font-size: 1rem;
    }
}

/* 新增关于我们页面样式 */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

/* 时间轴竖线 */
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #003366;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    z-index: 1;
}

/* 时间轴项目 */
.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

/* 时间轴项目圆点 */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background-color: white;
    border: 4px solid #003366;
    top: 15px;
    border-radius: 50%;
    z-index: 2;
}

/* 左侧项目 */
.timeline-item.left {
    left: 0;
    text-align: right;
}

/* 右侧项目 */
.timeline-item.right {
    left: 50%;
    text-align: left;
}

/* 右侧项目圆点位置调整 */
.timeline-item.right::after {
    left: -12px;
}

/* 时间轴项目内容 */
.timeline-item h4 {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 10px;
}

.timeline-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .timeline::after {
        left: 20px; /* 在小屏幕上将竖线靠左 */
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        text-align: left;
    }

    .timeline-item::after {
        left: 8px; /* 调整圆点位置 */
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.cert-grid img {
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px;
    background: white;
}

/* 新增产品页面样式 */
.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.category {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}

.category h3 {
    color: #003366;
    margin-bottom: 15px;
}

.category ul {
    list-style: disc;
    padding-left: 20px;
}

.category li {
    margin-bottom: 10px;
}

.service-list {
    margin-top: 50px;
    background: #003366;
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.service-list h3 {
    margin-bottom: 20px;
}

.service-list ul {
    list-style: disc;
    padding-left: 20px;
}

.service-list li {
    margin-bottom: 10px;
}

/* 新增新闻页面样式 */
.news-list {
    margin-top: 30px;
}

.news-list article {
    margin-bottom: 30px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
}

.news-list h3 {
    color: #003366;
    margin-bottom: 10px;
}

.news-list .date {
    color: #666;
    margin-bottom: 15px;
}

/* 新增联系页面样式 */
.contact-hero {
    padding: 140px 0 40px;
    background: linear-gradient(135deg, rgba(42,82,152,0.08), rgba(255,152,0,0.06));
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2a5298;
    margin: 10px 0 10px;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eyebrow {
    display: inline-block;
    color: #ff9800;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.contact-subtitle {
    font-size: 1.4rem;
    color: #2a5298;
    margin: 6px 0 12px;
}

.contact-description {
    max-width: 900px;
    color: #555;
    line-height: 1.8;
}

.contact-main {
    background: #fff;
    padding: 30px 0 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    gap: 40px;
    align-items: stretch; /* 让两列等高，底部对齐 */
}

.contact-left { display: flex; flex-direction: column; gap: 20px; }

/* 右侧列拉伸并让按钮贴底以实现两侧底部对齐的视觉效果 */
.contact-right { display: flex; flex-direction: column; }
.contact-right form { display: flex; flex-direction: column; height: 100%; }
.contact-right .btn.full { margin-top: auto; }

.contact-card {
    background: #f8fafc;
    border: 1px solid #e6ebf2;
    border-radius: 14px;
    padding: 22px;
}

.contact-card-title { font-size: 1.3rem; color: #2a5298; margin: 0 0 10px; }

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.contact-list li { color: #444; display: flex; gap: 10px; align-items: flex-start; }
.contact-list i { color: #ff9800; margin-top: 4px; }
.contact-list a { color: #2a5298; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.contact-actions { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 12px; padding: 10px 16px; text-decoration: none; font-weight: 700; cursor: pointer; border: 2px solid transparent; }
.btn.primary { background: linear-gradient(135deg, #ff9800, #e68900); color: #fff; border-color: #ff9800; }
.btn.primary:hover { background: linear-gradient(135deg, #e68900, #d17a00); }
.btn.secondary { background: #fff; color: #2a5298; border-color: #2a5298; }
.btn.secondary:hover { background: #2a5298; color: #fff; }
.btn.full { width: 100%; justify-content: center; padding: 12px 18px; }

/* 右侧表单去卡片化显示 */
.contact-right form { padding: 0; background: transparent; border: none; box-shadow: none; }

.form-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; min-width: 0; }
.form-group label { font-weight: 600; color: #2a5298; }
.form-group input, .form-group textarea { width: 100%; padding: 10px 12px; border: 1px solid #d6dbe3; border-radius: 10px; outline: none; transition: box-shadow .2s ease, border-color .2s ease; background: #fff; box-sizing: border-box; min-width: 0; }
.form-group input:focus, .form-group textarea:focus { border-color: #2a5298; box-shadow: 0 0 0 3px rgba(42,82,152,0.15); }
.form-group textarea { resize: vertical; }

.contact-highlights { background: #fff; border: 1px solid #e6ebf2; border-radius: 14px; padding: 18px; }
.contact-highlights h4 { margin: 0 0 6px; color: #2a5298; }
.contact-highlights p { margin: 0; color: #666; }

.map-section { background: #fff; padding: 10px 0 80px; }
.map.embed { border-radius: 14px; overflow: hidden; box-shadow: 0 6px 18px rgba(0,0,0,0.08); line-height: 0; }
.map.embed iframe { display: block; }

/* ======================================== */
/* 招聘区域样式 - 类似截图设计 */
/* ======================================== */

/* 招聘区域容器 */
.careers-section {
    background: white; /* 白色背景 */
    padding: 80px 0; /* 上下内边距 */
    margin-top: 50px; /* 与上方区域保持间距 */
}

/* 招聘内容布局 */
.careers-content {
    display: grid; /* 网格布局 */
    grid-template-columns: 1.8fr 1fr; /* 图片占1.8份，文字占1份，与hero-content图片占比相同 */
    gap: 50px; /* 网格间距，与hero-content保持一致 */
    max-width: 1400px; /* 最大宽度限制 */
    margin: 0 auto; /* 水平居中 */
    padding: 0 20px; /* 左右内边距 */
    align-items: center; /* 垂直居中对齐 */
}

/* 左侧团队照片容器 */
.careers-image {
    position: relative; /* 相对定位 */
    overflow: hidden; /* 隐藏溢出 */
    border-radius: 15px; /* 圆角 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* 阴影效果 */
    line-height: 0; /* 消除行高，防止底部间隙 */
    font-size: 0; /* 消除字体大小，防止底部间隙 */
}

/* 团队照片样式 */
.team-photo {
    width: 100%; /* 宽度占满容器 */
    height: 500px; /* 固定高度 */
    object-fit: cover; /* 保持比例覆盖 */
    display: block; /* 块级显示，消除默认的行内间距 */
}



/* 右侧招聘文字内容 */
.careers-text {
    padding: 40px 0; /* 上下内边距 */
    padding-left: 15px; /* 左侧内边距，与hero-text保持一致 */
}

/* 招聘标签 */
.careers-label {
    display: inline-block; /* 行内块级元素 */
    font-size: 0.9rem; /* 字体大小 */
    font-weight: 600; /* 字体粗细 */
    color: #666; /* 灰色文字 */
    text-transform: uppercase; /* 大写字母 */
    letter-spacing: 1px; /* 字母间距 */
    margin-bottom: 15px; /* 底部外边距 */
}

/* 招聘主标题 */
.careers-title {
    font-size: 2.6rem; /* 与hero-title保持一致 */
    font-weight: 800; /* 粗体 */
    color: #2a5298; /* 主题蓝色 */
    margin-bottom: 25px; /* 底部外边距 */
    line-height: 1.1; /* 与hero-title保持一致 */
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%); /* 渐变背景 */
    -webkit-background-clip: text; /* 文字裁剪 */
    -webkit-text-fill-color: transparent; /* 透明文字 */
    background-clip: text; /* 文字裁剪 */
    position: relative; /* 相对定位 */
    text-shadow: 0 2px 4px rgba(0,0,0,0.1); /* 文字阴影 */
    letter-spacing: -0.5px; /* 字母间距 */
}

/* 招聘描述文字 */
.careers-description {
    font-size: 1.2rem; /* 与hero-description保持一致 */
    color: #555; /* 灰色文字 */
    line-height: 1.8; /* 与hero-description保持一致 */
    margin-bottom: 35px; /* 底部外边距 */
    font-weight: 400; /* 字体粗细 */
    position: relative; /* 相对定位 */
    padding-left: 20px; /* 左内边距 */
    border-left: 3px solid #ff9800; /* 左侧橙色边框 */
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(42, 82, 152, 0.05) 100%); /* 渐变背景 */
    padding: 18px 22px; /* 内边距 */
    border-radius: 0 10px 10px 0; /* 圆角 */
    margin-left: -20px; /* 负左边距 */
}

/* 招聘按钮容器 */
.careers-cta {
    margin-top: 30px; /* 顶部外边距 */
}

/* 招聘按钮样式 */
.careers-btn {
    display: inline-block; /* 行内块级元素 */
    padding: 16px 32px; /* 内边距 */
    background: linear-gradient(135deg, #ff9800 0%, #e68900 100%); /* 橙色渐变背景 */
    color: white; /* 白色文字 */
    text-decoration: none; /* 移除下划线 */
    border-radius: 12px; /* 圆角 */
    font-weight: 700; /* 粗体 */
    font-size: 1.1rem; /* 字体大小 */
    transition: all 0.3s ease; /* 过渡动画 */
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3); /* 阴影效果 */
    position: relative; /* 相对定位 */
    overflow: hidden; /* 隐藏溢出 */
}

/* 按钮悬停效果 */
.careers-btn:hover {
    transform: translateY(-3px); /* 向上移动 */
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4); /* 增强阴影 */
    background: linear-gradient(135deg, #e68900 0%, #d17a00 100%); /* 深色渐变 */
}

/* 按钮点击效果 */
.careers-btn:active {
    transform: translateY(-1px); /* 轻微向上移动 */
}

/* ======================================== */
/* 响应式设计 - 中等屏幕 */
/* ======================================== */
@media (max-width: 900px) {
    /* 平板端布局调整 */
    .careers-content {
        grid-template-columns: 1fr; /* 单列布局 */
        gap: 40px; /* 调整间距 */
        text-align: center; /* 文本居中 */
    }
    
    /* 平板端文字区域调整 */
    .careers-text {
        padding-left: 0; /* 移除左侧内边距 */
        text-align: center; /* 文本居中 */
    }
    
    /* 平板端图片调整 */
    .team-photo {
        height: 400px; /* 调整高度 */
    }
    
    /* 平板端标题调整 */
    .careers-title {
        font-size: 2.2rem; /* 调整字体大小 */
    }
    
    /* 平板端描述调整 */
    .careers-description {
        font-size: 1.1rem; /* 调整字体大小 */
        margin-left: 0; /* 移除负左边距 */
        text-align: left; /* 左对齐 */
    }
}

/* ======================================== */
/* 响应式设计 - 小屏幕 */
/* ======================================== */
@media (max-width: 600px) {
    /* 手机端容器调整 */
    .careers-section {
        padding: 60px 0; /* 调整内边距 */
    }
    
    /* 手机端内容调整 */
    .careers-content {
        gap: 30px; /* 调整间距 */
        padding: 0 15px; /* 调整左右内边距 */
    }
    
    /* 手机端文字区域调整 */
    .careers-text {
        padding: 20px 0; /* 调整内边距 */
    }
    
    /* 手机端图片调整 */
    .team-photo {
        height: 300px; /* 调整高度 */
    }
    
    /* 手机端标题调整 */
    .careers-title {
        font-size: 1.8rem; /* 调整字体大小 */
        margin-bottom: 20px; /* 调整底部外边距 */
    }
    
    /* 手机端描述调整 */
    .careers-description {
        font-size: 1rem; /* 调整字体大小 */
        margin-bottom: 25px; /* 调整底部外边距 */
        margin-left: 0; /* 移除负左边距 */
        padding: 12px 15px; /* 调整内边距 */
        text-align: left; /* 左对齐 */
    }
    
    /* 手机端按钮调整 */
    .careers-btn {
        padding: 14px 28px; /* 调整内边距 */
        font-size: 1rem; /* 调整字体大小 */
    }
}

/* 添加背景图片样式 */
.header-background {
    background-image: url('images/header-bg.jpg'); /* 替换为你的背景图片路径 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 0;
    position: relative;
}

/* 添加遮罩层，确保文字可读 */
.header-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 调整遮罩层的透明度 */
    z-index: 1;
}

/* 确保标题和导航栏在遮罩层上方 */
.header-background .container {
    position: relative;
    z-index: 2;
}

/* 调整标题颜色 */
.header-background h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 调整导航栏链接颜色 */
.header-background nav a {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}



/* 响应式设计 */
@media (max-width: 768px) {
    .contact-title { font-size: 2.2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .map {
        height: 400px;
    }

    .timeline {
        flex-wrap: wrap;
        gap: 10px;
    }

    .timeline-item {
        width: 100%;
    }
}

.scrollable-container {
    height: 600px; /* 设置容器高度 */
    overflow-y: auto; /* 启用垂直滚动 */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-detail-section {
    padding: 50px 0;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.product-detail-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-description h3 {
    color: #003366;
    margin-bottom: 15px;
}

.product-description p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.product-description ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.product-description li {
    margin-bottom: 10px;
}

html {
    scroll-behavior: smooth;
    background: #f5f5f5; /* 确保 html 背景为纯色 */
}

/* ======================================== */
/* 应用案例页面 - 独立排版（4列）           */
/* 结构：
   .applications-section           页面容器
   ├─ h2                           标题（渐变文字）
   ├─ .subtitle                    副标题
   ├─ .applications-search input   顶部搜索框
   └─ .applications-grid           4列网格容器
      └─ .app-card                 单个卡片（支持背景图）
         └─ .app-title             卡片标题文字
*/
.applications-section {
    background: white;
    padding: 60px 0 80px;
}

.applications-section h2 {
    text-align: center;
    font-size: 3.8rem;
    font-weight: 800;
    color: #2a5298;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px;
}

.applications-section .subtitle {
    text-align: center;
    color: rgb(87, 87, 87);
    font-size: 1.5rem;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px;
    margin-bottom: 80px;
    margin-top: 45px; 
}

/* 网格：桌面端 4 列，间距 20px */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* ======================================== */
/* 应用案例页面 - 搜索框           */
/* ======================================== */

.applications-search {
    max-width: 720px;
    margin: 0 auto 24px;
    position: relative;
}

/* 搜索框输入样式：圆角胶囊、内发光与图标 */
.applications-search input[type="text"] {
    width: 100%;
    height: 52px;
    padding: 0 46px; /* 右侧内边距，预留清晰空间 */
    padding-left: 46px; /* 左侧为图标预留空间 */
    border: 1.5px solid #d6dbe3;
    border-radius: 9999px;
    font-size: 15px;
    outline: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,249,252,0.98));
    box-shadow: 0 8px 22px rgba(42,82,152,0.08), inset 0 1px 0 rgba(255,255,255,0.7);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.06s ease;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%239aa3b2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: 16px center;
    backdrop-filter: saturate(120%) blur(2px);
}

.applications-search input[type="text"]::placeholder {
    color: #9aa3b2;
}

.applications-search input[type="text"]:hover {
    border-color: #c8cfdb;
    box-shadow: 0 10px 26px rgba(42,82,152,0.1), inset 0 1px 0 rgba(255,255,255,0.75);
}

.applications-search input[type="text"]:focus {
    border-color: #2a5298;
    box-shadow: 0 0 0 4px rgba(42,82,152,0.15), 0 10px 26px rgba(42,82,152,0.12);
}

/* ======================================== */
/* 产品页面 - 搜索框样式（与应用案例统一） */
/* ======================================== */
.products-search {
    max-width: 900px;
    margin: 0 auto 24px;
    position: relative;
}

.products-search input[type="text"] {
    width: 100%;
    height: 52px;
    padding: 0 46px;
    padding-left: 46px;
    border: 1.5px solid #d6dbe3;
    border-radius: 9999px;
    font-size: 15px;
    outline: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,249,252,0.98));
    box-shadow: 0 8px 22px rgba(42,82,152,0.08), inset 0 1px 0 rgba(255,255,255,0.7);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.06s ease;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%239aa3b2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: 16px center;
    backdrop-filter: saturate(120%) blur(2px);
}

.products-search input[type="text"]::placeholder {
    color: #9aa3b2;
}

.products-search input[type="text"]:hover {
    border-color: #c8cfdb;
    box-shadow: 0 10px 26px rgba(42,82,152,0.1), inset 0 1px 0 rgba(255,255,255,0.75);
}

.products-search input[type="text"]:focus {
    border-color: #2a5298;
    box-shadow: 0 0 0 4px rgba(42,82,152,0.15), 0 10px 26px rgba(42,82,152,0.12);
}

/* 小屏设备上的高度与阴影微调 */
@media (max-width: 600px) {
    .applications-search input[type="text"],
    .products-search input[type="text"] {
        height: 48px;
        background-position: 14px center;
        padding-left: 44px;
    }
}

/* 卡片：支持背景图覆盖、悬浮上移与阴影 */
.app-card {
    position: relative;
    min-height: 220px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    background: #f0f3f8;
    background-size: cover;
    background-position: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform, opacity;
}

/* 背景遮罩：增强标题可读性 */
.app-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* 标题：更大的圆润字体与平滑渲染 */
.app-title {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.4;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
    font-family: "Segoe UI", "Segoe UI Rounded", "Nunito", "Poppins", "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 响应式：中等屏幕 2 列，小屏幕 1 列 */
@media (max-width: 1024px) {
    .applications-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .applications-grid { grid-template-columns: 1fr; }
    .app-card { min-height: 180px; }
}

/* ======================================== */
/* Popular Products 区域样式 */
/* ======================================== */

/* Popular Products 区域容器 */
.popular-products-section {
    background: white; /* 白色背景，与其他区域保持一致 */
    padding: 80px 0; /* 上下内边距，与其他主要区域一致 */
    min-height: 40vh; /* 最小高度 */
    display: flex; /* 弹性布局 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* Popular Products 内容容器样式 */
.popular-products-content {
    max-width: 1600px; /* 最大宽度限制 */
    margin: 0 auto; /* 水平居中 */
    padding: 0 20px; /* 左右内边距 */
    text-align: center; /* 文本居中 */
    width: 100%; /* 确保占满可用宽度 */
}

/* Popular Products 主标题样式 - 渐变文字效果 */
.popular-products-section h2 {
    color: #2a5298; /* 主题蓝色 */
    font-size: 3.2rem; /* 与其他主标题保持一致 */
    margin-bottom: 15px; /* 调整底部外边距 */
    font-weight: 800; /* 更粗字体 */
    line-height: 1.2;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Popular Products 副标题样式 */
.popular-products-section .subtitle {
    color: #555; /* 稍深的灰色文字，增强可读性 */
    font-size: 1.25rem; /* 略大字体 */
    margin-bottom: 50px; /* 增加底部外边距 */
    max-width: 1000px; /* 最大宽度限制 */
    margin-left: auto; /* 自动左边距 */
    margin-right: auto; /* 自动右边距 */
    line-height: 1.6;
    font-weight: 400;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Popular Products 网格布局 */
.popular-products-grid {
    display: grid; /* 网格布局 */
    grid-template-columns: repeat(3, 1fr); /* 3列布局 */
    gap: 30px; /* 网格间距 */
    margin-bottom: 50px; /* 底部外边距 */
    width: 100%; /* 确保占满容器宽度 */
}

/* Popular Product 卡片样式 */
.popular-product-card {
    display: block; /* 确保链接显示为块级元素 */
    background: white; /* 白色背景 */
    padding: 35px 25px; /* 内边距 */
    border-radius: 15px; /* 圆角 */
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); /* 阴影效果 */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 过渡动画 */
    text-align: center; /* 文本居中 */
    position: relative; /* 相对定位 */
    border: 1px solid #f0f0f0; /* 淡边框 */
    text-decoration: none; /* 移除链接下划线 */
    color: inherit; /* 继承文字颜色 */
    cursor: pointer; /* 确保显示手形光标 */
}

/* Popular Product 卡片悬停效果 */
.popular-product-card:hover {
    transform: translateY(-8px); /* 向上移动 */
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); /* 增强阴影 */
    border-color: #e0e0e0; /* 悬停时边框颜色 */
    text-decoration: none; /* 确保悬停时没有下划线 */
}

/* 确保链接内的文字颜色保持正确 */
.popular-product-card:hover h3 {
    color: #2a5298; /* 保持标题蓝色 */
}

.popular-product-card:hover p {
    color: #666; /* 保持描述灰色 */
}

/* 产品图标样式 - 元素周期表风格 */
.product-icon {
    width: 80px; /* 图标容器宽度 */
    height: 80px; /* 图标容器高度 */
    border-radius: 12px; /* 圆角矩形，类似元素周期表 */
    display: flex; /* 弹性布局 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    margin: 0 auto 20px; /* 居中外边距 */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 过渡动画 */
    font-size: 1.8rem; /* 元素符号字体大小 */
    font-weight: 700; /* 粗体 */
    color: white; /* 白色文字 */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* 阴影效果 */
}

/* 各个元素的特定颜色 */
.kr-icon {
    background: linear-gradient(135deg, #1443c5 0%, #6f58f0 100%); /* 橙色 - 氪气 */
}

.xe-icon {
    background: linear-gradient(135deg, #1443c5 0%, #6f58f0 100%); /* 紫色 - 氙气 */
}

.ne-icon {
    background: linear-gradient(135deg, #1443c5 0%, #6f58f0 100%); /* 红色 - 氖气 */
}

.ar-icon {
    background: linear-gradient(135deg, #1443c5 0%, #6f58f0 100%); /* 蓝色 - 氩气 */
}

.he-icon {
    background: linear-gradient(135deg, #1443c5 0%, #6f58f0 100%); /* 黄色 - 氦气 */
}

.nh3-icon {
    background: linear-gradient(135deg, #1443c5 0%, #6f58f0 100%); /* 绿色 - 氨气 */
}

/* 卡片悬停时图标效果 */
.popular-product-card:hover .product-icon {
    transform: scale(1.1); /* 图标放大 */
    box-shadow: 0 8px 20px rgba(0,0,0,0.25); /* 增强阴影 */
}

/* Popular Product 卡片标题样式 */
.popular-product-card h3 {
    color: #2a5298; /* 主题蓝色 */
    font-size: 1.5rem; /* 字体大小 */
    margin-bottom: 15px; /* 底部外边距 */
    font-weight: 700; /* 粗体 */
    line-height: 1.3;
    letter-spacing: -0.005em;
}

/* Popular Product 卡片描述样式 */
.popular-product-card p {
    color: #666; /* 灰色文字 */
    line-height: 1.6; /* 行高 */
    font-size: 1rem; /* 字体大小 */
    margin-bottom: 20px; /* 底部外边距 */
    font-weight: 400;
}



/* Popular Products CTA 区域 */
.popular-products-cta {
    margin-top: 40px; /* 顶部外边距 */
    text-align: center; /* 居中对齐 */
}

/* Popular Products 按钮样式 */
.popular-products-btn {
    display: inline-block; /* 行内块级元素 */
    padding: 16px 32px; /* 内边距 */
    background: linear-gradient(135deg, #728edb 0%, #6f58f0 100%); /* 橙色渐变背景 */
    color: white; /* 白色文字 */
    text-decoration: none; /* 移除下划线 */
    border-radius: 12px; /* 圆角 */
    font-weight: 700; /* 粗体 */
    font-size: 1.1rem; /* 字体大小 */
    transition: all 0.3s ease; /* 过渡动画 */
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3); /* 阴影效果 */
    position: relative; /* 相对定位 */
    overflow: hidden; /* 隐藏溢出 */
}

/* 按钮悬停效果 */
.popular-products-btn:hover {
    transform: translateY(-3px); /* 向上移动 */
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4); /* 增强阴影 */
    background: linear-gradient(135deg, #728edb 0%, #6f58f0 100%); /* 深色渐变 */
}

/* 按钮点击效果 */
.popular-products-btn:active {
    transform: translateY(-1px); /* 轻微向上移动 */
}

/* ======================================== */
/* 响应式设计 - 中等屏幕 */
/* ======================================== */
@media (max-width: 900px) {
    .popular-products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2列布局 */
        gap: 25px; /* 调整间距 */
    }
    
    .popular-products-section {
        padding: 60px 0; /* 调整内边距 */
    }
    
    .popular-products-section h2 {
        font-size: 2rem; /* 调整字体大小 */
    }
    
    .popular-product-card {
        padding: 30px 20px; /* 调整内边距 */
    }
    
    .product-icon {
        width: 70px; /* 调整图标大小 */
        height: 70px;
        margin-bottom: 15px;
        font-size: 1.6rem; /* 调整元素符号字体大小 */
    }
}

/* ======================================== */
/* 响应式设计 - 小屏幕 */
/* ======================================== */
@media (max-width: 600px) {
    .popular-products-grid {
        grid-template-columns: 1fr; /* 单列布局 */
        gap: 20px; /* 调整间距 */
    }
    
    .popular-products-section {
        padding: 40px 0; /* 调整内边距 */
        min-height: auto; /* 自动高度 */
    }
    
    .popular-products-section h2 {
        font-size: 1.8rem; /* 调整字体大小 */
    }
    
    .popular-products-section .subtitle {
        font-size: 1rem; /* 调整字体大小 */
        margin-bottom: 40px;
    }
    
    .popular-product-card {
        padding: 25px 20px; /* 调整内边距 */
    }
    
    .popular-product-card h3 {
        font-size: 1.3rem; /* 调整字体大小 */
    }
    
    .popular-product-card p {
        font-size: 0.95rem; /* 调整字体大小 */
    }
    
    .product-icon {
        width: 65px; /* 调整图标大小 */
        height: 65px;
        margin-bottom: 15px;
        font-size: 1.4rem; /* 调整元素符号字体大小 */
    }
    
    .popular-products-btn {
        padding: 14px 28px; /* 调整内边距 */
        font-size: 1rem; /* 调整字体大小 */
    }
}

/* ======================================== */
/* 管理团队部分 - 重新设计为WestAir风格 */
/* ======================================== */

/* 管理团队区域容器 */
.leadership-section {
    background: white;
    padding: 80px 0;
    margin-top: 50px;
    text-align: center;
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* 管理团队主标题 - 渐变文字效果 */
.leadership-title {
    font-size: 3.8rem;
    color: #2a5298;
    margin-bottom: 10px; /* 缩小leadership & 内容的间距 */
    font-weight: 800;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 领导者个人资料容器 - 使用flexbox布局 */
.leader-profile {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 20px;
    text-align: left;
}

/* 最后一个领导者资料，移除底部边距 */
.leader-profile:last-child {
    margin-bottom: 0;
}

/* 领导者头像容器 - 固定尺寸，防止压缩 */
.leader-photo {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 500px;
    width: 450px;
    flex-shrink: 0; /* 防止在flex容器中被压缩 */
}

/* 领导者头像图片 - 覆盖填充，保持比例 */
.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持图片比例，覆盖整个容器 */
    transition: transform 0.3s ease;
}

/* 移除图片悬停效果 - 保持静态显示 */

/* 领导者信息容器 - 占据剩余空间，与图片保持间距 */
.leader-info {
    padding-left: 65px; /* 与左侧图片保持65px间距 */
    flex: 1; /* 占据flex容器中的剩余空间 */
}

/* 职位标题 - 橙色小字，大写显示 */
.leader-position {
    font-size: 1.2rem;
    color: #777; /* 灰色小标题，贴近截图风格 */
    font-weight: 700;
    text-transform: uppercase; /* 大写字母 */
    letter-spacing: 0.08em; /* 更紧凑的字母间距 */
    margin-bottom: 10px; /* 缩小与姓名的间距 */
}

/* 领导者姓名 - 大号蓝色字体 */
.leader-name {
    font-size: 3.2rem;
    color: #111; /* 黑色姓名标题，贴近截图 */
    font-weight: 800;
    margin: 0 0 18px; /* 去掉默认上边距，进一步贴近上方标签 */
    line-height: 1.08;
    letter-spacing: -0.02em; /* 略微紧凑的字距 */
}

/* 领导者描述文字容器 */
.leader-description {
    margin-bottom: 30px;
}

/* 领导者描述段落 - 灰色文字，两端对齐 */
.leader-description p {
    font-size: 1.05rem;
    color: #333; /* 更深一些，增强可读性 */
    line-height: 1.8; /* 行高 */
    margin-bottom: 15px;
    text-align: left; /* 避免英文单词拉伸导致大空隙 */
    word-spacing: normal;
    letter-spacing: 0; 
}

/* 删除联系部分样式 - 简化设计 */

/* ======================================== */
/* 响应式设计 - 平板端 */
/* ======================================== */
@media (max-width: 900px) {
    /* 平板端改为垂直布局 */
    .leader-profile {
        flex-direction: column;
        text-align: center;
        margin-bottom: 60px;
    }
    
    /* 平板端图片居中显示 */
    .leader-photo {
        height: 450px;
        width: 450px;
        margin: 0 auto;
    }
    
    /* 平板端文字区域顶部间距 */
    .leader-info {
        padding-left: 0;
        padding-top: 65px;
    }
    
    /* 平板端字体大小调整 */
    .leader-name {
        font-size: 2.4rem;
    }
    
    .leader-description p {
        font-size: 1rem;
        text-align: left;
    }
    
    .leadership-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
}

/* ======================================== */
/* 响应式设计 - 手机端 */
/* ======================================== */
@media (max-width: 600px) {
    /* 手机端容器调整 */
    .leadership-section {
        padding: 60px 0;
    }
    
    /* 手机端布局调整 */
    .leader-profile {
        margin-bottom: 50px;
        padding: 0 15px;
    }
    
    /* 手机端图片尺寸调整 */
    .leader-photo {
        height: 380px;
        width: 100%;
        max-width: 350px;
    }
    
    /* 手机端字体大小调整 */
    .leader-name {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .leader-description p {
        font-size: 0.95rem;
    }
    
    .leadership-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

/* 或者在公司历史部分添加 */
.company-history {
    margin-bottom: 50px; /* 添加空白区域 */
}

/* 英雄区域标题和扩展按钮 - 已废弃，使用新的轮播图结构 */

/* 英雄区域内容 - 已废弃，使用新的轮播图结构 */

/* 服务特色区域样式 */
.service-section {
    background: white; /* 改为白色背景 */
    padding: 40px 0; /* 减少上下内边距 */
    min-height: 40vh; /* 减少最小高度为视口高度的40% */
    display: flex; /* 弹性布局 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* 服务内容容器样式 */
.service-content {
    max-width: 1600px; /* 最大宽度限制 */
    margin: 0 auto; /* 水平居中 */
    padding: 0 20px; /* 左右内边距 */
    text-align: center; /* 文本居中 */
    min-height: auto; /* 最小高度为视口高度的60% */
}

/* 服务网格布局 */
.service-grid {
    display: grid; /* 网格布局 */
    grid-template-columns: repeat(3, 1fr); /* 3列布局 */
    gap: 30px; /* 网格间距 */
    margin-top: 40px; /* 顶部外边距 */
}

/* 服务项目卡片样式 */
.service-item {
    background: white; /* 白色背景 */
    padding: 30px 25px; /* 内边距 */
    border-radius: 15px; /* 圆角 */
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); /* 阴影效果 */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 过渡动画 */
    text-align: left; /* 文本左对齐 */
}

/* 服务项目悬停效果 */
.service-item:hover {
    transform: translateY(-5px); /* 向上移动5px */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* 增强阴影 */
}

/* 服务项目标题样式 */
.service-item h3 {
    color: #2a5298; /* 主题蓝色 */
    font-size: 1.5rem; /* 略大字体 */
    margin-bottom: 18px; /* 调整底部外边距 */
    font-weight: 700; /* 更粗字体 */
    line-height: 1.3;
    letter-spacing: -0.005em;
}

/* 服务项目描述样式 */
.service-item p {
    color: #444; /* 更深灰色文字，增强可读性 */
    line-height: 1.7; /* 增加行高 */
    font-size: 1.05rem; /* 略大字体 */
    font-weight: 400;
}

/* 服务区域主标题样式 */
.service-section h2 {
    color: #2a5298; /* 主题蓝色 */
    font-size: 3.2rem; /* 增大字体以匹配leadership标题 */
    margin-bottom: 15px; /* 调整底部外边距 */
    font-weight: 800; /* 更粗字体 */
    line-height: 1.2;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 服务区域副标题样式 */
.service-section .subtitle {
    color: #555; /* 稍深的灰色文字，增强可读性 */
    font-size: 1.25rem; /* 略大字体 */
    margin-bottom: 50px; /* 增加底部外边距 */
    max-width: 1000px; /* 最大宽度限制 */
    margin-left: auto; /* 自动左边距 */
    margin-right: auto; /* 自动右边距 */
    line-height: 1.6;
    font-weight: 400;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 响应式设计 - 中等屏幕 */
@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr); /* 2列布局 */
        gap: 20px; /* 调整间距 */
    }
    
    .service-section {
        padding: 30px 0; /* 调整内边距 */
    }
    
    .service-section h2 {
        font-size: 2rem; /* 调整字体大小 */
    }
}

/* 响应式设计 - 小屏幕 */
@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr; /* 单列布局 */
        gap: 20px; /* 调整间距 */
    }
    
    .service-section {
        padding: 20px 0; /* 调整内边距 */
        min-height: auto; /* 自动高度 */
    }
    
    .service-section h2 {
        font-size: 1.8rem; /* 调整字体大小 */
    }
    
    .service-section .subtitle {
        font-size: 1rem; /* 调整字体大小 */
    }
}

/* 特色产品和服务区域样式 */
.featured-section {
    background: white; /* 浅灰色背景 */
    padding: 80px 0; /* 增加上下内边距以匹配leadership section */
    min-height: 40vh; /* 最小高度 */
    display: flex; /* 弹性布局 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* 特色内容容器样式 */
.featured-content {
    max-width: 1600px; /* 最大宽度限制 */
    margin: 0 auto; /* 水平居中 */
    padding: 0 20px; /* 左右内边距 */
    text-align: center; /* 文本居中 */
    width: 100%; /* 确保占满可用宽度 */
}

/* 特色网格布局 */
.featured-grid {
    display: grid; /* 网格布局 */
    grid-template-columns: repeat(3, 1fr); /* 3列布局，每列宽度相等 */
    gap: 30px; /* 增加网格间距 */
    margin-top: 40px; /* 顶部外边距 */
    width: 100%; /* 确保占满容器宽度 */
    max-width: 100%; /* 确保不超过容器宽度 */
}

/* 特色卡片样式 */
.featured-card {
    position: relative; /* 相对定位 */
    border-radius: 15px; /* 圆角 */
    overflow: hidden; /* 隐藏溢出 */
    cursor: pointer; /* 鼠标指针 */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 过渡动画 */
    width: 100%; /* 确保卡片占满网格单元格 */
    height: 300px; /* 统一高度 */
    min-height: 300px; /* 最小高度 */
    display: block; /* 确保显示为块级元素 */
}

/* 不同高度的卡片 - 使用响应式高度 */
.featured-card:nth-child(1) {
    height: 400px; /* 第一个卡片较高 */
}

.featured-card:nth-child(2) {
    height: 400px; /* 第二个卡片较高 */
}

.featured-card:nth-child(3) {
    height: 350px; /* 第三个卡片中等 */
}

.featured-card:nth-child(4) {
    height: 350px; /* 第四个卡片中等 */
}

.featured-card:nth-child(5) {
    height: 400px; /* 第五个卡片较高 */
}

.featured-card:nth-child(6) {
    height: 450px; /* 第六个卡片最高 */
}

/* 卡片背景 */
.card-background {
    position: absolute; /* 绝对定位 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* 背景图片覆盖 */
    background-position: center; /* 背景图片居中 */
    transition: transform 0.3s ease; /* 过渡动画 */
    z-index: 1; /* 确保在底层 */
}

/* 卡片遮罩层 */
.card-overlay {
    position: absolute; /* 绝对定位 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%); /* 渐变遮罩 */
    display: flex; /* 弹性布局 */
    flex-direction: column; /* 垂直排列 */
    justify-content: flex-start; /* 顶部对齐 */
    align-items: flex-start; /* 左对齐 */
    padding: 25px; /* 内边距 */
    color: white; /* 白色文字 */
    z-index: 2; /* 确保在背景之上 */
}

/* 卡片分类标签 */
.card-category {
    font-size: 0.9rem; /* 字体大小 */
    font-weight: 600; /* 字体粗细 */
    text-transform: uppercase; /* 大写字母 */
    letter-spacing: 1px; /* 字母间距 */
    margin-bottom: 8px; /* 底部外边距 */
    color: #ff9800; /* 橙色 */
    z-index: 3; /* 确保在最上层 */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8); /* 添加文字阴影 */
    align-self: flex-start; /* 左对齐 */
    max-width: 80%; /* 限制最大宽度，避免文字过长 */
}

/* 卡片标题 */
.card-title {
    font-size: 1.3rem; /* 字体大小 */
    font-weight: 600; /* 字体粗细 */
    margin-bottom: 15px; /* 底部外边距 */
    line-height: 1.3; /* 行高 */
    z-index: 3; /* 确保在最上层 */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8); /* 添加文字阴影 */
    align-self: flex-start; /* 左对齐 */
    max-width: 80%; /* 限制最大宽度，避免文字过长 */
}

/* 卡片箭头 */
.card-arrow {
    position: static; /* 改为静态定位，跟随内容流 */
    width: 40px; /* 宽度 */
    height: 40px; /* 高度 */
    background: #ff9800; /* 橙色背景 */
    border-radius: 50%; /* 圆形 */
    display: flex; /* 弹性布局 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    font-size: 1.2rem; /* 字体大小 */
    transition: transform 0.3s ease; /* 过渡动画 */
    z-index: 3; /* 确保在最上层 */
    color: white; /* 确保箭头图标为白色 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.3); /* 添加阴影 */
    margin-top: 15px; /* 与上方内容保持间距 */
    align-self: flex-start; /* 左对齐 */
}

/* 确保箭头图标正确显示 */
.card-arrow i {
    color: white !important; /* 强制白色 */
    font-size: 1.2rem; /* 图标大小 */
}

/* 卡片悬停效果 */
.featured-card:hover {
    transform: translateY(-8px); /* 向上移动 */
    box-shadow: 0 15px 35px rgba(0,0,0,0.2); /* 增强阴影 */
}

.featured-card:hover .card-background {
    transform: scale(1.1); /* 背景图片放大 */
}

.featured-card:hover .card-arrow {
    transform: translateX(5px); /* 箭头向右移动 */
    background: #e68900; /* 悬停时稍微深一点的橙色 */
}

/* 特色区域主标题样式 - 渐变文字效果 */
.featured-section h2 {
    color: #2a5298; /* 主题蓝色 */
    font-size: 3.2rem; /* 增大字体以匹配leadership标题 */
    margin-bottom: 15px; /* 调整底部外边距 */
    font-weight: 800; /* 更粗字体 */
    line-height: 1.2;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 特色区域副标题样式 */
.featured-section .subtitle {
    color: #555; /* 稍深的灰色文字，增强可读性 */
    font-size: 1.25rem; /* 略大字体 */
    margin-bottom: 50px; /* 增加底部外边距 */
    max-width: 1000px; /* 最大宽度限制 */
    margin-left: auto; /* 自动左边距 */
    margin-right: auto; /* 自动右边距 */
    line-height: 1.6;
    font-weight: 400;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 响应式设计 - 中等屏幕 */
@media (max-width: 900px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr); /* 2列布局，每列宽度相等 */
        gap: 25px; /* 调整间距 */
        width: 100%; /* 确保占满宽度 */
    }
    
    .featured-section {
        padding: 60px 0; /* 调整内边距 */
    }
    
    .featured-section h2 {
        font-size: 2rem; /* 调整字体大小 */
    }
    
    /* 在中等屏幕上统一卡片高度 */
    .featured-card,
    .featured-card:nth-child(1),
    .featured-card:nth-child(2),
    .featured-card:nth-child(3),
    .featured-card:nth-child(4),
    .featured-card:nth-child(5),
    .featured-card:nth-child(6) {
        height: 300px; /* 统一高度 */
        width: 100%; /* 占满网格单元格 */
    }
    
    /* 在中等屏幕上调整卡片内容 */
    .card-overlay {
        padding: 20px; /* 调整内边距 */
    }
    
    .card-title {
        font-size: 1.2rem; /* 调整字体大小 */
        margin-bottom: 12px; /* 调整间距 */
    }
    
    .card-category {
        font-size: 0.85rem; /* 调整字体大小 */
        margin-bottom: 7px; /* 调整间距 */
    }
    
    .card-arrow {
        margin-top: 12px; /* 调整间距 */
    }
}

/* 响应式设计 - 小屏幕 */
@media (max-width: 600px) {
    .featured-grid {
        grid-template-columns: 1fr; /* 单列布局，所有卡片宽度一致 */
        gap: 20px; /* 调整间距 */
        width: 100%; /* 确保占满宽度 */
    }
    
    .featured-section {
        padding: 40px 0; /* 调整内边距 */
        min-height: auto; /* 自动高度 */
    }
    
    .featured-section h2 {
        font-size: 1.8rem; /* 调整字体大小 */
    }
    
    .featured-section .subtitle {
        font-size: 1rem; /* 调整字体大小 */
    }
    
    /* 在小屏幕上统一卡片高度和宽度 */
    .featured-card,
    .featured-card:nth-child(1),
    .featured-card:nth-child(2),
    .featured-card:nth-child(3),
    .featured-card:nth-child(4),
    .featured-card:nth-child(5),
    .featured-card:nth-child(6) {
        height: 250px; /* 统一高度，稍微增加一点 */
        width: 100%; /* 单列布局，占满宽度 */
        grid-column: span 1; /* 统一为单列，宽度一致 */
    }
    
    /* 在小屏幕上调整卡片内容的内边距 */
    .card-overlay {
        padding: 20px; /* 减少内边距 */
    }
    
    .card-title {
        font-size: 1.1rem; /* 调整字体大小 */
        margin-bottom: 10px; /* 减少底部间距 */
    }
    
    .card-category {
        font-size: 0.8rem; /* 调整字体大小 */
        margin-bottom: 6px; /* 减少底部间距 */
    }
    
    .card-arrow {
        width: 35px; /* 调整箭头大小 */
        height: 35px;
        font-size: 1rem;
        margin-top: 10px; /* 减少顶部间距 */
    }
}

/* Our Clients 区域样式 */
.clients-section {
    background: white; /* 浅灰色背景 */
    padding: 80px 0; /* 增加上下内边距以匹配leadership section */
    min-height: 50vh; /* 最小高度 */
    display: flex; /* 弹性布局 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* 客户内容容器样式 */
.clients-content {
    max-width: 1600px; /* 最大宽度限制 */
    margin: 0 auto; /* 水平居中 */
    padding: 0 20px; /* 左右内边距 */
    text-align: center; /* 文本居中 */
    width: 100%; /* 确保占满可用宽度 */
}

/* 客户区域主标题样式 - 渐变文字效果 */
.clients-section h2 {
    color: #2a5298; /* 主题蓝色 */
    font-size: 3.5rem; /* 增大字体以匹配leadership标题 */
    margin-bottom: 15px; /* 调整底部外边距 */
    font-weight: 800; /* 更粗字体 */
    line-height: 1.2;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 客户区域副标题样式 */
.clients-section .subtitle {
    color: #555; /* 稍深的灰色文字，增强可读性 */
    font-size: 1.25rem; /* 略大字体 */
    margin-bottom: 60px; /* 增加底部外边距 */
    max-width: 1000px; /* 最大宽度限制 */
    margin-left: auto; /* 自动左边距 */
    margin-right: auto; /* 自动右边距 */
    line-height: 1.6;
    font-weight: 400;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 客户网格布局 */
.clients-grid {
    display: grid; /* 网格布局 */
    grid-template-columns: repeat(3, 1fr); /* 3列布局 */
    gap: 30px; /* 网格间距 */
    margin-bottom: 60px; /* 底部外边距 */
    width: 100%; /* 确保占满容器宽度 */
}

/* 客户卡片样式 */
.client-card {
    position: relative; /* 相对定位 */
    background: white; /* 白色背景 */
    padding: 0; /* 移除内边距，由内容控制 */
    border-radius: 15px; /* 圆角 */
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); /* 阴影效果 */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 过渡动画 */
    text-align: center; /* 文本居中 */
    overflow: hidden; /* 隐藏溢出 */
    min-height: 300px; /* 最小高度 */
}

/* 客户卡片悬停效果 */
.client-card:hover {
    transform: translateY(-8px); /* 向上移动 */
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); /* 增强阴影 */
}

/* 客户logo背景 */
.client-logo-bg {
    position: absolute; /* 绝对定位 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* 背景图片覆盖 */
    background-position: center; /* 背景图片居中 */
    background-repeat: no-repeat; /* 不重复 */
    opacity: 0.1; /* 透明度，让logo作为淡色背景 */
    transition: opacity 0.3s ease; /* 过渡动画 */
    z-index: 1; /* 底层 */
}

/* 客户卡片悬停时logo背景效果 */
.client-card:hover .client-logo-bg {
    opacity: 0.15; /* 悬停时稍微增加透明度 */
}

/* 客户内容容器 */
.client-content {
    position: relative; /* 相对定位 */
    z-index: 2; /* 在logo背景之上 */
    padding: 30px 25px; /* 内边距 */
    background: rgba(255, 255, 255, 0.95); /* 半透明白色背景 */
    height: 100%; /* 占满卡片高度 */
    display: flex; /* 弹性布局 */
    flex-direction: column; /* 垂直排列 */
    justify-content: center; /* 垂直居中 */
    align-items: center; /* 水平居中 */
}

/* 客户logo样式 */
.client-logo {
    width: 120px; /* 宽度 */
    height: 80px; /* 高度 */
    display: flex; /* 弹性布局 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    margin: 0 auto 20px; /* 居中外边距 */
    transition: transform 0.3s ease; /* 过渡动画 */
}

.client-logo img {
    max-width: 100%; /* 最大宽度 */
    max-height: 100%; /* 最大高度 */
    object-fit: contain; /* 保持比例 */
    /* 移除颜色滤镜，保持原始颜色 */
}

/* 客户卡片悬停时logo效果 */
.client-card:hover .client-logo img {
    transform: scale(1.05); /* logo稍微放大 */
}

/* 客户卡片标题样式 */
.client-card h3 {
    color: #2a5298; /* 主题蓝色 */
    font-size: 1.5rem; /* 略大字体 */
    margin-bottom: 18px; /* 调整底部外边距 */
    font-weight: 700; /* 更粗字体 */
    line-height: 1.3;
    letter-spacing: -0.005em;
}

/* 客户卡片描述样式 */
.client-card p {
    color: #444; /* 更深灰色文字，增强可读性 */
    line-height: 1.7; /* 增加行高 */
    font-size: 1.05rem; /* 略大字体 */
    margin-bottom: 15px; /* 底部外边距 */
    font-weight: 400;
}



/* 客户统计区域样式 */
.clients-stats {
    display: grid; /* 网格布局 */
    grid-template-columns: repeat(4, 1fr); /* 4列布局 */
    gap: 30px; /* 网格间距 */
    margin-top: 50px; /* 顶部外边距 */
    padding: 40px; /* 内边距 */
    background: white; /* 白色背景 */
    border-radius: 15px; /* 圆角 */
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); /* 阴影效果 */
}

/* 统计项目样式 */
.stat-item {
    text-align: center; /* 文本居中 */
    padding: 20px; /* 内边距 */
}

/* 统计数字样式 */
.stat-number {
    font-size: 2.5rem; /* 大字体 */
    font-weight: 700; /* 粗体 */
    color: #2a5298; /* 主题蓝色 */
    margin-bottom: 10px; /* 底部外边距 */
    line-height: 1; /* 行高 */
}

/* 统计标签样式 */
.stat-label {
    font-size: 1rem; /* 字体大小 */
    color: #666; /* 灰色文字 */
    font-weight: 500; /* 字体粗细 */
}

/* 响应式设计 - 中等屏幕 */
@media (max-width: 900px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr); /* 2列布局 */
        gap: 25px; /* 调整间距 */
    }
    
    .clients-stats {
        grid-template-columns: repeat(2, 1fr); /* 2列布局 */
        gap: 20px; /* 调整间距 */
        padding: 30px; /* 调整内边距 */
    }
    
    .clients-section {
        padding: 50px 0; /* 调整内边距 */
    }
    
    .clients-section h2 {
        font-size: 2rem; /* 调整字体大小 */
    }
    
    .stat-number {
        font-size: 2rem; /* 调整字体大小 */
    }
}

/* 响应式设计 - 小屏幕 */
@media (max-width: 600px) {
    .clients-grid {
        grid-template-columns: 1fr; /* 单列布局 */
        gap: 20px; /* 调整间距 */
    }
    
    .clients-stats {
        grid-template-columns: 1fr; /* 单列布局 */
        gap: 15px; /* 调整间距 */
        padding: 20px; /* 调整内边距 */
    }
    
    .clients-section {
        padding: 40px 0; /* 调整内边距 */
        min-height: auto; /* 自动高度 */
    }
    
    .clients-section h2 {
        font-size: 1.8rem; /* 调整字体大小 */
    }
    
    .clients-section .subtitle {
        font-size: 1rem; /* 调整字体大小 */
    }
    
    .client-card {
        min-height: 250px; /* 调整最小高度 */
    }
    
    .client-content {
        padding: 20px 15px; /* 调整内边距 */
    }
    
    .client-logo {
        width: 100px; /* 调整logo大小 */
        height: 60px;
    }
    
    .client-card h3 {
        font-size: 1.2rem; /* 调整字体大小 */
    }
    
    .stat-number {
        font-size: 1.8rem; /* 调整字体大小 */
    }
}

/* 新增水平时间轴样式 */
.horizontal-timeline {
    margin: 40px 0;
    text-align: center;
    background: transparent;
    padding: 20px;
}

.timeline-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.timeline-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
}

.timeline-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff9800 0%, #e68900 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.timeline-btn.active {
    color: #2a5298;
    font-weight: 700;
}

.timeline-btn.active::after {
    width: 100%;
}

.timeline-btn:hover {
    color: #2a5298;
    transform: translateY(-2px);
}

.history-content {
    position: relative;
    min-height: 400px;
    margin-top: 30px;
}

.history-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.history-section.active {
    display: block;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.history-text {
    padding-right: 20px;
}

.history-title {
    font-size: 2.2rem;
    color: #2a5298;
    margin-bottom: 25px;
    font-weight: 800;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.history-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #ff9800;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(42, 82, 152, 0.05) 100%);
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
    margin-left: -20px;
}

.history-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

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



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 900px) {
    .timeline-nav {
        gap: 15px;
    }
    
    .timeline-btn {
        padding: 8px 16px;
        font-size: 1rem;
    }
    
    .history-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .history-text {
        padding-right: 0;
    }
    
    .history-title {
        font-size: 1.8rem;
    }
    
    .history-description {
        font-size: 1rem;
    }
    
    .history-image {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .timeline-nav {
        gap: 10px;
    }
    
    .timeline-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .history-title {
        font-size: 1.5rem;
    }
    
    .history-description {
        font-size: 0.95rem;
    }
    
    .history-image {
        height: 250px;
    }
}

/* ======================================== */
/* 隐私政策页面样式 */
/* ======================================== */

/* 隐私政策区域 */
.privacy-policy-section {
    background: white;
    padding: 60px 0 80px;
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* 隐私政策标题区域 */
.privacy-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(42,82,152,0.08), rgba(255,152,0,0.06));
    border-radius: 15px;
}

/* 隐私政策主标题 */
.privacy-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #2a5298;
    margin: 0 0 15px;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

/* 隐私政策副标题 */
.privacy-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* 隐私政策内容容器 */
.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

/* 隐私政策章节 */
.privacy-section {
    margin-bottom: 50px;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

.privacy-section:last-child {
    border-bottom: none;
}

/* 隐私政策章节标题 */
.privacy-section h2 {
    font-size: 2.2rem;
    color: #2a5298;
    margin: 0 0 25px;
    font-weight: 800;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* 隐私政策子标题 */
.privacy-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 30px 0 20px;
    font-weight: 700;
    border-left: 3px solid #ff9800;
    padding-left: 15px;
}

/* 隐私政策段落 */
.privacy-section p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 隐私政策列表 */
.privacy-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-section li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* 数据类型列表特殊样式 */
.data-types-list li {
    background: rgba(42, 82, 152, 0.05);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
    list-style: none;
}

.data-types-list {
    padding-left: 0;
}

/* 权利列表特殊样式 */
.rights-list li {
    background: rgba(255, 152, 0, 0.05);
    padding: 12px 18px;
    margin-bottom: 8px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
    list-style: none;
}

.rights-list {
    padding-left: 0;
}

/* 联系信息框 */
.contact-info {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.08) 0%, rgba(42, 82, 152, 0.08) 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #ff9800;
    margin: 20px 0;
}

.contact-info p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

/* 数据使用表格 */
.data-usage-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin: 25px 0;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 2fr 3fr;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 100%);
    color: white;
    font-weight: 700;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 2fr 3fr;
    border-bottom: 1px solid #e0e0e0;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:nth-child(even) {
    background: rgba(42, 82, 152, 0.02);
}

.table-cell {
    padding: 15px 20px;
    font-size: 1rem;
    line-height: 1.6;
    vertical-align: top;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.table-header .table-cell {
    border-right: 1px solid rgba(255,255,255,0.2);
}

.table-row .table-cell {
    border-right: 1px solid #e0e0e0;
    color: #444;
}

.table-cell:last-child {
    border-right: none;
}

/* 响应式设计 */
@media (max-width: 900px) {
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.8rem;
    }
    
    .privacy-section h3 {
        font-size: 1.3rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 1rem;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .table-cell {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .table-header .table-cell {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .table-cell:last-child {
        border-bottom: none;
    }
}

@media (max-width: 600px) {
    .privacy-policy-section {
        padding: 40px 0 60px;
    }
    
    .privacy-hero {
        padding: 30px 15px;
        margin-bottom: 40px;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-content {
        padding: 0 15px;
    }
    
    .privacy-section {
        margin-bottom: 40px;
        padding: 20px 0;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
        margin: 25px 0 15px;
        padding-left: 12px;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 0.95rem;
    }
    
    .data-types-list li,
    .rights-list li {
        padding: 12px 15px;
    }
    
    .contact-info {
        padding: 20px 15px;
    }
    
    .table-cell {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* ======================================== */
/* Terms & Conditions 页面样式 */
/* ======================================== */

/* Terms & Conditions 区域 */
.terms-conditions-section {
    background: white;
    padding: 60px 0 80px;
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* Terms & Conditions 标题区域 */
.terms-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(42,82,152,0.08), rgba(255,152,0,0.06));
    border-radius: 15px;
}

/* Terms & Conditions 主标题 */
.terms-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #2a5298;
    margin: 0 0 15px;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

/* Terms & Conditions 副标题 */
.terms-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Terms & Conditions 内容容器 */
.terms-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

/* Terms & Conditions 章节 */
.terms-section {
    margin-bottom: 50px;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

.terms-section:last-child {
    border-bottom: none;
}

/* Terms & Conditions 章节标题 */
.terms-section h2 {
    font-size: 2.2rem;
    color: #2a5298;
    margin: 0 0 25px;
    font-weight: 800;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-align: center;
}

/* Terms & Conditions 子标题 */
.terms-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 30px 0 20px;
    font-weight: 700;
    border-left: 3px solid #ff9800;
    padding-left: 15px;
}

/* Terms & Conditions 段落 */
.terms-section p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Terms 介绍段落 */
.terms-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    background: rgba(42, 82, 152, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2a5298;
    margin: 25px 0;
}

/* 认证声明框 */
.certification-box {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(42, 82, 152, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ff9800;
    margin: 30px 0;
    text-align: center;
}

.certification-box p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2a5298;
    margin: 0;
    line-height: 1.6;
}

/* Terms 条款框 */
.terms-clause {
    background: rgba(42, 82, 152, 0.02);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #2a5298;
    margin: 20px 0;
}

.terms-clause p {
    font-size: 1rem;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.7;
    font-weight: 500;
}

.terms-clause p:last-child {
    margin-bottom: 0;
}

/* 联系信息框 (复用隐私政策样式) */
.terms-section .contact-info {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.08) 0%, rgba(42, 82, 152, 0.08) 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #ff9800;
    margin: 20px 0;
}

.terms-section .contact-info p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

/* 响应式设计 */
@media (max-width: 900px) {
    .terms-title {
        font-size: 2.5rem;
    }
    
    .terms-section h2 {
        font-size: 1.8rem;
    }
    
    .terms-section h3 {
        font-size: 1.3rem;
    }
    
    .terms-section p,
    .terms-intro,
    .terms-clause p {
        font-size: 1rem;
    }
    
    .certification-box {
        padding: 20px;
    }
    
    .terms-clause {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .terms-conditions-section {
        padding: 40px 0 60px;
    }
    
    .terms-hero {
        padding: 30px 15px;
        margin-bottom: 40px;
    }
    
    .terms-title {
        font-size: 2rem;
    }
    
    .terms-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-content {
        padding: 0 15px;
    }
    
    .terms-section {
        margin-bottom: 40px;
        padding: 20px 0;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .terms-section h3 {
        font-size: 1.2rem;
        margin: 25px 0 15px;
        padding-left: 12px;
    }
    
    .terms-section p,
    .terms-intro,
    .terms-clause p {
        font-size: 0.95rem;
    }
    
    .certification-box {
        padding: 15px;
    }
    
    .certification-box p {
        font-size: 1rem;
    }
    
    .terms-clause {
        padding: 15px;
    }
    
    .terms-section .contact-info {
        padding: 20px 15px;
    }
}

/* 健康与安全区域样式 */
.health-safety-section {
    margin: 60px 0;
    padding: 50px 0;
    background: transparent;
}

.health-safety-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #2a5298;
    margin-bottom: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.safety-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.safety-description {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(42, 82, 152, 0.05) 100%);
    border-radius: 15px;
    border-left: 4px solid #ff9800;
}

.safety-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.safety-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: transparent;
    min-width: 150px;
}

.safety-feature i {
    font-size: 2.5rem;
    color: #ff9800;
    margin-bottom: 10px;
}

.safety-feature span {
    font-size: 1.1rem;
    color: #2a5298;
    font-weight: 600;
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 900px) {
    .health-safety-section .section-title {
        font-size: 2rem;
    }
    
    .safety-description {
        font-size: 1.1rem;
    }
    
    .safety-features {
        gap: 20px;
    }
    
    .safety-feature {
        min-width: 120px;
        padding: 15px;
    }
}

@media (max-width: 600px) {
    .health-safety-section {
        margin: 40px 0;
        padding: 30px 0;
    }
    
    .health-safety-section .section-title {
        font-size: 1.8rem;
    }
    
    .safety-description {
        font-size: 1rem;
    }
    
    .safety-features {
        gap: 15px;
    }
    
    .safety-feature {
        min-width: 100px;
        padding: 12px;
    }
    
    .safety-feature i {
        font-size: 1.5rem;
    }
    
    .safety-feature span {
        font-size: 0.9rem;
    }
}
