

        
        .process-module-container {
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }
        
        .process-container {
            max-width: 1200px;
            width: 100%;
            background: white;
            border-radius: 15px;
            padding: clamp(20px, 4vw, 40px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: clamp(30px, 5vw, 50px);
            color: #1a3a6c;
        }
        
        .section-title h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .section-title p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .process-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: clamp(30px, 4vw, 40px);
        }
        
        .group-title {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: #1a3a6c;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
            padding: 10px 20px;
            background: rgba(43, 115, 218, 0.1);
            border-radius: 30px;
            width: fit-content;
        }
        
        .group-steps {
            display: flex;
            justify-content: space-between;
            width: 100%;
            position: relative;
        }
        
        /* 添加连接线 */
        .group-steps::before {
            content: '';
            position: absolute;
            top: 35px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: #2B73DA;
            z-index: 1;
        }
        
        .process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 20%;
            position: relative;
            z-index: 2;
            padding: 0 10px;
        }
        
        .step-icon {
            width: clamp(50px, 8vw, 70px);
            height: clamp(50px, 8vw, 70px);
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(43, 115, 218, 0.2);
            border: 3px solid #2B73DA;
            color: #2B73DA;
            font-size: clamp(18px, 3vw, 24px);
        }
        
        .step-icon i {
            display: block;
        }
        
        .step-content {
            text-align: center;
            width: 100%;
        }
        
        .step-content h3 {
            font-size: clamp(0.9rem, 2vw, 1.2rem);
            margin-bottom: 5px;
            color: #1a3a6c;
            line-height: 1.4;
        }
        
        .step-content p {
            font-size: clamp(0.75rem, 1.5vw, 0.9rem);
            color: #666;
            line-height: 1.4;
        }
        
        .process-description {
            margin-top: clamp(30px, 4vw, 50px);
            padding: clamp(20px, 3vw, 30px);
            background: rgba(43, 115, 218, 0.05);
            border-radius: 10px;
            border-left: 5px solid #2B73DA;
        }
        
        .process-description h3 {
            color: #1a3a6c;
            margin-bottom: 15px;
            font-size: clamp(1.2rem, 3vw, 1.6rem);
        }
        
        .process-description p {
            color: #555;
            line-height: 1.8;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }
        
        /* 移动端优化 */
        @media (max-width: 768px) {
            .process-module-container {
                padding: 15px;
            }
            
            .group-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .group-steps::before {
                display: none;
            }
            
            .process-step {
                width: 100%;
                margin-bottom: 25px;
                flex-direction: row;
                text-align: left;
                padding: 15px;
                background: rgba(43, 115, 218, 0.03);
                border-radius: 10px;
                max-width: 400px;
            }
            
            .step-icon {
                margin-bottom: 0;
                margin-right: 15px;
                flex-shrink: 0;
            }
            
            .step-content {
                text-align: left;
            }
        }
        
        @media (max-width: 480px) {
            .process-step {
                padding: 12px;
            }
            
            .step-icon {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
        }
    