.banner-wrapper {
    width: 100%;
    height: 446px;
    background: url('../images/news-banner.jpg') no-repeat center;
    background-size: cover;
    overflow: hidden;
    min-width: 1200px;
}
.banner {
    width: 1200px;
    margin: 0 auto;
}
.banner .top {
    padding-top: 235px;
    font-size: 36px;
    color: #FFFFFF;
}
.banner .bottom {
    margin-top: 26px;
    font-size: 36px;
    color: #FFFFFF;
}
.news {
    width: 1200px;
    margin: 0 auto;
}
.news .news-header {
    height: 30px;
    line-height: 30px;
    margin-top: 92px;
    overflow: hidden;
}
.news .news-header .left {
    float: left;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
}
.news .news-header .right {
    float: right;
}
.news .news-header .right li {
    float: left;
    cursor: pointer;
}
.news .news-header .right li a {
    padding: 0 20px;
    font-size: 16px;
    color: #666666;
}
.news .news-header .right li a.active {
    color: #0696DA;
}
.news .list li {  
    overflow: hidden;
    margin: 93px 0;
}
.news .list li:first-child {
    margin-top: 70px;
}
.news .list li:last-child {
    margin-bottom: 144px;
}
.news .list li .left {
    width: 316px;
    height: 204px;
    float: left;
    overflow: hidden;
    position: relative;
}
.news .list li .left .player {
    width: 57px;
    height: 57px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}
.news .list li .left .img {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-object-fit: contain;
    object-fit: contain;
}
.news .list li .left .img:hover {
    -webkit-transform:scale(1.1); 
    -moz-transform:scale(1.1);
    transform:scale(1.1);
}
.news .list li .right {
    width: 884px;
    height: 204px;
    float: right;
    padding-left: 120px;
    padding-top: 50px;
    box-sizing: border-box;
    overflow: hidden;
}
.news .list li .right .content-left {
    width: 125px;
    float: left;
}
.news .list li .right .content-left .date {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
}
.news .list li .right .content-left .year {
    font-size: 20px;
    color: #333333;
    font-weight: 400;
    margin-top: 8px;
}
.news .list li .right .content-right {
    width: 639px;
    float: right;
    padding-left: 39px;
    box-sizing: border-box;
    position: relative;
}
.news .list li .right .content-right::after {
    position: absolute;
    width: 2px;
    height: 106px;
    background: #DFDFDF;
    top: 0;
    left: 0;
    content: '';
    transition: background .3s linear;
}
.news .list li .right .content-right .title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
    transition: color .3s linear;
}
.news .list li .right .content-right .description {
    font-size: 16px;
    color: #666666;
    line-height: 31px;
    overflow: hidden;
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 18px;
    transition: color .3s linear;
}
.news .list li .right .content-right:hover::after {
    background: #29AFFF;
}
.news .list li .right .content-right:hover .title,
.news .list li .right .content-right:hover .description {
    color: #29AFFF;
}
.news .list .no-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 38px 0 64px;
}
.news .list .no-data img {
    width: 240px;
    display: block;
}
.news .list .no-data .text {
    margin-top: 38px;
    color: #969799;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
}
.page {
    text-align: center;
    margin: 80px 0 58px;
}
.page a {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    padding: 0 15px;
    position: relative;
}
.page a.active {
    color: #0696DA;
}
.page a.active::after {
    position: absolute;
    width: 20%;
    height: 2px;
    background-color: #0696DA;
    left: 50%;
    bottom: 0;
    content: '';
    transform: translateX(-50%);
}
.news .list2 {
    margin-top: 70px;
    padding: 0 .2667rem;
    overflow: hidden;
}
.news .list2::after {
    content: '';
    clear: both;
}
.news .list2 li {
    float: left;
    width: 23.75%;
    height: 250px;
    background: #FFFFFF;
    box-shadow: 0 0 6px 0 rgba(204,204,204,0.3);
    border-radius: 6px;
    margin-right: 1.6666%;
    margin-bottom: 20px;
}
.news .list2 li:nth-child(4n+4) {
    margin-right: 0;
}
.news .list2 li .img-wrap {
    width: 100%;
    height: 160px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.news .list2 li .img-wrap .player {
    width: 57px;
    height: 57px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}
.news .list2 li .img-wrap .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.news .list2 li:hover .img-wrap .img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.news .list2 li .title {
    padding: 16px 14px 0;
    box-sizing: border-box;
    font-size: 16px;
    color: #333333;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.news .list2 li:hover .title {
    color: #0696DA;
}