/* banner   开始 */
.banner {
    width: 100%;
    position: relative;
}

.banner>.container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.banner>.container h2 {
    font-size: 36px;
    font-family: SourceHanSansCN-Regular;
    color: #FFFFFF;
    line-height: 1.8;
}

/* banner   结束 */

.ref {
    padding: 20px 0;
    width: 100%;
}

.ref>span {
    font-size: 16px;
    color: #000;
}

.ref>a {
    font-size: 14px;
    color: #2EBCE9;
    text-decoration: underline;
}

/* 当前新闻 开始 */
.currentNews {
    width: 100%;
    padding: 110px 0 90px;
}

.currentNews .title {
    padding-bottom: 45px;
    border-bottom: 1px solid #DCDCDC;
}

.currentNews .title>h2 {
    font-size: 38px;
    font-family: SourceHanSansCN-Regular;
    font-weight: 500;
    color: #000000;
}

.currentNews .title>.desc {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-family: SourceHanSansCN-Regular;
    font-weight: 400;
    color: #999999;
    margin-top: 25px;
}

.currentNews .title>.desc .fg {
    width: 1px;
    height: 16px;
    background-color: #999999;
    margin: 0 10px;
}

.currentNews .content {
    padding: 70px 0;
    font-size: 16px;
    font-family: SourceHanSansCN-Regular;
    font-weight: 400;
    color: #666666;
}

.currentNews .turnPage {
    display: flex;
    justify-content: space-between;
}

