.indexCenter {
    width: 1200px;
    margin: 0 auto
}

.banner {
    width: 100%;
    height: 33.33vw;
    position: relative;
}

.banner .swiper-button-next::after,
.banner .swiper-button-prev::after {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
    width: 48px;
    height: 60px;
    background: rgba(28, 22, 18, 0.6);
}

.banner .swiper-pagination-horizontal.swiper-pagination-bullets {
    bottom: 30px;
}

.banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.75);
    margin: 0 6px;
    width: 12px;
    height: 12px;
    opacity: 1;
}

.banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: #013E6D
}

.banner .swiper {
    width: 100%;
    height: 100%;
}

.main {
    width: 100%;
}

.newsBox {
    width: 100%;
    background-color: #F2F7FB;
    padding-bottom: 50px;
}

.newsBox .indexCenter {
    display: flex;
    justify-content: space-between;
    margin-top: -100px;
    position: relative;
    z-index: 1;
}

.newsItem {
    flex: 0 0 32%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #fff;
    position: relative;
    transition: all ease-in-out 0.3s;
    overflow: hidden;
}

.newsItem:hover {
    transform: translateY(-10px);
    transition: all ease-in-out 0.3s;
}

.newsItem+.newsItem {
    margin-left: 2%;
}

.newsItem h6 {
    width: 100%;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/home/newTit.png) no-repeat center/cover;
}

.newsItem h6 p {
    font-size: 24px;
    color: #fff;
    margin-left: 6px;
}

.newsItem ul {
    padding: 20px;
    height: 394px;
}

.newsItem ul li {
    height: 66px;
    display: flex;
    align-items: center;
}

.newsItem ul li a {
    color: #333;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    justify-content: flex-start;
}

.newsItem ul li a span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* æ˜¾ç¤ºçš„è¡Œæ•° */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newsItem ul li a::before {
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/home/icon-dot.png) no-repeat left top;
    display: inline-block;
    margin-top: 6px;
    margin-right: 4px;
    flex-shrink: 0;
}

.newsItem ul li a:hover span {
    color: #013E6D;
    transition: all 0.3s ease-in-out;
}

.newsItem a.newsMore {
    position: absolute;
    right: 20px;
    bottom: 10px;
    width: 60px;
    height: 24px;
    background: rgba(1, 95, 165, 0.06);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsItem a.newsMore:hover {
    background-color: rgba(1, 95, 165, 0.2);
    transition: all ease-in-out 0.3s;
}

.activeEnroll {
    height: 180px;
    width: 52px;
    background: linear-gradient(to bottom, #3680BC 0%, #224A86 100%);
    box-shadow: 0px 2px 4px 0px rgba(39, 34, 34, 0.25);
    border-radius: 10px 10px 10px 10px;
    opacity: 1;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 13px;
    position: absolute;
    top: 0;
    right: -82px;
    transition: all ease-in-out 0.3s;
}

.activeEnroll p {
    color: #fff;
    font-size: 20px;
    line-height: 22px;
    margin-top: 6px;
}

.activeEnroll:hover {
    transform: translateY(-10px);
    transition: all ease-in-out 0.3s;
}

.linkBox {
    width: 100%;
    overflow: hidden;
    background: url(../images/home/linkBg.png) no-repeat center/cover;
    padding: 30px 0;
}

.title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.title h6 {
    margin: 0 20px;
    color: #fff;
    font-size: 24px;
    background: url(../images/home/linkTitBg.png) no-repeat center top;
}

.linkType {
    margin-top: 25px;
}

.linkItem {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid rgba(114, 152, 208, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.linkItem span {
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.linkItem a.more {
    color: #fff;
    font-size: 12px;
    background: url(../images/home/icon-sj.png) no-repeat right center;
    padding-right: 14px;
    flex-shrink: 0;
}

.linkItem ul {
    flex: 1;
    margin: 0 6px;
    display: flex;
    justify-content: flex-start;
}

.linkItem ul li {
    flex: 0 0 20%;
    text-align: center;
    padding: 10px 0;
}

.linkItem ul li a {
    color: #fff;
    font-size: 14px;
}

.linkItem ul li a:hover {
    color: #013E6D;
}

@media screen and (max-width:1399px) {
    .activeEnroll {
        display: none;
    }
}

@media screen and (max-width: 1210px) {
    .indexCenter {
        width: 100%;
        padding: 0 20px;
    }
}

@media screen and (max-width: 991px) {
    .banner .swiper-button-next,
    .banner .swiper-button-prev {
        display: none;
    }
    .banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 3px;
        width: 8px;
        height: 8px;
    }
    .banner .swiper-pagination-horizontal.swiper-pagination-bullets {
        bottom: 10px;
    }
    .newsBox .indexCenter {
        margin-top: 0px!important;
    }
    .newsBox {
        padding: 30px 0;
    }
    .websiteName {
        padding: 0;
    }
}

@media screen and (max-width: 768px) {
    .newsItem {
        flex-basis: 100%;
    }
    .newsItem+.newsItem {
        margin-left: 0;
        margin-top: 20px;
    }
    .newsBox .indexCenter {
        flex-direction: column;
    }
}