		.fl {float: left;}
		.fr {float: right;}
        .container {
            padding: 0 15px;
        }
        
        /* 主色调定义 */
        .primary-color {
            color: #7f88db;
        }
        
        .primary-bg {
            background-color: #7f88db;
        }
        
        .primary-border {
            border-color: #7f88db;
        }
        
        /* 标题样式 */
        .section-title {
            font-size: 24px;
            text-align: center;
            margin: 0 0 5px;
            position: relative;
            padding-bottom: 5px;
            color: #333;
        }
        
        .section-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #4c55a8;
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 15px;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        /* 顶部导航栏 */
        .header-nav {
            display: flex;
            max-width: 640px;
            margin: 0 auto 20px;
            background-color: #fff;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }
        
        .nav-tab {
            flex: 1;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #666;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }
        
        .nav-tab.active {
            background-color: #7f88db;
            color: #fff;
            font-weight: bold;
        }
        
/* 更新Banner区域的样式 */
.banner {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-top: 60px;
}

.banner img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.4); /* 半透明黑色背景增强可读性 */
    color: #fff;
    z-index: 1;
}

.banner-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.3;
}

.highlight {
    font-size: 1.5rem;
    color: #ffd700; /* 金色高亮 */
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.brand-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.banner-text p {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* 添加动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    
    .banner-text h1 {
        font-size: 2rem;
    }
    
    .banner-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .banner-text h1 {
        font-size: 1.8rem;
    }
}
        
        /* 学校简介 */
        .school-intro {
            padding: 30px 0;
            background-color: #fff;
        }
        
        .intro-image {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .intro-content {
            font-size: 15px;
            line-height: 1.8;
            color: #333;
            text-align: justify;
        }
        
        .intro-content p {
            margin-bottom: 15px;
        }
        

/* 品牌文化 */
.brand-culture-section {
    padding: 30px 0;
    background-color: #fafafa;
}

.brand-culture-slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto 20px;
    border-radius: 10px;
    max-width: 600px;
}

.brand-culture-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    touch-action: pan-y;
}

.brand-culture-item {
    flex: 0 0 100%;
}

.culture-image {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.culture-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s;
}

.culture-image:hover img {
    transform: scale(1.03);
}

