.news .wrap {
    width: 1520px;
    margin: 198px auto 92px;
}

.news .wrap .title {
    font-size: 58px;
    font-family: Roboto b;
    font-weight: 500;
    color: #262626;
    display: block;
    margin: 0 0 61px 0;
    text-align: center;
}

.news .wrap .content .item:not(:last-child) {
    margin: 0 0 25px 0;
}

.news .wrap .content .item {
    display: flex;
    padding: 38px 82px;
    border: 1px solid #F7F7F7;
    position: relative;
    overflow: hidden;
}

.news .wrap .content .end{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;

    font-size: 19px;
    font-family: Roboto;
    font-weight: 500;
    color: #404040;
}

.news .wrap .content .item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #507C6B;
    transform: translateX(-100%);
    transition: 1s;
}

.news .wrap .content .item .time {
    text-align: center;
}

.news .wrap .content .item .time span {
    font-size: 46px;
    font-family: Roboto;
    font-weight: 500;
    color: #2F2F2F;
    display: block;
    margin: 0 0 7px 0;
}

.news .wrap .content .item .time p {
    font-size: 14px;
    font-family: Roboto b;
    font-weight: 500;
    color: #4C4C4C;
}

.news .wrap .content .item .line {
    width: 1px;
    height: 104px;
    background: #EBEBEB;
    margin: 0 49px 0 60px;
}

.news .wrap .content .item .text > span {
    font-size: 26px;
    font-family: Roboto;
    font-weight: 500;
    color: #404040;
    display: block;
    margin: 0 0 22px 0;
}

.news .wrap .content .item .text .an{
    overflow: hidden;
    transition: 0.6s;
}

.news .wrap .content .item .text .an .content{
    display: none;
}

.news .wrap .content .item .text .an p {
    width: 935px;
    font-size: 16px;
    font-weight: 300;
    color: #484848;
    line-height: 24px;
}
.news .wrap .content .item .text .an .description{
    font-size: 16px;
    font-weight: 300;
    color: #484848;
    line-height: 24px;
    margin: 0 0 22px 0;
}


.news .wrap .content .item .text .more {
    margin: 20px 0 0 0;
    width: 144px;
    height: 42px;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.7s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.news .wrap .content .item .text .more:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(81, 125, 108, 1);
    transform: translateY(100%);
    transition: 0.7s;
    z-index: -1;
}

.news .wrap .content .item .text .more p {
    font-size: 14px;
    font-weight: 300;
    color: #989898;
    margin: 0 13px 0 0;
    transition: 0.7s;
}

.news .wrap .content .item .text .more .iconfont {
    color: rgba(175, 175, 175, 1);
    font-size: 14px;
    transition: 0.7s;
}

.news .wrap .content .item:hover:after {
    transform: translateX(0);
}

.news .wrap .content .item:hover .more:after {
    transform: translateY(0);
}

.news .wrap .content .item:hover .more p, .news .wrap .content .item:hover .more .iconfont {
    color: #fff;
}

.news .wrap .content .item:hover .more p {
    margin: 0 25px 0 0;
}
@media screen and (max-width: 1900px) {
    .news .wrap{
        max-width: 90%;
    }
    .news .wrap .content .item .text .an p{
        max-width: 100%;
    }
}
@media screen and (max-width: 1023px) {
    .news .wrap{
        max-width: 90%;
        margin: 130px auto 70px;
    }
    .news .wrap .title{
        font-size: 28px;
        margin: 0 0 20px 0;
    }
    .news .wrap .content .item{
        flex-direction: column;
        align-items: unset;
        padding: 5%;
        text-align: left;
    }
    .news .wrap .content .item .time{
        text-align: left;
        margin: 0 0 20px 0;
    }
    .news .wrap .content .item .time span{
        font-size: 28px;
    }
    .news .wrap .content .item .time p{
        font-size: 13px;
    }
    .news .wrap .content .item .line{
        display: none;
    }
    .news .wrap .content .item .text > span{
        font-size: 18px;
        margin: 0 0 10px 0;
    }
    .news .wrap .content .item .text .more p{
        font-size: 12px;
    }
    .news .wrap .content .item .text .an .content img{
        height: auto;
        width: 100%;
    }
    .news .wrap .content .item .text .an p{
        width: 100%;
    }
    .news .wrap .content .end{
        font-size: 15px;
    }
}