.news{
    width: 100%;
    background: #060606;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.news .background{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    pointer-events: none;
}
.news .wrap{
    width: 1565px;
    margin: 240px auto 80px;
    display: flex;
    justify-content: space-between;
}
.news .wrap .title{
    height: fit-content;
}
.news .wrap .title .text{
    margin: 0 0 274px 0;
}
.news .wrap .title .text span{
    font-size: 48px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #FFFFFF;
    margin: 0 0 48px 0;
    display: block;
}
.news .wrap .title .text p{
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 300;
    color: #FFFFFF;
    line-height: 26px;
    opacity: 0.5;
}
.news .wrap .title .images{
    width: 129px;
    text-align: center;
}
.news .wrap .title .images img{
    width: 100%;
}
.news .wrap .title .images p{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 300;
    color: #FFFFFF;
    opacity: 0.5;
    margin: 18px 0 11px 0;
}
.news .wrap .title .images span{
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
}
.news .wrap .content{
    width: 1030px;
}
.news .wrap .content .news_swiper{
    width: 100%;
    padding: 20px;
}

.news .wrap .content .news_swiper .swiper-slide .joke{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: 1s;
}
.news .wrap .content .news_swiper .swiper-slide .joke.on{
    transition-delay: 0.1s!important;
}
.news .wrap .content .news_swiper .swiper-slide-active .joke{
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}
.news_swiper .swiper-slide .joke .item{
    width: 452px;
    height: 299px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin: 0 0 129px 0;
}
.news_swiper .swiper-slide .joke .item:nth-child(2n){
    position: relative;
    top: 129px;
}
.news_swiper .swiper-slide .joke .item img{
    width: 100%;
    height: 100%;
    transition: 3s;
}
.news_swiper .swiper-slide .joke .item .text{
    position: absolute;
    padding: 0 32px;
    font-size: 20px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 30px;
    left: 0;
    bottom: 36px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news_swiper .swiper-slide .joke .item img:hover{
    transform: scale(1.1);
}
.news .wrap .button_click{
    display: flex;
    margin: 110px 0 0 0;
}
.news .wrap .button_click .circle{
    width: 55px;
    height: 55px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}
.news .wrap .button_click .circle:first-child{
    transform: rotate(180deg);
}
.news .wrap .button_click .circle:not(:last-child) {
    margin: 0 28px 0 0;
}
.news .wrap .button_click .circle .iconfont{
    color: rgba(161, 161, 161, 1);
    font-size: 20px;
    transition: 0.8s;
}
.news .wrap .button_click svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(178deg);
    width: 120%;
    height: 120%;
    pointer-events: none;
}
.news .wrap .button_click .path-loop-bg{
    fill: none;
    stroke: transparent;
    stroke-miterlimit: 10;
    stroke-width: 1px;
}
.news .wrap .button_click .path-loop{
    stroke-dashoffset: 157px;
    fill: none;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: 1px;
    transition: 0.8s;
}
.news .wrap .button_click .circle:hover .path-loop{
    stroke-dashoffset: 19px;
}
.news .wrap .button_click .circle:hover .iconfont{
    color: #fff;
    transform: translateX(5px);
}
@media screen and (max-width: 1856px) {
    .news .wrap{
        width: 85%;
    }
    .news .wrap .content {
        width: 68%;
    }
    .news_swiper .swiper-slide .joke .item{
        width: 46%;
        margin: 0 0 91px 0;
    }
    .news .wrap .content .news_swiper{
        height: 89%;
    }
    .news_swiper .swiper-slide .joke .item .text{
        font-size: 20px;
    }

}
@media screen and (max-width: 1600px) {
    .news_swiper .swiper-slide .joke .item{
        width: 46%;
        height: 250px;
    }
    .news_swiper .swiper-slide .joke .item:nth-child(2n) {
        position: relative;
        top: 0;
        margin: 77px 0 40px 0;
    }
}
/* mobile */
@media screen and (max-width: 1270px) {
    .news .wrap{
        width: 90%;
        margin: 122px auto 80px;
        flex-direction: column;
    }
    .news .wrap .title .text span{
        font-size: 28px;
        margin: 0 0 25px 0;
    }
    .news .wrap .title .text p{
        font-size: 16px;
    }
    .news .wrap .title .text {
        margin: 0 0 31px 0;
        text-align: center;
    }
    .news .wrap .title .images{
        width: 90px;
        margin: auto;
    }
    .news .wrap .title .images p {
        font-size: 12px;
        margin: 11px 0 12px 0;
    }
    .news .wrap .title .images span{
        font-size: 12px;
    }
    .news .wrap .title{
        transform: none!important;
    }
    .news .wrap .content{
        width: 100%;
        margin: 50px 0 0 0;
    }
    .news .wrap .content .news_swiper{
        width: 100%;
        padding: 0;
    }
    .news .wrap .content .news_swiper .swiper-slide .joke{
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.5s;
        flex-wrap: wrap;
    }
    .news_swiper .swiper-slide .joke .item {
        width: 47%;
        height: auto;
        margin: 0 0 5% 0!important;
    }
    .news_swiper .swiper-slide .joke .item .text {
        font-size: 12px;
        line-height: 16px;
        bottom: 17px;
    }
    .news .wrap .button_click {
        margin: 46px 0 0 0;
    }
}
@media screen and (max-width: 450px) {
    .news_swiper .swiper-slide .joke .item {
        width: 100%;
    }
}
