/* ============================
   全局样式设置
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* 使元素的padding和border包含在宽度和高度内 */
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6; /* 行高为字体大小的1.6倍 */
    color: #333;
}

/* 容器通用样式 */
.container {
    max-width: 1200px; /* 最大宽度限制 */
    margin: 0 auto; /* 水平居中 */
    padding: 0 10px; /* 左右内边距 */
}

/* ============================
   导航栏样式
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 2rem;  /* 将上下内边距从 1rem 改为 0.5rem */
    background: rgba(255, 255, 255, 0.8);  /* 半透明白色背景 */
    backdrop-filter: blur(10px);  /* 毛玻璃效果 */
    -webkit-backdrop-filter: blur(10px);  /* Safari 支持 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  /* 柔和的阴影效果 */
    transition: all 0.3s ease;  /* 平滑过渡效果 */
}

/* 当页面滚动时可以添加更深的阴影效果 */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar .container {
    max-width: none; /* 移除最大宽度限制 */
    padding: 20px 40px; /* 使用固定的左右内边距 */
    margin: 0; /* 移除自动边距 */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo样式 */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 40px;
    width: 40px; /* 修改为等宽，确保是正方形 */
    object-fit: contain; /* 确保图片完整显示且不变形 */
}

.logo h1 {
    margin: 0;
    font-size: 1.5rem;
    color: #2c3e50;
}

/* 导航链接样式 */
.nav-links {
    display: flex;
    list-style: none;
    flex-wrap: wrap; /* 允许链接换行 */
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s; /* 颜色过渡动画 */
}

.nav-links a:hover {
    color: #3498db;
}

/* 如果导航栏中的logo或文字太大，也可以调整它们的大小 */
.navbar .logo {
    font-size: 1.2rem;  /* 可以根据需要调整 */
}

.navbar .nav-links a {
    font-size: 1rem;    /* 可以根据需要调整 */
    padding: 0.5rem 1rem;  /* 可以根据需要调整链接的内边距 */
}

/* ============================
   首页英雄区样式
   ============================ */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

/* 添加网格光线效果 */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(26, 41, 128, 0.3) 0%, rgba(38, 208, 206, 0.3) 100%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    animation: gridMove 20s linear infinite;
}

/* 添加浮动光点效果 */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

/* 修改粒子样式 */
.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
}

.particle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(3px);
}

/* 添加动画关键帧 */
@keyframes gridMove {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 100% 100%, 50px 50px, 50px 50px;
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

/* 主标题样式 */
.hero h1 {
    font-size: 82px;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: glowText 2s ease-in-out infinite alternate;
}

/* 文字发光动画 */
@keyframes glowText {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                     0 0 20px rgba(255, 255, 255, 0.8),
                     0 0 30px rgba(255, 255, 255, 0.8);
    }
    to {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
                     0 0 10px rgba(255, 255, 255, 0.8),
                     0 0 15px rgba(255, 255, 255, 0.8);
    }
}

/* 副标题样式 */
.hero p {
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* 按钮样式 */
.cta-button {
    display: inline-block;
    padding: 20px 40px;
    background: #fff;
    color: #3498db;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px); /* 悬停时向上移动 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ============================
   关于我们部分样式增强
   ============================ */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #f6f9fc 0%, #eef3f8 100%);
    position: relative;
    overflow: hidden;
}

/* 背景科技装饰 */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(41, 128, 185, 0.05) 0%, transparent 20%),
        linear-gradient(45deg, rgba(52, 152, 219, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(41, 128, 185, 0.02) 25%, transparent 25%);
    background-size: 60px 60px;
    opacity: 0.6;
}

.about h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-size: 2.5em;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 特别为服务标题添加额外的上边距 */
.about h2:not(:first-child) {
    margin-top: 100px; /* 增加与上方内容的间距 */
}

