.listBanner{
    position: relative;
}
.listBanner img{
    height: 440px;
    width: 100%;
    object-fit: cover
}
.bannerText{
    width: 1200px;
    width: var(--main-inner-width);
    margin: auto;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bannerText h2{
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}
.bannerPath{
    display: flex;
    align-items: center;
    gap: 10px;
}
.bannerPath>a{
   display: flex;
   align-items: center;
}


.bannerPath>a>img{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.listContent{
    width: 1200px;
    width: var(--main-inner-width);
    margin: auto;
    margin-top: 50px;
}
.list-item{
   margin-bottom: 30px;
}
.list-item a {
   display: flex;
}
.list-item-time{
    padding: 20px 40px;
    background-color: #A1C7FD;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.list-item-time>div:first-child{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}
.list-item-time>div:last-child{
    font-size: 14px;
}
.list-item-content{
    padding: 20px;
    background-color: #F3F3F3;
    flex: 1;
}
.list-item-title{
    font-size: 18px;
    font-weight: 700;
}
.list-item-des{
    font-size: 14px;
    margin-top: 10px;
}
.list-item:hover .list-item-time{
    background-color: #2260B7;
    color: #fff;
}

.schoolDetail{
    width: 1200px;
    width: var(--main-inner-width);
    margin: auto;
    margin-top: 50px;
    font-size: 16px;
    line-height: 1.6;
    color: #3D3D3D;
}
.schoolDetail p{
    text-indent: 2em;
    margin-bottom: 20px;
    text-align: justify;
}
.schoolDetail h3{
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #2260B7;
}
.schoolDetail-box1{
    display: flex;
    gap: 20px;
}
.schoolDetail-box1>div{
    flex: 1;
}
.schoolDetail-box1 img{
    width: 100%;
}
.colorMain{
    color: #2260B7;
    font-size: 20px;
    font-weight: 700;
}
.schoolDetail-numList ul{
    display: flex;    
    align-items: center;
    text-align: center;
}
.schoolDetail-numItem{
    flex: 1;  
}
.schoolDetail-numItemNum{
    font-size: 40px;
    font-weight: 700;
    color: #2260B7;
    color: var(--main-color);
}
.schoolDetail-numItemNum span{
    font-size: 18px;
}

.divider{
    height: 67px;
    background-color: #D8D8D8;
    width: 1px;
}
.text-list{
    padding-left: 30px;
}
.text-list li{
    padding: 15px 0;
    border-bottom: 1px solid #DDDDDD;
    font-size: 16px;
    color: #2260B7;
    color: var(--main-color);
    font-weight: 700;
}
.text-list li:last-child{
    border-bottom: none;
}
.text-list li:first-child{
    padding-top: 0;
}
.schoolDetail .textEnd{
    text-align: end;
}


@media (max-width: 992px) {
    .listBanner img{
        height: 300px;
    }
    .bannerText h2{
        font-size: 30px;
        margin-bottom: 10px;
    }
    .bannerText{
        padding: 20px;
    }
    .listContent{
       padding: 20px;
       margin-top: 20px;
    }
    .list-item-time{
       padding: 10px 20px;
    }
    .list-item-content{
       padding: 10px 20px;
    } 
}