/* 合作模块页面样式 */
@media screen and (min-width: 1200px){
    .switch_box{
        width: calc(100% - 298px - 30px);
    }
}

.swiper_news .swiper-slide{
    box-sizing: border-box;
    padding: 10px;
}

.swiper_news_item{
    display: flex;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 5px 10px 0px #EFF1F9;

    box-sizing: border-box;
    padding: 29px 22px;
}

.news_cover{
    flex-shrink: 0;
    width: 508px;
    height: 320px;
}

.news_cover img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_details{
    width: calc(100% - 508px);
    box-sizing: border-box;
    padding: 0 20px;
}

.news_date{
    font-size: 16px;
    color: #4E4C4C;
    line-height: 45px;
}

.news_details h3{
    font-size: 26px;
    color: #333333;
    line-height: 45px;
}

.news_details p{
    font-size: 16px;
    color: #807E7E;
    line-height: 35px;
    -webkit-line-clamp: 3;
    margin-top: 10px;
}

.more_icon{
    margin-top: 45px;
}

.more_icon img{
    width: 82px;
    height: 24px;
}

.more_icon img:nth-child(2){
    display: none;
}

.swiper_news_item:hover .news_details h3{
    color: #223895;
}

.swiper_news_item:hover .news_details p{
    color: #333333;
}

.swiper_news_item:hover .more_icon img:nth-child(1){
    display: none;
}

.swiper_news_item:hover .more_icon img:nth-child(2){
    display: block;
}

.swiper_news_pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
}

.swiper_news_pagination .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background: #B8C2CD;
    border-radius: 50%;
    opacity: 1;
    margin: 0 20px;
}

.swiper_news_pagination .swiper-pagination-bullet-active{
    width: 12px;
    height: 12px;
    background: #1F3694;
}

/* 文字列表 */
.words_news_list{
    margin-top: 20px;
}

.words_news_item{
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid #E7EAF3;

    position: relative;
}

.words_news_item::after{
    content: "";
    width: 100%;
    height: 3px;
    background: #1f3694;

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.2s ease-out 0s;
    transform:scaleX(0);
}

.w_news_l{
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: #CBCBCB;
    transition: all .5s;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.w_news_l h3{
    font-size: 32px;
    color: #ffffff;
    line-height: 34px;
}

.w_news_l p{
    font-size: 16px;
    color: #ffffff;
    line-height: 34px;
}

.w_news_r{
    width: calc(100% - 90px);
    box-sizing: border-box;
    padding-left: 20px;
}

.news_r_t{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news_r_t img{
    flex-shrink: 0;
    width: 82px;
    height: 24px;
}

.news_r_t img:nth-child(3){
    display: none;
}

.w_news_r h3{
    font-size: 22px;
    color: #333333;
    line-height: 30px;
    margin-bottom: 10px;
}

.w_news_r p{
    font-size: 16px;
    color: #807E7E;
    line-height: 30px;
}

.words_news_item:hover .w_news_l{
    background: #223895;
}

.words_news_item:hover .w_news_r h3{
    color: #223895;
}

.words_news_item:hover .w_news_r p{
    color: #333333;
}

.words_news_item:hover::after{
    transform: none;
}

.words_news_item:hover .news_r_t img:nth-child(2){
    display: none;
}

.words_news_item:hover .news_r_t img:nth-child(3){
    display: block;
}


@media screen and (max-width: 1200px){
    .news_cover{
        width: 408px;
        height: 257px;
    }

    .news_details{
        width: calc(100% - 408px);
    }

    .news_details p{
        -webkit-line-clamp: 1;
    }

    .more_icon{
        margin-top: 25px;
    }
}

@media screen and (max-width: 998px){
    .swiper_news_item{
        padding: 15px;
    }

    .news_cover{
        width: 308px;
        height: 194px;
    }

    .news_details{
        width: calc(100% - 308px);
        padding: 0 15px;
    }

    .news_date{
        font-size: 14px;
        line-height: 35px;
    }

    .news_details h3{
        font-size: 20px;
        line-height: 35px;
    }

    .news_details p{
        display: none;
    }

    .more_icon img{
        width: 62px;
        height: 18px;
    }

    .swiper_news_pagination{
        margin-top: 20px;
    }

    .swiper_news_pagination .swiper-pagination-bullet{
        width: 7px;
        height: 7px;
        margin: 0 10px;
    }

    .words_news_item{
        padding: 20px 0;
        align-items: center;
    }
    
    .w_news_l{
        width: 70px;
        height: 70px;
    }

    .w_news_l h3{
        font-size: 24px;
        line-height: 26px;
    }

    .w_news_l p{
        font-size: 14px;
        line-height: 26px;
    }

    .w_news_r h3{
        font-size: 18px;
        line-height: 26px;
    }

    .w_news_r p{
        font-size: 14px;
        line-height: 26px;
        -webkit-line-clamp: 1;
    }

    .news_r_t img{
        display: none;
    }

    .w_news_r{
        width: calc(100% - 70px);
        padding-left: 12px;
    }
}

@media screen and (max-width: 768px){
    .news_cover{
        width: 238px;
        height: 153px;
    }

    .news_details{
        width: calc(100% - 238px);
        padding: 0 0 0 15px;
    }
}

@media screen and (max-width: 540px){
    .swiper_news_item{
        padding: 7px;
        box-shadow: 0px 3px 5px 0px #EFF1F9;
    }

    .news_cover{
        width: 157px;
        height: 99px;
    }

    .news_details{
        width: calc(100% - 157px);
        padding-left: 10px;
    }

    .news_date{
        font-size: 12px;
        line-height: 23px;
        margin-bottom: 5px;
    }

    .news_details h3{
        font-size: 16px;
        line-height: 23px;
    }

    .more_icon{
        margin-top: 5px;
    }

    .more_icon img{
        width: 42px;
        height: 12px;
    }

    .swiper_news_pagination{
        margin-top: 17px;
    }

    .w_news_l{
        width: 50px;
        height: 50px;
    }

    .w_news_r{
        width: calc(100% - 50px);
        padding-left: 10px;
    }

    .w_news_l h3{
        font-size: 16px;
        line-height: 17px;
        font-weight: 400;
    }

    .w_news_l p{
        font-size: 11px;
        line-height: 17px;
    }

    .w_news_r h3{
        font-size: 16px;
        margin-bottom: 3px;
    }

    .w_news_r p{
        font-size: 13px;
        line-height: 23px;
    }

    .swiper_news .swiper-slide{
        padding: 5px;
    }

    .words_news_list{
        margin-top: 5px;
    }
}