.news_banner{
    width: 100%;
     position: relative;
    overflow: hidden;
}

.boxes.inner {
    background: url(/images/top_bg.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 80px;
}
.newstop {
    margin-bottom: 3vw;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}
.newstop .comm_name {
    width: 100%;
    position: relative;
    padding-bottom: 1.5vw;
    padding-top: 1.5vw;
}
.newstop .newsNav {
     width: 25%;
    display: flex;
}

.newstop .newsNav a {
    display: block;
    padding: 10px 0px;
    font-size: 18px;
    position: relative;
    margin-left: 25px;
    -webkit-transition: all .5s;
}
.newstop .newsNav a:hover, .newstop .newsNav a.active {
    color: #004294;
}
.newstop .newsNav a:hover::after, .newstop .newsNav a.active::after {
    width: 20px;
    margin-left: -10px;
}
.newstop .newsNav a::after {
    width: 0px;
    height: 3px;
    position: absolute;
    left: 50%;
    margin-left: 0px;
    bottom: 0px;
    content: '';
    background: #004294;
    border-radius: 5px;
    -webkit-transition: all .5s;
}
.newstop .comm_name b {
    display: block;
    position: relative;
    font-size: 1.5vw;
}
.news_list {
    width: 100%;
    height: auto;
}

.news_list ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.news_list ul li {
    width: 48%;
    height: auto;
    position: relative;
    margin-right: 2%;
    margin-bottom: 3vw;
}

.news_list ul li:nth-child(2n) {
    margin-right: 0%;
}

.news_list ul li a {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.news_list ul li a .thum {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.news_list ul li a .info {
    width: 52%;
    height: auto;
    position: relative;
}

.news_list ul li a .date {
    color: #fff;
    width: 100%;
    height: auto;
    position: absolute;
    left: 0%;
    bottom: 0%;
    display: flex;
    justify-content: space-between;
    padding: 10px 35px 20px;
    align-items: center;
    font-family: BrownBlod;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.news_list ul li a .month {
    font-size: 90px;
    line-height: 1;
}

.news_list ul li a .year {
    text-align: right;
    font-size: 16px;
}

.news_list ul li a .year b {
    font-size: 24px;
}

.news_list ul li a .info .name {
    font-size: 1.2vw;
    font-weight: bold;
    line-height: 1.7;
    margin-bottom: 10px;
    background: linear-gradient(#2e2e2e, #2e2e2e) 0 100%/0 1px no-repeat;
    text-decoration: none;
    transition: background .4s cubic-bezier(.19, 1, .22, 1);
    display: inline;
}

.news_list ul li a:hover .pic {
    -webkit-transform: scale(1.1);
}

.news_list ul li a:hover .info .name {
    background-size: 100% 1px;
}

.news_list ul li a .info .icon {
    width: 50px;
    height: 30px;
    position: relative;
    font-size: 24px;
}

.news_list ul li a .info .icon i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
}

.news_list ul li a:hover .info .icon i {
    animation: hover-button-arrow-right .4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.news_list ul li a .info .des {
    width: 100%;
    line-height: 1.7;
    opacity: .6;
    margin-bottom: 15px;
    margin-top: 15px;
}
.news_list .multiLine {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.7;
}
@keyframes hover-button-arrow-right {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: translate(100%, -50%)
    }

    55% {
        opacity: 0;
        transform: translate(-100%, -50%)
    }

    100% {
        opacity: 1;
        transform: translate(0, -50%)
    }
}

/* 分页 */
.paging{width: 100%;font-size: 0;text-align: center;user-select: none;}
.paging-menu, .paging-menu a{display: inline-block;vertical-align: middle;}
.paging-menu a{width: 50px;height: 50px;line-height: 50px;box-shadow: 0px 0px 19.6px 0.4px rgba(85, 98, 151, 0.1);margin: 5px;font-size: 16px;color: #59545d;transition: all .4s ease;border-radius: 50%;background-color: #fff;}
.paging-menu a:hover, .paging-menu a.active, .paging a.on{
    /*border-color: #e03033;*/
    color: #fff;
    background: #184791;
  }
/*详情页*/
.news-cont {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.boxes.inner {
    background: #ffffff;
    padding-bottom: 80px;
}
.news-cont .news-l {
    width: 72%;
    position: relative;
    padding: 64px 0px 116px;
    padding-right: 110px;
}
.news-cont .news-l::before {
    content: "";
    position: absolute;
    right: 0px;
    height: 100%;
    width: 1px;
    background-color: #eeeeee;
    top: 0px;
}
.news-cont .news-l .title{
    font-size: 1.5vw;
    color: #000000;
    font-weight: bold;
}
.news-cont .news-l .news-data{
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-top: 10px;
    color: #444;
}
.news-cont .news-l .news-data .icon {
    width: 20px;
    height: 20px;
    position: relative;
    font-size: 20px;
    margin-right: 20px;
}
.news-cont .news-l .news-data .icon i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
}
.news-cont .news-content{
    font-size: 15px;
    margin-top: 40px;
    color: #0d0d0d;
    width: auto;
}
.news-cont .news-content img{
    max-width: 100%;
    object-fit: cover;
}
.news-cont .news-content p {
    line-height: 1.7vw;
}
.news-cont .news-r {
    width: 28%;
    padding: 64px 0px 116px;
    padding-left: 90px;
}
.news-cont .news-r .name{
    font-size: 24px;
    color: #333;
    padding-bottom: 20px;
    font-weight: bold;
}
.news-list .muen{margin-bottom: 20px;display: block;}
.news-list .muen .title{
    transition: all .4s ease;
    font-size: 16px;
    margin-top: 10px;
    line-height: 24px;}
.news-list .muen .data{
    font-size: 13px;
    margin-top: 2px;
    color: #555;
}
.news-btn{display: flex;justify-content: center; margin-top: 50px;margin-bottom: 50px;}
.news-btn a{font-size: 15px;height: 42px;width: 142px;display: flex;justify-content: center;align-items: center;border-radius: 30px;border: 1px solid #184791;}
.news-btn a .img{margin-right: 9px;transition: all .4s ease;}
.news-btn a:hover .img{transform: rotate(90deg);}
.news-fy a{height: 60px;padding: 0px 30px;background-color: #f4f4f4;border-radius: 6px;display: flex;align-items: center;margin-bottom: 10px;transition: all .4s ease;}
.news-fy a:last-child{margin-bottom: 0px;}
.news-fy a:hover{color: #184791;}

@media screen and (max-width: 1024px) {
    .news_banner {margin-top: 7vh;}
    .boxes.inner {position: relative;}
    .newstop .comm_name {width: 20%;}
    .newstop .comm_name b{font-size: 3vw;}
    .newstop .newsNav {width: 70%;}
    .newstop .newsNav a { font-size: 3vw; width: 33%;}
    .news_list ul li {width: 100%;}
    .news_list ul li a .info .name {font-size: 3vw;}
    .news_list ul li a .info .des {font-size: 2vw;}
    .paging-menu a {width:4vh;height: 4vh;line-height: 4vh;}
    .news-cont .news-r {display: none;}
    .news-cont .news-l {width: 100%;padding-right: 0;}
    .news-cont .news-l::before{width: 0;}
    .news-cont .news-l .title {font-size: 3vw;}
    .news-fy a{font-size: 3vw;}
    .news-cont .news-content p{ line-height: 3.5vh; font-size: 2vh;}
}