body.pad140{
    padding-top: 140px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255);
    z-index: 999;
}

header .w1200{
    display: flex;
    height: 80px;
    justify-content: space-between;
    align-items: center;
}

.nav{
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 9;
    line-height: 60px;
    background: #085aa2;
}

.nav ul li{
    position: relative;
    float: left;
    width: 12%;
    margin: 0 0.25%;
}

.nav ul li::after{
    position: absolute;
    display: block;
    width: 100%;
    height: 50%;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: all .6s;
    transform: scaleX(0);
    transform-origin: 100% 0;
    background: #085497;
    content: "";
}

.nav ul li::before{
    position: absolute;
    display: block;
    width: 100%;
    height: 50%;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all .6s;
    transform: scaleX(0);
    transform-origin:0 100%;
    background: #13569d;
    content: "";
}

.nav ul li.cur::before,
.nav ul li:hover::before,
.nav ul li.cur::after,
.nav ul li:hover::after{
    transform: scaleX(1);
}

.nav ul li a{
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    font-size: 16px;
}

.nav ul li a::after{
    position: absolute;
    width: 0;
    height: 1px;
    right: 20px;
    top: 29px;
    background: #fff;
    transition: .6s;
    content: "";
}


.nav ul li.cur a::after,
.nav ul li:hover a::after{
    width: 12px;
}

.nav ul li a::before{
    position: absolute;
    width: 0;
    height: 1px;
    left: 20px;
    top: 29px;
    background: #fff;
    transition: .6s;
    content: "";
}

.nav ul li.cur a::before,
.nav ul li:hover a::before{
    width: 12px;
}

.language{
    color: #333;
}

.language a{
    position: relative;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    margin: 0 10px;
    color: #333;
}

.language a.cur::after,
.language a:hover::after{
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0255a1;
    content: "";
}

.btn_nav{
    display: none;
    height: 80px;
    width: 80px;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    cursor: pointer;
}

.btn_nav .row{
    height: 2px;
    width: 20px;
    margin: 3px 0;
    background: #999;
}

.m_nav{
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.m_nav .m_nav_mask{
    width: 30%;
    height: 100%;
    background: rgba(0,0,0,.3);
}

.m_nav > ul{
    width: 70%;
    height: 100%;
    background: #2A3846;
    overflow: auto;
}

.m_nav > ul > li{
    width: 100%;
}

.m_nav ul li a,
.m_nav > ul > li > .icon_add,
.m_nav > ul > li > ul > li > a,
.m_nav > ul > li > ul > li .tit{
    display: block;
    position: relative;
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 14px;
    border-bottom: 1px solid #808080;
}

.m_nav > ul > li > a,
.m_nav > ul > li > .icon_add{
    padding: 0 12px;
    background: #2A3846;
}

.m_nav > ul > li > .icon_add::after,
.m_nav > ul > li > ul > li > a::after{
    position: absolute;
    right: 12px;
    top: 0;
    height: 40px;
    width: 11px;
    background: url(../images/icon_arrow_white_down.png) no-repeat center;
    background-size: 11px 6px;
    transition: .6s;
    content: '';
}

.m_nav > ul > li > ul > li > a.icon_add2::after{
    width: 0;
}

.m_nav > ul > li.cur > .icon_add::after,
.m_nav > ul > li.active > .icon_add::after,
.m_nav > ul > li > ul > li.active > a::after{
    transform: rotate(180deg);
}

.m_nav > ul > li > ul > li > a{
    padding: 0 24px;
    background: #3B4046;
}

.m_nav > ul > li > ul > li .tit{
    padding: 0 38px;
}

.m_nav > ul > li > ul > li ul li a{
    padding: 0 58px;
    background: #3B4046;
}

.m_nav > ul ul{
    display: none;
}

.banner .swiper-slide img{
    width: 100%;
}

.banner .swiper-slide img.pc{
    display: block;
}

.banner .swiper-slide img.m{
    display: none;
}

.banner .swiper-pagination .swiper-pagination-bullet{
    width: 80px;
    height: 3px;
    border-radius: 4px;
    background: #ccc;
    opacity: 1;
}

.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: #fff;
}

/* content1 */

.c_tit h2{
    font-size: 40px;
    font-family: Arial;
    font-weight: bold;
    text-transform: uppercase;
    color: #085aa2;
}

.c_tit p{
    font-size: 36px;
    color: #333;
}

.c_tit.white h2{
    color: #fff;
}

.c_tit.white p{
    color: #fff;
}

.content1{
    margin-top: 140px;
    padding: 80px 0;
    background: #f8f8f8;
}

.content1 .top{
    display: flex;
    flex-wrap: wrap;
}

.content1 .top .left,
.content1 .top .right{
    width: 50%;
}

.content1 .top .left .info{
    margin: 40px 0;
    padding-right: 60px;
}

.content1 .top .left .info p{
    font-size: 14px;
    line-height: 24px;
    color: #333;
    text-indent: 2em;
}

.content1 .top .right .pic{
    margin-top: -140px;
    width: 100%;
    overflow: hidden;
}

.content1 .top .right .pic img{
    width: 100%;
    transition: .6s;
}

