:root {
            --primary:#1e6fff;
            --blue-dark:#0d47a1;
            --bg:#f8f9fb;
            --text:#333;
            --gray:#666;
        }

        * { margin:0; padding:0; box-sizing:border-box; }
        html,body { overflow-x:hidden; }
        body {
            font-family:"Microsoft YaHei","PingFang SC";
            color:var(--text);
        }

        .container {
            max-width:1200px;
            margin:0 auto;
            padding:0 20px;
        }

        /* Header（与最终版一致） */
        header {
            position:fixed; top:0; width:100%;
            background:rgba(255,255,255,.98);
            box-shadow:0 2px 10px rgba(0,0,0,.1);
            z-index:1000;
        }
        nav {
            display:flex; justify-content:space-between; align-items:center;
            height:76px;
        }
        .logo h1 { color:var(--primary); font-size:26px; }
        .logo span { font-size:12px; color:var(--gray); margin-left:15px; }

        .nav-menu { display:flex; list-style:none; }
        .nav-menu li { margin-left:35px; }
        .nav-menu a {
            text-decoration:none; color:var(--text);
            font-size:15px; transition:.3s;
        }
        .nav-menu a:hover,
        .nav-menu a.active { color:var(--primary); }

        .menu-toggle { display:none; font-size:24px; cursor:pointer; }

        /* Banner */
        .page-banner {
            padding-top: 76px;
            padding-bottom: 0px;
            position: relative;
            overflow: hidden;
        }
        
        .banner-image {
            height: 320px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .banner-content {
            color: #fff;
            text-align: center;
            z-index: 2;
        }
        
        .banner-content h1 {
            font-size: 44px;
            margin-bottom: 20px;
            text-shadow: 0 4px 25px rgba(0,0,0,.5);
            line-height: 1.3;
        }
        
        .banner-content h2 {
            font-size: 22px;
            opacity: .95;
        }

        /* Section */
        section { padding:90px 0; }
        .section-title { text-align:center; margin-bottom:70px; }
        .section-title h2 { font-size:40px; margin-bottom:15px; }
        .section-title p { color:var(--gray); font-size:16px; }
        .section-title::after {
            content:''; display:block; width:80px; height:4px;
            background:var(--primary); margin:20px auto 0;
        }

        /* Service List */
        .services-overview {
            padding: 90px 0;
            background: #fff;
        }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            text-align: center;
            padding: 50px 30px;
            border-radius: 12px;
            background: var(--bg);
            transition: .3s;
            text-decoration: none;
            color: inherit;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 40px rgba(0,0,0,.08);
        }
        
        .service-icon {
            /* width: 80px;
            height: 80px; */
            margin: 0 auto 25px;
        }
        
        .service-icon img {
            width: 100px;
            height: 100px;
        }
        
        /* FAQ */
        .services-faq {
            padding: 90px 0;
            background: var(--bg);
        }
		
        .faq-list{
			line-height: 30px;
		}
        .faq-list details {
            margin-bottom: 15px;
            padding: 15px 20px;
            background: #fff;
            border-radius: 8px;
        }
        
        .faq-list summary {
            cursor: pointer;
            font-weight: bold;
        }
        
        /* CTA */
        .services-cta {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(135deg, var(--primary), #00bfff);
            color: #fff;
        }
		/* ================= CTA 按钮主体 ================= */
		.btn-cta {
			margin-top: 20px;
		    display: inline-flex;
		    align-items: center;
		    gap: 12px;
		    padding: 10px 36px;
		    background: linear-gradient(135deg, var(--primary), #00bfff);
		    color: #fff;
		    font-size: 16px;
		    font-weight: bold;
		    border-radius: 50px;
		    text-decoration: none;
		    box-shadow: 0 8px 30px rgba(30,111,255,.35);
		    transition: all .3s ease;
		    position: relative;
		    overflow: hidden;
		}
		
		/* ================= 光晕扫过效果 ================= */
		.btn-cta::before {
		    content: '';
		    position: absolute;
		    top: 0;
		    left: -100%;
		    width: 100%;
		    height: 100%;
		    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
		    transition: .5s;
		}
		
		.btn-cta:hover::before {
		    left: 100%;
		}
		
		.btn-cta:hover {
		    transform: translateY(-4px);
		    box-shadow: 0 12px 40px rgba(30,111,255,.45);
		}
		
		/* ================= 文字 ================= */
		.btn-cta .btn-text {
		    position: relative;
		    z-index: 2;
		}
		
		/* ================= 箭头图标 ================= */
		.btn-cta .btn-icon {
		    display: flex;
		    align-items: center;
		    justify-content: center;
		    width: 24px;
		    height: 24px;
		    transition: .3s;
		}
		
		.btn-cta .btn-icon svg {
		    width: 100%;
		    height: 100%;
		    stroke: currentColor;
		}
		
		.btn-cta:hover .btn-icon {
		    transform: translateX(4px);
		}
		/* ========================================
		   首页 - 为什么选择我们 样式
		   ======================================== */
		.why-us-home-section {
		    padding: 80px 0;
		    background-color: #f8f9fb;
		}
		
		.container {
		    max-width: 1200px;
		    margin: 0 auto;
		    padding: 0 15px;
		}
		
		.section-header {
		    text-align: center;
		    margin-bottom: 60px;
		}
		
		.section-header h2 {
		    font-size: 2.2rem;
		    color: #212529;
		    margin-bottom: 10px;
		}
		
		.section-header p {
		    font-size: 1.1rem;
		    color: #6c757d;
		}
		
		/* 三列网格 */
		.advantage-grid {
		    display: grid;
		    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		    gap: 30px;
		}
		
		/* 卡片样式 */
		.advantage-card {
		    background: #ffffff;
		    border: 1px solid #e9ecef;
		    border-radius: 12px;
		    padding: 40px 30px;
		    text-align: center;
		    transition: all 0.3s ease;
		}
		
		.advantage-card:hover {
		    transform: translateY(-10px);
		    box-shadow: 0 15px 30px rgba(0,0,0,.08);
		    border-color: #007bff;
		}
		
		/* 图标 */
		.adv-icon {
		    font-size: 3rem;
		    margin-bottom: 20px;
		}
		
		/* 标题 */
		.advantage-card h3 {
		    font-size: 1.4rem;
		    color: #212529;
		    margin-bottom: 15px;
		    line-height: 1.4;
		}
		
		/* 描述 */
		.advantage-card p {
		    font-size: 1rem;
		    color: #495057;
		    line-height: 1.8;
		}
		
		/* 移动端适配 */
		@media (max-width: 768px) {
		    .advantage-grid {
		        grid-template-columns: 1fr;
		    }
		}
		
		@keyframes breatheAnim {
		    0%, 100% { box-shadow: 0 0 0 0 rgba(30,111,255,.4); }
		    50% { box-shadow: 0 0 40px 10px rgba(30,111,255,.2); }
		}
		.cloud-process-section {
		    padding: 80px 0;
		    background-color: #ffffff;
		}
		
		.container {
		    max-width: 1200px;
		    margin: 0 auto;
		    padding: 0 15px;
		}
		
		.section-header {
		    text-align: center;
		    margin-bottom: 60px;
		}
		
		.section-header h2 {
		    font-size: 2.2rem;
		    color: #212529;
		    margin-bottom: 10px;
		}
		
		.section-header p {
		    font-size: 1.1rem;
		    color: #6c757d;
		}
		
		/* 流程容器 */
		.process-flow {
		    display: flex;
		    justify-content: space-between;
		    align-items: stretch;
		    position: relative;
		}
		
		
		/* 单个步骤 */
		.process-step {
		    flex: 1;
		    text-align: center;
		    padding: 0 15px;
		    position: relative;
		    z-index: 1;
		    display: flex;
		    flex-direction: column;
		    align-items: center;
		}
		
		/* 步骤编号 */
		.step-number {
		    width: 80px;
		    height: 80px;
		    background: #fff;
		    border: 2px solid #007bff;
		    border-radius: 50%;
		    display: flex;
		    align-items: center;
		    justify-content: center;
		    font-size: 1.5rem;
		    font-weight: bold;
		    color: #007bff;
		    margin-bottom: 20px;
		    transition: all 0.3s ease;
		}
		
		.process-step:hover .step-number {
		    background: #007bff;
		    color: #fff;
		    transform: scale(1.1);
		}
		
		/* 内容 */
		.step-content h3 {
		    font-size: 1.3rem;
		    color: #212529;
		    margin-bottom: 10px;
		}
		
		.step-content p {
		    font-size: 0.95rem;
		    color: #6c757d;
		    line-height: 1.6;
		}
		
		/* 移动端适配 */
		@media (max-width: 992px) {
		    .process-flow {
		        flex-direction: column;
		        align-items: center;
		        gap: 40px;
		    }
		    .process-flow::before {
		        display: none;
		    }
		    .process-step {
		        max-width: 400px;
		    }
		}
		/* ================= 错落延迟 ================= */
		.service-grid .card-pop:nth-child(1) { transition-delay: .1s; }
		.service-grid .card-pop:nth-child(2) { transition-delay: .2s; }
		.service-grid .card-pop:nth-child(3) { transition-delay: .3s; }
		.service-grid .card-pop:nth-child(4) { transition-delay: .4s; }
		.service-grid .card-pop:nth-child(5) { transition-delay: .5s; }
		.service-grid .card-pop:nth-child(6) { transition-delay: .6s; }
		.service-grid .card-pop:nth-child(7) { transition-delay: .7s; }
		.service-grid .card-pop:nth-child(8) { transition-delay: .8s; }
		
		.faq-list .slide-left:nth-child(1) { transition-delay: .1s; }
		.faq-list .slide-left:nth-child(2) { transition-delay: .2s; }
		.faq-list .slide-left:nth-child(3) { transition-delay: .3s; }
        /* Footer */
        footer { background: #1a1a2e; color: white; padding: 70px 0 20px; }
        .footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
        .footer-column h4 { font-size: 18px; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
        .footer-column h4::after { content: ''; display: block; width: 40px; height: 3px; background: var(--primary-blue); position: absolute; bottom: 0; left: 0; }
        .footer-column p { color: #aaa; line-height: 1.9; margin-bottom: 20px; }
        .footer-column h4 {
            color: #fff;
            margin-bottom: 25px;
            font-size: 18px;
        }
        .footer-column img {
            width: 20px;
            height: 20px;
            object-fit: contain;
            filter: brightness(0) invert(1); /* ✅ 白色图标 */
        }
        .footer-column ul { list-style: none; }
        .footer-column ul li { margin-bottom: 12px; }
        .footer-column ul li a { color: #aaa; text-decoration: none; transition: color 0.3s; font-size: 14px; }
        .footer-column ul li a:hover { color: var(--primary-blue); }
        .social-links { display: flex; gap: 15px; margin-top: 20px; }
        .social-links a { width: 42px; height: 42px; background: #2a2a4a; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: all 0.3s; font-size: 14px; }
        .social-links a:hover { background: var(--primary-blue); transform: translateY(-3px); }
        .footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid #2a2a4a; color: #777; font-size: 14px; line-height: 25px;}
		.footer-bottom p a{
			color: #777;
			text-decoration: none; 
		}
        /* Responsive */
        @media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } .advantages-grid { grid-template-columns: repeat(2, 1fr); } .cases-grid { grid-template-columns: repeat(2, 1fr); } .footer-content { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) { .menu-toggle { display: block; } .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .nav-menu.active { display: flex; } .nav-menu li { margin: 10px 0; } .nav-phone { display: none; } .banner-content h1 { font-size: 36px; } .about-content, .contact-content { grid-template-columns: 1fr; } .services-grid, .cases-grid, .news-grid { grid-template-columns: 1fr; } .advantages-grid { grid-template-columns: repeat(2, 1fr); } .footer-content { grid-template-columns: 1fr; } }
        @media (max-width: 480px) { .banner { height: 450px; } .banner-content h1 { font-size: 28px; } .section-title h2 { font-size: 28px; } .advantages-grid { grid-template-columns: 1fr; } }