
.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size:25px ;
    margin-top: 50px;
}
.title .line {
    height: 3px;
    background-color: #960013;
    width: 300px;
    margin: 10px 0;
}

.title_bold2 {
    font-size: 16px;
}

.school_img {
    width: 100%;
    margin-top: 50px;
    position: relative;
    
}
.school_img img{
    width: 100%;
    max-height: 450px;
}
.school_img .school_logo {
    position: absolute;
    right: 20%;
    top: 0;
    background-color: aqua;
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.school_info {
    background: #EEEEEF;
    padding: 20px;
    position: relative;
    margin-top: 30px;
    border: 1px solid #000;
    box-sizing: border-box;
}
.red_title {
    color: #960013;
    font-size: 25px;
}
.jianjie {
    font-size: 25px;
}
.img_list {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.img_list img {
    width: 25%;
    height: 400px;
    position: relative;
    z-index: 2;
}
.school_info_bg {
    position: absolute;
    bottom: -40px;
    left: 0;
    height: 80px;
    width: 100%;
    z-index: 1;
    background: #CCCCCC;
}
.fenyeqi {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;

}
.fenyeqi span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    position: relative;
}
.current::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 30px;
    height: 2px;
    background-color: #960013;
}
.fenye_img {
    width: 30px;
    height: 30px;
}
.fenye_img_right {
    transform: scale(-1,1);
    margin-right: 30px;
}
.fenye_img_left {
    margin-left: 30px;
    cursor: pointer;
}
/*在小于等于480px屏幕尺寸时，以下CSS样式生效*/
@media only screen and (max-device-width: 480px){
 
    .mb_none {
        display: none!important;
    }
    .img_list img  {
        width: 100%;
        height: 220px;
        margin-top: 50px;
    }
    .school_img .school_logo {
        position: absolute;
        right: 20%;
        top: 0;
        background-color: aqua;
        height: 70px;
        width: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .red_title {
        color: #960013;
        font-size:18px;
    }
    .jianjie {
        font-size:18px;
    }
    .img_list {
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
}