.content1 .top .right .pic:hover img{
    transform: scale(1.1);
}

.c_more{
    display: block;
    width: 88px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    color: #999;
    border: 1px solid #ddd;
    transition: .6s;
}

.c_more.white{
    color: #fff;
    border: 1px solid #fff;
}

.c_more:hover{
    border: 1px solid #14559c;
    background: #14559c;
    color: #fff;
}

.content1 .bot{
    display: flex;
    margin-top: 80px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.content1 .bot .col{
    width: 25%;
    text-align: center;
}

.content1 .bot .col:nth-child(1),
.content1 .bot .col:nth-child(2),
.content1 .bot .col:nth-child(3){
    border-right: 1px solid #ddd;
}

.content1 .bot .col span{
    font-size: 46px;
    color: #085aa2;
}

.content1 .bot .col p{
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
}

/* content2 */

.content2{
    padding: 80px 0;
    background: url(../images/content2_bg.jpg) no-repeat center;
    background-size: cover;
}

.content2 .swiper-container{
    margin-top: 60px;
}

.content2 .wrap{
    width: 100%;
    padding: 30px 10px 44px;
    background: #fff;
}

.content2 .wrap .pic{
    display: block;
    width: 80px;
    margin: 0 auto;
}

.content2 .wrap .pic img{
    display: block;
    width: 100%;
}

.content2 .wrap p{
    margin: 40px 0;
    text-align: center;
    font-size: 18px;
    color: #333;
}

.content2 .wrap .c_more{
    margin: 0 auto;
}

.content2 .swiper-button-prev,
.content3 .swiper-button-prev{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: url(../images/icon_next.png) no-repeat center;
    background-size: 60px 60px;
    outline: none;
    transform: rotate(180deg);
}

.content2 .swiper-button-prev:hover,
.content3 .swiper-button-prev:hover{
    background: url(../images/icon_prev.png) no-repeat center;
    background-size: 60px 60px;
    transform: rotate(0);
}

.content2 .swiper-button-next,
.content3 .swiper-button-next{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: url(../images/icon_next.png) no-repeat center;
    background-size: 60px 60px;
}

.content2 .swiper-button-next:hover,
.content3 .swiper-button-next:hover{
    background: url(../images/icon_prev.png) no-repeat center;
    background-size: 60px 60px;
    transform: rotate(180deg);
}

/* content3 */

.content3{
    padding: 74px 0 80px;
}

.content3 .swiper-container{
    margin-top: 60px;
}

.content3 .swiper-slide .wrap{
    position: relative;
    display: block;
}

.content3 .swiper-slide .wrap .pic{
    width: 100%;
    overflow: hidden;
}

.content3 .swiper-slide .wrap .pic img{
    width: 100%;
}

.content3 .swiper-slide .wrap .mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.36);
    transition: .6s;
    z-index: 2;
}

.content3 .swiper-slide.swiper-slide-active .wrap .mask{
    opacity: 0;
}

.content3 .swiper-slide .wrap .mask .tit,
.content3 .swiper-slide .wrap .mask p,
.content3 .swiper-slide .wrap .mask .c_more{
    opacity: 0;
}

.content3 .swiper-slide .wrap:hover .mask,
.content3 .swiper-slide .wrap:hover .mask .tit,
.content3 .swiper-slide .wrap:hover .mask p,
.content3 .swiper-slide .wrap:hover .mask .c_more{
    opacity: 1;
}

.content3 .swiper-slide .wrap .mask{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.content3 .swiper-slide .wrap .mask .mask_wrap{
    width: 80%;
}

.content3 .swiper-slide .wrap .mask .tit{
    width: 100%;
    margin-bottom: 24px;
    color: #fff;
    font-size: 16px;
}

.content3 .swiper-slide .wrap .mask p{
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
}

/* content4 */

.content4{
    padding: 80px 0;
    background: #f8f8f8;
}

.content4 .pro_wrap{
    display: flex;
    margin-top: 60px;
    justify-content: flex-start;
    align-items: center;
}

.content4 .pro_wrap .wrap{
    position: relative;
    width: 20%;
    overflow: hidden;
}

.content4 .pro_wrap .wrap .mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    opacity: 0;
    transition: .6s;
}

.content4 .pro_wrap .wrap .tit{
    position: absolute;
    top: 20px;
    padding: 0 16px;
    color: #fff;
}


/* content5 */

.content5{
    padding: 80px 0;
}

.content5 .flex{
    display: flex;
    margin-top: 60px;
    justify-content: center;
    align-items: center;
}

.content5 .flex .flex_left{
    width: 30%;
}

.content5 .flex .flex_left .pic{
    width: 100%;
    overflow: hidden;
}

.content5 .flex .flex_left .pic img{
    width: 100%;
    transition: .6s;
}

.content5 .flex .flex_left .pic:hover img{
    transform: scale(1.1);
}

.content5 .flex .flex_left p{
    margin-top: 20px;
    font-size: 18px;
    color: #14559c;
}

.content5 .flex .flex_right{
    width: 70%;
    padding: 0 0 0 8%;
}

.content5 .flex .flex_right .wrap + .wrap{
    margin-top: 40px;
}

.content5 .flex .flex_right .wrap{
    display: flex;
    width: 100%;
    align-items: center;
}

