/* 服务中心页面特有样式 */
        .service-section {
            padding: 40px 0 60px;
        }
        
        .section-header {
            margin-bottom: 50px;
            text-align: center;
        }
        
        .section-header h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #e74c3c;
        }
        
        .section-header p {
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 服务内容 */
        .services-content {
            background: white;
            border-radius: 8px;
            padding: 40px 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 50px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            padding: 30px;
            border-radius: 8px;
            background: #f8f9fa;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            background: white;
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #e74c3c;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
        }
        
        .service-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .service-desc {
            color: #7f8c8d;
            line-height: 1.6;
        }
        
        /* 服务流程 */
        .service-process {
            background: white;
            border-radius: 8px;
            padding: 40px 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 50px;
        }
        
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            position: relative;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 35px;
            left: 5%;
            right: 5%;
            height: 2px;
            background: #e0e0e0;
            z-index: 1;
        }
        
        .process-step {
            flex: 1;
            min-width: 180px;
            text-align: center;
            padding: 0 15px;
            position: relative;
            z-index: 2;
            margin-bottom: 20px;
        }
        
        .step-number {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #f8f9fa;
            color: #2c3e50;
            border: 2px solid #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 15px;
            transition: all 0.3s ease;
        }
        
        .process-step:hover .step-number {
            background: #e74c3c;
            color: white;
            border-color: #e74c3c;
        }
        
        .step-title {
            font-size: 1.1rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .step-desc {
            color: #7f8c8d;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        /* 常见问题 */
        .faq-section {
            background: white;
            border-radius: 8px;
            padding: 40px 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 50px;
        }
        
        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #f1f1f1;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            width: 100%;
            padding: 15px 20px;
            background: #f8f9fa;
            color: #2c3e50;
            text-align: left;
            border: none;
            outline: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            transition: background 0.3s ease;
        }
        
        .faq-question:hover {
            background: #f1f1f1;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }
        
        .faq-answer p {
            color: #7f8c8d;
            line-height: 1.6;
            padding: 15px 0;
            margin: 0;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 20px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* 服务支持 */
        .service-support {
            background: white;
            border-radius: 8px;
            padding: 40px 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .support-title {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .support-desc {
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        .support-hotline {
            font-size: 1.8rem;
            color: #e74c3c;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .support-time {
            color: #7f8c8d;
            margin-bottom: 30px;
        }
        
        .support-btn {
            display: inline-block;
            background: #e74c3c;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .support-btn:hover {
            background: #c0392b;
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .services-content,
            .service-process,
            .faq-section,
            .service-support {
                padding: 30px 20px;
            }
            
            .process-steps:before {
                display: none;
            }
            
            .process-step {
                margin-bottom: 30px;
            }
            
            .support-hotline {
                font-size: 1.5rem;
            }
        }