        /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            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: #1e63b0;
            color: white;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 15px;
        }
        
        .logo-text h1 {
            font-size: 22px;
            margin-bottom: 5px;
        }
        
        .logo-text p {
            font-size: 14px;
        }
        
        .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: #165294;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .nav-container a {
            color: white;
            padding: 12px 15px;
            display: block;
            transition: background-color 0.3s;
        }
        
        .nav-container a:hover {
            background-color: #0d4077;
        }
        
        .menu-toggle {
            display: none;
            cursor: pointer;
            padding: 12px 15px;
            color: white;
        }
        
        /* 轮播图 */
        .banner {
            position: relative;
            height: 400px;
            overflow: hidden;
        }
        
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .banner-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border-radius: 5px;
            max-width: 80%;
        }
        
        .banner-text h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }
        
        .banner-text p {
            font-size: 16px;
            margin-bottom: 15px;
        }
        
        .btn {
            display: inline-block;
            background-color: #e91e63;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #c2185b;
        }
        
        /* 主要内容区 */
        .main-content {
            padding: 40px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .section-title h2 {
            font-size: 28px;
            color: #1e63b0;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #e91e63;
        }
        
        /* 项目特点 */
        .features {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        
        .feature-item {
            flex: 1;
            min-width: 250px;
            margin: 15px;
            padding: 20px;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 40px;
            color: #1e63b0;
            margin-bottom: 15px;
        }
        
        .feature-item h3 {
            margin-bottom: 15px;
            color: #333;
        }
        
        /* 招生专业 */
        .majors {
            background-color: white;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }
        
        .major-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .major-item {
            margin: 10px;
            padding: 10px 20px;
            background-color: #f0f8ff;
            border-radius: 20px;
            border-left: 3px solid #1e63b0;
        }
        
        /* 报名流程 */
        .steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .step-item {
            flex: 1;
            min-width: 200px;
            margin: 15px;
            text-align: center;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            line-height: 60px;
            text-align: center;
            background-color: #1e63b0;
            color: white;
            border-radius: 50%;
            margin: 0 auto 15px;
            font-size: 24px;
            font-weight: bold;
        }
        
        .step-item h3 {
            margin-bottom: 10px;
            color: #1e63b0;
        }
        
        /* 新闻资讯 */
        .news {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        
        .news-main {
            flex: 2;
            min-width: 300px;
            margin-right: 30px;
        }
        
        .news-list {
            flex: 1;
            min-width: 300px;
        }
        
        .news-item {
            background-color: white;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .news-item h3 {
            margin-bottom: 10px;
            color: #1e63b0;
        }
        
        .news-date {
            color: #999;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .news-more {
            text-align: right;
            margin-top: 10px;
        }
        
        .news-more a {
            color: #1e63b0;
        }
        
        /* 页脚 */
        footer {
            background-color: #333;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
            padding: 0 15px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #e91e63;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 15px;
                justify-content: center;
            }
            
            .contact-info {
                text-align: center;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .nav-container {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            
            .nav-container.active {
                display: flex;
            }
            
            .banner {
                height: 300px;
            }
            
            .banner-text h2 {
                font-size: 22px;
            }
            
            .banner-text p {
                font-size: 14px;
            }
            
            .news-main {
                margin-right: 0;
            }
            
            .footer-container {
                flex-direction: column;
            }
        }