*{
    box-sizing: border-box;
}
.text-hidden{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.two-hidden{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.flex{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}


html,body{
    height: 100%;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 95px;
    padding-top: 20px;
    
    z-index: 999;
    -webkit-transition: background .2s,padding .5s,height .5s;
    transition: background .2s,padding .5s,height .5s;
}
header.scroll{
    background: #fff;
    padding-top: 0;
    height: 75px;
    border-bottom: 1px solid #f2f2f2
}
.header-container{
    width: 93%;
    margin: 0 auto;
    padding-left: 5%;
}
.nav-btnbox{
    display: none;
}

.logo{
    height: 75px;
    line-height: 75px;
}

.code{
    position: relative;
    cursor: pointer;
}
.code-hover{
    display: none;
    position: absolute;
    right: 0;
    top: 36px;
}
.code:hover .code-hover{
    display: block;
}
.header-right{
    height: 75px;
}

ul{
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}
.nav-top>li{
    position: relative;
    padding: 20px 8px 18px;
    margin-right: 3vw;
    font-size: 14px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}
@media (max-width: 1400px) {
    .nav-top>li{
        margin-right: 2.5vw;
    }
}
@media (max-width: 1300px) {
    .nav-top>li{
        margin-right: 2vw;
    }
}
.nav-text{
    color: #fff;
}
header.scroll .nav-text{
    color: #333;
}
.nav-top>li:hover,
.nav-top>li.on{
    border-bottom: 2px solid ./js/;
}
.nav-top>li>a{
    color: #fff;
}
header.scroll .nav-top>li>a{
    color: #000;
}
.nav-top>li:hover>a,
.nav-top>li:hover>.nav-text,
.nav-top>li.on>a,
.nav-top>li.on>.nav-text,
header.scroll .nav-top>li:hover>a,
header.scroll .nav-top>li:hover>.nav-text,
header.scroll .nav-top>li.on>a,
header.scroll .nav-top>li.on>.nav-text{
    color: #fff;
}
.nav-sub{
    display: none;
    position: absolute;
    top: 55px;
    left: 0;
    padding-left: 0;
    background: rgba(0,0,0,0.5);
    white-space: nowrap;
}
header.scroll .nav-sub{
    background: #fff;
}
.nav-top>li:hover  .nav-sub{
    display: block;
}
.nav-sub li{

}
.nav-sub li a{
    display: block;
    padding: 15px;
    color: #fff;
    transition: background-color, color .2s;
}
header.scroll .nav-sub li a{
    color: #333;
}
.nav-sub li:hover a,
header.scroll .nav-sub li:hover a{
    background-color: #fff;
    color: #fff;
}
a:hover{
    text-decoration: none;
}



.search-box{
    margin: 0 4vw 0 1vw;
    font-size: 18px;
    color: #fff;
}
.search-box a{
    color: #fff;
}
header.scroll .search-box {
    color: #333;
}
header.scroll .search-box a{
    color: #333;
}
.banner,
.carousel,
.carousel-inner,
.carousel-inner .item{
    height: 100%;
}
.carousel-inner .item:nth-child(1){
    background: url("../image/banner_1.jpg") no-repeat center center;
    background-size: cover;
}
.carousel-inner .item:nth-child(2){
    background: url("../image/banner_2.jpg") no-repeat center center;
    background-size: cover;
}
.carousel-inner .item:nth-child(3){
    background: url("../image/banner_3.jpg") no-repeat center center;
    background-size: cover;
}
.carousel-inner .item:nth-child(4){
    background: url("../image/banner_4.jpg") no-repeat center center;
    background-size: cover;
}
.banner-container{
    position: relative;
    width: 68.75%;
    height: 100%;
    
    padding-top: 26vh;
    margin: 0 auto;
}
.banner-title-cn{
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
}
.banner-title-cn span{
    color: #fff;
}
.banner-title-en{
    margin-top: 17px;
    margin-bottom: 21px;
    font-size: 18px;
    color: #b7b6b5;
}
.banner-tag{
    display: inline-block;
    height: 46px;
    line-height: 46px;
    background: #1d9d89;
    color: #fff;
    padding: 0 15px;
    border-radius: 46px;
    font-weight: bold;
    font-size: 24px;
}
.banner-num{
    position: relative;
    height: 25px;
    padding-left: 583px;
    color: #c7c7c7;
    font-size: 36px;
    font-weight: bold;
}
.banner-num span{
    position: absolute;
    top: 14px;
    left: 3px;
    display: block;
    width: 550px;
    height: 2px;
    background: #899184;
}
.banner-year{
    margin-bottom: 6px;
    font-size: 36px;
    color: #fff;
    font-weight: bold;
}
.banner-text{
    font-size: 18px;
    color: #fafafa;
}
.banner-text-lg{
    margin-bottom: 10px;
    font-size: 24px;
    color: #ededed;
}
.banner-btn-box{
    position: absolute;
    bottom: 18vh;
    left: 0;
}
.banner-btn-box a{
    position: relative;
    width: 143px;
    height: 40px;
    margin-right: 17px;
    border: 1px solid #c7c7c7;
    font-size: 16px;
    color: #bababa;
    text-align: center;
    line-height: 41px;
    overflow: hidden;
}
.banner-btn-box a:hover{
    border: 1px solid #fff;
    color: #fff;
}
.banner-btn-box a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: -1px;
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-transform: translate3d(-101%,0,0);
    transform: translate3d(-101%,0,0);
}
.banner-btn-box a:hover::before {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}
.banner-btn-box a:hover>span {
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0)
}
.banner-btn-box a>span {
    display: block;
    height: 100%;
    line-height: 38px;
}
.banner-btn-box a::before,
.banner-btn-box a>span {
    left: 0;
    -webkit-transition: -webkit-transform .5s;
    transition: transform .5s;
    -webkit-transition-timing-function: cubic-bezier(.165,.84,.44,1);
    transition-timing-function: cubic-bezier(.165,.84,.44,1)
}
.carousel-indicators li{
    width: 19px;
    height: 6px;
    margin: 0 6px;
    border-radius: 6px;
    background: #fff;
    border: none;
    vertical-align: middle;
    -webkit-transition: width .5s;
    transition: width .5s;
    -webkit-transition-timing-function: cubic-bezier(.165,.84,.44,1);
    transition-timing-function: cubic-bezier(.165,.84,.44,1)
}
.carousel-indicators li.active{
    width: 46px;
    height: 6px;
    border-radius: 6px;
    background: #fff;
    border: none;
}



.home-part{
    width: 93.5%;
    margin: 63px auto 78px;
}
.home-part{
    align-items: flex-start;
    -webkit-align-items: flex-start;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}
