.news {
    margin: 60px 0 80px;
}

.news .news-items {
    margin: 80px 0 0;
    position: relative;
}

.news .news-items::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #eee;
    content: '';
    margin-top: -40px;
}

.news .news-items:first-child {
    margin-top: 0px;
}

.news .news-items:first-child::before {
    display: none;
}

.news .news-items a {
    display: block;
    float: left;
    width: 100%;
}

.news .news-image {
    float: left;
    width: 33%;
    overflow: hidden;
}

.news .news-image img {
    transition: all 0.3s;
}

.news .news-article {
    float: left;
    width: 67%;
    background-position: center;
    height: 261px;
    padding: 30px 50px;
}

.news .news-article h3 {
    font-size: 24px;
    margin: 0;
    line-height: 36px;
    color: #333;
}

.news .news-article .news-data {
    margin: 10px 0;
}

.news .news-article .news-data p {
    font-size: 16px;
    color: #666;
    line-height: 28px;
    float: left;
    padding-left: 25px;
    margin-left: 44px;
    background-image: url(../img/icon_30.png);
    background-position: left center;
    background-repeat: no-repeat;
}

.news .news-article .news-data p:first-child {
    background-image: url(../img/icon_29.png);
    margin-left: 0;
}

.news .news-article span {
    font-size: 18px;
    line-height: 28px;
    color: #333;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news .news-article i {
    display: block;
    width: 193px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #BC2121;
    color: #BC2121;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    font-style: normal;
    margin-top: 20px;
    transition: all 0.3s;
}

.news .news-items:hover {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.news .news-items:hover img {
    transform: scale(1.1);
}

.news .news-items:hover .news-article {
    background-image: url(../img/icon_28.png);
}

.news .news-items:hover h3 {
    color: #BC2121;
}

.news .news-items:hover i {
    background-color: #BC2121;
    color: #fff;
}

.news-list {
    margin: 60px 0;
}

.news-list .news-list-items {
    border: 1px solid #EEEEEE;
    margin-bottom: 40px;
}

.news-list .news-list-body {
    padding: 16px 20px 28px;
    border-bottom: 1px solid #eee;
}

.news-list .news-list-items h3 {
    font-size: 18px;
    line-height: 27px;
    color: #333;
    margin: 0;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    color: #333;
    font-weight: 700;
    text-overflow: ellipsis;
}

.news-list .news-list-items span {
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 21px;
    color: #BC2121;
    margin: 8px 0 12px;
}

.news-list .news-list-items p {
    font-size: 15px;
    line-height: 22.5px;
    color: #999;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    word-break: break-all;
    -webkit-box-orient: vertical;
}

.news-list .news-list-items i {
    display: block;
    width: 193px;
    height: 40px;
    line-height: 40px;
    font-style: normal;
    text-align: center;
    margin: 20px auto;
    border: 1px solid #BC2121;
    font-size: 16px;
    box-sizing: border-box;
    color: #BC2121;
    transition: all 0.3s;
}

.news-list .news-list-img {
    overflow: hidden;
}

.news-list .news-list-img img {
    transition: all 0.5s;
}

.news-list .news-list-items:hover {
    background-image: url(../img/icon_28.png);
    background-position: center;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.news-list .news-list-items:hover h3 {
    color: #BC2121;
}

.news-list .news-list-items:hover i {
    background-color: #BC2121;
    color: #fff;
}

.news-list .news-list-items:hover img {
    transform: scale(1.1);
}

.news-type{
    padding-bottom: 20px;
}

.news-type ul{
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-type li{
    display: inline-block;
    margin: 0 20px;
}

.news-type li a{
    padding: 8px 60px;
    border: 1px solid #CACACA;
    background-color: #FDFDFD;
    display: block;
    font-size: 18px;
    line-height: 27px;
    color: #666;
}

.news-type li a:hover,
.news-type li a.active{
    background-color: #BC2121;
    border-color: #BC2121;
    color: #fff;
}




@media (max-width: 992px) {
    .news .news-items {
        margin: 3rem 0 0;
        border: 1px solid #eee;
    }

    .news .news-image {
        float: none;
        width: 100%;

    }

    .news .news-article {
        float: none;
        width: 100%;
        padding: 1.5rem;
        height: auto;
    }

    .news .news-items::before {
        display: none;
    }

    .news .news-article h3 {
        font-size: 1.6rem;
        line-height: 1.6;
        text-overflow: -o-ellipsis-lastline;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .news .news-article .news-data {
        margin: 0.8rem 0;
    }

    .news .news-article span {
        font-size: 1.4rem;
        line-height: 1.6;
        text-overflow: -o-ellipsis-lastline;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .news .news-article .news-data p{
        font-size: 1.4rem;
        line-height: 1.6;
        padding-left: 2.5rem;
        margin: 0 1.5rem;
    }
    
    .news .news-article i {
        display: none;
    }
    
    .news-list{
        margin: 0 0 5rem;
    }
    
    .news-list .news-list-items i{
        display: none;
    }
    
    .news-list .news-list-body{
        border: none;
        padding: 1.5rem;
    }
    
    .news-list .news-list-items{
        margin: 3rem 0 0;
    }
    
    .news-list .news-list-items h3{
        font-size: 1.6rem;
        line-height: 1.6;
    }
    
    .news-list .news-list-items span{
        font-size: 1.4rem;
        line-height: 1.6;
        margin: 0.5rem 0;
    }
    
    .news-list .news-list-items p{
        font-size: 1.4rem;
        line-height: 1.6;
    }
    
    .news{
        margin: 3rem 0 5rem;
    }
    
    .news-type{
        padding-bottom: 2rem;
    }
    
    .news-type ul{
        padding-bottom: 2rem;
    }
    
    .news-type li{
        margin: 0 1rem;
    }
    
    .news-type li a{
        padding: 0.4rem 1.2rem;
        font-size: 1.4rem;
    }
}

@media (max-width: 1222px) and (min-width: 992px){
    .news .news-article{
        padding: 25px 30px;
        height: auto;
    }
    
    .news .news-article i{
        display: none;
    }
}