        /* 英雄区域样式 */
        .hero {
            margin-top: 100px;
            position: relative;
            height: 500px;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/template/jia/images/1.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding: 0 80px;
        }
        
        .hero-content {
            max-width: 700px;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease;
        }
        
        .hero h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            background: #4a6cf7;
            color: white;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(74, 108, 247, 0.4);
        }
        
        .btn:hover {
            background: #3b5be3;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(74, 108, 247, 0.6);
        }
        
        /* 内容区域样式 */
        .content-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #2c3e50;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: #4a6cf7;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .materials-content, .process-content, .notes-content {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .materials-content:hover, .process-content:hover, .notes-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .content-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .content-icon {
            width: 60px;
            height: 60px;
            background: #f0f5ff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
        }
        
        .content-icon i {
            font-size: 28px;
            color: #4a6cf7;
        }
        
        .content-header h3 {
            font-size: 28px;
            color: #2c3e50;
        }
        
        /* 材料列表样式 */
        .materials-list {
            list-style: none;
        }
        
        .materials-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            line-height: 1.8;
        }
        
        .materials-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: #4a6cf7;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        
        /* 流程样式 */
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 30px;
            position: relative;
        }
        
        .process-step {
            width: calc(20% - 20px);
            text-align: center;
            position: relative;
            margin-bottom: 30px;
            animation: fadeIn 1s ease;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: #4a6cf7;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            margin: 0 auto 15px;
            transition: all 0.3s;
        }
        
        .process-step:hover .step-number {
            background: #3b5be3;
            transform: scale(1.1);
        }
        
        .step-content {
            background: #f9fafc;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .step-content h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        /* 注意事项样式 */
        .notes-list {
            list-style: none;
        }
        
        .notes-list li {
            margin-bottom: 20px;
            padding: 20px;
            background: #f9fafc;
            border-radius: 12px;
            border-left: 4px solid #4a6cf7;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .notes-list li:hover {
            transform: translateX(5px);
        }
        
        .notes-list h4 {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .notes-list h4 i {
            color: #4a6cf7;
            margin-right: 10px;
        }
        
        /* 服务优势部分 */
        .advantages {
            padding: 80px 0;
            background: linear-gradient(135deg, #f0f5ff 0%, #e6eeff 100%);
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .advantage-icon {
            width: 80px;
            height: 80px;
            background: #f0f5ff;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: transform 0.3s;
        }
        
        .advantage-card:hover .advantage-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .advantage-icon i {
            font-size: 36px;
            color: #4a6cf7;
        }
        
        .advantage-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        /* CTA部分 */
        .cta-section {
            padding: 100px 0;
            text-align: center;
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('/template/jia/images/24.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            border-radius: 16px;
            margin: 40px 0;
        }
        
        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        
        /* 动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .process-step {
                width: calc(50% - 20px);
                margin-bottom: 40px;
            }
            
            .hero {
                padding: 0 40px;
                text-align: center;
            }
            
            .hero h2 {
                font-size: 32px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .hero {
                height: 400px;
                padding: 0 20px;
            }
            
            .hero h2 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .content-header h3 {
                font-size: 24px;
            }
            
            .process-step {
                width: 100%;
            }
            
            .materials-content, .process-content, .notes-content {
                padding: 25px;
            }
        }