<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* é€šç”¨ */
.custom-title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 20px;
}
.custom-title_text{
    padding-bottom: 12px;
    position: relative;
    font-weight: bold;
    font-size: 20px;
    color: #114AB4;
    line-height: 26px;
}
.custom-title_text::after{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    background: #114AB4;
    bottom: -2px;
    left: 0;
}
.custom-title_more{
    width: 80px;
    height: 28px;
    background: #114AB4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
}
/* è½®æ’­ */
.banner{
    width: 100%;
    overflow: hidden;
}
.banner-img{
    width: 100%;
}
.graybg{
    background: #F2F2F2;
}
/* æ–°é—»èµ„è®¯ */
.news-floor{
    padding: 32px 0;
}
.news-box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.news-left{
    width: 820px;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
}
.news-right{
    width: 360px;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
}
/* å¹¿å‘Šè®¾ç½® */
.ad-floor img{
    width: 100%;
}
/* ä¸»é¢˜ */
.theme-floor{
    padding: 32px 0 100px;
}
.theme-top{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-right: -20px;
}
.theme-item{
    width: 25%;
}
.theme-item_box{
    margin-right: 20px;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 20px 20px 30px;
    margin-bottom: 24px;
}
.theme-item_con{
    display: flex;
    flex-direction: column;
}
.theme-item__cover{
    height: 160px;
    overflow: hidden;
    margin-bottom: 20px;
}
.theme-item__cover img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -ms-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -moz-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.theme-item_con:hover .theme-item__cover img{
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}
.theme-item__intro{
    font-size: 14px;
    color: #757575;
    line-height: 19px;
    transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: 57px;
}
.theme-item__title{
    font-size: 18px;
    color: #757575;
    line-height: 27px;
    white-space:nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.suggestion{
    background: url('infobg.png') no-repeat top center;
    background-size: 100% 100%;
    height: 316px;
    margin-right: 20px;
    border-radius: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}
.suggestion-item{
    height: 64px;
    border-radius: 4px;
    border: 1px solid #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.suggestion-item::after{
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
}
.suggestion-item:first-child::after{
    background-image: url('f4_icon1.png');
}
.suggestion-item:last-child::after{
    background-image: url('f4_icon2.png');
}
.suggestion-item:hover:first-child::after{
    background-image: url('f4_icon1h.png');
}
.suggestion-item:hover:last-child::after{
    background-image: url('f4_icon2h.png');
}
.suggestion-item span{
    font-size: 18px;
    color: #FFFFFF;
}
.suggestion-item:last-child{
    margin-bottom: 0;
}
.suggestion-item:hover{
    background: #FFFFFF;
}
.suggestion-item:hover span{
    color: #114AB4;
}
/* é£Žå…‰ */
.theme-scenery{
    background: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
}
.scenery-list{
    display: flex;
    flex-direction: row;
    margin-right: -10px;
}
.scenery-item{
    width:25%;
}
.scenery-item_box{
    margin-right: 10px;
    display: flex;
    flex-direction: column;
}
.scenery-item_cover{
    height: 163px;
    overflow: hidden;
}
.scenery-item_cover img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -ms-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -moz-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.scenery-item_box:hover .scenery-item_cover img{
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}
.scenery-item_name{
    font-size: 18px;
    color: #757575;
    margin-top: 20px;
    line-height: 24px;
    text-align: center;
}
.news-con{
    display: flex;
    flex-direction: row;
}
.school-environment{
    width: 320px;
    background: #F2F2F2;
    border-radius: 4px;
    padding: 30px 20px;
    box-sizing: border-box;
    margin-right: 20px;
}
.environment-cover{
    width: 280px;
    height: 204px;
    overflow: hidden;
    margin-bottom: 20px;
}
.environment-cover img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -ms-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -moz-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.school-environment:hover .environment-cover img{
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}
.environment-info_name{
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 12px;
}
.environment-info_intro{
    font-size: 14px;
    color: #757575;
    line-height: 19px;
    transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: 57px;
}
.news-con .news-list{
    width: calc(100% - 340px);
}
.news_item{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 37px;
}
.news_item__name{
    font-size: 16px;
    line-height: 21px;
    width: 60%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-left: 12px;
    position: relative;
    box-sizing: border-box;
}
.news_item__name::before{
    content: '';
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    background: #114AB4;
    left: 0;
    top: 50%;
    margin-top: -2px;
}
.news_item__time{
    font-size: 16px;
    color: #A6A6A6;
}
@media screen and (max-width: 1652px){
    .header{
        position: relative;
    }
    .headerbg{
        display: none;
    }
    .header-box{
        height: auto;
        display: block;
    }
    .header-top_log{
        width: 370px;
        overflow: hidden;
        margin-top: 12px;
    }
}</pre></body></html>