.content5 .flex .flex_right .wrap .time span{
    text-align: right;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.content5 .flex .flex_right .wrap .time p{
    text-align: right;
    color: #666;
    font-size: 14px;
}

.content5 .flex .flex_right .wrap .info{
    width: 72%;
    margin-left: 6%;
    padding-left: 6%;
    border-left: 1px solid #ddd;
}

.content5 .flex .flex_right .wrap .info .tit{
    font-size: 16px;
    color: #333;
}

.content5 .flex .flex_right .wrap .info p{
    margin-top: 16px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.content5 .swiper-container{
    display: none;
    margin: 20px 0 0;
    padding-bottom: 30px;
}

.content5 .swiper-container .swiper-slide .wrap .pic img{
    width: 100%;
}

.content5 .swiper-container .swiper-slide .wrap .info{
    margin-top: 12px;
}

.content5 .swiper-container .swiper-slide .wrap .info .top{
    display: flex;
    justify-content: space-between;
}

.content5 .swiper-container .swiper-slide .wrap .info .top .tit{
    width: 60%;
}

.content5 .swiper-container .swiper-slide .wrap .info .bot{
    margin-top: 10px;    
}

.content5 .swiper-container .swiper-slide .wrap .info .bot p{
    font-size: 12px;
}

.content5 .swiper-pagination .swiper-pagination-bullet{
    width: 10px;
    height: 4px;
    margin: 0 4px;
    border-radius: 4px;
    background: #ddd;
    opacity: 1;
}

.content5 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 40px;
    background: #085AA2;
}


/* content6 */

.content6{
    padding: 80px 0;
    height: 508px;
    background: url(../images/content6_bg.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

.content6 .swiper-container{
    margin-top: 60px;
}

.content6 .swiper-container .swiper-slide .wrap img{
    width: 100%;
}

.content6 .swiper-pagination{
    left: 50%;
    margin-top: 40px;
    transform: translate(-50%,0);
}

.content6 .swiper-pagination .swiper-pagination-bullet{
    width: 10px;
    height: 4px;
    margin: 0 4px;
    border-radius: 4px;
    background: #ccc;
    opacity: 1;
}

.content6 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 40px;
    background: #fff;
}

.footer{
    background: #2a3846;
}

.footer .flex{
    display: flex;
    padding: 40px 0;
    justify-content: space-between;
}

.footer .flex .left .row{
    display: flex;
    margin-bottom: 24px;
    justify-content: flex-start;
    align-items: center;
}

.footer .flex .left .row:last-child{
    margin-bottom: 0;
}

.footer .flex .left .row p{
    color: #fff;
}

.footer .flex .left .row img{
    display: block;
    margin-right: 14px;
}

.footer .flex .right img{
    display: block;
    margin-bottom: 10px;
}

.footer .flex .right p{
    color: #fff;
}

.copyright{
    line-height: 60px;
    border-top: 1px solid #ddd;
    background: #2a3846;
    text-align: center;
    color: #fff;
}

.copyright a{
    display: inline-block;
    color: #fff;
    vertical-align: middle;
}

.copyright span{
    display: inline-block;
    margin: 0 10px;
    vertical-align: middle;
}

.m_footer{
    position: fixed;
    display: none;
    width: 100%;
    height: 44px;
    bottom: 0;
    left: 0;
    line-height: 44px;
    background: #085AA2;
    z-index: 999;
}

.m_footer a{
    position: relative;
    flex: 1;
    text-align: center;
    color: #fff;
}

.m_footer a + a::before{
    position: absolute;
    top: 24%;
    left: 0;
    width: 1px;
    height: 52%;
    background: #fff;
    content: '';
}


/* about */

.i_banner img{
    width: 100%;
}

.i_banner img.pc{
    display: block;
}

.i_banner img.m{
    display: none;
}

.c_tit2{
    text-align: center;
    color: #333;
}

.c_tit2 h2{
    font-size: 36px;
}

.c_tit2.white{
    color: #fff;
}

.about{
    padding: 80px 0;
}

.about .flex{
    display: flex;
    margin-top: 60px;
    justify-content: center;
    align-items: center;
}

.about .flex .left,
.about .flex .right{
    width: 50%;
    height: 100%;
}

.about .flex .left img{
    width: 100%;
}

.about .flex .right{
    padding-left: 5%;
}

.about .flex .right .tit{
    position: relative;
    padding-bottom: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #333;
}

.about .flex .right .tit::after{
    position: absolute;
    width: 40px;
    height: 4px;
    left: 0;
    bottom: 0;
    background: #333;
    content: "";
}

.about .flex .right .info{
    margin-top: 40px;
}

.about .flex .right .over{
    max-height: 360px;
    padding-right: 10px;
    overflow: auto;
}

.about .flex .right .over::-webkit-scrollbar{
    width: 6px;
}

.about .flex .right .over::-webkit-scrollbar-thumb{
    
    background: #23517a;
}

.about .flex .right .info .over p{
    text-indent: 2em;
    font-size: 14px;
    line-height: 28px;
}


/* honor */

.honor{
    padding: 80px 0;
    background: url(../images/honor_bg.jpg) no-repeat center;
    background-size: cover;
}

.honor .honor_wrap{
    display: flex;
    margin-top: 60px;
    justify-content: center;
    align-items: center;
}

.honor .honor_wrap .wrap{
    width: calc(100% / 3 - 20px);
    margin: 0 10px;
}

.honor .honor_wrap .wrap .pic{
    width: 100%;
    overflow: hidden;
}

.honor .honor_wrap .wrap .pic img{
    width: 100%;
}

.honor .honor_wrap .wrap .info{
    margin-top: 20px;
    text-align: center;
}

.c_page{
    display: flex;
    width: 100%;
    margin-top: 60px;
    justify-content: center;
}

.projects .c_page{
    margin-top: 30px;
}

.c_page a{
    display: block;
    width: 36px;
    height: 36px;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    line-height: 36px;
    color: #666;
}

.c_page a.cur,
.c_page a:hover{
    background: #085aa2;
    color: #fff;
    border: 1px solid #085aa2;
}


/* culture */

.culture{
    padding: 80px 0;
    background: url(../images/culture_bg.jpg) no-repeat center;
    background-size: cover;
}

.culture .flex{
    display: flex;
    margin-top: 60px;
    align-items: center;
    justify-content: center;
}

.culture .flex .left,
.culture .flex .right{
    width: 50%;
}

.culture .flex .left p{
    font-size: 14px;
    line-height: 24px;
    text-indent: 2em;
    color: #fff;
}


.culture .flex .right{
    display: flex;

    justify-content: center;
    align-items: center;
}

.culture .flex .right .wrap_box{
    position: relative;
    width: 100%;
    height: 100%;
}

.culture .flex .right .wrap{
    position: relative;
    width: 40%;
    border-radius: 50%;
    overflow: hidden;
}

.culture .flex .right .wrap img{
    width: 100%;
    transition: .6s;
}

.culture .flex .right .wrap:hover img{
    transform: scale(1.1);
}

.culture .flex .right .wrap p{
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 30px;
    transform: translate(-50%,-50%);
    color: #fff;
}

.culture .flex .right .wrap:nth-child(1){
    margin: 0 auto;
}

.culture .flex .right .wrap:nth-child(2){
    display: inline-block;
    margin: -60px -14% 0 14%;
    z-index: 2;
}

.culture .flex .right .wrap:nth-child(3){
    display: inline-block;
    margin: -60px 0 0 7%;
}


/* slogan */

.slogan{
    padding: 80px 0;
}

.slogan .flex{
    display: flex;
    margin-top: 60px;
    justify-content: center;
    align-items: flex-end;
}

.slogan .flex .left,
.slogan .flex .right{
    width: 50%;
}

.slogan .flex .left{
    padding: 0 20px 0 10px;
}

.slogan .flex .left .info .wrap{
    margin-bottom: 30px;
}

.slogan .flex .left .info .wrap p{
    font-size: 14px;
    line-height: 28px;
    color:#333;
}

.slogan .flex .left img{
    width: 100%;
}

.slogan .flex .right img{
    width: 100%;
}

/* i_nav */

.i_nav{
    position: relative;
    box-shadow: 0 0 4px rgba(0,0,0,.2);
    z-index: 2;
}

.i_nav .w1200 > ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.i_nav .w1200 > ul > li{
    position: relative;
    height: 80px;
    flex:1;
    line-height: 80px;
    text-align: center;
}

.i_nav .w1200 > ul > li.cur,
.i_nav .w1200 > ul > li:hover{
    background: #085aa2;
}

.i_nav .w1200 > ul > li > a{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.i_nav .w1200 > ul > li > a span{
    margin-right: 8px;
    font-size: 16px;
}

.i_nav .w1200 > ul > li > a .icon{
    display: block;
    width: 16px;
    height: 16px;
    fill: currentColor;
    color: #ddd;
}

.i_nav .w1200 > ul > li.cur > a,
.i_nav .w1200 > ul > li:hover > a{
    color: #fff;
}

.i_nav .w1200 > ul > li.cur > a .icon,
.i_nav .w1200 > ul > li:hover > a .icon{
    fill: currentColor;
    color: #ddd;
}

.i_nav ul .hide{
    position: absolute;
    display: none;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 4px rgba(0,0,0,.2);
}

.i_nav ul li.active .hide{
    display: block;
}

.i_nav ul .hide .tit{
    width: 100%;
    line-height: 44px;
    text-align: left;
    font-size: 16px;
}

.i_nav ul .hide .tit a{
    display: block;
    width: 100%;
    padding-left: 30px;
    line-height: 44px;
}

.i_nav ul .hide .tit:hover a{
    color: #085599;
}

.i_nav ul .hide ul li{
    line-height: 36px;
    text-align: left;
}

.i_nav ul .hide ul li a{
    display: flex;
    padding-left: 30px;
    align-items: center;
}

.i_nav ul .hide ul li a .icon{
    display: inline-block;
    width: 24px;
    transform: rotate(180deg);
    vertical-align: middle;
    opacity: 0;
}

.i_nav ul .hide ul li.cur a .icon,
.i_nav ul .hide ul li:hover a .icon{
    opacity: 1;
}

.i_nav ul .hide ul li.cur a span,
.i_nav ul .hide ul li:hover a span{
    color: #085aa2;
}

.i_nav ul .hide ul li a span{
    display: inline-block;
    margin-left: 10px;
}


/* 下属公司 */

.company{
    padding: 160px 0 80px;
    background-color: #f5f5f5;
}

.company .flex{
    display: flex;
    justify-content: center;
    align-items: center;
}

.company .flex .left,
.company .flex .right{
    position: relative;
    width: 50%;
    padding: 0 20px;
}

.company .flex .left img{
    position: relative;
    width: 100%;
    z-index: 2;
}

.company .flex .left .left_bg{
    position: absolute;
    right: 100px;
    top: -60px;
    width: 820px;
    height: 460px;
    z-index: 1;
}

.company .flex .right .tit{
    margin-bottom: 40px;
}

.company .flex .right .tit p{
    font-size: 24px;
    color: #085aa2;
    font-family: Arial;
    text-transform: uppercase;
}

.company .flex .right .tit h2{
    margin-top: 20px;
    font-size: 30px;
    color: #333;
}

.company .flex .right .info p{
    text-indent: 2em;
    font-size: 14px;
    line-height: 24px;
    color: #333;
}

/* products */

.products{
    padding: 80px 0;
}

.products .pro_tit{
    margin-bottom: 60px;
    font-size: 36px;
    text-align: center;
    color: #333;
}

.products .pro_wrap{
    display: flex;
    flex-wrap: wrap;
}

.products .pro_wrap .wrap{
    width: calc(25% - 15px);
    margin-right: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.products .pro_wrap .wrap:hover{
    border: 1px solid #085aa2;
}

.products .pro_wrap .wrap:nth-child(4n){
    margin-right: 0;
}

.products .pro_wrap .wrap .pic{
    width: 100%;
    background: #fff;
    overflow: hidden;
    text-align: center;
}

.products .pro_wrap .wrap .pic img{
    display: block;
    width: 100%;
    margin: 0 auto;
    transition: .6s;
}

.products .pro_wrap .wrap:hover .pic img{
    transform: scale(1.1);
}

.products .pro_wrap .wrap .info{
    padding: 10px 20px;
}

.products .pro_wrap .wrap .info .tit{
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.products .pro_wrap .wrap .info p{
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
}


/* .products_show */

.products_show{
    padding: 80px 0;
}

.pro_show_top{
    display: flex;
    align-items: flex-end;
}

.pro_show_top .left .tit .top{
    font-size: 36px;
    font-weight: bold;
    color: #085aa2;
}

.pro_show_top .left .tit .top span{
    font-size: 80px;
    font-style: italic;
    color: #085aa2;
}

.pro_show_top .left .tit .bot span{
    display: block;
    margin-top: 20px;
    font-size: 24px;
    color: #085aa2;
}

.pro_show_top .left,
.pro_show_top .right{
    width: 50%;
}

.pro_show_top .left .info{
    position: relative;
    width: 120%;
    min-height: 240px;
    padding: 30px 160px 30px 30px;
    margin-top: 40px;
    background: #2d2d2d;
    z-index: 2;
}

.pro_show_top .left .info h3,
.pro_show_top .left .info p{
    color: #fff;
}

.pro_show_top .left .info h3{
    margin-bottom: 30px;
    font-size: 18px;
}

.pro_show_top .left .info p{
    margin-bottom: 20px;
    font-size: 14px;
}

.pro_show_top .right img{
    width: 100%;
}

.pro_show_info_tit{
    margin: 80px 0 60px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    color: #333;
}

.pro_show_info .row{
    margin-bottom: 30px;
}

.pro_show_info .row b{
    display: block;
    margin-bottom: 14px;
    color: #180d0d;
    font-size: 16px;
}

.pro_show_info .row p{
    font-size: 14px;
    line-height: 28px;
    color: #666;
}

.pro_show_info table{
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

.pro_show_info table td{
    padding: 10px;
    border:1px solid #ddd;
}

.pro_show_info table tr:nth-child(1){
    text-align: center;
    font-size: 16px;
}


/* projects */

.projects{
    padding: 80px 0;
}

.projects .project_tit{
    margin-bottom: 60px;
    font-size: 36px;
    text-align: center;
    color: #333;
}

.projects_wrap{
    display: flex;
    flex-wrap: wrap;
}

.projects_wrap .wrap{
    position: relative;
    width: calc(33% - 20px);
    margin-right: 30px;
    margin-bottom: 30px;
}

.projects_wrap .wrap:nth-child(3n){
    margin-right: 0;
}

.projects_wrap .wrap .pic{
    width: 100%;
}

.projects_wrap .wrap .pic img{
    width: 100%;
}

.projects_wrap .wrap .info{
    position: absolute;
    display: flex;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    opacity: 0;
    transition: .6s;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.projects_wrap .wrap .info p{
    padding: 0 10px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.projects_wrap .wrap:hover .info{
    opacity: 1;
}


/* news */

.news{
    padding: 80px 0;
}

.news_tit{
    margin-bottom: 60px;
    font-size: 36px;
    text-align: center;
    color: #333;
}

.news_wrap{
    display: flex;
    flex-wrap: wrap;
}

.news_wrap .wrap{
    width: calc(100% / 3);
    padding: 35px 20px;
    border-left: 1px solid #ddd;
    transition: .6s;
}

.news_wrap .wrap:nth-child(3n){
    border-right: 1px solid #ddd;
}

.news_wrap .wrap:hover{
    background: #085aa2;
}

.news_wrap .wrap .time{
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.news_wrap .wrap .tit{
    margin-bottom: 40px;
    font-size: 16px;
    color: #333;
}

.news_wrap .wrap .pic{
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}

.news_wrap .wrap .pic img{
    width: 100%;
}

.news_wrap .wrap .info{
    margin-bottom: 20px;
}

.news_wrap .wrap .info p{
    line-height: 150%;
}

.news_wrap .wrap:hover .time{
    color: #fff;
}

.news_wrap .wrap:hover p{
    color: #fff;
}

.news_wrap .wrap:hover .tit{
    color: #fff;
}


/* video */

.video{
    padding: 80px 0;
}

.video .video_tit{
    margin-bottom: 60px;
    font-size: 36px;
    text-align: center;
    color: #333;
}

.video_box{
    display: flex;
    flex-wrap: wrap;
}

.video_wrap{
    margin: 0 30px 30px 0;
    width: calc(100% / 3 - 20px);
}

.video_wrap:nth-child(3n){
    margin-right: 0;
}

.video_wrap .top > img{
    width: 100%;
}

.video_wrap .top .mask{
    transition: .6s;
    opacity: 0;
}

.video_wrap:hover .top .mask{
    opacity: 1;
}


/* news_show*/

.news_show{
    padding: 80px 0;
}

.news_show .title{
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

.news_show .title h1{
    margin-bottom: 20px;
	font-size: 24px;
	font-weight: bold;
}

.news_show .title span{
    color: #999;
}

.news_show .news_show_info{
	text-align: center;
}

.news_show .news_show_info p{
	margin: 20px 0;
	line-height: 24px;
	text-indent: 2em;
	text-align: left;
}

.news_show .news_show_info img,
.news_show .news_show_info p img{
	display: block;
	max-width: 100%;
	margin: 20px auto;
	text-align: center;
}

.news_show table{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

.news_show table td{
    padding: 10px;
    border: 1px solid #ddd;
}

.news_show .title span{
    display: inline-block;
	margin: 0 10px;
	font-size: 18px;
}

.news_show .news_show_row img{
    display: block;
    max-width: 100%;
    margin: 20px auto;
}

.news_show .news_show_row p{
    margin: 10px 0;
    font-size: 18px;
    line-height: 36px;
}

.page{
    position: relative;
    border-top: 1px solid #ccc;
}

.page .row{
    display: block;
	margin: 30px 0;
	font-size: 18px;
}

.page .c_more{
    position: absolute;
    right: 0;
    top: 60px;
	width: 60px;
    height: 24px;
    border: 1px solid #ddd;
	text-align: center;
	line-height: 24px;
	font-size: 14px;
}


/* 招商加盟 */

.join{
    padding: 80px 0;
}

.join1_wrap .wrap{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
}

.join1_wrap .wrap:nth-child(2n-1){
    flex-direction: row-reverse;
}

.join1_wrap .wrap .left,
.join1_wrap .wrap .right{
    width: 50%;
}

.join1_wrap .wrap .left .info{
    margin: 40px 0;
    padding: 0 5% 0 0;
}

.join1_wrap .wrap:nth-child(2n+1) .left .info{
    padding: 0 0 0 5%;
}

.join1_wrap .wrap .left .info .tit{
    display: flex;
    overflow: hidden;
}

.join1_wrap .wrap .left .info .tit .num{
    position: relative;
    margin-bottom: -20px;
    line-height: 100%;
    font-size: 40px;
    color: #ddd;
    font-weight: bold;
}

.join1_wrap .wrap .left .info .tit span{
    display: block;
    margin-left: 10px;
    font-weight: bold;
    font-size: 20px;
    color: #333;
}

.join1_wrap .wrap .left .info .tit p{
    display: block;
    margin-left: 15px;
    font-size: 14px;
    color: #999;
    line-height: 28px;
}

.join1_wrap .wrap .left .info .bot{
    margin-top: 20px;
}

.join1_wrap .wrap .left .info .bot p{
    line-height: 28px;
    font-size: 14px;
    color: #666;
}

.join1_wrap .wrap .right .pic{
    width: 98%;
    overflow: hidden;
}

.join1_wrap .wrap .right img{
    width: 100%;
    transition: .6s;
}

.join1_wrap .wrap .right:hover img{
    transform: scale(1.1);
}


/* .join2_info */

.join2_info .row{
    margin:0 0 40px;
}

.join2_info .row .tit{
    margin-bottom: 20px;
    font-size: 20px;
    color: #333;
}

.join2_info .row p{
    line-height: 28px;
    font-size: 14px;
}


/* join3_wrap */

.join3_wrap{
    position: relative;
}

.join3_wrap::after{
    position: absolute;
    width: 100%;
    height: 240px;
    left: 0;
    top: 50%;
    margin-top: -120px;
    background: #085aa2;
    content: "";
}

.join3_wrap .swiper-container .swiper-slide{
    padding: 20px;
}

.join3_wrap .wrap{
    display: flex;
    padding: 30px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 2px 20px 0px rgba(208, 208, 208, 0.5);
    align-items: center;
    justify-content: center;
}

.join3_wrap .wrap .pic{
    width: 30%;
}

.join3_wrap .wrap .pic img{
    width: 100%;
}

.join3_wrap .wrap .info{
    width: 70%;
    padding: 0 5%;
}

.join3_wrap .wrap .info p{
    text-indent: 2em;
    font-size: 14px;
    color: #666;
    line-height: 28px;
}

.join3_wrap .swiper-pagination{
    left: 50%;
    margin-top: 20px;
    transform: translate(-50%,0);
}

.join3_wrap .swiper-pagination-bullet{
    width: 16px;
    height: 16px;
    margin: 0 5px;
    background: #eee;
    outline: none;
    opacity: 1;
}

.join3_wrap .swiper-pagination-bullet-active{
    background: #999;
}


/* join4_wrap */

.join4_tit{
    margin-bottom: 60px;
    font-size: 36px;
    text-align: center;
    color: #333;
}

.join4_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: stretch;
}

.join4_wrap .wrap{
    width: calc(50% - 20px);
    margin:0 20px 40px 0;
    box-shadow: 0px 0px 10px 0px rgba(208, 208, 208, 0.5);
}

.join4_wrap .wrap:nth-child(2n){
    margin: 0 0 40px 20px;
}

.join4_wrap .wrap .pic{
    width: 100%;
    overflow: hidden;
}

.join4_wrap .wrap .pic img{
    width: 100%;
    transition: .6s;
}

.join4_wrap .wrap:hover .pic img{
    transform: scale(1.1);
}

.join4_wrap .wrap .info{
    padding: 30px;
}

.join4_wrap .wrap .info .tit{
    margin-bottom: 17px;
    font-size: 18px;
    color: #333;
}

.join4_wrap .wrap .info p{
    font-size: 14px;
    line-height: 28px;
    color: #666;
}


/* join5 */

.join5 .join5_slogan{
    width: 100%;
    margin-bottom: 25px;
}

.join5_tit{
    margin-bottom: 60px;
    font-size: 36px;
    text-align: center;
    color: #333;
}

.join5 .flex{
    display: flex;
    position: relative;
    flex-wrap: wrap;
    margin-bottom: 80px;
    align-items: flex-end;
}

.join5 .flex .left{
    width: 50%;
}

.join5 .flex .left img{
    width: 100%;
}

.join5 .flex .info{
    position: absolute;
    width: 60%;
    right: 0;
    bottom: 0;
    padding: 40px 30px;
    background: #2d2d2d;
    z-index: 1;
}

.join5 .flex .info p{
    color: #fff;
    line-height: 28px;
    text-indent: 2em;
}

.join5_wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: stretchl
}

.join5_wrap .wrap{
    width: calc(100% / 3 - 20px);
    margin:0 30px 30px 0;
    box-shadow: 0px 0px 10px 0px rgba(208, 208, 208, 0.5);

}

.join5_wrap .wrap:nth-child(3n){
    margin:0 0 30px 0;
}

.join5_wrap .wrap .pic{
    width: 100%;
    overflow: hidden;
}

.join5_wrap .wrap .pic img{
    width: 100%;
    transition: .6s
}

.join5_wrap .wrap:hover .pic img{
    transform: scale(1.1);
}

.join5_wrap .wrap .info{
    padding: 20px 24px;
}

.join5_wrap .wrap .info .tit{
    margin-bottom: 13px;
    font-size: 18px;
    color: #333;
}

.join5_wrap .wrap .info p{
    font-size: 14px;
    line-height: 28px;
    color: #666;
}


/* join6 */

.join6 .top{
    position: relative;
}

.join6 .top img{
    width: 80%;
    max-width: 800px;
}

.join6 .top .info{
    position: absolute;
    right: 180px;
    top: 50%;
    padding: 50px 40px;
    width: 260px;
    height: 340px;
    background: #fff;
    transform: translate(0,-50%);
    box-shadow: 0px 2px 20px 0px rgba(196, 227, 255, 0.5);
    z-index: 2;
}

.join6 .top .info p{
    margin-bottom: 35px;
    font-size: 14px;
    line-height: 28px;
}

.join6 .top h2{
    position: absolute;
    right: 0;
    top: 120px;
    font-size: 140px;
    color: #eee;
    transform: rotate(90deg);
    text-transform: uppercase;
}

.join6 .join6_pic2{
    display: block;
    max-width: 844px;
    width: 80%;
    margin: 40px auto 0;
}

.join7 img{
    width: 100%;
}


/* contact */

.contact1_content1{
    position: relative;
    padding: 80px 0;
}

.contact1_content1::after{
    position: absolute;
    width: 100%;
    height: 140px;
    left: 0;
    top: 50%;
    margin-top: 56px;
    transform: translate(0,-50%);
    background: #085aa2;
    z-index: -1;
    content: "";
}

.contact1_content1 .tit,
.contact1_content3 .tit{
    margin-bottom: 60px;
    font-size: 36px;
    text-align: center;
    color: #333;
}

.contact1_content1 .wrap{
    display: flex;
    align-items: center;
}

.contact1_content1 .wrap img{
    max-width: 50%;
}

.contact1_content1 .wrap .info{
    padding: 0 0 0 4%;
}

.contact1_content1 .wrap .info p{
    color: #fff;
    font-size: 14px;
    line-height: 28px;
}

.contact1_content2{
    padding: 80px 0;
    background: #fafafa;
}

.contact1_content2 .tit{
    margin-bottom: 60px;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
}

.contact1_content2 .flex{
    display: flex;
    flex-wrap: wrap;
}

.contact1_content2 .flex .wrap{
    width: calc(100% / 3 - 20px);
    margin: 0 30px 30px 0;
    overflow: hidden;
}

.contact1_content2 .flex .wrap:nth-child(3n){
    margin: 0 0 30px;
}

.contact1_content2 .flex .wrap img{
    width: 100%;
    transition: .6s;
}

.contact1_content2 .flex .wrap:hover img{
    transform: scale(1.1);
}

.contact1_content2 .bot{
    display: flex;
    margin-top: 60px;
    flex-wrap: wrap;
}

.contact1_content2 .bot .wrap{
    width: 25%;
    text-align: center;
}

.contact1_content2 .bot .wrap .pic{
    display: block;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.contact1_content2 .bot .wrap .pic img{
    width: 100%;
}

.contact1_content2 .bot .wrap p{
    margin-top: 20px;
}

.contact1_content3{
    padding: 80px 0;
}

.contact1_content3 img{
    width: 100%;
}

.contact2{
    padding: 80px 0;
}

.contact2 .wrap{
    border-bottom: 1px solid #ddd;
}

.contact2_tit{
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.contact2_tit .num{
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    font-size: 16px;
    background: #085aa2;
    color: #fff;
}

.contact2_tit .right{
    margin-left: 20px;
}

.contact2_tit .right p{
    color: #085aa2;
    font-weight: bold;
    font-size: 18px;
}

.contact2_tit .right .bot{
    display: flex;
    margin-top: 2px;
    align-items: center;
    color: #666;
}

.contact2_tit .right .bot span{
    margin: 0 5px 0 0;
}

.contact2 .row{
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact2 .row span{
    width: 84px;
    font-size: 16px;
    color: #333;
}

.contact2 .row .right{
    padding-top: 3px;
    width: calc(100% - 84px);
    padding-left: 10px;
}

.contact2 .row .right p{
    margin-bottom: 10px;
}


/* cotact3 */

.contact3{
    padding: 80px 0;
    background: url(../images/contact3_bg.jpg) no-repeat center top;
    background-size: 100% 1080px;
    background-attachment: fixed;
}

.contact3 .map{
    width: 100%;
    height: 630px;
    margin-top: 40px;
}

.contact3 .wrap{
    padding: 60px 40px;
    background: #fff;
}

.contact3 .wrap > .top{
    display: flex;
    min-height: 390px;
    justify-content: center;
}

.contact3 .wrap .top .left,
.contact3 .wrap .top .right{
    width: 50%;
}

.contact3 .wrap .top .left .contact3_tit{
    position: relative;
    padding-bottom: 20px;
    color: #333;
    font-weight: bold;
    font-size: 36px;
}

.contact3 .wrap .top .left .contact3_tit::after{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: #085aa2;
    content: "";
}

.contact3 .wrap .top .right img{
    width: 100%;
}

.contact3 .wrap .top .left h2{
    margin: 40px 0;
    font-size: 20px;
}

.contact3 .wrap .top .info p{
    font-size: 14px;
    line-height: 28px;
}

.contact3 .swiper-container{
    position: relative;
}

.contact3 .swiper-button-prev,
.contact3 .swiper-button-next{
    position: absolute;
    width: 60px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #ddd;
}

.contact3 .swiper-button-prev{
    top: 420px;
    left: 40px;
    background-color: #085aa2;
    background-image: url(../images/icon_button_prev_white.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 12px 23px;
    outline: none;
}

.contact3 .swiper-button-prev.swiper-button-disabled{
    background-color: #fff;
    background-image: url(../images/icon_button_prev_gray.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 12px 23px;
    opacity: 1;
}

.contact3 .swiper-button-next{
    top: 420px;
    left: 120px;
    right: auto;
    background-color: #085aa2;
    background-image: url(../images/icon_button_next_white.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 12px 23px;
    outline: none;
}

.contact3 .swiper-button-next.swiper-button-disabled{
    background-color: #fff;
    background-image: url(../images/icon_button_next_gray.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 12px 23px;
    opacity: 1;
}


/* contact4 */

.contact4{
    padding: 80px 0;
}

.contact4 .flex{
    display: flex;
}

.contact4 .flex .pic{
    width: calc(50% - 20px);
}

.contact4 .flex .pic:nth-child(1){
    margin-right: 20px;
}

.contact4 .flex .pic:nth-child(2){
    margin-left: 20px;
}

.contact4 .flex .pic img{
    width: 100%;
}

.animate-box{
    opacity: 0;   
}
