        /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            color: #f00;;
            text-decoration: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        /* 头部样式 */
        .header {
            background-color: #1a73e8;
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
        }
        
        .nav-links a {
            color: white;
            margin-left: 20px;
            font-size: 16px;
        }
        
        /* 横幅区域 */
        .banner {
            background: linear-gradient(135deg, #1a73e8, #00c6ff);
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        .banner h1 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .banner p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        /* 主要内容区 */
        .main-content {
            padding: 40px 0;
        }
        
        .section {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 24px;
            color: #1a73e8;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        /* 报名信息卡片 */
        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .info-card {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 20px;
            transition: all 0.3s;
        }
        
        .info-card:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        
        .info-card h3 {
            color: #1a73e8;
            margin-bottom: 15px;
        }
        
        /* 流程步骤 */
        .steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .step {
            width: 30%;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background-color: #1a73e8;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-weight: bold;
            font-size: 20px;
        }
        
        /* 院校展示 */
        .schools {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .school-item {
            text-align: center;
            padding: 15px 10px;
            background-color: #f9f9f9;
            border-radius: 6px;
        }
        
        /* 页脚 */
        .footer {
            background-color: #333;
            color: #999;
            padding: 30px 0;
            text-align: center;
            font-size: 14px;
        }
        
        .footer-links a {
            color: #ccc;
            margin: 0 10px;
        }
        
        .copyright {
            margin-top: 20px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .nav-links {
                margin-top: 15px;
            }
            
            .nav-links a {
                margin: 0 10px;
            }
            
            .banner h1 {
                font-size: 28px;
            }
            
            .banner p {
                font-size: 16px;
            }
            
            .section {
                padding: 20px;
            }
            
            .step {
                width: 100%;
            }
            
            .info-cards {
                grid-template-columns: 1fr;
            }
        }