.school-list-item {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.clearfix{clear:both;overflow:hidden}
.school-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.school-rank {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 8px 0;
    z-index: 1;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.rank-top-3 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    font-size: 1.3rem;
}

.rank-2 {
    background: linear-gradient(135deg, #C0C0C0, #A9A9A9);
    font-size: 1.3rem;
}

.rank-3 {
    background: linear-gradient(135deg, #CD7F32, #A0522D);
    font-size: 1.3rem;
}

.school-image {
    width: 230px;
    min-height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.school-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.school-list-item:hover .school-image img {
    transform: scale(1.05);
}

.school-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.school-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.school-location {
    color: #3498db;
    font-size: 1rem;
    /* margin-bottom: 15px; */
}

.school-desc {
    color: #7f8c8d;
    margin-bottom: 5px;
    line-height: 1.6;
}

.school-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin:10px 0px;
}

.feature-tag {
    background: #e8f4fc;
    color: #3498db;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.school-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.school-rating {
    color: #f39c12;
    font-weight: bold;
    font-size: 1.2rem;
}

.view-details {
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
}

.view-details:hover {
    background: #2980b9;
}

.wrap-title h3, .left-wrap .wrap-title h3{font-size: 24px;line-height: 30px;color: #333;font-weight: 400;display: inline-block;}
.wrap-title, .left-wrap .wrap-title{margin-bottom: 16px;}
.wrap-title h3, .left-wrap .wrap-title h3{font-size: 24px;line-height: 30px;color: #333;font-weight: 400;display: inline-block;}
.wrap-title a, .left-wrap .wrap-title a{position: relative;top: 4px;float: right;color: #888;font-size: 14px;line-height: 30px;text-decoration: none;}
.wrap-title a:hover, .left-wrap .wrap-title a:hover{color: #d4975c;}
.vocation-wrap ul li{display: inline-block;background: #f8f8f8;padding: 3px 12px;margin: 5px 2px;}
hr{margin-top: 20px;margin-bottom: 20px;border: 0;border-top: 1px solid #eee;}
.dist{background-color: #ffa535 !important;}
.radius-4{-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;}
/* 介绍文本框样式 */
.intro-section {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.intro-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
	text-indent: 2rem;
}

@media (max-width: 768px) {
    .school-list-item {
        flex-direction: column;
    }

    .school-rank {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .rank-top-3 {
        font-size: 1.1rem;
    }

    .school-image {
        width: 100%;
        min-height: 200px;
    }

    .school-info {
        padding: 15px;
    }

    .school-name {
        font-size: 1.3rem;
    }
}



/* =========== CSS样式增量 - 国际课程专题页面新增样式 =========== */

/* 课程介绍部分 */
.courses-section {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.course-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.course-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.course-title {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.course-details {
    display: flex;
    flex-wrap: wrap;
}

.course-info {
    flex: 1;
    min-width: 300px;
}

.course-info h4 {
    color: #3498db;
    margin: 15px 0 10px 0;
}

.course-info p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

/* 招生简章列表样式 */
.admissions-section {
    background: #f8f9fa;
    padding: 40px 0;
    width: 100%;
}

.admissions-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.admissions-section .filter-title {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 1.5rem;
}

/* =========== CSS样式增量结束 =========== */