.news .wrap {
    width: 1516px;
    max-width: 90%;
    margin: 80px auto 101px;
    position: relative;
    padding-bottom: 100px;
}

.news .wrap .title {
    display: flex;
    justify-content: center;
    margin: 0 0 80px 0;
}

.news .wrap .title a {
    width: 180px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 200;
    color: #666666;
    z-index: 1;
    position: relative;
    transition: 0.6s;
}

.news .wrap .title a:not(:last-child) {
    margin-right: 20px;
}

.news .wrap .title a:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(21deg, #0A7DDA, #8CE5FB);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: 0.6s;
}

.news .wrap .title a:hover,
.news .wrap .title a.on {
    color: #fff;
}

.news .wrap .title a:hover:after,
.news .wrap .title a.on:after {
    opacity: 1;
}

.news .wrap .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 38px;
}

.news .wrap .content .item {
    width: 100%;
}



.news .wrap .content .item .images {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.news .wrap .content .item .images img {
    width: 100%;
    height: 100%;
    transition: 2s;
}

.news .wrap .content .item .text {
    padding: 30px 37px 25px 30px;
    border: 1px solid #ededed;
    border-top: 1px solid transparent;
}

.news .wrap .content .item .text .pick {
    margin: 0 0 144px 0;
}

.news .wrap .content .item .text .pick span {
    font-size: 24px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #333333;
    display: block;
    margin: 0 0 29px 0;
    transition: 0.6s;
}

.news .wrap .content .item .text .pick p {
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 200;
    color: #666666;
    line-height: 24px;
    max-width: 100%;
}

.news .wrap .content .item .text .more {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news .wrap .content .item .text .more .time {
    display: flex;
    align-items: center;
}

.news .wrap .content .item .text .more .time p {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 200;
    color: #666666;
    margin: 0 0 0 12px;
}

.news .wrap .content .item .text .more .button {
    width: 32px;
    height: 32px;
    background: rgba(51, 51, 51, 0);
    border: 1px solid #333333;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
}

.news .wrap .content .item .text .more .button .iconfont {
    color: #333333;
    font-size: 20px;
    transform: rotate(-45deg);
    transition: 0.6s;
}

.news .wrap .content .item .text .more .button:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(21deg, #0A7DDA, #8CE5FB);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: 0.6s;
}

.news .wrap .content .item:hover .images img {
    transform: scale(1.1);
}

.news .wrap .content .item:hover .text .pick span {
    color: #0A7DDA;
}

.news .wrap .content .item:hover .text .more .button {
    border: 1px solid transparent;
}

.news .wrap .content .item:hover .text .more .button .iconfont {
    transform: rotate(0);
    color: #fff;
}

.news .wrap .content .item:hover .text .more .button:after {
    opacity: 1;
}

.news .wrap .bigger {
    margin: 70px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news .wrap .bigger p {
    font-size: 16px;
    font-family: OPPOSans;
    font-weight: 500;
    color: #333333;
    margin: 0 14px 0 0;
}

.news .wrap .bigger .button {
    width: 32px;
    height: 32px;
    background: rgba(51, 51, 51, 0);
    border: 1px solid #333333;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
}

.news .wrap .bigger .button .iconfont {
    color: #333333;
    font-size: 20px;
    transform: rotate(-45deg);
    transition: 0.6s;
}

.news .wrap .bigger .button:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(21deg, #0A7DDA, #8CE5FB);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: 0.6s;
}

.news .wrap .bigger:hover .button {
    border: 1px solid transparent;
}

.news .wrap .bigger:hover .button .iconfont {
    transform: rotate(0);
    color: #fff;
}

.news .wrap .bigger:hover .button:after {
    opacity: 1;
}

.page .wrap {
    width: 1100px;
    margin: 248px auto 100px;
}

.page .wrap .title {
    margin: 0 0 40px 0;
}

.page .wrap .title .headline {
    font-size: 36px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #333333;
    text-align: center;
    margin: 0 0 59px 0;
}

.page .wrap .title .line {
    height: 1px;
    background: #EDEDED;
    margin: 0 0 41px 0;
}

.page .wrap .title .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page .wrap .title .flex .time {
    display: flex;
    align-items: center;
}

.page .wrap .title .flex .time img {
    margin-top: -2px;
}

.page .wrap .title .flex .time p {
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 200;
    color: #666666;
    margin: 0 0 0 12px;
}

.page .wrap .title .flex .share {
    display: flex;
    align-items: center;
}

.page .wrap .title .flex .share p {
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
}

.page .wrap .title .flex .share a {
    width: 40px;
    height: 40px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.7s;
    position: relative;
    z-index: 1;
}

.page .wrap .title .flex .share a .iconfont {
    color: #808080;
    font-size: 20px;
    transition: 0.7s;
}

.page .wrap .title .flex .share a:not(:first-child) {
    margin: 0 0 0 12px;
}

.page .wrap .title .flex .share a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: linear-gradient(21deg, #0A7DDA, #8CE5FB);
    z-index: -1;
    opacity: 0;
    transition: 0.7s;
}

.page .wrap .title .flex .share a:hover {
    border: 1px solid transparent;
}

.page .wrap .title .flex .share a:hover .iconfont {
    color: #fff;
}

.page .wrap .title .flex .share a:hover:after {
    opacity: 1;
}

.page .wrap .content p {
    font-size: 20px;
    font-family: Source Han Sans CN;
    font-weight: 200;
    color: #666666;
    line-height: 42px;
}

.page .wrap .content a {
    width: 200px;
    height: 64px;
    background: rgba(237, 237, 237, 0);
    border: 2px solid #0A7DDA;
    border-radius: 32px;
    margin: 68px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #0A7DDA;
    transition: 0.6s;
    position: relative;
    z-index: 1;
}

.page .wrap .content a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 32px;
    background: linear-gradient(21deg, #0A7DDA, #8CE5FB);
    z-index: -1;
    opacity: 0;
    transition: 0.6s;
}

.page .wrap .content a:hover {
    border: 2px solid transparent;
    color: #fff;
}

.page .wrap .content a:hover:after {
    opacity: 1;
}

.page2 {
    background: #FAFAFA;
}

.page2 .wrap {
    width: 1516px;
    max-width: 90%;
    margin: 76px auto 100px;
}

.page2 .wrap .title {
    font-size: 42px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #333333;
    margin: 0 0 59px 0;
    display: block;
    text-align: center;
}

.page2 .wrap .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 38px;
}

.page2 .wrap .content .item {
    width: 100%;
}

.page2 .wrap .content .item:not(:nth-child(-n + 6)) {
    display: none;
}

.page2 .wrap .content .item .images {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.page2 .wrap .content .item .images img {
    width: 100%;
    height: 100%;
    transition: 2s;
}

.page2 .wrap .content .item .text {
    padding: 30px 37px 25px 30px;
    border: 1px solid #ededed;
    border-top: 1px solid transparent;
}

.page2 .wrap .content .item .text .pick {
    margin: 0 0 144px 0;
}

.page2 .wrap .content .item .text .pick span {
    font-size: 24px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #333333;
    display: block;
    margin: 0 0 29px 0;
    transition: 0.6s;
}

.page2 .wrap .content .item .text .pick p {
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 200;
    color: #666666;
    line-height: 24px;
    max-width: 100%;
}

.page2 .wrap .content .item .text .more {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page2 .wrap .content .item .text .more .time {
    display: flex;
    align-items: center;
}

.page2 .wrap .content .item .text .more .time p {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 200;
    color: #666666;
    margin: 0 0 0 12px;
}

.page2 .wrap .content .item .text .more .button {
    width: 32px;
    height: 32px;
    background: rgba(51, 51, 51, 0);
    border: 1px solid #333333;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
}

.page2 .wrap .content .item .text .more .button .iconfont {
    color: #333333;
    font-size: 20px;
    transform: rotate(-45deg);
    transition: 0.6s;
}

.page2 .wrap .content .item .text .more .button:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(21deg, #0A7DDA, #8CE5FB);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: 0.6s;
}

.page2 .wrap .content .item:hover .images img {
    transform: scale(1.1);
}

.page2 .wrap .content .item:hover .text .pick span {
    color: #0A7DDA;
}

.page2 .wrap .content .item:hover .text .more .button {
    border: 1px solid transparent;
}

.page2 .wrap .content .item:hover .text .more .button .iconfont {
    transform: rotate(0);
    color: #fff;
}

.page2 .wrap .content .item:hover .text .more .button:after {
    opacity: 1;
}

/*# sourceMappingURL=news.css.map */
@media screen and (max-width: 1700px) {
    .news .wrap {
        width: 90%;
    }

    .news .wrap .content .item .images {
        height: auto;
    }

    .news .wrap .content .item .text .pick span, .news .wrap .content .item .text .pick p {
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news .wrap .content .item .text .pick {
        margin: 0 0 100px 0;
    }

    .page .wrap .title .headline {
        font-size: 32px;
    }

    .page .wrap .content p {
        font-size: 18px;
    }
}

@media screen and (max-width: 1365px) {
    .news .wrap .content {
        grid-template-columns: repeat(2, 1fr);
    }

    .news .wrap .content .item .text .pick span {
        font-size: 20px;
    }

    .news .wrap .content .item .text .pick p {
        font-size: 16px;
    }

    .news .wrap .content .item .text .pick {
        margin: 0 0 70px 0;
    }

    .page .wrap {
        width: 90%;
    }

    .page .wrap .title .headline {
        font-size: 24px;
    }

    .page .wrap .content p img {
        display: block;
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    .news .wrap .content .item .text .pick span {
        font-size: 18px;
    }

    .news .wrap .content .item .text .more .button .iconfont {
        font-size: 16px;
    }

    .news .wrap .content .item .text .more .button {
        width: 25px;
        height: 25px;
    }

    .news .wrap .content {
        grid-template-columns: repeat(1, 1fr);
    }

    .news .wrap .title {
        margin: 0 0 50px 0;
    }

    .news .wrap {
        margin: 40px auto 60px;
    }

    .news .wrap .title a {
        width: 150px;
        height: 54px;
    }

    .page .wrap {
        margin: 150px auto 60px;
    }

    .page .wrap .title .headline {
        margin: 0 0 39px 0;
    }

    .page .wrap .title .flex .time p {
        font-size: 16px;
    }

    .page .wrap .content a {
        width: 160px;
        height: 54px;
        font-size: 16px;
        margin: 40px auto 0;
    }
}
