    <style>
        /* 基础重置与字体设置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            padding: 0;
            margin: 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* 头部样式 */
        .header {
            background: linear-gradient(135deg, var(--secondary-light) 0%, #2d87c8 100%);
            color: white;
            padding: 30px 20px;
            text-align: center;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .main-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 20px;
        }
        
        .meta-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        
        .meta-tag {
            background-color: rgba(255, 255, 255, 0.2);
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 500;
        }
        
        /* 内容区域样式 */
        .content-section {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }
        
        .section-title {
            color: var(--secondary-light);
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
        }
        
        .content-text {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        
        .highlighted-schools {
            color: var(--secondary-light);
            font-weight: 600;
        }
        

        /* 表格样式 */
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            overflow-x: auto;
            display: block;
        }
        
        .pricing-table th {
            background-color: var(--secondary-light);
            color: white;
            padding: 12px 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .pricing-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .pricing-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        .pricing-table tr:hover {
            background-color: #edf4ff;
        }
        
        /* 流程步骤 */
        .process-steps {
            margin-top: 25px;
        }
        
        .step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px dashed #dee2e6;
        }
        
        .step:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .step-number {
            background-color: var(--secondary-light);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .step-text {
            font-size: 1.05rem;
            padding-top: 5px;
        }
        
        /* 优惠列表 */
        .highlight {
            background-color: var(--light-blue);
            border-radius: 8px;
            padding: 0.5rem;
            margin: 25px 0;
            border-left: 4px solid var(--secondary-light);
        }
        
        .highlight ul {
            padding-left: 20px;
			flex-direction:column;
        }
        
        .highlight li {
            margin-bottom: 10px;
        }
        
        /* 联系按钮 */
        .contact-section {
            text-align: center;
            margin: 40px 0;
        }
        
        .btn-primary {
            display: inline-block;
            background-color: var(--secondary-light);
            color: white;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(26, 95, 180, 0.3);
        }
        
        .btn-primary:hover {
            background-color: #154a8a;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(26, 95, 180, 0.4);
        }
        
        .phone-number {
            font-size: 1.3rem;
            color: var(--secondary-light);
            font-weight: 700;
            margin: 15px 0;
        }
        
        /* 服务覆盖区域 */
        .service-coverage {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
        }
        
        .coverage-title {
            font-weight: 600;
            color: var(--secondary-light);
            margin-bottom: 10px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .main-title {
                font-size: 1.5rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-table {
                font-size: 0.9rem;
            }
            
            .pricing-table th, 
            .pricing-table td {
                padding: 8px 10px;
            }
            
            .step {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .step-number {
                margin-bottom: 10px;
            }
            
            .header {
                padding: 20px 15px;
            }
			.highlight ul {
            padding-left: 7px;
        }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 15px;
            }
            
            .content-section {
                padding: 20px;
            }
            
            .btn-primary {
                padding: 12px 25px;
                font-size: 1rem;
                width: 100%;
            }
        }
    </style>