.news {
    background: #fff;
}

.news .wrap {
    width: 1500px;
    margin: 187px auto 107px;
}

.news .wrap .title {
    font-size: 36px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #2C3441;
    margin: 0 0 74px 0;
    text-align: center;
}

.news .wrap .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 56px 30px;
    margin: 0 0 88px 0;
}

.news .wrap .content .item {
    width: 100%;
    background: #f9f9f9;
    display: block;
    height: 450px;
    overflow: hidden;
}

.news .wrap .content .item .images {
    height: 288px;
    overflow: hidden;
    clip-path: inset(0% 0% 0% 0%);
    transition: 1s;
}

.news .wrap .content .item .images img {
    width: 100%;
    height: 100%;
}

.news .wrap .content .item .text {
    padding: 35px;
    transition: 1s;
}

.news .wrap .content .item .text .time {
    font-size: 14px;
    font-family: Roboto;
    font-weight: 400;
    color: #999999;
    margin: 0 0 15px 0;
}

.news .wrap .content .item .text > span {
    font-size: 22px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #0D1118;
    line-height: 28px;
    display: block;
    margin: 0 0 44px 0;
    min-height: 56px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news .wrap .content .item .text > p {
    font-size: 15px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #505050;
    line-height: 26px;
    opacity: 0;
    transition: 1s;
    min-height: 78px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news .wrap .content .item .text .more {
    display: flex;
    align-items: center;
    margin: 97px 0 0 0;
    opacity: 0;
    transition: 1s;
}

.news .wrap .content .item .text .more .circle {
    width: 32px;
    height: 32px;
    background: #274785;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    margin: 0 10px 0 0;
}

.news .wrap .content .item .text .more p {
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #2C3441;
}

.news .wrap .content .item:hover .images {
    clip-path: inset(0% 0% 100% 0%);
}

.news .wrap .content .item:hover .text span, .news .wrap .content .item:hover .text p, .news .wrap .content .item:hover .text .more {
    opacity: 1;
}

.news .wrap .content .item:hover .text {
    transform: translateY(-262px);
}


#page .header {
    background: #fff;
    border-bottom: 1px solid transparent;
    box-shadow: 2px 2px 24px 0px rgba(0, 0, 0, 0.08);
}

#page .header .other nav a {
    color: rgba(55, 55, 55, 1);
}

#page .header .other .login {
    border: 2px solid rgba(0, 0, 0, 0.14);
}

#page .header .other .login .iconfont, #page .header .other .login p {
    color: #000;
}

#page .header .other nav .list.on:after, #page .header .other nav .list:hover:after {
    width: 30px;
}

.page {
    background: #f6f6f6;
}

.page .wrap {
    width: 1200px;
    margin: 195px auto 104px;
    max-width: 90%;
}

.page .wrap .title {
    text-align: center;
    margin: 0 0 33px 0;
}

.page .wrap .title span {
    font-size: 36px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #2C3441;
    display: block;
    margin: 0 0 29px 0;
}

.page .wrap .title p {
    font-size: 18px;
    font-family: Roboto;
    font-weight: 400;
    color: #22262D;
}

.page .wrap .content {
    background: #FFFFFF;
    padding: 90px 78px 110px 84px;
}

.page .wrap .content p {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    line-height: 32px;
}

.page .wrap .content p img {
    max-width: 100%;
}

.page .wrap .content p strong {
    color: rgba(28, 88, 150, 1);
}

@media screen and (max-width: 1650px) {
    .news .wrap{
        max-width: 90%;
    }
    .news .wrap .content .item .images{
        height: auto;
    }
    .news .wrap .content .item:hover .text {
        transform: translateY(-58%);
    }
}
@media screen and (max-width: 1290px) {
    .news .wrap .content .item:hover .text {
        transform: translateY(-52%);
    }
    .news .wrap .content .item{
        height: 372px;
    }
    .news .wrap .content .item .text > span{
        margin: 0 0 15px 0;
    }
    .news .wrap .content .item .text .more {
        margin: 57px 0 0 0;
    }
}
@media screen and (max-width: 1024px) {
    .news .wrap .content .item .text{
        padding: 5%;
    }
}

@media screen and (max-width: 1023px) {
    .news .wrap {
        margin: 52px auto;
    }
    .news .wrap .title{
        font-size: 28px;
        margin: 0 0 41px 0;
    }
    .news .wrap .content{
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .page .wrap .title span{
        font-size: 28px;
    }
    .page .wrap {
        margin: 127px auto 5%;
    }
    .page .wrap .content{
        padding: 7% 5%;
    }
    .page .wrap .content p{
        font-size: 14px;
    }
}
@media screen and (max-width: 650px) {
    .news .wrap .content{
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px 0;
    }
    .news .wrap .content .item{
        height: auto;
    }
    .news .wrap .content .item .text > p,.news .wrap .content .item .text .more{
        opacity: 1;
    }
    .news .wrap .content .item:hover .text {
        transform: translateY(0%);
    }
    .news .wrap .content .item:hover .images {
        clip-path: inset(0% 0% 0% 0%);
    }
}