.culture-content {
    background: #fff;
    padding: 10px;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.culture-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    height: 81px;
    text-align: center;
}
                
        /* 品牌优势 */
        .advantages-section {
            padding: 30px 0;
            background-color: #fff;
        }
        
        .advantages {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin: 20px 0;
        }
        
        .advantage-card {
            background-color: #fff;
            border-radius: 12px;
            padding: 15px 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 1px solid #f0f0f0;
            transition: all 0.3s;
        }
        
        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-color: #7f88db;
        }
        
        .advantage-icon {
            width: 100%;
            height: auto;
            margin-bottom: 15px;
        }
        
        .advantage-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .advantage-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }
        
        .advantage-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }
        
        /* 发展历史 */
        .history-section {
            padding: 30px 0;
            background-color: #fafafa;
        }
        
        .history-container {
            height: 300px;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        .history-container::-webkit-scrollbar {
            width: 4px;
        }
        
        .history-container::-webkit-scrollbar-thumb {
            background-color: rgba(246, 35, 80, 0.3);
            border-radius: 2px;
        }
        
        .timeline-item {
            display: flex;
            margin-bottom: 25px;
            position: relative;
            padding-left: 70px;
        }
        
        .timeline-year {
            position: absolute;
            left: 0;
            top: 0;
            font-size: 16px;
            font-weight: bold;
            color: #7f88db;
            width: 60px;
            text-align: right;
        }
        
        .timeline-content {
            position: relative;
            padding-left: 25px;
			font-size: 14px;
        }
        
        .timeline-content:before {
            content: "";
            position: absolute;
            left: 0;
            top: 5px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: #7f88db;
            border: 3px solid #fff;
            box-shadow: 0 0 0 2px #7f88db;
        }
        
        .timeline-item:not(:last-child) .timeline-content:after {
            content: "";
            position: absolute;
            left: 6px;
            top: 19px;
            bottom: -25px;
            width: 2px;
            background-color: #7f88db;
            opacity: 0.2;
        }
        
        .timeline-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 8px;
            color: #333;
        }
        
        .timeline-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }
        
        /* 学校荣誉 */
        .honors-section {
            padding: 30px 0;
            background-color: #fff;
        }
        
        .honors-intro {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: center;
            padding: 0 10px;
        }
        
        .honors-slider {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin: 0 auto;
            max-width: 500px;
        }
        
        .honors-track {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
            touch-action: pan-y;
        }
        
        .honor-item {
            flex: 0 0 50%;
            padding: 0 7px;
        }
        
        .honor-img {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .slider-dot.active {
            background-color: #7f88db;
            width: 20px;
            border-radius: 4px;
        }
        
        /* 合作企业 */
        .partners-section {
            padding: 30px 0 40px;
            background-color: #fafafa;
        }
        
        .partner-advantages {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin: 20px 0 30px;
        }
        
        .advantage-item {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px 15px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s;
        }
        
        .advantage-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        .advantage-item i {
            font-size: 28px;
            color: #7f88db;
            margin-bottom: 12px;
            display: block;
        }
        
        .advantage-item h3 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #333;
        }
        
        .advantage-item p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 20px;
        }
        
        /* 合作伙伴轮播 */
        .partners-slider {
            position: relative;
            overflow: hidden;
            margin: 20px auto 0;
            max-width: 600px;
        }

        .partners-track {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
            touch-action: pan-y;
        }

        .partners-slide {
            flex: 0 0 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            padding: 0 10px;
        }

        .partner-item {
            border: 1px solid #eee;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            background-color: #fff;
            height: auto;
            padding: 5px;
        }

        .partner-item:hover {
            border-color: #7f88db;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(246, 35, 80, 0.1);
        }

        .partner-logo {
            max-width: 100%;
            max-height: auto;
            object-fit: contain;
            opacity: 0.7;
            transition: all 0.3s;
        }

        .partner-item:hover .partner-logo {
            filter: grayscale(0);
            opacity: 1;
        }
        
        /* 咨询按钮组 */
        .consult-btns {
            display: flex;
            gap: 15px;
            margin: 30px 0 0;
        }
        
        .consult-btn {
            flex: 1;
            height: 50px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .phone-btn {
            background-color: #4c55a8;
            color: #fff;
            box-shadow: 0 5px 15px rgba(127, 136, 219, 0.3);
        }
        
        .online-btn {
            border: 1px solid #4c55a8;
            color: #4c55a8;
            background-color: #fff;
            box-shadow: 0 3px 10px rgba(127, 136, 219, 0.3);
        }
        
        .phone-btn:hover {
            background-color: #e01c46;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(127, 136, 219, 0.5);
        }
        
        .online-btn:hover {
            border-color: #e01c46;
            color: #e01c46;
            background-color: #fff9fa;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(127, 136, 219, 0.5);
        }
        
        .consult-btn i {
            margin-right: 8px;
            font-size: 18px;
        }
        
        /* 返回顶部按钮 */
        .back-to-top {
            position: fixed;
            right: 15px;
            bottom: 60px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background-color: #7f88db;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(127, 136, 219, 0.3);
            z-index: 99;
            opacity: 0;
            transition: all 0.3s;
        }
        
        .back-to-top:hover {
            background-color: #e01c46;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(127, 136, 219, 0.3);
        }
        
        .back-to-top.visible {
            opacity: 1;
        }
        
        .back-to-top i {
            font-size: 18px;
        }
        
        /* 动画效果 */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s, transform 0.6s;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 响应式调整 */
        @media (max-width: 480px) {
            
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
        }