﻿/* 新闻中心 */
.news{
    background: #fff;
}
/* 导航路径 */
.news .address{
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 10px 0;
    margin-bottom: 20px;
}
.news .address a{
    margin-left: 10px;
    color: #999999;
    font-size: 14px;
}
@media (max-width:450px){
    .news .address a {
        margin-left: 5px;
        color: #999999;
        font-size: 12px;
    }
}

/* 二级导航 */
.news .navigation{
    background: white;
}
.news .navigation{
    border-bottom: 1px solid #dddddd;
    width: 80%;
    margin: 0 auto;
}
.news .navigation ul{
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
}
.news .navigation ul li{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 46px;
}
.news .navigation ul li a{
    width: 100%;
    text-align: center;
    color: #666666;
    font-size: 15px;
    line-height: 46px;
    display: block;
    text-decoration: none;
}
.news .navigation ul li .imgicon{
    margin: 0 auto;
    z-index: 10;
    opacity: 0;
}
.news .navigation ul li:hover a{
    color: #fff;
    background: #e9c42b;
}
.news .navigation ul li:hover .imgicon{
    opacity: 1;
}
.news .navigation ul > .active a{
    color: #fff;
    background: #e9c42b;
}
.news .navigation ul > .active img{
    opacity: 1;
}
/* 新闻中心内容 */
.news .content{
    width: 80%;
    margin: 0 auto;
    padding: 60px 0;
}
.news .content .boxlist{
    display: flex;
    /*justify-content: space-between;*/
    flex-wrap: wrap;
}
.news .content .boxlist .list{
    width: 23%;
    margin-bottom: 40px;
    margin-left: 2.66%;
}
.news .content .boxlist .list:nth-child(1){
    margin-left:0;
}
.news .content .boxlist .list:nth-child(5){
    margin-left:0;
}
.news .content .boxlist .list .img{
    width: 100%;
    position: relative;
}
.news .content .boxlist .list .img img{
    width: 100%;
    position: relative;
}
.news .content .boxlist .list .theme{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5px;
    transition: all .3s linear;
}
.news .content .boxlist .list:hover .theme{
    background: #3c4951;
}

.news .content .boxlist .list:hover .theme .left a span{
    color: #e9c42b;
}
.news .content .boxlist .list:hover .theme .left a p{
    color: #dddddd;
}
.news .content .boxlist .list .theme .left{
    width: 25%;
}
.news .content .boxlist .list .theme .right{
    width: 75%;
}
.news .content .boxlist .list .theme .left a{
    display: block;
    text-align: center;
    margin-top: 10px;
}
.news .content .boxlist .list .theme .left a span{
    font-size: 44px;
    color: #666666;
    line-height: 22px;
}
.news .content .boxlist .list .theme .left a p{
    font-size: 14px;
    color: #999999;
    line-height: 22px;
    margin-top: 10px;
}
.news .content .boxlist .list .theme .right .title a{
    font-size: 18px;
    color: #333333;
    font-weight: 500;
    line-height: 30px;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.news .content .boxlist .list:hover .theme .right .title a{
    color: #e9c42b;
}
.news .content .boxlist .list .theme .right .info{
    margin-top: 10px;
}
.news .content .boxlist .list:hover .theme .right .info a{
    color: #dedede;
}
.news .content .boxlist .list .theme .right .info a{
    font-size: 12px;
    color: #666666;
    line-height: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
@media (max-width:1400px){
    .news .content .boxlist .list .theme .right .info{
        margin-top: 5px;
    }
}
@media (max-width:1200px){
    .news .content .boxlist .list{
        width: 48%;
    }
    .news .content .boxlist{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .news .content .boxlist .list{
        margin-left:0;
    }
}
@media (max-width:550px){
    .news .address{
        width: 95%;
    }
    .news .address{
        width: 95%;
    }
    .news .navigation{
        width: 95%;
    }
    .news .content{
        width: 95%;
        padding: 30px 0 0px;
    }
    .news .content .boxlist .list .theme .right .title a{
        font-size: 14px;
    }
    .news .content .boxlist .list .theme{
        padding: 10px 0;
    }
    .news .content .boxlist .list .theme .left a span{
        font-size: 36px;
    }
    .news .content .boxlist .list .theme .left a p{
        font-size: 12px;
    }
    .news .content .boxlist .list .theme .right .info{
        margin-top: 0;
    }
}
@media (max-width:450px){
    .news .content .boxlist .list{
        width: 100%;
    }
}
/* 底部页码 */
.news .pagination{
    display: flex;
    justify-content: center;
    margin-bottom: 140px;
}
.news .pagination li a{
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    background: #fff;
    margin-left: 15px;
    color: #595854;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid #e6ebef;
}
.news .pagination li a:hover{
    background: #3c4951;
    color: white;
}
.news .pagination > .active a{
    background: #3c4951;
    color: white;
}
@media (max-width:550px) {
    .news .pagination li a{
        padding: 5px 5px;
        margin-left: 5px;
    }
    .news .pagination{
        margin-bottom: 60px;
    }
}
@media (max-width:450px) {
    .news .pagination li a{
        font-size: 12px;
    }
}