        /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f5f5f5;
        }
        
        a {
            text-decoration: none;
            color: #333;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 */
        header {
            background-color: #1e64b0;
            color: white;
            padding: 15px 0;
        }
        
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo-text h1 {
            font-size: 20px;
            margin: 0;
        }
        
        .logo-text p {
            font-size: 12px;
            margin: 0;
        }
        
        .contact-info {
            text-align: right;
        }
        
        .contact-info p {
            margin: 5px 0;
            font-size: 14px;
        }
        
        .phone {
            font-size: 18px;
            font-weight: bold;
            color: #ffeb3b;
        }
        
        /* 导航菜单 */
        nav {
            background-color: #165293;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            position: relative;
        }
        
        .nav-menu li a {
            display: block;
            color: white;
            padding: 15px 20px;
            transition: background-color 0.3s;
        }
        
        .nav-menu li a:hover {
            background-color: #0d3a6b;
        }
        
        /* 轮播图 */
        .banner {
            width: 100%;
            height: 400px;
            background-color: #ddd;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* 主要内容区 */
        .main-content {
            display: flex;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        /* 左侧内容 */
        .left-content {
            flex: 3;
            padding-right: 20px;
        }
        
        /* 右侧内容 */
        .right-content {
            flex: 1;
        }
        
        /* 公告栏 */
        .notice {
            background-color: white;
            border-radius: 5px;
            padding: 15px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .notice-title {
            font-size: 18px;
            color: #1e64b0;
            border-bottom: 2px solid #1e64b0;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        
        .notice-list {
            list-style: none;
        }
        
        .notice-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .notice-list li a:hover {
            color: #1e64b0;
        }
        
        /* 报名入口 */
        .enroll-section {
            background-color: white;
            border-radius: 5px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .section-title {
            font-size: 22px;
            color: #1e64b0;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .enroll-btn {
            display: block;
            background-color: #ff5722;
            color: white;
            text-align: center;
            padding: 15px;
            border-radius: 5px;
            font-size: 18px;
            font-weight: bold;
            margin: 20px 0;
            transition: background-color 0.3s;
        }
        
        .enroll-btn:hover {
            background-color: #e64a19;
        }
        
        /* 优势特色 */
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 30px 0;
        }
        
        .feature-item {
            flex: 0 0 48%;
            background-color: white;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 40px;
            color: #1e64b0;
            text-align: center;
            margin-bottom: 10px;
        }
        
        .feature-title {
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
        }
        
        /* 院校展示 */
        .schools {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 30px 0;
        }
        
        .school-item {
            flex: 0 0 23%;
            background-color: white;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .school-item img {
            width: 100%;
            height: 80px;
            object-fit: contain;
            margin-bottom: 10px;
        }
        
        /* 底部 */
        footer {
            background-color: #333;
            color: #ccc;
            padding: 30px 0 10px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 200px;
            padding: 0 15px;
            margin-bottom: 20px;
        }
        
        .footer-section h3 {
            color: white;
            font-size: 16px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #555;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 8px;
        }
        
        .footer-links li a {
            color: #ccc;
        }
        
        .footer-links li a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding: 15px 0;
            border-top: 1px solid #555;
            font-size: 12px;
        }
        
        /* 响应式设计 - 平板 */
        @media (max-width: 992px) {
            .feature-item, .school-item {
                flex: 0 0 48%;
            }
            
            .left-content {
                flex: 2;
            }
        }
        
        /* 响应式设计 - 手机 */
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 10px;
                justify-content: center;
            }
            
            .contact-info {
                text-align: center;
            }
            
            .nav-menu {
                flex-direction: column;
                text-align: center;
            }
            
            .main-content {
                flex-direction: column;
            }
            
            .left-content, .right-content {
                padding-right: 0;
            }
            
            .feature-item, .school-item {
                flex: 0 0 100%;
            }
            
            .banner {
                height: 200px;
            }
        }