
/*轮播图翻页*/
.banner .swiper, .banner .swiper-slide {
    overflow: hidden;
    position:relative;
}

.banner .swiper {
    font-size: 0;
    height: auto;
    bottom: 0 !important;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.banner .swiper-pagination-bullet {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    opacity: 0.6;
    background: transparent;
    width: auto;
    height: auto;
    margin: 0 15px !important;
    line-height: 1;
}

.banner .swiper-pagination-bullet::after {
    content: '';
    width: 1px;
    height: 25px;
    background-color: #fff;
    display: block;
    margin: 10px auto 0;
}

.banner .swiper-pagination-bullet-active {
    opacity: 1;
}

.banner .swiper-pagination-bullet-active::after {
    height: 45px;
}

.scale-animation {
    display: inline-block;
    -webkit-animation: scale-animation 3s ease-in-out forwards;
    animation: scale-animation 3s ease-in-out forwards;
}
@-webkit-keyframes scale-animation {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes scale-animation {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/*三块*/
.itembox {
    margin-top:40px;
}
.itembox a:hover{
    color: #02348c;
}
.itembox .title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;;
}
.itembox .title h3{
    font-size: 24px;
    font-weight: bold;
}
.itembox .title .more{
    font-size: 14px;
    color:#888;
}
.news,.achievement{
    width: 460px;
    margin-right: 40px;
}
.notice{
    width: 400px;
}

.piclist li{
    margin-top:10px;
    display: flex;
    justify-content: space-between;
}
.piclist li .pic{
    width: 190px;
    height: 110px;
    flex-shrink: 0;
}
.piclist li .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.piclist li .textbox{
    width: calc(100% - 200px);
    padding: 5px 0;
}
.piclist li .textbox .text{
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;   
}
.piclist li .textbox .time{
    font-size: 14px;
    color:#888;
    padding-top:10px;
}

.achievement li .textbox .name{
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    padding-bottom: 5px;
}
.achievement li .textbox .text{
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #555;
    line-height: 1.4;
}
.achievement li .textbox .more{
    font-size: 12px;
    color:#888;
}

/*三块-通知公告*/
.textlist li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 34px;    
}
.textlist li span{
    font-size: 14px;
    color: #888;
    flex-shrink: 0;
}
.textlist li a{
    width: calc(100% - 95px);
    padding:0 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    font-size: 15px;
}
.textlist li a:before{
    content:"";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #02348c;
    position: absolute;
    left: 0;
    top:50%;
    transform: translateY(-50%);
}

/* 小于1440的屏幕 */
@media (max-width:1439px) {
 .news, .achievement{
        width: 33%;
        margin-right:2%;
    }
    .notice{
        width: 30%;
    }
}

/* 小于1024的屏幕 */
@media (max-width:1024px) { 
    .itembox{
        width: 100%;
        margin: 30px 0 0 0;
    }
    .itembox .title h3{
        font-size: 18px;
    }

}

/* 小于540的屏幕 */
@media (max-width:540px) { 
    .itembox{
        margin-top:20px;
    }
    .piclist li .pic{
        width: 160px;
        height: 88px;
        
    }
    .piclist li .textbox{
        width: calc(100% - 170px);
    }
}
