        /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        
        
        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: #0d3a6d;
        }
        
        /* 移动端菜单按钮 */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 10px 15px;
        }
        
        /* 横幅区域 */
        .banner {
            position: relative;
            height: 400px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1920x400') center/cover no-repeat;
            color: white;
            display: flex;
            align-items: center;
            text-align: center;
        }
        
        .banner-content {
            width: 100%;
        }
        
        .banner h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .banner p {
            font-size: 18px;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: #e91e63;
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #c2185b;
        }
        
        /* 主要内容区 */
        .main-content {
            padding: 40px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 28px;
            color: #1e64b0;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: #e91e63;
            bottom: -10px;
            left: 25%;
        }
        
        /* 招生项目卡片 */
        .programs {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .program-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .program-card:hover {
            transform: translateY(-10px);
        }
        
        .program-img {
            height: 200px;
            background-color: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 125px;
            color: #1e64b0;
        }
        
        .program-content {
            padding: 20px;
        }
        
        .program-content h3 {
            margin-bottom: 15px;
            color: #1e64b0;
        }
        
        /* 报名流程 */
        .steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin-bottom: 40px;
        }
        
        .step {
            width: 22%;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background-color: #1e64b0;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 15px;
        }
        
        .step h3 {
            margin-bottom: 10px;
        }
        
        /* 新闻资讯 */
        .news-section {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .news-main {
            flex: 2;
        }
        
        .news-sidebar {
            flex: 1;
        }
        
        .news-item {
            background: white;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .news-item h3 {
            margin-bottom: 10px;
        }
        
        .news-date {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        /* 页脚 */
        footer {
            background-color: #222;
            color: #bbb;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-column {
            width: 30%;
            margin-bottom: 20px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-menu li {
            list-style: none;
            margin-bottom: 10px;
        }
        
        .footer-menu a {
            color: #bbb;
            transition: color 0.3s;
        }
        
        .footer-menu a:hover {
            color: white;
        }
        
        .contact-item {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-item i {
            margin-right: 10px;
            color: #e91e63;
            width: 20px;
            text-align: center;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .banner {
                height: 300px;
            }
            
            .banner h2 {
                font-size: 28px;
            }
            
            .banner p {
                font-size: 16px;
            }
            
            .step {
                width: 45%;
            }
        }
        
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-info {
                text-align: center;
                margin-top: 10px;
            }
            
            .news-section {
                flex-direction: column;
            }
            
            .footer-column {
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .banner {
                height: 250px;
            }
            
            .banner h2 {
                font-size: 24px;
            }
            
            .programs {
                grid-template-columns: 1fr;
            }
            
            .step {
                width: 100%;
            }
        }