.home-news{
    width: 27.83%;
}
.hn-top{
    position: relative;
    height: 170px;
    overflow: hidden;
}
.hn-top img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.hn-time{
    position: absolute;
    top: 20px;
    left: 16px;
    width: 80px;
    height: 80px;
    padding-top: 18px;
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,0.7);
    z-index: 2;
}
.hn-day{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
}
.hn-date{
    font-size: 14px;
}
.hn-title{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 54px;
    line-height: 54px;
    padding: 0 15px;
    font-size: 18px;
    color: #c7c7c7;
    background: rgba(0,0,0,0.7);
}
.hn-list{
    padding-top: 17px;
    padding-bottom: 7px;
}
.hn-list li{
    height: 37px;
    font-size: 16px;
    color: #333;
}
.hn-list li a{
    display: inline-block;
    width: 70%;
    height: 37px;
    line-height: 37px;
    color: #333;
}
.hn-list li span{
    display: block;
    height: 37px;
    line-height: 37px;
}
.hn-list li:hover a,
.hn-list li:hover span{
    color: #fff;
}
.hn-bottom{
    border-top: 1px solid #eeeeee;
    padding-top: 23px;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    font-size: 16px;
    color: #333;
}
.hn-bottom a{
    color: #fff;
}
.home-q{
    width: 41.42%;
    height: 347px;
    padding: 0 0.9% 0 3%;
    background: url("../image/q_bg.png") no-repeat center center;
    background-size: cover;
}
.hq-top{
    padding: 35px 0 12px;
    border-bottom: 1px solid #fff;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    font-size: 20px;
    color: #242424;
    font-weight: bold;
}
.hq-more{
    font-size: 14px;
    color: #333;
    font-weight: normal;
}
.hq-more:hover{
    color: #fff;
}
.q{
    padding: 20px  0 13px;
    font-size: 16px;
    color: #363636;
    font-weight: bold;
}
.a{
    line-height: 26px;
    font-size: 14px;
    color: #363636;
}


.footer{
    background: #313131;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    padding-top: 60px;
    padding-bottom: 50px;
}
.footer-title{
    min-height: 16px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 33px;
}
.nav-footer li,
.phone-list li{
    margin-bottom: 15px;
    font-size: 14px;
}
.nav-footer li a,
.phone-list li{
    color: #c7c7c7;
}
.nav-footer li:hover a{
    color: #fff;
}


.copyright-box{
    background: #000;
    padding: 25px 20px 15px;
    text-align: center;
}
.copyright-text{
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 15px;
    color: #9a9a9a;
}
.copyright{
    font-size: 14px;
    color: #828282;
}

.hover-img img{
    width: 100%;
    height: 100%;
    transition: transform 1s;
    -moz-transition:transform 1s;
    -webkit-transition:transform 1s;
    -o-transition: transform 1s;
}
.hover-img img:hover{
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
}


@media (max-width: 1400px){
    .q{
        padding: 15px  0 6px;
        font-size: 14px;
        color: #363636;
        font-weight: bold;
    }
    .a{
        line-height: 26px;
        font-size: 12px;
        color: #363636;
    }
}

@media (max-width: 1200px){
    .hn-list li,
    .hn-title{
        font-size: 14px;
    }
    .hn-bottom{
        font-size: 14px;
    }
    .logo img{
        width: 150px;
    }
}

@media (max-width: 991px){
    header{
        padding-top: 0;
        height: 50px;
    }
    .header-container{
        position: relative;
        text-align: center;
    }
    header.scroll{
        height: 50px;
    }
    .logo{
        float: none !important;
        margin: 0 auto;
        height: 50px;
        line-height: 50px;
    }
    .nav-top{
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        flex-direction: column;
        align-items: flex-start;
        -webkit-align-items: flex-start;
        justify-content: center;
        justify-content: center;
        width: 100%;
        bottom: 0;
        background: rgba(0,0,0,0.8);
        font-size: 16px;
    }
    .nav-top.on{
        display: flex;
    }
    .nav-top>li{
        width: 40%;
        text-align: left;
        padding-left: 40px;
        border-right: 1px solid #ccc;
        border-bottom: none;
        -webkit-animation-duration: .4s;
        animation-duration: .4s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
    }
    .nav-text i{
        transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
    }
    .nav-top  li a{
        font-size: 16px;
        color: #ccc;
    }
    .nav-top>li:hover, .nav-top>li.on{
        border-bottom: none;
    }
    header.scroll .nav-top>li>a,
    header.scroll .nav-text,
    header.scroll .nav-sub li a{
        color: #ccc;
    }
    header.scroll .nav-sub{
        background: transparent;
    }
    .nav-sub{
    display: block;
    position: absolute;
    top: -134px;
    left: 100%;
    height: 300px;
    overflow: scroll;
    width: 100%;
    padding: 40px 0;
    background: transparent;
    overflow: scroll;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    }
    .nav-sub.hidden-xs{
        display: none !important;
    }
    .nav-btnbox {
        display: block;
        position: absolute;
        left: 8px;
        top: 4px
    }
    .nav-button {
        background: #245269;
        border: none;
        border: 1px solid transparent;
        background-color: transparent;
        background-image: none;
        -webkit-transition: background-color .5s,transform .5s;
        transition: background-color .5s,transform .5s;
        height:45px;
        width: 45px
    }
    .nav-button:focus {
        outline: 0
    }

    .nav-button .icon-bar {
        display: block;
        width: 26px;
        height: 3px;
        border-radius: 10px;
        overflow: hidden;
        background-color: #fff
    }


    .scroll .nav-button .icon-bar {
        background-color: #333
    }

    .nav-button .icon-bar+.icon-bar {
        margin-top: 5px
    }

    .nav-button:hover .icon-bar {
        background-color: #fff
    }

    .nav-button:hover .icon-bar:first-child {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px)
    }

    .nav-button:hover .icon-bar:last-child {
        -webkit-transform: translateY(2px);
        transform: translateY(2px)
    }

    .menu-open .nav-button {
        position: relative;
        z-index: 9999
    }

    .menu-open .nav-button .icon-bar {
        background-color: #fff
    }

    .menu-open .nav-button:hover .icon-bar {
        background-color: #fff
    }

    .nav-button .icon-bar {
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        perspective-origin: 50% 50%;
        -ms-transition: all .3s ease
    }

    .menu-open .nav-button .icon-bar:first-child {
        margin-left: 0;
        -webkit-transform: translate3d(0,12px,0) rotate3d(0,0,1,-45deg);
        transform: translate3d(0,12px,0) rotate3d(0,0,1,-45deg)
    }

    .menu-open .nav-button .icon-bar:first-child:before {
        opacity: 0
    }

    .menu-open .nav-button .icon-bar:nth-child(2) {
        opacity: 0;
        transform: translate(20px,0)
    }

    .menu-open .nav-button .icon-bar:last-child {
        -webkit-transform: translate3d(0,-4px,0) rotate3d(0,0,1,45deg);
        transform: translate3d(0,-4px,0) rotate3d(0,0,1,45deg)
    }


    
    .banner-container{
        width: 90%;
        text-align: center;
    }
    .banner-title-cn{
        font-size: 20px;
        line-height: 28px;
    }
    .banner-title-en,
    .banner-text-lg,
    .banner-text{
        font-size: 14px;
        line-height: 22px;
    }
    .banner-btn-box{
        width: 100%;
        flex-direction: column;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
    }
    .banner-btn-box a{
        width: 140px;
        height: 38px;
        margin-top: 10px;
        line-height: 36px;
        font-size: 13px;
    }

    
    .home-part{
        width: 95%;
        margin: 30px auto;
    }
    .home-part{
        display: block;
    }
    .home-news{
        width: 100%;
        margin-bottom: 30px;
    }
    .hn-day{
        font-size: 22px;
    }
    .hn-date{
        font-size: 12px;
    }
    .hn-title{
        font-size: 14px;
    }
    .hn-list{
        padding-top: 15px;
    }
    .hn-list li{
        height: 35px;
        font-size: 14px;
    }
    .hn-list li a{
        height: 35px;
        line-height: 35px;
    }
    .hn-list li span{
        height: 35px;
        line-height: 35px;
    }
    .hn-bottom{
        padding-top: 20px;
        font-size: 14px;
    }
    .home-q{
        width: 100%;
        height: auto;
        padding: 0 10px 10px;
    }
    .hq-top{
        padding: 30px 0 12px;
        font-size: 18px;
    }
    .hq-more{
        font-size: 12px;;
    }
    .hq-more:hover{
        color: #fff;
    }
    .q{
        padding: 20px  0 13px;
        font-size: 14px;
    }
    .a{
        line-height: 24px;
        font-size: 13px;
    }

    
    .footer{
        background: #fff;
        display: block;
        padding-top: 0;
        padding-bottom: 0;
    }
    .nav-f-part{
        border-bottom: 1px solid #f2f2f2;
    }
    .footer-title{
        position: relative;
        padding: 0 15px;
        line-height: 45px;
        color: #333;
        font-size: 15px;
        margin-bottom: 0;
        font-weight: normal;
    }
    .footer-title:after{
        font-family: FontAwesome;
        color: #999;
        display: block;
        content: '\f054';
        font-size: 15px;
        position: absolute;
        right: 15px;
        top: 0;
        transition: transform .3s;
    }
    .footer-title.on:after{
        transform: rotateZ(90deg);
    }
    .nav-footer,
    .phone-list{
        display: none;
        padding-bottom: 20px;
    }
    .nav-footer li,
    .phone-list li{
        line-height: 30px;
        margin-bottom: 0;
        font-size: 13px;
        padding-left: 30px;
    }
    .nav-footer li a,
    .phone-list li{
        color: #777;
    }
    .nav-footer li:hover a{
        color: #fff;
    }

    
    .copyright-box{
        background: #000;
        padding: 25px 20px 35px;
        text-align: center;
    }
    .copyright-text{
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 15px;
        color: #9a9a9a;
    }
    .copyright{
        font-size: 12px;
        line-height: 1.4;
        color: #828282;
    }

}




