@charset "utf-8";

.head-page .news_item span{
    color: #036EB8;
}
.head-page .news_item>a:after {
    transform: scale(1);
    opacity: 1;
}

.search_result_num span {
    font-weight: 600;
    color: #2E6FB4;
    padding: 0 5px;
}

.news_lists .list {
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0px 0px 9px 1px rgba(0,140,0,0.15);
    width: 23.5%;
    margin-right: 2%;
}
.news_lists .list:nth-child(4n) {
    margin-right: 0;
}
.news_lists .list .img{
    /* height: 303px; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.news_lists .list::after {
    content: "";
    display: block;
    height: 3px;
    background: #036EB8;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .4s;
    width: 0;
    z-index: -1;
}
.news_lists .list .img img{
    transition: all .4s;
    max-height: 100%;
}
.news_lists .list .texts {
    padding: 30px 20px;
    box-sizing: border-box;
}
.news_lists .list .time{
    margin-bottom: 10px;
}
.news_lists .list .tit {
    transition: all .4s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-weight: 600;
    /* height: 55px; */
}
.news_lists .list .tit span {
    background: yellow;
    padding: 0 2px;
}
.news_lists .list .desc {
    margin: 14px 0 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 54px;
}
.detail_btn{
    display: flex;
    align-items: center;
    color: #036EB8;
    margin-top: 18px;
}
.detail_btn::after{
    content: "";
    display: block;
    width: 27px;
    height: 8px;
    background: url(../img/detail_btn.png) no-repeat center/cover;
    margin-left: 15px;
}
.news_lists .list:hover img {
    transform: scale(1.05);
}
.news_lists .list:hover::after {
    width: 100%;
}
.news_lists .list:hover .tit {
    color: #036EB8;
}
.news_detail_pg{
    background: #f5f7f8;
}
.news_detail_pg .page_lists{
    background: #FFFFFF;
    box-shadow: 0px 0px 7px 0px rgba(3,12,26,0.04);
    width: 72%;
    padding: 40px 55px;
    box-sizing: border-box;
}
.news_detail .page_lists .title  {
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 27px;
    box-sizing: border-box;
    margin-bottom: 35px;
}
.news_detail .page_lists .title  .desc {
    margin-top: 20px;
}
.page_lists .con img{
    display: inline-block;
}
.page_lists .con p{
    margin-bottom: 16px;
}
.page_lists .con p:last-child{
    margin-bottom: 0;
}
.newsDe-page {
    border-top: 1px solid #EEEEEE;
    padding-top: 40px;
    box-sizing: border-box;
    margin-top: 60px;
}
.newsDe_list {
    width: 175px;
    height: 55px;
    border: 1px solid #EEEEEE;
    margin-left: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    z-index: 1;
}
.newsDe_list::before {
    content: "";
    display: block;
    width: 22px;
    height: 20px;
    background: url(../img/newsDe_list.png) no-repeat center/cover;
    margin-right: 15px;
    transition: all .4s;
}
.newsDe_list::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #036EB8;
    transition: all .3s;
    height: 100%;
    width: 0;
    display: block;
}
.newsDe_iteml {
    width: calc(100% - 175px);
    padding-right: 5%;
    box-sizing: border-box;
}
.newsDe_iteml span {
    width: 70px;
    transition: all .4s;
}
.newsDe_iteml .item {
    margin-bottom: 12px;
    transition: all .4s;
}
.newsDe_iteml .item:last-child {
    margin-bottom: 0;
}
.newsDe_iteml .descc {
    width: calc(100% - 70px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: all .4s;
}
.newsDe_iteml .item:hover .descc {
    color: #036EB8;
}
.nav_lists {
    max-width: 414px;
    width: 25%;
}
.nav_lists .nav_texts {
    margin-top: 8px;
}
.nav_lists .item {
    display: block;
    position: relative;
    transition: all .4s;
    border-bottom: 1px solid #CCCCCC;
    padding: 20px 0 15px;
    box-sizing: border-box;
}
.nav_lists .time{
    display: flex;
    align-items: center;
}
.nav_lists .time::before {
    content: "";
    display: block;
    width: 21px;
    height: 21px;
    background: url(../img/nav_lists_next.png) no-repeat center/cover;
    margin-right: 15px;
}
.nav_lists .tit{
    margin-top: 14px;
    transition: all .4s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nav_lists .item:hover {
    transform: translateX(5px);
}
.nav_lists .item:hover .tit{
    color: #036EB8;
}
@media only screen and (min-width: 960px) {
    .news_lists .list:hover img{
        transform: scale(1.08);
    }
    .news_lists .list:hover::after{
        width: 100%;
    }
    .news_lists .list:hover .tit{
        color: #036EB8;
    }
    .newsDe_list:hover::before {
        background: url(../img/newsDe_hlist.png) no-repeat center/cover;
    }
    .newsDe_list:hover::after {
        width: 100%;
    }
    .newsDe_list:hover {
        color: #fff;
    }
}
@media only screen and (max-width: 1280px) {
    .news_lists .list .texts {
        padding: 25px 20px;
        box-sizing: border-box;
    }
}
@media only screen and (max-width: 1200px) {
    .newsDe-page{
        margin-top: 60px;
    }
    .newsDe_list{
        width: 152px;
        height: 50px;
    }
    .news_detail_pg .page_lists {
        width: 100%;
        padding: 40px 35px;
    }
    .page_lists .con {
        text-indent: 0;
    }
    .nav_lists {
        max-width: 100%;
        width: 100%;
        margin-top: 30px;
    }
}
@media only screen and (max-width: 1024px) {
    .nav_lists{
        display: none;
    }
    .news .page_lists {
        width: 100%;
    }
    .news_lists .list{
        width: 32%;
    }
    .news_lists .list:nth-child(4n) {
        margin-right: 2%;
    }
    .news_lists .list:nth-child(3n) {
        margin-right: 0;
    }
}
@media only screen and (max-width: 960px) {
    .newsDe_list {
        width: 128px;
        height: 45px;
    }
    .newsDe_list::before{
        margin-right: 10px;
    }
}
@media only screen and (max-width: 768px) {
    .news_lists .list {
        margin-bottom: 20px;
        width: 100%;
        margin-right: 0;
    }
    .news_lists .list:last-child{
        margin-bottom: 0;
    }
    .news_lists .img {
        width: 100%;
    }
    .news_lists .list .texts {
        padding: 20px;
    }
    .news_lists .list .time {
        margin-bottom: 5px;
    }
    .detail_btn{
        margin-top: 15px;
    }
    .newsDe-page {
        margin-top: 30px;
        padding-top: 20px;
    }
    .newsDe_iteml{
        width: 100%;
        padding-right: 0;
    }
    .newsDe_list{
        margin: 20px auto 0;
    }
    .news_detail .page_lists .title {
        margin-bottom: 20px;
        padding-bottom: 15px;
        text-align: center;
    }
    .news_detail .page_lists .title .desc {
        margin-top: 6px;
    }
    .page_lists .con p {
        margin-bottom: 10px;
    }
    .news_detail_pg .page_lists {
        width: 100%;
        padding: 25px 15px;
    }
}