﻿ 

        /* 容器 */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 头部 */
        .hero {
            background: linear-gradient(135deg, #0f2b3d 0%, #1b4a6e 100%);
            color: white;
            padding: 48px 0 56px;
            border-radius: 0 0 32px 32px;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
        }
        .hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
  color: white;
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
  color: white;
        }
        .badge-date {
            background: rgba(255,255,255,0.2);
            display: inline-block;
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.85rem;
            margin-top: 16px;
        }

        /* 模块通用 */
        section {
            margin-bottom: 56px;
        }
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            border-left: 6px solid #e67e22;
            padding-left: 18px;
            margin-bottom: 28px;
            color: #0f2b3d;
        }
        .card-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            justify-content: center;
        }
        .card {
            background: white;
            border-radius: 28px;
            padding: 24px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03), 0 2px 6px rgba(0,0,0,0.05);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #eef2f6;
            flex: 1 1 280px;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
        }
        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: #1e4a6e;
            border-bottom: 2px solid #ffe0b5;
            display: inline-block;
        }
        .card p, .card ul {
            margin-top: 12px;
            color: #334155;
        }
        .card ul {
            padding-left: 20px;
        }
        .card li {
            margin: 8px 0;
        }

        /* 表格样式 */
        .data-table-wrapper {
            overflow-x: auto;
            background: white;
            border-radius: 24px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            border: 1px solid #e9edf2;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        th {
            background: #f1f5f9;
            padding: 14px 12px;
            text-align: left;
            font-weight: 600;
            color: #0c4a6e;
        }
        td {
            padding: 12px;
            border-bottom: 1px solid #eef2f6;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .highlight-badge {
            background: #fef3c7;
            color: #b45309;
            border-radius: 20px;
            padding: 2px 8px;
            font-size: 0.75rem;
            font-weight: 600;
            display: inline-block;
        }

        /* 城市flex */
        .city-policy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
        }
        .city-card {
            background: white;
            border-radius: 20px;
            padding: 18px;
            border-left: 5px solid #f97316;
            transition: all 0.2s;
        }
        .city-card h4 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: baseline;
        }
        .score {
            font-weight: 700;
            color: #dc2626;
        }

        /* 教师展示 */
        .teacher-show {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin: 20px 0;
        }
        .teacher-item {
            background: white;
            border-radius: 24px;
            padding: 20px;
            flex: 1 1 240px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .teacher-avatar {
            width: 80px;
            height: 80px;
            background: #e2e8f0;
            border-radius: 50%;
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            background: #fef9e6;
            color: #e67e22;
        }
        .teacher-name {
            font-weight: 700;
            font-size: 1.2rem;
        }
        .rating {
            color: #f59e0b;
            margin: 6px 0;
        }

        /* FAQ */
        details {
            background: white;
            border-radius: 20px;
            margin-bottom: 12px;
            padding: 16px 20px;
            border: 1px solid #e2e8f0;
            transition: 0.1s;
        }
        summary {
            font-weight: 700;
            cursor: pointer;
            font-size: 1.05rem;
            color: #1e293b;
        }
        summary:hover {
            color: #e67e22;
        }
        .faq-answer {
            margin-top: 14px;
            padding-top: 10px;
            border-top: 1px dashed #e2e8f0;
            color: #475569;
        }

        /* 按钮 */
        .btn {
            display: inline-block;
            background: #e67e22;
            color: white;
            padding: 10px 20px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.2s;
            margin-top: 12px;
        }
        .btn-outline {
            background: transparent;
            border: 1px solid #e67e22;
            color: #e67e22;
        }
        .btn:hover {
            background: #b45309;
            transform: translateY(-2px);
        }
 

        @media (max-width: 768px) {
            .hero h1 { font-size: 1.8rem; }
            .section-title { font-size: 1.5rem; }
        }