/* 数据统计样式增强 */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.about-text p {
    font-size: 20px;          /* 设置字体大小 */
    line-height: 1.8;         /* 设置行高 */
    margin-bottom: 0.5rem;    /* 段落间距 */
    font-family: "Microsoft YaHei", sans-serif;  /* 设置字体 */
    color: #333;             /* 设置字体颜色 */
    text-align: center;      /* 文本对齐方式 */
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

/* 图标动画效果 */
.stat-item i {
    font-size: 48px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* 数字动画效果 */
.stat-item h3 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin: 15px 0;
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.stat-item p {
    color: #7f8c8d;
    font-size: 18px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 装饰性背景元素 */
.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(52, 152, 219, 0.05),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .stat-item i {
        font-size: 36px;
    }

    .about h2, .about h3 {
        font-size: 2em;
        margin-bottom: 40px;
    }
}

/* ============================
   服务展示部分样式
   ============================ */
.service-grid {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin: 40px 0;
}

.service-track {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.service-track:hover {
    animation-play-state: paused; /* 鼠标悬浮时暂停自动滚动 */
}

/* 创建无缝滚动动画 */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 5 - 30px * 5)); /* 5张卡片的总宽度加间距 */
    }
}

/* 添加渐变遮罩 */
.service-grid::before,
.service-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.service-grid::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.service-grid::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* 服务卡片样式 */
.service-card {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 滚动动画 */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 4 - 30px * 4)); /* 调整为5个卡片的总宽度和间隔 */
    }
}

/* 图标样式 */
.service-card i {
    font-size: 48px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

/* 标题样式 */
.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

/* 描述文字样式 */
.service-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* 发光效果 */
.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(52, 152, 219, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

/* 添加滚动提示动画 */
@keyframes scrollHint {
    0% { transform: translateX(0); }
    50% { transform: translateX(20px); }
    100% { transform: translateX(0); }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .service-grid {
        padding: 0 20px;
    }
    
    .service-card {
        flex: 0 0 260px; /* 移动端稍微缩小卡片宽度 */
    }
    
    .service-card i {
        font-size: 36px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
}

/* ============================
   联系我们部分样式
   ============================ */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 41, 128, 0.02) 0%, rgba(38, 208, 206, 0.02) 100%);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 24px;
    color: #3498db;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 10px;
}

.info-item p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

/* 二维码样式 */
.qrcode-item {
    text-align: center;
    margin-top: 20px;
}

