.banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.banner .banner_bg {
    width: 100%;
}
.banner .banner_bg2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 27%;
    -webkit-animation: banner 10s infinite;
    animation: banner 10s infinite;
}
@keyframes banner {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    30% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    55% {
        width: 50%;
        -webkit-transform: scale(1.05) translateX(10px);
        transform: scale(1.05) translateX(10px);
    }
    80% {
        -webkit-transform: scale(1.05) translateX(-10px);
        transform: scale(1.05) translateX(-10px);
    }
    100% {
        -webkit-transform: translateX(0px) scale(1);
        transform: translateX(0px) scale(1);
    }
}
.banner .banner-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
.banner .banner-info .banner-tit {
    font-size: 72px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 10px;
}
.banner .banner-info .banner-text {
    font-size: 12px;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.banner .banner-info .banner-cricle {
    position: absolute;
    bottom: -13px;
    left: 50%;
    margin-left: -10px;
    z-index: -1;
}
.banner .banner-cricle2 {
    position: absolute;
    left: 50%;
    bottom: 20px;
    opacity: 0.6;
}
.banner .banner-cricle2 i {
    font-size: 30px;
    color: #fff;
    margin-left: 1px;
}
.banner .banner-cricle2::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: -20px;
    width: 2px;
    height: 30px;
    background: #fff;
    -webkit-animation: circle 6s infinite;
    animation: circle 6s infinite;
}
@keyframes circle {
    50% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@media only all and (max-width: 1366px) {
    .banner .banner-info .banner-tit {
        font-size: 60px;
    }
    .banner .banner-info .banner-cricle{
        margin-left: -25px;
    }
}
@media only all and (max-width: 1024px) {
    .banner .banner-info .banner-tit {
        font-size: 50px;
    }
    .banner .banner-info .banner-cricle {
        margin-left: -45px;
    }
}
@media only all and (max-width: 768px) {
    .banner .banner_bg {
        height: 300px;
    }
    .banner .banner_bg2 {
        width: 33%;
    }
}
@media only all and (max-width:414px) {
    .banner .banner_bg {
        height: 200px;
    }
    .banner .banner-info .banner-tit {
        font-size: 30px
    }
    .banner .banner-info .banner-text {
        letter-spacing: 2px;
    }
    .banner .banner_bg2 {
        width: 50%;
    }
    .banner .banner-info .banner-cricle {
        margin-left: -62px;
        width: 28%;
        bottom: -10px;
    }
    .banner .banner-cricle2{
        bottom: 10px;
    }
    .banner .banner-cricle2::after{
        height: 25px;
        top: -10px;
    }
    .banner .banner-cricle2 img{
        width: 20px;
    }
    @keyframes banner {
        0% {
            -webkit-transform: scale(1);
            transform: scale(1);
        }
        30% {
            -webkit-transform: scale(1.12);
            transform: scale(1.12);
        }
        55% {
            width: 50%;
            -webkit-transform: scale(1.12) translateX(10px);
            transform: scale(1.12) translateX(10px);
        }
        80% {
            -webkit-transform: scale(1.12) translateX(-10px);
            transform: scale(1.12) translateX(-10px);
        }
        100% {
            -webkit-transform: translateX(0px) scale(1);
            transform: translateX(0px) scale(1);
        }
    }
}
@media only all and (max-width:320px) {
    .banner .banner_bg2 {
        width: 56%;
    }
    .banner .banner_bg {
        height: 180px;
    }
    .banner .banner-info .banner-tit {
        padding-bottom: 5px;
    }
    @keyframes banner {
        0% {
            -webkit-transform: scale(1);
            transform: scale(1);
        }
        30% {
            -webkit-transform: scale(1.12);
            transform: scale(1.12);
        }
        55% {
            width: 55%;
            -webkit-transform: scale(1.12) translateX(10px);
            transform: scale(1.12) translateX(10px);
        }
        80% {
            -webkit-transform: scale(1.12) translateX(-10px);
            transform: scale(1.12) translateX(-10px);
        }
        100% {
            -webkit-transform: translateX(0px) scale(1);
            transform: translateX(0px) scale(1);
        }
    }
}

.news_tab{
    width: 100%;
    margin-top: 100px;
}
.news_tab .tab-tit{
    border-bottom: 2px solid #ccc;
    font-size: 0;
}
.news_tab .tab-tit .item{
    display: inline-block;
    width: 33%;
    text-align: center;
    position: relative;
    padding: 20px 0px;
    cursor: pointer;
}
.news_tab .tab-tit .item::after {
    width: 100%;
    height:2px;
    background: transparent;
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: all 0.4s;
}
.news_tab .tab-tit .item .item_img{
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
}
.news_tab .tab-tit .item .item_img img{
    width: 35px;
    height: 35px;
}
.news_tab .tab-tit .item .item_img img:last-child{
    display: none;
}
.news_tab .tab-tit .item span{
    font-size: 20px;
    color: #999;
}
.news_tab .tab-tit .item.active::after{
    background: #2765b0;
}
.news_tab .tab-tit .item.active .item_img img:last-child{
    display: block;
}
.news_tab .tab-tit .item.active .item_img img:first-child{
    display: none;
}
.news_tab .tab-tit .item.active span{
    color: #2765b0;
}
.news_tab .tab-con{
    margin-top:50px;
}
.news_tab .tab-con .item{
    display: none;
}
.news_tab .tab-con .item.active{
    display: block;
}
.news_tab .tab-con .swiper_news .swiper-slide{
    opacity: 0.3;
    width:40%;
}
.news_tab .tab-con .swiper_news .swiper-slide .swiper-info{
    display: none;
}
.news_tab .tab-con .swiper_news .swiper-slide.swiper-slide-active{
    opacity: 1;
}
.news_tab .tab-con .swiper_news .swiper-slide.swiper-slide-active .swiper-info{
    display: block;
}
.news_tab .tab-con .swiper_news .swiper-slide img{
    width: 100%;
}
.news_tab .tab-con .swiper_news .swiper-info{
    margin-top: 20px;
    min-height: 60px;
}
.news_tab .tab-con .swiper_news .swiper-slide .swiper-text{
    font-size: 14px;
    color: #999;
    vertical-align: top;
    float: left;
}
.news_tab .tab-con .swiper_news .swiper-slide .swiper-title{
    font-size: 22px;
    color: #333;
    float: left;
    max-width:57%;
    margin:0px 40px;
    vertical-align: top;
}
.news_tab .tab-con .swiper_news .swiper-slide .swiperbtn{
    width: 110px;
    height: 40px;
    line-height: 40px;
    float: right;
}

.s_sosuo {
    width:25%;
    position: relative;
    border-radius: 50px;
    background-color: #f2f2f2;
    margin-bottom: 50px;
    display: inline-block;
}
.s_sosuo input {
    padding: 10px 65px 10px 20px;
    border-radius: 20px;
    width: 100%;
    line-height: 39px;
    display: block;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 16px;
}
.s_search {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    width: 59px;
    height: 59px;
    background-color: #dd3d3a;
    border-radius: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.s_search i {
    display: inline-block;
    width: 18px;
    height: 17px;
    background: url(/assets/iamges/news/searchpng.png) no-repeat center center;
    background-size: cover;
}
.date_day{
    margin-bottom: 50px;
}
.date_day .mt{
    height: 50px;
    line-height: 50px;
}



.news {
    width: 100%;
    margin: 100px 0px;
}
.news h3 {
    font-size: 40px;
    color: #333;
}
.news .news-subtit {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}
.news .newslist{
    border-top: 1px solid #ccc;
}
.news .newslist .newsitem {
    display: inline-block;
    padding: 20px 0px;
    width: 29%;
    margin-right: 6%;
    border-bottom: 2px solid #f2f2f2;
}
.news .newslist .newsitem:nth-child(3n) {
    margin-right: 0;
}
.news .newslist .newsitem:nth-child(n+4) {
    margin-top: 20px;
}
.news .newslist .newsitem .item-time {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}
.news .newslist .newsitem .item-tit {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 66px;
}
.news .newslist .newsitem .item-text {
    font-size: 14px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news .newslist .newsitem span {
    color: #666;
    font-size: 20px;
}
.news .newslist .newsitem:hover {
    border-bottom-color: #2765b0;
}
.news .newslist .newsitem:hover a {
    text-decoration: none;
}
.news .newslist .newsitem:hover .item-tit {
    color: #2765b0;
}
.news .newslist .newsitem:hover span {
    color: #2765b0;
}
.news .newsbtn {
    width: 240px;
    margin: 0 auto;
    margin-top: 40px; 
}
@media only all and (max-width: 1600px) {
    .news_tab .tab-con .swiper_news .swiper-slide .swiper-title{
        font-size: 20px;
        margin: 0px 30px;
    }
}
@media only all and (max-width: 1440px) {
    .news_tab .tab-con .swiper_news .swiper-slide .swiper-title {
        font-size: 18px;
    }
}
@media only all and (max-width: 1366px) {
    .news_tab .tab-con .swiper_news .swiper-slide .swiper-title {
        max-width: 50%;
    }
}
@media only all and (max-width: 1280px) {
    .news .newslist .newsitem .item-tit {
        font-size: 20px;
        min-height: 60px;
    }
}
@media only all and (max-width: 1024px){
    .news_tab .tab-con .swiper_news .swiper-slide .swiper-title{
        max-width: 45%;
        font-size: 16px;
    }
    .news_tab .tab-con .swiper_news .swiper-slide .swiperbtn{
        font-size: 12px;
        width:90px;
    }
    .news_tab .tab-tit{
        border-bottom: 0px;
        position: relative;
    }
    .news_tab .tab-tit::after{
        content: "";
        display: block;
        width: 96%;
        height: 2px;
        background: #ccc;
        position: absolute;
        left: 20px;
        bottom: -2px;
        z-index: -1;
    }
    .s_sosuo {
        width: 50%;
    }
}
@media only all and (max-width: 768px) {
    .news_tab .tab-con .swiper_news .swiper-slide .swiper-title {
        max-width: 40%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .news .newslist .newsitem{
        width: 47%;
        margin-right: 3%;
    }
    .news .newslist .newsitem:nth-child(2n){
        margin-right: 0;
    }
    .news .newslist .newsitem:nth-child(3n) {
        margin-right: 2%;
    }
}
@media only all and (max-width: 414px) {
    .news .newslist .newsitem .item-tit{
        min-height: auto;
    }
    .news_tab .tab-con .swiper_news .swiper-slide .swiper-title {
        max-width: 45%;
    }
    .news_tab .tab-con .swiper_news .swiper-slide.swiper-slide-active .swiper-info{
        padding: 0px 10px;
    }
    .news_tab .tab-tit .item span{
        font-size: 16px;
    }
    .news_tab .tab-tit .item{
        width: 100%;
    }
    .news .newslist .newsitem{
        width: 100%;
        margin-right: 0;
    }
    .news_tab{
        margin-top: 60px;
    }
    .news{
        margin: 60px 0px;
    }
    .s_sosuo {
        width: 100%;
    }
    .s_sosuo input {
        padding: 10px 20px;
        line-height: 20px;
    }
    .s_search {
        padding: 0;
        width: 40px;
        height: 40px;
    }
    .c-datepicker-date-range-picker.c-datepicker-picker{
        width: 90% !important;
    }
    .c-datepicker-date-range-picker-panel__wrap{
        width: 100% !important;
    }
}
@media only all and (max-width: 375px){
    .news_tab .tab-con .swiper_news .swiper-slide .swiper-title {
        max-width: 70%;
        margin-bottom: 10px;
        margin-right: 0px;
    }
    .news_tab .tab-con .swiper_news .swiper-slide .swiperbtn{
        float: none;
        width: 110px;
    }
}
@media only all and (max-width: 320px){
    .news_tab .tab-con .swiper_news .swiper-slide .swiper-title {
        max-width: 66%;
    }
}