.page-header-box{
    position: relative;
    height: 633px;
    border-bottom: 1px solid #fff;
    background: url("../image/news_top.png") no-repeat center center;
    background-size: cover;
}
.page-header-wrap{
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    width: 62.5%;
    height: 100%;
    margin: 0 auto;
    color: #fff;
    font-size: 36px;
}
.page-title-line{
    width: 552px;
    height: 2px;
    margin: 37px 0 30px;
    background: #babec4;
}
.news-top{
    height: 65px;
    background: #000;
}
.news-top-wrap{
    width: 75%;
    height: 100%;
    margin: 0 auto;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}
.location-icon{
    width: 90px;
    height: 100%;
    line-height: 65px;
    text-align: center;
    background: #fff;
    margin-right: 32px;
}
.location-icon img{
    vertical-align: middle;
}
.location-name{
    font-size: 16px;
    color: #fff;
}
.news-tab{
    font-size: 14px;
    color: #fff;
}
.news-tab li{
    padding: 0 17px;
    cursor: pointer;
    -webkit-transition: color .2s;
    transition: color .2s;
}
.news-tab li:hover{
    color: #fff;
}
.news-list-box{
    padding: 115px 0 48px;
}
.news-list{
    max-width: 1200px;
}
.news-list li{
    position: relative;
    height: 210px;
    padding-left: 209px;
    background: #eeeeee;
    margin-bottom: 50px;
}
.news-list li>span{
    position: absolute;
    background: #fff;
    -webkit-transition: all .5s cubic-bezier(.25, .46, .45, .94);
    -moz-transition: all .5s cubic-bezier(.25, .46, .45, .94);
    -ms-transition: all .5s cubic-bezier(.25, .46, .45, .94);
    -o-transition: all .5s cubic-bezier(.25, .46, .45, .94);
    transition: all .5s cubic-bezier(.25, .46, .45, .94);
}
.border-1{
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
}
.news-list li:hover .border-1{
    width: 100%;
}
.border-2{
    top: 0;
    right: 0;
    width: 2px;
    height: 0;
}
.news-list li:hover .border-2{
    height: 100%;
}
.border-3{
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
}
.news-list li:hover .border-3{
    width: 100%;
}
.border-4{
    bottom: 0;
    left: 0;
    width: 2px;
    height: 0;
}
.news-list li:hover .border-4{
    height: 100%;
}
.news-left{
    position: absolute;
    top: 0;
    left: 0;
    width: 209px;
    height: 100%;
    background: #fff;
    color: #fff;
    text-align: center;
}
.news-day{
    padding: 38px 0 30px;
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 3px;
}
.news-date{
    font-size: 16px;
    margin-bottom: 23px;
}
.news-type{
    font-size: 14px;
}
.news-right{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 5% 0 9%;
}
.news-title{
    padding: 35px 0  15px;
    font-size: 24px;
    color: #333;
}
.news-text{
    font-size: 14px;
    line-height: 25px;
    color: #666;
    height: 50px;
}
.news-btn{
    position: absolute;
    bottom: 23px;
    right: 50px;
    width: 135px;
    height: 45px;
    border-radius: 45px;
    border: 2px solid #fff;
    line-height: 41px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}
.page-box{
    text-align: center;
}
.page-box a{
    display: inline-block;
    min-width:35px;
    height: 35px; padding-left:5px; padding-right:5px;
    line-height: 33px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #e4e4e4;
    margin: 0 4px;
    color: #666;
    vertical-align: middle;
}
.page-box a:hover,
.page-box span{
	display: inline-block;
	min-width:35px;
    height: 35px;
	  line-height: 33px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
}
.page-box a.fa{
    border: none;
    margin-left: 0;
    opacity: 0.3;
    font-weight: lighter;
    margin-top: 2px;
    font-size: 16px;
    color: #333;
}
.page-box a.fa:hover{
    border: none;
    background: transparent;
    color: #666;
    opacity: 1;
}

@media (max-width: 768px) {
    .page-header-box{
        height: 300px;
        text-align: center;
    }
    .page-header-wrap{
        width: 100%;
        font-size: 24px;
    }
    .page-title-line{
        width: 100%;
        height: 1px;
        margin: 20px 0;
        background: transparent;
    }
    .news-top{
        height: auto;
        background: transparent;
    }
    .news-top-wrap{
        display: block;
        width: 100%;
        height: auto;
    }
    .location{
        background: #000;
    }
    .news-tab a li{
        height: 65px;
		line-height:65px;
        font-size: 14px;
        color: #333;
        text-align: center;
    }
    .news-tab{
        height: 65px;
        font-size: 14px;
        color: #333;
        text-align: center;
    }
    .news-list-box{
        padding: 0 0 30px;
    }
    .news-list{
        max-width: 1200px;
    }
    .news-list li{
        height: auto;
        padding-left: 0;
        margin-bottom: 20px;
    }
    .news-left{
        display: flex;
        display: -webkit-flex;
        justify-content: space-around;
        -webkit-justify-content: space-around;
        align-items: center;
        -webkit-align-items: center;
        position: static;
        width: 100%;
        height:40px;
        background: #fff;
        color: #fff;
        text-align: center;
    }
    .news-day{
        padding: 0;
        font-size: 20px;
        letter-spacing: 0;
    }
    .news-date{
        font-size: 14px;
        margin-bottom: 0;
    }
    .news-type{
        font-size: 14px;
    }
    .news-right{
        position: relative;
        width: 100%;
        height: 210px;
        padding: 0 10px;
    }
    .news-btn{
        position: absolute;
        bottom: 10px;
        right: 10px;
    }
}



