        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #333;
            line-height: 1.6;
            padding: 0;
            min-height: 100vh;
        }
        
        .servicecontainer {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }
        

        
        .tagline {
            font-size: 1.2rem;
            margin: 20px auto;
            font-weight: 300;
            opacity: 0.9;
            text-align: center;
        }
        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        /* 服务流程部分 */
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin: 40px 0 30px;
            color: #0b57d0;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(145deg, #00ADF2, #2F2F93);
            margin: 10px auto;
            border-radius: 2px;
        }
        
        .process-container {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 50px;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 50px;
            right: 50px;
            height: 3px;
            background: linear-gradient(145deg, #00ADF2, #2F2F93);
            z-index: 1;
        }
        
        .step {
            width: 16.66%;
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 10px;
        }
        
        .step-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #00ADF2, #2F2F93);
            border-radius: 50%;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(38, 208, 206, 0.4);
        }
        
        .step-title {
            font-weight: 600;
            font-size: 1.1rem;
            color: #0b57d0;
            margin-bottom: 8px;
        }
        
        .step-desc {
            font-size: 0.9rem;
            color: #555;
        }
        
        /* 服务优势部分 */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .benefit-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            border-top: 4px solid #0b57d0;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(38, 208, 206, 0.2);
        }
        
        .benefit-number {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2.5rem;
            font-weight: 800;
            color: rgba(26, 41, 128, 0.08);
        }
        
        .benefit-title {
            font-size: 1.4rem;
            color: #0b57d0;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .benefit-title i {
            color: #0b57d0;
        }
        
        .benefit-desc {
            color: #555;
            font-size: 1rem;
        }
        
        /* 底部标语 */
        .slogan {
            text-align: center;
            background: linear-gradient(135deg, #00ADF2, #2F2F93);
            color: white;
            padding: 50px 30px;
            border-radius: 15px;
            margin: 60px 0 40px;
            box-shadow: 0 10px 30px rgba(38, 208, 206, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .slogan::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .slogan::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .slogan h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .slogan p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 600;
            position: relative;
            z-index: 2;
            line-height: 1.8;
        }
        
        .highlight {
            color: #ffde59;
            position: relative;
            display: inline-block;
        }
        
        .highlight::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(255, 222, 89, 0.3);
            z-index: -1;
        }
        
        /* 响应式设计 */
        @media (max-width: 900px) {
            .process-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .step {
                width: 100%;
                max-width: 400px;
                margin-bottom: 30px;
                display: flex;
                text-align: left;
                align-items: center;
                gap: 20px;
            }
            
            .step-icon {
                margin: 0;
                flex-shrink: 0;
            }
            
            .step-content {
                flex: 1;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .slogan p {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 600px) {
            header {
                padding: 30px 15px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .slogan h2 {
                font-size: 1.8rem;
            }
            
            .slogan p {
                font-size: 1.1rem;
            }
            
            .benefit-title {
                font-size: 1.2rem;
            }
        }