.qrcode-item img {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.qrcode-item p {
    margin-top: 15px;
    color: #666;
    font-size: 16px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .contact-content {
        padding: 20px;
        margin: 0 20px;
    }

    .contact-info {
        gap: 20px;
    }
    
    .qrcode-item img {
        width: 150px;
        height: 150px;
    }
}

/* 页脚 */
.footer {
    padding: 20px 0;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.footer p {
    margin: 0;
    color: #666;
}

.beian {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.beian:hover {
    color: #1a2980;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
}

/* 服务详情页面样式 */
.service-detail {
    padding: 120px 0 60px;
}

.service-detail h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
    font-size: 36px;
}

.detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.detail-intro {
    margin-bottom: 60px;
}

.detail-intro h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.detail-intro ul {
    list-style: none;
    padding: 0;
}

.detail-intro ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.detail-intro ul li:before {
    content: "•";
    color: #3498db;
    margin-right: 10px;
}

.detail-features h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* 新增样式 */
/* 成功案例卡片 */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.case-card i {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 20px;
}

.case-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* 工作流程步骤 */
.workflow-steps, .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
}

/* 价格信息 */
.price-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.price-info .note {
    color: #666;
    font-size: 0.9em;
    margin-top: 10px;
}

/* 使用提示 */
.usage-tips {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.usage-tips ul {
    list-style: none;
    padding: 0;
}

.usage-tips li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.usage-tips li:before {
    content: "✓";
    color: #3498db;
    position: absolute;
    left: 0;
}

/* AI配方展示 */
.ai-formula {
    margin-top: 40px;
}

.formula-components {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.component {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.percentage {
    font-size: 36px;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 15px;
}

/* 成果展示 */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.result-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.result-item h3 {
    font-size: 36px;
    color: #3498db;
    margin: 15px 0;
}

/* ============================
   粒子效果样式
   ============================ */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* ============================
   响应式设计
   ============================ */
@media (max-width: 768px) {
    /* 移动端样式调整 */
    .about-content,
    .contact-content {
        grid-template-columns: 1fr; /* 单列布局 */
    }

    .nav-links {
        display: none; /* 隐藏导航链接 */
    }

    /* 移动端字体大小调整 */
    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 24px;
    }

    /* 移动端按钮样式调整 */
    .cta-button {
        padding: 15px 30px;
        font-size: 18px;
    }

    /* 其他移动端布局调整 */
    .about-stats,
    .feature-grid,
    .formula-components,
    .results-grid,
    .workflow-steps,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .navbar .container {
        padding: 10px 20px; /* 移动端减小内边距 */
        flex-direction: row; /* 保持水平排列 */
    }
    
    .logo h1 {
        font-size: 20px;
        margin: 0;
    }
    
    /* 移动端导航链接样式 */
    .nav-links {
        display: none; /* 在移动端隐藏导航链接 */
    }
}

/* 成就展示部分样式 */
.achievements {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.achievement-item h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.achievement-item p {
    color: #333;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.achievement-item ul {
    list-style: none;
    padding-left: 0;
}

.achievement-item li {
    color: #666;
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    font-size: 16px;
}

.achievement-item li:before {
    content: "✅";
    position: absolute;
    left: 0;
    color: #3498db;
}

.service-areas {
    color: #2c3e50;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    font-size: 20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 装饰性背景元素 */
.achievement-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(52, 152, 219, 0.05),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .achievement-item {
        padding: 30px 20px;
    }

    .achievement-item h4 {
        font-size: 20px;
    }

    .achievement-item p,
    .achievement-item li {
        font-size: 16px;
    }

    .service-areas {
        font-size: 18px;
    }
}

/* 革新案例样式 */
.cases {
    padding: 100px 0;
    background: linear-gradient(135deg, #f6f9fc 0%, #eef3f8 100%);
    position: relative;
    overflow: hidden;
}

.revolution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.revolution-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

/* 修改革命卡片标题样式 */
.revolution-card .card-header {
    display: flex;
    flex-direction: column;  /* 改为纵向排列 */
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);  /* 添加淡色分隔线 */
}

.revolution-card .card-header h3 {
    margin: 0;
    font-size: 20px;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    padding-left: 0;  /* 移除左侧padding */
}

/* 移除原来的图标样式 */
.revolution-card .card-header i {
    display: none;
}

/* 高亮框样式优化 */
.highlight-box {
    background: rgba(52, 152, 219, 0.02);  /* 降低背景色透明度 */
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(52, 152, 219, 0.1);  /* 添加淡色边框 */
}

.highlight-box h4 {
    margin: 0 0 20px;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
}

/* 勾选列表样式 */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
}

.check-list li i {
    color: #27ae60;
    margin-top: 5px;
    font-size: 14px;
}

.check-list li span {
    flex: 1;
    line-height: 1.5;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .revolution-grid {
        grid-template-columns: 1fr;
    }
    
    .revolution-card {
        padding: 20px;
    }
    
    .revolution-card .card-header h3 {
        font-size: 18px;
    }
}

/* 修改革新案例标题样式 */
.cases h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-size: 2.5em;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .cases h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }
}

/* 超级个体案例样式 */
.super-individuals {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 41, 128, 0.05) 0%, rgba(38, 208, 206, 0.05) 100%);
}

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

.individual-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.individual-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px;
}

.card-header i {
    font-size: 24px;
    color: #3498db;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 12px;
    margin-right: 15px;
}

.header-text {
    flex: 1;
}

.header-text h3 {
    margin: 0;
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
}

.header-text p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

.card-content h4 {
    margin: 20px 0 10px;
    font-size: 16px;
    color: #2c3e50;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content li {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.card-content .sub-item {
    padding-left: 20px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .individuals-grid {
        grid-template-columns: 1fr;
    }
    
    .individual-card {
        padding: 20px;
    }
}