.currentNews .turnPage>.prev,
.currentNews .turnPage>.next {
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.currentNews .turnPage>.prev {
    padding-left: 50px;
}

.currentNews .turnPage>.next {
    justify-content: flex-end;
    padding-right: 50px;
}

.currentNews .turnPage>.prev,
.currentNews .turnPage>.back,
.currentNews .turnPage>.next {
    flex: 1;
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
    transition: 0.3s;
}

.currentNews .turnPage>a:hover {
    border-color: #2EBCE9;
    background-color: #2EBCE9;
}

.currentNews .turnPage>.back {
    display: flex;
    justify-content: center;
    align-items: center;
}

.currentNews .turnPage>.back>.iconfont {
    font-size: 28px;
    color: #2EBCE9;
}

.currentNews .turnPage>.prev>.iconfont {
    transform: rotateZ(180deg);
}

.currentNews .turnPage>.prev>.iconfont,
.currentNews .turnPage>.next>.iconfont {
    color: #2EBCE9;
    font-size: 16px;
    transition: 0.3s;
}

.currentNews .turnPage>a:hover>.iconfont {
    color: #FFFFFF;
}

.currentNews .turnPage>.prev .fg,
.currentNews .turnPage>.next .fg {
    width: 1px;
    height: 16px;
    background-color: #EEEEEE;
    margin: 0 20px;
    transition: 0.3s;
}

.currentNews .turnPage>a:hover .fg {
    background-color: #FFFFFF;
}

.currentNews .turnPage>.prev .text,
.currentNews .turnPage>.next .text {
    display: flex;
    flex-direction: column;
}

.currentNews .turnPage>.next .text {
    align-items: flex-end;
}

.currentNews .turnPage>.prev .text>.tip,
.currentNews .turnPage>.next .text>.tip {
    font-size: 16px;
    font-family: SourceHanSansCN-Regular;
    font-weight: 400;
    color: #222222;
    transition: 0.3s;
}

.currentNews .turnPage>.prev .text>.msg,
.currentNews .turnPage>.next .text>.msg {
    font-size: 14px;
    font-family: SourceHanSansCN-Regular;
    font-weight: 400;
    color: #222222;
    transition: 0.3s;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.currentNews .turnPage>a:hover .text>.tip,
.currentNews .turnPage>a:hover .text>.msg {
    color: #FFFFFF;
}

/* 当前新闻 结束 */


/* 推荐新闻 开始 */
.recommendNews {
    width: 100%;
    margin-bottom: 110px;
}

.recommendNews .title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.recommendNews .title>.text .t_en {
    margin-top: 25px;
}

.recommendNews .title>.tool {
    display: flex;
    align-items: center;
}

.recommendNews .title>.tool .prev,
.recommendNews .title>.tool .next {
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 40px;
    border-radius: 100%;
    border: 1px solid #2EBCE9;
}

.recommendNews .title>.tool .prev {
    transform: rotateZ(90deg);
    margin-right: 10px;
}

.recommendNews .title>.tool .next {
    border-color: #F29600;
    background: #F29600;
    transform: rotateZ(-90deg);
}

.recommendNews .title>.tool .prev>.iconfont,
.recommendNews .title>.tool .next>.iconfont {
    font-size: 32px;
}

.recommendNews .title>.tool .prev>.iconfont {
    color: #2EBCE9;
}

.recommendNews .title>.tool .next>.iconfont {
    color: #FFFFFF;
}

.recommendNews .list {
    margin-top: 55px;
}

.recommendNews .list .swiper-slide>.info {
    padding: 50px 0;
    border-bottom: 1px solid #DDDDDD;
    position: relative;
}

.recommendNews .list .swiper-slide>.info::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    width: 0;
    height: 1px;
    background-color: #2EBCE9;
    transition: 0.5s;
}

.recommendNews .list .swiper-slide:hover>.info::after {
    width: 100%;
}

.recommendNews .list .swiper-slide>.info .time {
    font-size: 16px;
    font-family: SourceHanSansCN-Regular;
    font-weight: 400;
    color: #A4A6AD;
}

.recommendNews .list .swiper-slide>.info h4 {
    font-size: 22px;
    font-family: SourceHanSansCN-Regular;
    font-weight: 400;
    color: #222222;
    line-height: 1.5;
    margin-top: 30px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.recommendNews .list .swiper-slide>.info .more {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-family: SourceHanSansCN-Regular;
    font-weight: 400;
    color: #666666;
    margin-top: 45px;
}

.recommendNews .list .swiper-slide>.info .more>.icon {
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    background: #2EBCE9;
    border-radius: 100%;
    transform: rotateZ(-90deg);
    margin-left: 15px;
    transition: 0.3s;
}

.recommendNews .list .swiper-slide:hover>.info .more>.icon {
    background: #F29600;
}

.recommendNews .list .swiper-slide>.info .more>.icon>.iconfont {
    color: #FFFFFF;
    font-size: 22px;
}

/* 推荐新闻 结束 */



@media screen and (max-width:1440px) {
    .currentNews {
        padding: 80px 0;
    }

    .recommendNews {
        margin-bottom: 80px;
    }

    .banner>.container h2 {
        font-size: 34px;
        line-height: 1.5;
    }

    .currentNews .title>h2 {
        font-size: 34px;
    }

    .currentNews .title {
        padding-bottom: 35px;
    }

    .currentNews .content {
        padding: 50px 0;
    }

    .currentNews .turnPage>.prev,
    .currentNews .turnPage>.next {
        padding: 20px 0;
    }

    .currentNews .turnPage>.prev {
        padding-left: 35px;
    }

    .currentNews .turnPage>.next {
        padding-right: 35px;
    }

    .currentNews .turnPage>.back>.iconfont {
        font-size: 24px;
    }

    .currentNews .turnPage>.prev .fg,
    .currentNews .turnPage>.next .fg {
        margin: 0 10px;
    }

    .recommendNews .list .swiper-slide>.info {
        padding: 30px 0;
    }

    .recommendNews .list .swiper-slide>.info h4 {
        font-size: 20px;
    }

    .recommendNews .list .swiper-slide>.info h4,
    .recommendNews .list .swiper-slide>.info .more {
        margin-top: 20px;
    }

    .recommendNews .list {
        margin-top: 40px;
    }
}


@media screen and (max-width:1280px) {
    .currentNews {
        padding: 60px 0;
    }

    .recommendNews {
        margin-bottom: 60px;
    }

    .banner>.container h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .currentNews .title>h2 {
        font-size: 30px;
    }

    .currentNews .title>.desc {
        font-size: 16px;
        margin-top: 15px;
    }

    .currentNews .title {
        padding-bottom: 25px;
    }

    .currentNews .content {
        padding: 40px 0;
    }

    .currentNews .turnPage>.prev {
        padding-left: 25px;
    }

    .currentNews .turnPage>.next {
        padding-right: 25px;
    }

    .currentNews .turnPage>.back>.iconfont {
        font-size: 22px;
    }

    .recommendNews .list .swiper-slide>.info {
        padding: 20px 0;
    }

    .recommendNews .list .swiper-slide>.info .more {
        font-size: 18px;
    }
}


@media screen and (max-width:1024px) {
    .banner>.container h2 {
        font-size: 26px;
    }

    .banner>.container {
        transform: translate(-50%, -15%);
    }

    .currentNews .title>h2 {
        font-size: 26px;
    }

    .currentNews .title {
        padding-bottom: 20px;
    }

    .currentNews .content {
        padding: 30px 0;
    }

    .currentNews .turnPage>.prev,
    .currentNews .turnPage>.next {
        padding: 15px;
    }

    .currentNews .turnPage>.back>.iconfont {
        font-size: 20px;
    }

    .recommendNews .title>.text .t_en {
        margin-top: 20px;
    }

    .recommendNews .list .swiper-slide>.info h4 {
        font-size: 18px;
    }

    .recommendNews .list .swiper-slide>.info .more {
        font-size: 16px;
    }
}


@media screen and (max-width:768px) {
    .currentNews {
        padding: 40px 0;
    }

    .recommendNews {
        margin-bottom: 40px;
    }

    .banner {
        height: 200px;
        overflow: hidden;
    }

    .banner>img {
        height: 100%;
        width: auto;
    }

    .currentNews .title>h2 {
        font-size: 24px;
    }

    .currentNews .content {
        padding: 20px 0;
        font-size: 14px;
    }

    .currentNews .turnPage>.prev,
    .currentNews .turnPage>.next {
        padding: 10px;
    }

    .currentNews .turnPage>.back>.iconfont {
        font-size: 18px;
    }

    .currentNews .turnPage>.prev .fg,
    .currentNews .turnPage>.next .fg {
        margin: 0 8px;
    }

    .currentNews .title>.desc,
    .currentNews .turnPage>.prev .text>.tip,
    .currentNews .turnPage>.next .text>.tip,
    .recommendNews .list .swiper-slide>.info .time,
    .recommendNews .list .swiper-slide>.info .more {
        font-size: 14px;
    }

    .currentNews .turnPage>.prev .text>.msg,
    .currentNews .turnPage>.next .text>.msg {
        font-size: 12px;
    }

    .recommendNews .list .swiper-slide>.info h4 {
        font-size: 16px;
    }

    .recommendNews .list .swiper-slide>.info h4,
    .recommendNews .list .swiper-slide>.info .more {
        margin-top: 10px;
    }
}


@media screen and (max-width:600px) {
    .banner>.container h2 {
        font-size: 24px;
    }

    .currentNews .title>h2 {
        font-size: 22px;
    }

    .recommendNews .title>.text .t_en {
        font-size: 16px;
        margin-top: 15px;
    }

    .recommendNews .title>.tool .prev,
    .recommendNews .title>.tool .next {
        width: 35px;
        height: 35px;
        line-height: 33px;
    }

    .recommendNews .list .swiper-slide>.info {
        padding: 15px 0;
    }
}


@media screen and (max-width: 480px) {
    .currentNews .title>h2 {
        font-size: 20px;
    }
}