.news-detail{
    max-width: 1200px;
}
.nd-top{
    padding: 90px 0 44px;
    border-bottom: 1px solid #eee;
    text-align: center;
}
.nd-title{
    font-size: 36px;
    color: #333;
    font-weight: bold;
}
.nd-info{
    margin-top: 58px;
    font-size: 14px;
    color: #666;
}
.nd-info span{
    display: inline-block;
    margin: 0 28px;
}
.nd-content{
    padding: 110px 0 200px;
}
.nd-content p{
    font-size: 16px;
    line-height: 29px;
    color: #666;
    margin-bottom: 55px;
}
.nd-pic{
    margin-bottom: 55px;
}
.nd-pic img{
    width: 100%;
}

@media (max-width: 768px) {
    .nd-top{
        padding: 30px 0 20px;
    }
    .nd-title{
        font-size: 25px;
        line-height: 35px;
    }
    .nd-info{
        margin-top: 30px;
        font-size: 13px;
    }
    .nd-info span{
        display: block;
        margin: 10px 0;
    }
    .nd-content{
        padding: 50px 0;
    }
    .nd-content p{
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    .nd-pic{
        margin-bottom: 20px;
    }
}



.service-header{
    background: url("../image/service_top.jpg") no-repeat center center;
    background-size: cover;
}
.service-body{
    background: #eeeeee;
    padding: 50px 0;
}
.service-wrap{
    max-width: 1200px;
}
.service-list{
    float: left;
    width: 39%;
    height: 702px;
    padding-top: 26px;
    background: #f7f7f7;
    text-align: center;
}
.service-list li{
    margin-bottom: 30px;
}
.service-list li img{
    margin-bottom: 20px;
}
.service-list-title{
    font-size: 18px;
    color: #333;
    font-weight: bold;
}
.service-list-text{
    font-size: 14px;
    margin-top: 17px;
    color: #333;
}
.service-map{
    float: right;
    width: 60%;
    text-align: center;
}
.service-map img{
    max-width: 96%;
}

@media (max-width: 768px) {
    .service-list{
        float: none;
        width: 100%;
        height: 702px;
        padding-top: 26px;
        background: #f7f7f7;
        text-align: center;
    }
    .service-map{
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    .service-map img{
        max-width: 100%;
    }
}



.ap-1{
    height: 950px;
    background: url("../image/about_bg_1.jpg") no-repeat center center;
    background-size: cover;
}
.ap-content-1{
    display: flex;
    -webkit-display: flex;
    flex-direction: column;
    justify-content: center;
    width: 68.75%;
    height: 100%;
    color: #fff;
    margin: 0 auto;
}
.ap-name{
    font-size: 36px;
    font-weight: bold;
}
.ap-line{
    width: 550px;
    height: 2px;
    background: #cec8cc;
    margin: 37px 0 32px;
}
.ap-info{
    font-size: 24px;
    line-height: 36px;
}
.ap-text{
    margin-top: 50px;
    font-size: 16px;

}
.ap-text p{
    margin-bottom: 20px;
    line-height: 24px;
}
.ap-2{
    height: 950px;
    padding-top: 90px;
    background: url("../image/about_bg_2.jpg") no-repeat center center;
    background-size: cover;
}
.comm-title-cn{
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
.comm-title-en{
    font-size: 14px;
    color: #fff;
    margin-top: 4px;
    text-align: center;
}
.ap-list{
    margin-top: 110px;
    background: url("../image/ap_list_bg.png") repeat-y center 20px;
}
.ap-list li{
    margin-bottom: 40px;
    background: url("../image/ap_2_icon.png") no-repeat center center;
}
.ap-list-left{
    text-align: right;
    padding-right: 57.8%;
}
.ap-list-date{
    font-size: 18px;
    color: #fff;
    margin-bottom: 18px;
    font-weight: bold;
}
.ap-list-text{
    font-size: 14px;
    color: #fff;
}
.ap-list-right{
    padding-left: 57.8%;
}

.ap-3{
    height: 810px;
    background: url("../image/about_bg_3.jpg") no-repeat center center;
    background-size: cover;
}
.ap-3-content{
    float: right;
    width: 739px;
    height: 100%;
}
.apc-3-top{
    height: 254px;
    padding-top: 128px;
    background: #fff;
}
.apc-3-bottom{
    height: 556px;
    background: rgba(255,255,255,0.7);
    font-size: 16px;
    color: #030201;
    padding: 135px 0 0 52px;
}
.apc-3-bottom p{
    width: 380px;
    margin-bottom: 50px;
    font-weight: bold;
    line-height: 19px;
}
.ap-4{
    height: 950px;
    background: url("../image/about_bg_4.jpg") no-repeat center center;
    background-size: cover;
}
.ap-4-content{
    padding-top: 116px;
    max-width: 1200px;
}
.ap-4-text{
    margin-top: 110px;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
}
.ap-4-text p{
    line-height: 48px;
    margin-bottom: 47px;
}
.ap-4-more{
    display: inline-block;
    width: 143px;
    height: 40px;
    border: 1px solid #dadada;
    font-size: 16px;
    color: #f6faf9;
    text-align: center;
    line-height: 38px;
    transition: color .5s;
    -webkit-transition: color .5s;
}
.ap-4-more:hover{
    color: #fff;
}
.ap-5{
    height: 940px;
    background: url("../image/about_bg_5.jpg") no-repeat center center;
    background-size: cover;
}
.ap-5-title{
    padding: 108px 0 118px;
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
.ap-5-list{
    width: 75%;
    margin: 0 auto;
}
.ap-5-list li{
    float: left;
    width: 25%;
    height: 224px;
    text-align: center;
}
.ap-5-icon{
    width: 110px;
    height: 110px;
    border-radius: 110px;
    background: #fff;
    text-align: center;
    line-height: 110px;
    margin: 0 auto 21px;
}
.ap-5-list-title{
    padding: 0 5px;
    font-size: 20px;
    color: #fff;
    line-height: 1.5;
}
.ap-5-icon img{
    vertical-align: middle;
}
.ap-5-text{
    margin-top: 30px;
    font-size: 18px;
    color: #fff;
    text-align: center;
}
.ap-6{
    height: 920px;
    background: url("../image/about_bg_6.jpg") no-repeat center center;
    background-size: cover;
}
.ap-6 .ap-4-text{
    color: #d4d4d6;
}
.ap-6-logo{
    margin: 50px 0 90px;
}
.ap-6-logo img{
    vertical-align: middle;
    margin-right: 25px;
}
.ap-6 .ap-4-more{
    width: 187px;
}

@media (max-width: 768px) {
    .ap-1{
        height: auto;
        padding: 100px 0 50px;
    }
    .ap-content-1{
        display: block;
        width: 95%;
    }
    .ap-name{
        font-size: 25px;
        font-weight: bold;
    }
    .ap-line{
        width: 100%;
        
    }
    .ap-info{
        font-size: 16px;
        line-height: 25px;
    }
    .ap-text{
        margin-top: 30px;
        font-size: 14px;

    }
    .ap-text p{
        line-height: 22px;
    }
    .ap-2{
        height: auto;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .ap-list{
        margin-top: 30px;
        padding: 0 10px;
    }
    .ap-list li{
        margin-bottom: 30px;
    }
    .ap-list li:last-child{
        margin-bottom: 0;
    }
    .ap-list-left{
        text-align: right;
        padding-right: 57.8%;
    }
    .ap-list-date{
        font-size: 15px;
    }
    .ap-list-text{
        font-size: 13px;
        line-height: 1.4;
        color: #fff;
    }

    .ap-3{
        height: auto;
    }
    .ap-3-content{
        float: none;
        width: 100%;
        height: 100%;
    }
    .apc-3-top{
        height: 150px;
        padding-top: 50px;
    }
    .apc-3-bottom{
        height: auto;
        padding: 30px 0;
        font-size: 14px;
        color: #030201;
    }
    .apc-3-bottom p{
        width: 90%;
        margin: 0 auto 30px;
        font-weight: normal;
        line-height: 19px;
    }
    .ap-4{
        height: auto;
    }
    .ap-4-content{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .ap-4-text{
        margin-top: 30px;
        font-size: 16px;
        color: #fff;
        font-weight: normal;
    }
    .ap-4-text p{
        padding: 0 20px;
        line-height: 35px;
        margin-bottom: 20px;
    }
    .ap-4-more{
        margin-left: 20px;
        font-size: 14px;
    }
    .ap-4-more:hover{
        color: #fff;
    }
    .ap-5{
        height: auto;
        padding-bottom: 40px;
    }
    .ap-5-title{
        padding: 40px 0;
        font-size: 22px;
    }
    .ap-5-list{
        width: 95%;
        margin: 0 auto;
    }
    .ap-5-list li{
        width: 50%;
    }
    .ap-5-list-title{
        font-size: 14px;
    }
    .ap-5-text{
        padding: 0 20px;
        font-size: 14px;
        line-height: 20px;
    }
    .ap-6{
        height: auto;
        padding-bottom: 40px;
    }
    .ap-6-logo{
        margin: 30px 0 50px;
        padding-left: 20px;
    }
    .ap-6-logo img{
        margin-right: 25px;
    }
}


.fullpage-html{
    width: 100%;
    height: 100%;
    overflow: hidden !important;
}
.section-footer,
.section-footer .fp-tableCell{
    height: auto !important;
}
.plan-1 .section-img{
    background: url("../image/plan_1.jpg") no-repeat center center;
    background-size: 100% 100%;
}
.plan-2 .section-img{
    background: url("../image/plan_2.jpg") no-repeat center center;
    background-size: 100% 100%;
}
.plan-3 .section-img{
    background: url("../image/plan_3.jpg") no-repeat center center;
    background-size: 100% 100%;
}
.plan-4 .section-img{
    background: url("../image/plan_4.jpg") no-repeat center center;
    background-size: 100% 100%;
}
.plan-5 .section-img{
    background: url("../image/plan_5.jpg") no-repeat center center;
    background-size: 100% 100%;
}
.plan-6 .section-img{
    background: url("../image/plan_6.jpg") no-repeat center center;
    background-size: 100% 100%;
}
.plan-7 .section-img{
    background: url("../image/plan_7.jpg") no-repeat center center;
    background-size: 100% 100%;
}
.plan-8 .section-img{
    background: url("../image/plan_8.jpg") no-repeat center center;
    background-size: 100% 100%;
}
.section-img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#fullPage .section{
    position: relative;
}
#fullPage .section .content{
    display: none;
}
.section-img.bg-scale{
    transform: scale(1.2);
    transition: transform 7s cubic-bezier(.165,.84,.44,1),opacity .5s;
}
#fp-nav ul li, .fp-slidesNav ul li {
    display: block;
    margin: 12px 3px;
    position: relative;
}
#fp-nav ul li a span, .fp-slidesNav ul li a span {
    position: relative;
    display: block;
    border-radius: 50%;
    z-index: 1;
    height: 12px;
    width: 12px;
    background: rgba(255,255,255,.3);
    left: 50%;
    top: 50%;
    transition: background .5s,border .3s;
    border: 2px solid transparent;
}
#fp-nav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li a.active span,
.fp-slidesNav ul li:hover a.active span {
    border: 2px solid #fff;
    background: 0 0;
    width: 12px;
    height: 12px;
    margin-left: -2px;
    margin-top: -2px;
}
.plan-title{
    text-align: center;
    font-size: 48px;
    font-size: 2.5vw;
    color: #fff;
    font-weight: bold;
}
.plan-line{
    width: 550px;
    height: 2px;
    background: rgba(255,255,255,0.7);
    margin: 45px auto 38px;
}
.plan-text{
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    font-size: 24px;
    font-size: 1.25vw;
    color: #fff;
    line-height: 48px;
}
.plan-area{
    margin-top: 10.5vh;
    font-size: 30px;
    font-size: 1.5625vw;
    text-align: center;
    color: #229f8b;
    line-height: 47px;
}
.color-white{
    color: #fff;
}
.fp-tableCell{
    display: flex;
    align-items: center;
    justify-content: center;
}
footer{
    width: 100%;
}

@media (max-width: 768px) {
    .plan-1 .section-img{
        background: url("../image/plan_1.jpg") no-repeat center center;
    }
    .plan-2 .section-img{
        background: url("../image/plan_2.jpg") no-repeat center center;
    }
    .plan-3 .section-img{
        background: url("../image/plan_3.jpg") no-repeat center center;
    }
    .plan-4 .section-img{
        background: url("../image/plan_4.jpg") no-repeat center center;
    }
    .plan-5 .section-img{
        background: url("../image/plan_5.jpg") no-repeat center center;
    }
    .plan-6 .section-img{
        background: url("../image/plan_6.jpg") no-repeat center center;
    }
    .plan-7 .section-img{
        background: url("../image/plan_7.jpg") no-repeat center center;
    }
    .plan-8 .section-img{
        background: url("../image/plan_8.jpg") no-repeat center center;
    }

    .plan-title{
        text-align: center;
        font-size: 24px;
        color: #fff;
        font-weight: bold;
    }
    .plan-line{
        width: 95%;
        height: 2px;
        margin: 30px auto 30px;
    }
    .plan-text{
        font-size: 14px;
        line-height: 25px;
    }
    .plan-area{
        margin-top: 10.5vh;
        font-size: 14px;
        line-height: 25px;
        padding: 0 20px;
    }
}



.ad-1 .section-img{
    background: url("../image/ad_1.jpg") no-repeat center center;
    background-size: cover;
}
.ad-2 .section-img{
    background: url("../image/ad_2.jpg") no-repeat center center;
    background-size: cover;
}
.ad-3 .section-img{
    background: url("../image/ad_3.jpg") no-repeat center center;
    background-size: cover;
}
.ad-4 .section-img{
    background: url("../image/ad_4.jpg") no-repeat center center;
    background-size: cover;
}
.ad-5 .section-img{
    background: url("../image/ad_5.jpg") no-repeat center center;
    background-size: cover;
}
.ad-6 .section-img{
    background: url("../image/ad_6.jpg") no-repeat center center;
    background-size: cover;
}
.dz-list{
    width: 70%;
    margin: 7.4vh auto 0;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}
.dz-list li{
    width: 33.33%;
    height: 21.75vh;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    text-align: center;
    padding-top: 1vh;
    color: #fff;
}
.dz-list li:nth-child(3n){
    border-right: none;
}
.dz-list li:nth-child(4),
.dz-list li:nth-child(5),
.dz-list li:nth-child(6){
    height: 23.7vh;
    border-bottom: none;
    padding-top: 6.48vh;
}
.dz-icon img{
    height: 6.85vh;
}
.dz-title{
    font-size: 16px;
    margin: 3.148vh 0 1.2vh;
}
.dz-text{
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .dz-list{
        width: 95%;
        margin: 5vh auto 0;
    }
    .dz-list li{
        padding-top: 5vh;
    }
    .dz-title{
        font-size: 14px;
    }
    .dz-text{
        display: none;
    }
}



.case-1 .section-img{
    background: url("../image/case_1.jpg") no-repeat center center;
    background-size: cover;
}
.case-2 .section-img{
    background: url("../image/case_2.jpg") no-repeat center center;
    background-size: cover;
}
.case-3 .section-img{
    background: url("../image/case_3.jpg") no-repeat center center;
    background-size: cover;
}
.case-4 .section-img{
    background: url("../image/case_4.jpg") no-repeat center center;
    background-size: cover;
}
.case-5 .section-img{
    background: url("../image/case_5.jpg") no-repeat center center;
    background-size: cover;
}
.case-6 .section-img{
    background: url("../image/case_6.jpg") no-repeat center center;
    background-size: cover;
}
.case-7 .section-img{
    background: url("../image/case_7.jpg") no-repeat center center;
    background-size: cover;
}
.case-8 .section-img{
    background: url("../image/case_8.jpg") no-repeat center center;
    background-size: cover;
}



.product-header{
    background: url("../image/p_top.jpg") no-repeat center center;
    background-size: cover;
}
.product-list{
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    width: 1200px;
    margin: 0 auto;
    padding:0px 0 70px;
}
.product-list li{
    width: 380px;
    margin-right: 29px;
    background: #f9f9f9;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 24px;
}
.product-list li:nth-child(3n){
    margin-right: 0;
}
.pl-top{
    position: relative;
    height: 210px;
    overflow: hidden;
}
.pl-top>img{
    width: 100%;
    height: 100%;
    transition: transform 2s ease-in-out;
}
.pl-top-hover{
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(240, 35, 42, 0.49019607843137253);
    text-align: center;
    padding-top: 64px;
    transition: left .5s ease-in-out;
}
.p-more{
    font-size: 16px;
    color: #fff;
    margin-top: 33px;
}
.product-list li:hover .pl-top-hover{
    left: 0;
}
.product-list li:hover .pl-top>img{
    transform: scale(1.2);
}
.pl-name{
    padding: 26px 15px 15px;
    text-align: center;
    line-height: 20px;
    height: 86px;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    transition: color .2s ease-in-out;
}
.pl-text{
    -webkit-box-orient: vertical;
    padding: 0 25px;
    padding-bottom: 30px;
    font-size: 14px;
    color: #666;
    line-height: 20px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
}

@media (max-width: 768px) {
    .product-list{
        width: 95%;
        margin: 0 auto;
        padding: 30px 0;
    }
    .product-list li{
        height: 365px;
        width: 100%;
        margin-right: 0;
    }
}



.p1-1 .section-img{
    background: url("../image/p1_1.jpg") no-repeat center center;
    background-size: cover;
}
.p1-2 .section-img{
    background: url("../image/p1_2.jpg") no-repeat center center;
    background-size: cover;
}
.p1-3 .section-img{
    background: url("../image/p1_3.jpg") no-repeat center center;
    background-size: cover;
}
.p1-4 .section-img{
    background: url("../image/p1_4.jpg") no-repeat center center;
    background-size: cover;
}
.p1-5 .section-img{
    background: url("../image/p1_5.jpg") no-repeat center center;
    background-size: cover;
}
.content-left .fp-tableCell{
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
}
.content-right .fp-tableCell{
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
}
.content-left .content{
    margin: 0 auto;
}
.content-right .content{
    margin: 0 auto;
}
.p1-1 .content{
    width: 62.5%;
    height: 100%;
    padding-top: 28vh;
}
.content-left .plan-title{
    text-align: left;
}
.content-right .plan-title{
    text-align: right;
}
.content-left .plan-line{
    margin: 45px 0 38px;
}
.content-left .plan-text{
    padding: 0;
    margin: 0;
    text-align: left;
}
.content-right .plan-text{
    padding: 0;
    margin: 0;
    text-align: right;
    float: right;
}
.p1-1 .plan-text{
    width: 73%;
}
.p1-2 .content{
    width: 75%;
}
.p1-2 .plan-text{
    width: 634px;
    margin-top: 27px;
    text-align: left;
}
.p1-3 .content{
    width: 62.5%;
}
.p1-4 .content{
    width: 62.5%;
    height: 100%;
    padding-top: 32vh;
}
.p1-4 .plan-title{
    color: #241404;
}
.p1-4 .plan-text{
    margin-top: 25px;
    color: #241404;
}
.content-table{
    width: 100%;
}
.p-table{
    width: 62.5%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}
.p-table th{
    
    height: 10.7vh;
    padding-left: 35px;
    border-bottom: 2px solid #545454;
    background: #219f8b;
    color: #fff;
    font-size: 30px;
}
.p-table td{
    
    height: 7.47vh;
    border-bottom: 1px solid #333725;
    font-size: 18px;
    color: #1b1b1b;
}
.p-table tr:nth-child(odd){
    background: url("../image/tr_bg_1.png") repeat;
}
.p-table tr:nth-child(even){
    background: url("../image/tr_bg_2.png") repeat;
}
.p-table tr td:nth-child(1){
    text-align: center;
    border-right: 1px solid #009078;
}
.p-table tr td:nth-child(2){
    text-align: left;
    padding-left: 4.16vw;
}
.table-text{
    width: 62.5%;
    margin: 15px auto 0;
    font-size: 14px;
    color: #fff;
}
.table-text.color-black{
    color: #333;
}

@media (max-width: 768px) {
    .p1-1 .section-img{
        background: url("../image/p1_1.jpg") no-repeat 72% center;
        background-size: auto 100%;
    }
    .p1-2 .section-img{
        background: url("../image/p1_2.jpg") no-repeat 22% center;
        background-size: auto 100%;
    }
    .p1-4 .section-img{
        background: url("../image/p1_4.jpg") no-repeat 17% center;
        background-size: auto 100%;
    }
    .content-left .content{
        width: 95%;
    }
    .p1-1 .plan-text{
        width: 95%;
    }
    .content-right .content{
        width: 95%;
    }
    .p1-2 .plan-text{
        width: 95%;
    }
    .p-table{
        width: 95%;
    }
    .p-table th{
        padding-left: 20px;
        font-size: 20px;
    }
    .p-table td{
        font-size: 14px;
    }
}


.p2-1 .section-img{
    background: url("../image/p2_1.jpg") no-repeat center center;
    background-size: cover;
}
.p2-2 .section-img{
    background: url("../image/p2_2.jpg") no-repeat center center;
    background-size: cover;
}
.p2-3 .section-img{
    background: url("../image/p2_3.jpg") no-repeat center center;
    background-size: cover;
}
.p2-4 .section-img{
    background: url("../image/p2_4.jpg") no-repeat center center;
    background-size: cover;
}
.p2-5 .section-img{
    background: url("../image/p2_5.jpg") no-repeat center center;
    background-size: cover;
}
.w625{
    width: 62.5%;
}
.plan-title-sub{
    font-size: 36px;
    font-size: 1.875vw;
    color: #fff;
    margin-bottom: 20px;
}
.p2-2 .content{
    width: 75%;
}
.p2-1 .plan-title,
.p2-1 .plan-text,
.p2-1 .plan-title-sub,
.p2-2 .plan-title,
.p2-2 .plan-text{
    color: #967342 !important;
}
.p2-1 .plan-line{
    background: #967342;
}
.p2-2 .plan-text{
    width: 774px;
    float: right;
    margin-top: 25px;
}
.p2-4 .content{
    width: 62.5%;
}
.p2-4 .plan-text{
    margin-top: 25px;
}
@media (max-width: 768px){
    .p2-1 .section-img{
        background: url("../image/p2_1.jpg") no-repeat 82% center;
        background-size: auto 90%;
    }
    .p2-2 .section-img{
        background: url("../image/p2_2.jpg") no-repeat 45% center;
        background-size: auto 100%;
    }
    .plan-title-sub{
        font-size: 20px;
    }
    .p2-2 .plan-text{
        width: 95%;
    }
    .p2-4 .content{
        width: 95%;
    }
}


.p4-1 .section-img{
    background: url("../image/p4_1.jpg") no-repeat center center;
    background-size: cover;
}
.p4-2 .section-img{
    background: url("../image/p4_2.jpg") no-repeat center center;
    background-size: cover;
}
.p4-3 .section-img{
    background: url("../image/p4_3.jpg") no-repeat center center;
    background-size: cover;
}
.p4-4 .section-img{
    background: url("../image/p4_4.jpg") no-repeat center center;
    background-size: cover;
}
.p4-2 .content{
    padding-left: 40%;
    width: 75%;
}
.p4-2 .content .plan-title{
    text-align: left;
    color: #07090b;
}
.p4-2 .content .plan-text{
    margin-top: 30px;
    text-align: left;
    color: #07090b;
}
@media (max-width: 768px){
    .p4-1 .section-img{
        background: url("../image/p4_1.jpg") no-repeat center center;
        background-size: cover;
    }
    .p4-2 .section-img{
        background: url("../image/p4_2.jpg") no-repeat center center;
        background-size: cover;
    }
    .p4-3 .section-img{
        background: url("../image/p4_3.jpg") no-repeat center center;
        background-size: cover;
    }
    .p4-4 .section-img{
        background: url("../image/p4_4.jpg") no-repeat center center;
        background-size: cover;
    }
    .p4-2 .content{
        padding-left: 0;
        width: 95%;
    }
}


.p6-1 .section-img{
    background: url("../image/p6_1.jpg") no-repeat center center;
    background-size: cover;
}
.p6-2 .section-img{
    background: url("../image/p6_2.jpg") no-repeat center center;
    background-size: cover;
}
.p6-3 .section-img{
    background: url("../image/p6_3.jpg") no-repeat center center;
    background-size: cover;
}
.p6-4 .section-img{
    background: url("../image/p6_4.jpg") no-repeat center center;
    background-size: cover;
}
.p6-5 .section-img{
    background: url("../image/p6_5.jpg") no-repeat center center;
    background-size: cover;
}
.p6-4 .content{
    width: 62.5%;
    height: 100%;
    padding-top: 16.84vh;
}
.p6-4 .content .plan-text{
    color: #241404;
    margin-top: 25px;
}
.p6-4 .content .plan-title{
    color: #241404;
}
@media (max-width: 768px){
    .p6-1 .section-img{
        background: url("../image/p6_1.jpg") no-repeat 80% center;
        background-size: auto 100%;
    }
    .p6-3 .section-img{
        background: url("../image/p6_3.jpg") no-repeat center center;
        background-size: auto 100%;
    }
    .p6-4 .section-img{
        background: url("../image/p6_4.jpg") no-repeat 20% center;
        background-size: auto  100%;
    }
    .p6-5 .section-img{
        background: url("../image/p6_5.jpg") no-repeat center center;
        background-size: auto 100%;
    }
    .p6-4 .content{
        width: 95%;
    }
    .p6-4 .content .plan-text{
        text-align: center;
        line-height: 1.4;
    }
    .p6-4 .content .plan-title{
        text-align: center;
    }
}


.p7-1 .section-img{
    background: url("../image/p7_1.jpg") no-repeat center center;
    background-size: cover;
}
.p7-2 .section-img{
    background: url("../image/p7_2.jpg") no-repeat center center;
    background-size: cover;
}
.p7-3 .section-img{
    background: url("../image/p7_3.jpg") no-repeat center center;
    background-size: cover;
}
.p7-4 .section-img{
    background: url("../image/p7_4.jpg") no-repeat center center;
    background-size: cover;
}
.p7-5 .section-img{
    background: url("../image/p7_5.jpg") no-repeat center center;
    background-size: cover;
}
.p7-2 .content .plan-text{
    color: #fff;
    margin-top: 25px;
}
.p7-2 .content .plan-title{
    color: #fff;
}
.p7-4 .content{
    width: 62.5%;
    height: 100%;
    padding-top: 33.1vh;
}
.p7-4 .content .plan-text{
    margin-top: 25px;
}
@media (max-width: 768px){
    .p7-1 .section-img{
        background: url("../image/p7_1.jpg") no-repeat 78% center;
        background-size: auto 100%;
    }
    .p7-2 .section-img{
        background: url("../image/p7_2.jpg") no-repeat center center;
        background-size: auto 100%;
    }
    .p7-3 .section-img{
        background: url("../image/p7_3.jpg") no-repeat center center;
        background-size: auto 100%;
    }
    .p7-4 .section-img{
        background: url("../image/p7_4.jpg") no-repeat 20% center;
        background-size: auto 100%;
    }
    .p7-5 .section-img{
        background: url("../image/p7_5.jpg") no-repeat center center;
        background-size: auto 100%;
    }
    .p7-4 .content{
        width: 95%;
    }
    .p7-4 .content .plan-text{
        float: none;
        text-align: center;
        line-height: 1.4;
    }
    .p7-4 .content .plan-title{
        text-align: center;
    }
}


.p8-1 .section-img{
    background: url("../image/p8_1.jpg") no-repeat center center;
    background-size: cover;
}
.p8-2 .section-img{
    background: url("../image/p8_2.jpg") no-repeat center center;
    background-size: cover;
}
.p8-3 .section-img{
    background: url("../image/p8_3.jpg") no-repeat center center;
    background-size: cover;
}
.p8-4 .section-img{
    background: url("../image/p8_4.jpg") no-repeat center center;
    background-size: cover;
}
.p8-5 .section-img{
    background: url("../image/p8_5.jpg") no-repeat center center;
    background-size: cover;
}
.p8-3 .content{
    width: 85%;
    height: 100%;
    padding-left: 30%;
    padding-top: 60vh;
}
.p8-2 .content .plan-text,
.p8-2 .content .plan-title{
    color: #fff;
}
.p8-3 .content .plan-title-sub{
    font-size: 30px;
    font-size: 1.5625vw;
    color: #333;
}
.p8-3 .content .plan-text,
.p8-3 .content .plan-title{
    color: #333;
}
.p8-3 .content .plan-line{
    background: #333;
}
.p8-4 .content{
    width: 62.5%;
    height: 100%;
    padding-top: 20vh;
}
.p8-4 .content .plan-text{
    margin-top: 25px;
}
@media (max-width: 768px) {
    .p8-1 .section-img{
        background: url("../image/p8_1.jpg") no-repeat 75% center;
        background-size: auto 90%;
    }
    .p8-2 .section-img{
        background: url("../image/p8_2.jpg") no-repeat center center;
        background-size: auto 100%;
    }
    .p8-3 .section-img{
        background: url("../image/p8_3.jpg") no-repeat center center;
        background-size: cover;
    }
    .p8-4 .section-img{
        background: url("../image/p8_4.jpg") no-repeat 18% center;
        background-size: auto 90%;
    }
    .p8-5 .section-img{
        background: url("../image/p8_5.jpg") no-repeat center center;
        background-size: cover;
    }
    .p8-3 .content{
        width: 95%;
        padding-left: 0;
        padding-top: 20vh;
    }
    .p8-4 .content{
        width: 95%;
        height: 100%;
        padding-top: 20vh;

    }
    .p8-4 .content .plan-text,
    .p8-4 .content .plan-title{
        text-align: center;
        float: none;
    }
}


.p9-1 .section-img{
    background: url("../image/p9_1.jpg") no-repeat center center;
    background-size: cover;
}
.p9-2 .section-img{
    background: url("../image/p9_2.jpg") no-repeat center center;
    background-size: cover;
}
.p9-3 .section-img{
    background: url("../image/p9_3.jpg") no-repeat center center;
    background-size: cover;
}
.p9-4 .section-img{
    background: url("../image/p9_4.jpg") no-repeat center center;
    background-size: cover;
}
.p9-5 .section-img{
    background: url("../image/p9_5.jpg") no-repeat center center;
    background-size: cover;
}
.p9-2 .content .plan-text,
.p9-2 .content .plan-title{
    color: #fff;
}
.p9-4 .content{
    width: 75%;
}
.p9-4 .content .plan-text{
    margin-top: 25px;
}
@media (max-width: 768px) {
    .p9-1 .section-img{
        background: url("../image/p9_1.jpg") no-repeat 76% center;
        background-size: auto 100%;
    }
    .p9-4 .section-img{
        background: url("../image/p9_4.jpg") no-repeat 30% center;
        background-size: auto 100%;
    }
    .p9-4 .content{
        width: 95%;
    }
    .p9-4 .content .plan-text,
    .p9-4 .content .plan-title{
        text-align: center;
        float: none;
    }
}


.p10-1 .section-img{
    background: url("../image/p10_1.jpg") no-repeat center center;
    background-size: cover;
}
.p10-2 .section-img{
    background: url("../image/p10_2.jpg") no-repeat center center;
    background-size: cover;
}
.p10-3 .section-img{
    background: url("../image/p10_3.jpg") no-repeat center center;
    background-size: cover;
}
.p10-4 .section-img{
    background: url("../image/p10_4.jpg") no-repeat center center;
    background-size: cover;
}
.p10-5 .section-img{
    background: url("../image/p10_5.jpg") no-repeat center center;
    background-size: cover;
}
.p10-2 .content .plan-text,
.p10-2 .content .plan-title{
    color: #fff;
}
.p10-3 .content .plan-text,
.p10-3 .content .plan-title{
    color: #333;
}
.p10-3 .content .plan-line{
    background: #333;
}
@media (max-width: 768px) {
    .p10-1 .section-img{
        background: url("../image/p10_1.jpg") no-repeat 20% center;
        background-size: auto 100%;
    }
    .p10-4 .section-img{
        background: url("../image/p10_4.jpg") no-repeat 90% center;
        background-size: auto 100%;
    }
}



.p11-1 .section-img{
    background: url("../image/p11_1.jpg") no-repeat center center;
    background-size: cover;
}
.p11-2 .section-img{
    background: url("../image/p11_2.jpg") no-repeat center center;
    background-size: cover;
}
.p11-3 .section-img{
    background: url("../image/p11_3.jpg") no-repeat center center;
    background-size: cover;
}
.p11-4 .section-img{
    background: url("../image/p11_4.jpg") no-repeat center center;
    background-size: cover;
}
.p11-5 .section-img{
    background: url("../image/p11_5.jpg") no-repeat center center;
    background-size: cover;
}
.p11-4 .content{
    width: 62.5%;
    height: 100%;
    padding-top: 17vh;
}
.p11-4 .content .plan-text,
.p11-4 .content .plan-title{
    color: #241404;
}
.p11-4 .content .plan-text{
    margin-top: 25px;
}
@media (max-width: 768px) {
    .p11-1 .section-img{
        background: url("../image/p11_1.jpg") no-repeat 60% center;
        background-size: auto 100%;
    }
    .p11-2 .section-img{
        background: url("../image/p11_2.jpg") no-repeat 25% center;
        background-size: auto 90%;
    }
    .p11-3 .section-img{
        background: url("../image/p11_3.jpg") no-repeat center center;
        background-size: auto 100%;
    }
    .p11-4 .section-img{
        background: url("../image/p11_4.jpg") no-repeat 45% center;
        background-size: auto 100%;
    }
    .p11-5 .section-img{
        background: url("../image/p11_5.jpg") no-repeat center center;
        background-size: auto 100%;
    }
    .p11-4 .content{
        width: 95%;
        height: 100%;
        padding-top: 17vh;
    }
    .p11-4 .content .plan-text,
    .p11-4 .content .plan-title{
        text-align: center;
        float: none;
        line-height: 1.4;
    }
}


.cert-header{
    background: url("../image/cert_top.jpg") no-repeat center center;
    background-size: cover;
}
.cert-body{
    padding: 74px 0 60px;
}
.cert-box{
    width: 1200px;
    margin: 0 auto;
}
.cert-1,
.cert-2{
    justify-content: space-between;
    -webkit-justify-content: space-between;
}
.cert-1 li,
.cert-1 li img{
    width: 290px;
    height: 193px;
}
.cert-2{
    margin-top: 30px;
}
.cert-2 li,
.cert-2 li img{
    width: 195px;
    height: 290px;
}

@media (max-width: 738px){
    .cert-body{
        padding: 30px 0;
    }
    .cert-box{
        width: 95%;
        margin: 0 auto;
    }
    .cert-1,
    .cert-2{
        flex-wrap: wrap;
    }
    .cert-1 li{
        width: 100%;
    }
    .cert-1 li{
        display: block;
        margin-top: 10px;
        text-align: center;
    }
    .cert-2{
        margin-top: 10px;
    }
    .cert-2 li{
        width: 49%;
        height: 290px;
        margin-top: 10px;
    }
    .cert-2 li img{
        max-width: 100%;
    }
}



.job-header{
    background: url("../image/job_top.jpg") no-repeat;
    background-size: cover;
}
.job-body{
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
}
.job-left{
    float: left;
    width: 470px;
}
.job-right{
    position: relative;
    float: left;
    width: 730px;
}
.job-top{
    padding: 82px 0 16px;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    border-bottom: 2px solid #1b1b1b;
}
.job-name{
    display: inline-block;
    
    padding: 39px 0 10px;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    border-bottom: 2px solid #21477d;
}
.job-info{
    margin-top: 30px;
    font-size: 14px;
    color: #333;
}
.job-info div{
    line-height: 30px;
}
.job-yq{
    margin-top: 42px;
    font-size: 14px;
    color: #333;
    padding-right: 140px;
}
.job-yq li{
    line-height: 30px;
}
.job-gw-box{
    padding-top: 38px;
    padding-right: 140px;
}
.gw-title,
.gw-list li{
    font-size: 14px;
    color: #333;
    line-height: 30px;
}
.job-btn{
    position: absolute;
    top: 158px;
    right: 0;
    width: 125px;
    height: 34px;
    border-radius: 34px;
    background: #bfbfbf;
    color: #fff;
    font-size: 15px;
    border: none;
    outline: none;
    transition: background .2s ease-in-out;
}
.job-btn:hover{
    background: #1d9d89;
}