/* 智能触手可及板块样式 */
.ai-workshop {
    padding: 100px 0;
    background: linear-gradient(135deg, #f6f9fc 0%, #eef3f8 100%);
    position: relative;
    overflow: hidden;
}

.ai-workshop h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-size: 2.5em;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.workshop-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;  /* 增加内边距 */
    border-radius: 20px;  /* 增加圆角 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

/* 标题样式优化 */
.workshop-header {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    padding-left: 0; /* 移除左内边距 */
}

.workshop-header h3 {
    font-size: 22px;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
    border-left: 4px solid #3498db; /* 添加左边框 */
    padding-left: 15px; /* 文字与边框的距离 */
}

/* 隐藏序号 */
.number {
    display: none;
}

/* 配方条容器样式 */
.formula-bars {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

/* 配方条基础样式 */
.formula-bar {
    background: rgba(52, 152, 219, 0.05);
    padding: 15px 25px;
    border-radius: 8px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 配方文字样式 */
.formula-bar span {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* 百分比样式 */
.formula-bar span::after {
    content: attr(data-percentage);
    color: #3498db;
    font-size: 20px;
    font-weight: bold;
    margin-left: 15px;
}

/* 本地化魔法文字处理 */
.formula-bar:nth-child(3) span {
    white-space: pre-line;
}

/* 统计数据样式 */
.stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.stat {
    background: rgba(52, 152, 219, 0.05);
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 统计文字样式 */
.stat-text {
    font-size: 16px;
    color: #333; /* 改为黑色 */
    font-weight: normal; /* 取消加粗 */
}

/* 百分比样式 */
.stat span:last-child {
    color: #3498db;
    font-size: 20px;
    font-weight: bold;
    margin-left: 20px; /* 增加与文字的间距 */
}

/* 调整时间线样式 */
.timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 20px 30px; /* 增加内边距 */
}

.time-point {
    padding: 12px 30px; /* 增加水平内边距 */
    background: rgba(52, 152, 219, 0.05);
    border-radius: 8px;
    color: #2c3e50;
    font-size: 16px;
    min-width: 120px; /* 设置最小宽度 */
    text-align: center;
}

.time-arrow {
    color: #3498db;
    font-size: 24px;
    margin: 0 20px; /* 增加箭头两侧间距 */
}

.time-point.highlight {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    font-weight: bold;
}

/* 列表项样式优化 */
.workshop-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
}

.workshop-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.workshop-list i {
    font-size: 28px;
    color: #3498db;
    margin-top: 3px;
}

.list-content strong {
    display: block;
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 18px;
}

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

/* 聊天助手样式 */
:root {
  --webchat-toolbar-background-color: linear-gradient(135deg, #3498db, #2980b9);
  --webchat-toolbar-text-color: #FFF;
}

.webchat-container {
  z-index: 100;
  bottom: 10px;
  right: 10px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.webchat-container .nlux-chat-window {
  border-radius: 12px;
}

/* 聊天助手顶部栏样式 */
.webchat-container .nlux-chat-header {
  background: linear-gradient(135deg, #3498db, #2980b9);
  padding: 15px 20px;
}

.webchat-bubble-tip {
  z-index: 99;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3498db, #2980b9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 聊天框内部元素样式 */
.webchat-container .nlux-message-bubble {
  border-radius: 12px;
}

.webchat-container .nlux-chat-input {
  border-radius: 8px;
  margin: 10px;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

.webchat-container .nlux-chat-input:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

/* 统一所有板块标题样式 */
.section-title, 
section h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-size: 2.5em;
    font-weight: 700;
    position: relative;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .section-title,
    section h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }
}

/* 服务详情页样式 */
.service-hero {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.service-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(52, 152, 219, 0.3),
        0 0 70px rgba(52, 152, 219, 0.2),
        0 0 80px rgba(52, 152, 219, 0.1);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.3),
            0 0 20px rgba(255, 255, 255, 0.3),
            0 0 30px rgba(255, 255, 255, 0.3),
            0 0 40px rgba(52, 152, 219, 0.3),
            0 0 70px rgba(52, 152, 219, 0.2),
            0 0 80px rgba(52, 152, 219, 0.1);
    }
    to {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.4),
            0 0 30px rgba(255, 255, 255, 0.4),
            0 0 40px rgba(255, 255, 255, 0.4),
            0 0 50px rgba(52, 152, 219, 0.4),
            0 0 80px rgba(52, 152, 219, 0.3),
            0 0 90px rgba(52, 152, 219, 0.2);
    }
}

/* 优化标题字体粗细和间距 */
.service-hero h1 {
    font-weight: 700;
    letter-spacing: 2px;
}

.service-hero p {
    font-size: 1.5em;
    opacity: 0.9;
}

/* 核心功能部分样式调整 */
.service-features {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(26, 41, 128, 0.02) 0%, rgba(38, 208, 206, 0.02) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 0 20px;
}

/* 服务卡片样式 */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 41, 128, 0.1);
}

/* 图标样式 */
.feature-card i {
    font-size: 32px;
    color: #3498db;  /* 使用蓝色图标 */
    margin-bottom: 20px;
}

/* 标题样式 */
.feature-card h3 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

/* 描述文本样式 */
.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0 10px;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 价格方案区域样式 */
.service-pricing {
    background: linear-gradient(135deg, rgba(26, 41, 128, 0.02) 0%, rgba(38, 208, 206, 0.02) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* 背景效果 */
.service-pricing::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(52, 152, 219, 0.02) 0%, transparent 50%);
    animation: rotate 60s linear infinite;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

/* 价格卡片基础样式 */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* 卡片顶部渐变条 */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a2980, #26d0ce);
}

/* 卡片悬浮效果 */
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 推荐版特殊样式 */
.pricing-card.pro {
    background: white;
    transform: translateY(-20px);
    border: 2px solid rgba(26, 41, 128, 0.1);
    z-index: 2;
}

.pricing-card.pro:hover {
    transform: translateY(-25px);
}

/* 价格标题样式 */
.price-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.price-title i {
    font-size: 24px;
    color: #1a2980;
}

.price-title h3 {
    font-size: 20px;
    color: #2c3e50;
    font-weight: 600;
}

/* 价格金额样式 */
.price-amount {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.currency {
    font-size: 24px;
    color: #1a2980;
    vertical-align: top;
    position: relative;
    top: -15px;
}

.amount {
    font-size: 60px;
    font-weight: 700;
    color: #1a2980;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: #666;
    margin-left: 4px;
}

/* 定制价格样式 */
.custom-text {
    font-size: 36px;
    font-weight: 700;
    color: #1a2980;
}

/* 功能列表样式 */
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 12px;
    background: rgba(26, 41, 128, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(26, 41, 128, 0.05);
    transform: translateX(5px);
}

.feature-item i {
    color: #1a2980;
    font-size: 16px;
}

.feature-item span {
    color: #2c3e50;
    font-size: 15px;
}

/* 注意事项样式 */
.price-note {
    margin: 25px 0;
    padding: 12px 16px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.note-item i {
    color: #ffc107;
}

/* 按钮样式 */
.price-cta {
    display: block;
    text-align: center;
    padding: 16px;
    margin-top: 30px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 41, 128, 0.2);
}

/* 推荐标签样式 */
.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(26, 41, 128, 0.2);
    z-index: 1;
}

/* 使用指南样式 */
.service-guide {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 41, 128, 0.02) 0%, rgba(38, 208, 206, 0.02) 100%);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 30px auto 0;
    padding: 0 20px;
}

.guide-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 41, 128, 0.1);
}

.guide-icon {
    font-size: 36px;
    color: #3498db;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.guide-card:hover .guide-icon {
    transform: scale(1.1);
}

.guide-card h3 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.guide-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 下拉菜单样式 */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 8px;
    z-index: 1000;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(26, 41, 128, 0.05);
    transform: translateX(5px);
}

.dropdown-content i {
    font-size: 24px;
    color: #3498db;
    margin-right: 16px;
}

.dropdown-text {
    flex: 1;
}

.dropdown-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.dropdown-text p {
    margin: 4px 0 0;
    font-size: 12px;
    color: #666;
}

/* 添加箭头指示器 */
.dropdown > a::after {
    content: '▾';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* 确保下拉菜单在移动端正确显示 */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        min-width: auto;
    }

    .dropdown-content a {
        padding: 8px 16px;
    }

    .dropdown-text p {
        display: none;
    }
}

/* 为不同类型的卡片设置特定的图标颜色 */
.individual-card:nth-child(1) .card-header i { /* 教育 */
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.individual-card:nth-child(2) .card-header i { /* 影像 */
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.individual-card:nth-child(3) .card-header i { /* 健康 */
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

.individual-card:nth-child(4) .card-header i { /* 宠物 */
    color: #9b59b6;
    background: rgba(155, 89, 182, 0.1);
}

.individual-card:nth-child(5) .card-header i { /* 早教 */
    color: #f1c40f;
    background: rgba(241, 196, 15, 0.1);
}

.individual-card:nth-child(6) .card-header i { /* 旅游 */
    color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
}

/* AI应用革命板块样式优化 */
.ai-revolution {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 41, 128, 0.03) 0%, rgba(38, 208, 206, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

/* 添加背景装饰 */
.ai-revolution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.ai-revolution .container {
    position: relative;
    z-index: 1;
}

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

.revolution-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* 添加卡片悬停效果 */
.revolution-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* 添加装饰线条 */
.revolution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.revolution-card:hover::before {
    opacity: 1;
}

.revolution-card .card-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
}

.revolution-card .card-header h3 {
    margin: 0;
    font-size: 22px;
    color: #2c3e50;
    font-weight: 600;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 特性列表样式优化 */
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(52, 152, 219, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: rgba(52, 152, 219, 0.06);
    transform: translateX(5px);
}

.feature-list li i {
    color: #3498db;
    margin-top: 5px;
    font-size: 14px;
}

/* 高亮框样式优化 */
.highlight-box {
    background: rgba(52, 152, 219, 0.03);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.highlight-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    animation: shine 3s infinite;
}

/* 添加动画效果 */
@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.highlight-box h4 {
    margin: 0 0 20px;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* 勾选列表样式优化 */
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(46, 204, 113, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.check-list li:hover {
    background: rgba(46, 204, 113, 0.06);
    transform: translateX(5px);
}

.check-list li i {
    color: #2ecc71;
    font-size: 14px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .revolution-grid {
        grid-template-columns: 1fr;
    }
    
    .revolution-card {
        padding: 25px;
    }
    
    .revolution-card .card-header h3 {
        font-size: 20px;
    }
}

/* 调整服务部分的间距 */
.services-section {
    margin-top: 80px;  /* 增加与上方段落的间距 */
}

.services-section h2 {
    margin-bottom: 40px;  /* 保持与下方内容的间距 */
}

/* 如果需要在移动端调整 */
@media (max-width: 768px) {
    .services-section {
        margin-top: 60px;  /* 移动端稍微减小间距 */
    }
}

/* 添加模态框样式 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.close-button {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.close-button:hover {
    color: #333;
}

.payment-qrcodes {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    gap: 30px;
}

.qrcode-wrapper {
    text-align: center;
}

.qrcode-wrapper img {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.qrcode-wrapper p {
    color: #666;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .payment-qrcodes {
        flex-direction: column;
        align-items: center;
    }
    
    .qrcode-wrapper img {
        width: 150px;
        height: 150px;
    }
}

/* 修改核心优势板块样式以匹配整体配色 */
.core-advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 41, 128, 0.02) 0%, rgba(38, 208, 206, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.core-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(26, 41, 128, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(38, 208, 206, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.core-advantages .container {
    position: relative;
    z-index: 1;
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(26, 41, 128, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 41, 128, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 28px;
    color: white;
}

.advantage-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* 技术实力板块样式 */
.tech-capabilities {
    margin-top: 60px;
}

.tech-capabilities h3 {
    font-size: 24px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

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

.capability-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(26, 41, 128, 0.05);
    transition: all 0.3s ease;
}

.capability-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(26, 41, 128, 0.08);
}

.capability-item h4 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.capability-item h4 i {
    color: #1a2980;
}

.capability-item p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* 愿景展望样式 */
.vision {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(26, 41, 128, 0.05);
}

.vision h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
}

.vision p {
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
}

.vision .cta-wrapper {
    margin-top: 30px;
}

.vision .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.vision .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 41, 128, 0.2);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card {
        padding: 25px;
    }
    
    .vision {
        padding: 30px 20px;
    }
}
