*,::before,::after{
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #111111;
    transition: all .2s;
}
img{border:none;max-width: 100%;}
input { outline:none; }
.tc{text-align: center;}
.tl{text-align: left;}
.tr{text-align: right;}
.fl{float: left;}
.fr{float: right;}
.clear{zoom:1;}
.clear:after{content:"";height:0;line-height:0;display:block;visibility:hidden;clear:both;}
.relative{position: relative;}

.blue{color: #f08519;}
.black{color: #111111;}
.white{color: #ffffff;}
.bg-blue{background: #f08519;}
.bg-gray{background: #f5f5f5;}
.bg-white{background: #ffffff;}

.shadow{box-shadow: 1px 1px 8px rgba(0,0,0,.1)}

.mt-20{margin-top: 20px}
.mb-20{margin-bottom: 20px}
.mt-40{margin-top: 40px}
.mb-100{margin-bottom: 100px;}
.pl-0{padding-left: 0 !important}
.pr-0{padding-right: 0 !important}
.pb-100{padding-bottom: 100px;}
.w-100{width: 100%}

.hidden-1{
    white-space: nowrap;
    overflow: hidden;
    text-overflow:ellipsis;
}
.hidden-2{
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
}
.hidden-3{
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
}

.arrow{
    content: " ";
    height: 10px;
    width: 10px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    position: absolute;
    top: 50%;
    right: 12%;
}
.arrow-right{
    transform: translateY(-50%) rotate(45deg);
}
.arrow-left{
    transform: translateY(-50%) rotate(-135deg);
}
.arrow-black{
    border-color: #666;
}
.arrow-white{
    border-color: #fff;
}
.btn{
    display: inline-block;
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    color: #f08519;
    border-radius: 100px;
    background-size: 100% 100%;
    background-position: center;
    border:solid 1px #f08519;
    overflow: hidden;
    transition: all 0.2s ease-in-out; 
}
.btn-sm{
    height: 30px;
    line-height: 30px;
}
.btn-md{
    padding-left: 20px;
    padding-right: 20px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
}
.btn-lg{
    padding-left: 20px;
    padding-right: 20px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
}
.btn-white{
    color: #ffffff;
    border:solid 1px #ffffff;
}
.btn-white:hover{
    color: #f08519;
    background: rgba(255,255,255,0.5);
}
.btn-white:hover span.arrow{
    border-color: #f08519
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9{
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
    float: left;
}
.row{
    margin-right: -10px;
    margin-left: -10px;
}
.row:after, .row:before {
    display: table;
    content: " ";
}
.col-xs-4{
    width: 33.333333%;
}
.col-xs-6{
    width: 50%;
}
.col-xs-12{
    width: 100%;
}
@media (min-width:768px){
    .col-sm-3{
        width: 25%;
    }
    .col-sm-4{
        width: 33.333333%;
    }
    .col-sm-6{
        width: 50%;
    }
    .col-sm-12{
        width: 100%;
    }
}
@media (min-width:1200px){
    .col-lg-4{
        width: 33.333333%;
    }
    .col-lg-6{
        width: 50%;
    }
    .col-lg-12{
        width: 100%;
    }
}
body{
    font-family:'微软雅黑',Verdana,sans-serif;
    font-size:15px;
    line-height: 1.6;
    overflow-x: hidden;
}
body.menu-opened{
    overflow-y: hidden
}
.wrapper { 
    position: relative; 
    max-width: 1610px; 
    padding: 0 15px;
    margin: 0 auto;
    z-index: 1;
    -moz-transition: -moz-transform 0.5s ease-in-out; 
    -o-transition: -o-transform 0.5s ease-in-out; 
    -webkit-transition: -webkit-transform 0.5s ease-in-out; 
    transition: transform 0.5s ease-in-out; 
}
.header { 
    position: fixed;
    top: 0;
    width: 100%; 
    padding: 11px 0px;
    background: #fff;
    z-index: 99999; 
    transition: all .15s;
}
.header-height{
    height: 100px;
    transition: height .15s;
}
.header-scroll .header-height{
    height: 78px;
}

.menu-inner{
    position: absolute;
    top: 50%;
    left: 20px;
    width: 100px;
    transform: translateY(-50%);
    cursor: pointer;
    line-height: 1;
}
.menu-line {
    float: left;
    vertical-align: middle;
    position: relative;
    height: 18px;
    width: 24px;
}
.menu-line>span{
    background: #595d61;
    height: 2px;
    position: absolute;
    transition: all 0.2s linear;
    width: 24px;
}
.menu-line-1 {
    -webkit-transform: translate3d(0,2px,0);
    transform: translate3d(0,2px,0);
    transition: transform 0.3s;
}
.menu-line-2 {
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
    transition: opacity 0.1s linear;
}
.menu-line-3 {
    -webkit-transform: translate3d(0,18px,0);
    transform: translate3d(0,18px,0);
    transition: transform 0.3s;
}
.menu-caption {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    padding-right: 5px;
    font-size: 20px
}
.menu-inner.active .menu-line .menu-line-1 {
    -webkit-transform: translate3d(0,9px,0) rotate(-45deg);
    transform: translate3d(0,9px,0) rotate(-45deg);
}
.menu-inner.active .menu-line .menu-line-2 {
    opacity: 0;
}
.menu-inner.active .menu-line .menu-line-3 {
    -webkit-transform: translate3d(0,9px,0) rotate(45deg);
    transform: translate3d(0,9px,0) rotate(45deg);
}
.menu-inner.active .menu-line>span {
    background: #f08519;
}
.menu-inner.active .menu-caption {
    color: #f08519
}
.menu-flyout {
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 0.2s linear,visibility 0.2s;
    width: 100%;
    z-index: 97;
    height: 100%;
}
.menu-flyout.active{
    opacity: 1;
    visibility:visible;
}
.menu-wrapper{
    position: relative; 
    max-width: 1610px; 
    height: 100%;
    margin: 0 auto;
    z-index: 9;
}
.menu-flyout-main{
    position: relative; 
    width: 20%;
    background: #fff;
    padding-top: 100px;
    height: 100%;
}
@media (max-width:768px){
    .menu-caption{
        display: none;
    }
    .menu-flyout-main{
        width: 50%;
    }

}
.menu-list>li>a{
    position: relative;
    display: block;
    padding: 15px 10% 15px 15%;
    font-size: 18px;
    color: #666;
}
.menu-list>li>a[href="#"]>span {
    position: absolute;
    top: 55%;
    right: 30px;
    width: 20px;
    height: 20px;
    transition: right 0.1s linear;
}
.menu-list>li>a[href="#"]>span::before,.menu-list>li>a[href="#"]>span::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 1px;
    background: #999;
    transform: rotate(-40deg);
    right: 0;
}
.menu-list>li>a[href="#"]>span::after {
    top: -7px;
    transform: rotate(40deg)
}
.menu-list>li.current-menu-item>a{
    color: #f08519;
}
.menu-list>li.current-menu-item>a[href="#"]>span::before,.menu-list>li.current-menu-item>a[href="#"]>span::after {
    background: #f08519;
}

.menu-list .sub-menu {
    display: none;
    position: absolute;
    width: 100%;
    padding-top: 100px;
    top: 0;
    left: 100%;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: -1;
    border-left: solid 1px #cfcfcf;
}
.menu-list .sub-menu>li{
    display: block;
    padding: 10px 10% 10px 15%;
}
.menu-list .sub-menu>li>a{
    position: relative;
    display: block;
    font-size: 18px;
    color: #666;
    padding: 10px 0;
    border-bottom: solid 1px #fff;
    transition: all .2s;
}
.menu-list .sub-menu>li>a:hover{
    color:#f08519;
    padding: 10px 10px;
}
.menu-list .sub-menu>li>a.active{
    border-bottom: solid 1px #e0e0e0;
}
.menu-list .current-menu-item>.sub-menu {
    display: block;
}
.menu-overlay,.search-overlay {
    background-color: rgba(115,123,130,0.85);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    opacity: 0;
    transition: all linear 400ms;
    top: 0;
    visibility: hidden;
    z-index: 8;
}
.menu-overlay.active,.search-overlay.active {
    opacity: 1;
    visibility: visible;
}
.logo{
    height: 76px;
    width: 490px;
    margin: 0 auto;
    transition: all .15s;
}
body.header-scroll .logo { 
    height: 56px;
    width: 361px;
}
.top-icon{
    display: block;
    position: absolute;
    right: 20px;
    transition: color .2s;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.top-icon>a,.top-icon>.lan{
    position: relative;
    width: 28px;
    display: block;
    float: left;
    margin-left:40px ;
    height: 50px;
    line-height: 50px;
}
.top-icon .lan-inner{
    display: none ;
    position: absolute;
    left: -10px;
    top: 50px;
    width:120px;
    background: #f5f5f5;
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 2px 2px 10px rgba(0,0,0,.2)
}
.top-icon .lan-inner::after{
    content: "";
    position: absolute;
    top: -8px;
    left: 15px;
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #f5f5f5;
}
.top-icon .lan-inner>a{
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center
}
.top-icon .lan-inner>a:hover{
    background: #f08519;
    color:  #fff
}
.top-icon>.lan:hover .lan-inner{
    display: block
}


.top-icon .lan-inner2{
    display: none ;
    position: absolute;
    left: -60px;
    top: 50px;
    width:120px;
    background: #f5f5f5;
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 2px 2px 10px rgba(0,0,0,.2)
}
.top-icon .lan-inner2::after{
    content: "";
    position: absolute;
    top: -8px;
    left: 15px;
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #f5f5f5;
}
.top-icon .lan-inner2>a{
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center
}
.top-icon .lan-inner2>a:hover{
    background: #f08519;
    color:  #fff
}
.top-icon>.lan:hover .lan-inner2{
    display: block
}



.search-inner{
    position: fixed;
    background: #f5f5f5;
    padding: 30px 10px;
    top: 90px;
    width: 100%;
    -webkit-transform: translateY(-300px);
    -ms-transform: translateY(-300px);
    transform: translateY(-300px);
    transition: all .2s ease-in-out;
    z-index: 80;
}
.search-inner.active{
    transform: translateY(0px);
}
.header-scroll .search-inner{
    top: 70px;
}
.search-inner .input{
    border:none;
    border-bottom: solid 2px #ccc;
    width: 100%;
    padding: 20px;
    font-size: 26px;
    background: none;
}
.search-inner .submit{
    border: 0;
    background: none;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}
@media (max-width:768px){
    .top-icon{
        opacity: 0;
        visibility: hidden;
        position: fixed;
        bottom: 0px;
        top: auto;
        right: 0;
        left: 0;
        max-height: 200px;
        padding-top: 20px;
        text-align: center;
        background: #fff;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
        transition: all .2s ease-in-out;
    }
    .top-icon.active{
        opacity: 1;
        visibility:visible
    }
    .top-icon>a, .top-icon>.lan{
        display: inline-block;
        float: none;
        margin: 0 20px;
    }
    .search-inner .input{
        padding: 20px;
        font-size: 20px;
    }
    .search-inner .submit{
        right: 10px;
        top: 5px;
    }
}


footer{
    background: url("../img/footer_bg.jpg") center #f08519;
    background-size: cover;
}
.footer-icon{
    margin: 0 auto;
    padding: 50px 0 ;
    max-width: 360px;
   text-align: center
}
.footer-icon a:hover{
    opacity: .8;
}

.footer-icon2{
    margin: 0 auto;
       padding: 0px 0px 20px 0px;
   text-align: center;
     color:#fff;
}
.footer-icon2 a{color:#fff;padding: 0 15px;}
.footer-icon2 a:hover{
    opacity: .8;
}
footer .copyright{
    padding: 25px;
    text-align: center;
    color: #78a2bc
}

.extra-wrap{
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 6;

}
.extra-wrap ul li{
    display: block;
      opacity:0.4;
  filter:alpha(opacity=40); /* IE8 及其更早版本 */
}
.extra-wrap a{
    display: block;
    width: 58px;
    height: 58px;
    float: right;
    line-height: 58px;
    text-align: center;
    background: #111;   
    border-radius: 7px 0 0 7px;
    margin-bottom: 10px;
}
.extra-wrap a:hover{
    background: #f08519;
    width: 78px;
    padding-right: 20px;
      opacity:1;
  filter:alpha(opacity=100); /* IE8 及其更早版本 */
}
.extra-wrap a img{
    max-width: 23px; 
    max-height: 26px; 
}

.banner{
    height: 330px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
@media (max-width:992px){
    .banner{
        height: 250px;
    }
}
@media (max-width:768px){
    .extra-wrap{
        display: none;
    }
    .banner{
        height: 120px;
    }
}
.middle-nav{
    min-height: 120px;
    padding: 20px 0;
    background: #f5f5f5;
}
.middle-nav .title{
    width: 40%;
    float: left;
}
.middle-nav .title .en{
    font-size: 40px;
    color: #e3e3e3;
    line-height: 1;
}
.middle-nav .title .cn{
    font-weight: 700;
    font-size: 34px;
    color: #f08519;
    line-height: .6;
}
.middle-nav .nav{
    width: 60%;
    padding: 20px 110px 0 0;
    float: right;
}
.btns>li{
    display: inline-block;
    float: left;
    margin-left: -1px;
    min-width: 130px;
}
.btns>li>a{
    display: block;
    height: 42px;
    text-align: center;
    line-height: 40px;
    font-size: 17px;
    color: #f08519;
    border: solid 1px #f08519;
	padding: 0 15px;
}
.btns>li:first-child>a{
    border-radius: 50px 0 0 50px
}
.btns>li:last-child>a{
    border-radius: 0 50px 50px 0
}
.btns>li.active>a
{
    color: #ffffff;
    background: #f08519;
}
.btns>li.current-menu-item >a {
    color: #ffffff;
    background: #f08519;
}
.btns>li.current_page_item >a {
    color: #ffffff;
    background: #f08519;
}
@media (max-width:992px){
    .middle-nav .nav{
        padding: 20px 0px 0 0;
    }
}
@media (max-width:768px){
    .middle-nav .title{
        width: 100%;
    }
    .middle-nav .nav{
        width: 100%;
    }
    .middle-nav .nav .btns{
        float: none;
    }
    .btns>li{
        min-width: 100px;
        width: 33.333333%;
        margin-top: -1px;
    }
    .btns>li:first-child>a{
        border-radius: 0px
    }
    .btns>li:last-child>a{
        border-radius:  0
    }
}

.page{
    padding: 50px 0px 20px 0px;
    text-align: center
}
.page a{
    display: inline-block;
    position: relative;
    padding-left: 12px;
    padding-right: 12px;
    margin:5px;
    line-height: 32px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    color: #f08519;
    border-radius: 100px;
    border:solid 1px #f08519;
    transition: all 0.2s ease-in-out; 
}
.page a.active{
    background: #f08519;
    color: #ffffff;
}
.page a.doc{
    border:none;
     cursor: auto
}
@media (max-width:768px){
    .page a{
        margin:5px 2px;
    }
}




/* 首页 */
.important-nav{
    margin-top: 20px;
}
.important-nav ul li{
    position: relative;
    font-size: 16px;
    overflow: hidden;
}
@media (max-width:768px){
    .important-nav ul li{
        margin-bottom: 20px;
    }
}
.important-nav ul li .inner{
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,.5);
    padding: 0 20px 20px 20px;
    width: 100%;
    color: #fff;
    transition: opacity .15s ease-in-out, transform 0.15s linear;
}
.important-nav ul li .inner-none{
    position: absolute;
    top: 0;
    background: rgba(0,0,0,.5);
    width: 100%;
    height: 100%;
    color: #fff;
    opacity: 0;
    transition: opacity .2s linear;
}
.important-nav ul li .inner-none .inner-content{
    max-width: 100%;
    padding: 20px;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-45%);
    transform: translateY(-45%);
    transition: transform 0.2s linear;
}
.important-nav ul li .inner-none .inner-content .mome{
    max-height: 240px;
    overflow: hidden;
}
.important-nav ul li .inner-none .btn{
    margin-top: 50px;
    padding: 0 40px 0 20px;
}
.important-nav ul li:hover .inner{
    opacity: 0;
}
.important-nav ul li:hover .inner-none{
    opacity: 1;
}
.important-nav ul li:hover .inner-none .inner-content{
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.i-bg{
    position: relative;
    background: url("../img/about_bg.jpg") center no-repeat;
    background-size: cover;
}
.i-bg::after{
    content: "";
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 100%;
    background: #fff;
    left: 50%;
}
.i-mod>.title{
    width: 245px;
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: solid 2px #111;
}
.i-mod>.title .en{
    font-weight: 700;
    font-size: 30px;
}
.i-mod>.title .cn{
    font-size: 26px;
}
.i-news,.i-about,.i-support{
    padding: 2% 8%;
} 
.i-news{
    min-height: 960px;
}

.i-news-inner li a{
    display: block;
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    transition: all .2s ease-in-out;
}
.i-news-inner li a:hover{
    box-shadow: 0 0 15px rgba(0,0,0,.1)
}
.i-news-inner li a .left{
    float: left;
    width: 200px;
    margin-right: 20px;
}
.i-news-inner li a .right .title{
    position: relative;
    padding: 10px 90px 10px 0;
    font-size: 20px;
}
.i-news-inner li a .right .title span{
    position: absolute;
    right: 0;
    top: 15px;
    font-size: 14px;
    color: #999
}
.i-about{
    min-height: 480px;
    border-bottom:solid 20px #fff;
}

@media (max-width:768px){
    .i-news, .i-about, .i-support{
        padding: 20px;
    }
    .i-bg::after{
       display: none
    }
    .i-news-inner li a .left{
        width: 100%;
    }
    .i-news-inner li a .right .title{
        white-space:normal;
        line-height: 1.2;
    }
    .i-about{
        border-top:solid 20px #ffffff; 
    }
}
.i-about-content{
    font-size: 14px;
    line-height: 1.8;
}
.i-support{
    min-height: 480px;
}
.i-support-inner li{
    margin-bottom: 10px;
}
.i-support-inner li .num{
    float: left;
    margin-right: 20px;
     width: 36px;
     height: 36px;
     line-height: 36px;
     text-align: center;
     background: #f08519;
     color: #fff;
     border-radius: 5px;
     font-size: 26px;
}
.i-support-inner li .text{
    font-size: 14px;
}

/* 新闻 */
.banner-news{
    background-image: url("../img/banner-news.jpg");
}
.news-item li{
    margin-bottom: 20px;
}
.news-item li a{
    display: block;
    overflow: hidden;
}
.news-item li a .img{
    width: 100%;
    height: 325px;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease-in-out;
    z-index: 8;
}
.news-item li a:hover .img{
    transform: scale(1.2)
}
.news-item li a .inner{
    padding: 20px 20px 20px 0;
    background: #f8f8f8;
    position: relative;
    z-index: 9;
    transition: all .25s ease-in-out;
}
.news-item li a:hover .inner{
    background: #f08519;
    color: #ffffff;
}
.news-item li a .inner .time{
    width: 110px;
    padding: 0 20px 0 0;
    margin-right: 20px;
    text-align: right;
    border-right: solid 1px #999;
}
.news-item li a:hover .inner .time{
    border-right: solid 1px #ffffff;
}
.news-item li a .inner .time .day{
    line-height: 1.1;
    font-size: 22px
}
@media (max-width:768px){
    .news-item li a .img{
        height: 225px;
    }
}

/* 新闻详细 */
.news-detail-left{
    position: absolute;
    left: 0;
    top: 0;
    width: 390px;
    padding: 30px;
}
.news-detail-left .go-back{
    display: block;
    border:solid 1px #333;
    text-align: center;
    line-height: 40px;
}
.news-detail-left .go-back img{
    margin: -3px 5px 0 0;
}
.news-detail-left  .news-detail-inner .title{
    position: relative;
    margin: 30px 0;
    padding-bottom: 10px;
    border-bottom: solid 1px #e2e2e2;
    font-size: 17px
}
.news-detail-left  .news-detail-inner .title::after{
    content: "";
    position: absolute;
    width: 70px;
    background: #f08519;
    height: 3px;
    left: 0;
    bottom: -1px;
}
.news-detail-left  .news-detail-inner .item li{
    margin-bottom: 15px;
}
.news-detail-left  .news-detail-inner .item li a{
    position: relative;
    display: block;
    padding-left: 20px;
    font-size: 14px;
    color: #6b6b6b;
}
.news-detail-left  .news-detail-inner .item li a:hover{
    color: #f08519
}
.news-detail-left  .news-detail-inner .item li a::after{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background: #aaa;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.news-detail-right{
    min-height: 600px;
    margin-left: 410px;
    padding: 30px 5%;
}
.news-detail-right .title{
    font-size: 26px;
    color: #f08519;
    text-align: center;
}
.news-detail-right .time{
    padding: 20px 0 40px 0;
    font-size: 14px;
    color: #c0c0c0;
    text-align: center;
    border-bottom: solid 1px #e2e2e2;
}
.news-detail-right .content{
    padding: 50px 0;
}
@media (max-width:992px){
    .news-detail-left{
        width: 100%;
        margin-top: 30px;
        position: relative;
    }
    .news-detail-right{
        margin-left: 0px;
    }
    .news-detail-right .time{
        padding: 20px 0;
    }
    .news-detail-right .content{
        padding: 20px 0;
    }
}

/* 招聘 */
.join-title{
    padding: 10px 5% 20px 5%;
}
.join-item li{
    float: left;
}
.join-item li a{
    display: inline-block;
    margin-top: 15px;
    margin-right: 40px;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 16px;
}
.join-item li a:hover{
    color: #f08519
}
.join-item li a.active{
    background: #f08519;
    color: #ffffff;
}
.join-content{
    min-height: 300px;
    padding: 3% 5%;
}


/* 关于我们 */
.banner-about{
    background-image: url("../img/banner-about.jpg");
}
.about-inner{
    padding-top: 60px;
    background: url("../img/about_bg.jpg") top center no-repeat;
    background-size: cover;
}
.about-us{
    padding: 40px 4% 60px 4%
}
.about-us .img{
    width: 90%;
    box-shadow: 10px 15px 0 #f08519;
}

.about-us .title{
    margin-top: 15px;
    line-height: 1.2;
    font-weight: 700;
    font-size: 30px;
    color: #f08519;
    border-bottom: solid 1px #e2e2e2;
    padding-bottom: 10px;
}
.about-us .content{
    margin-top: 20px
}
@media (max-width:768px){
    .about-us .title{
        margin-top: 30px;
    }
}

/* 联系我们 */
.contact{
    padding: 50px 4% 0 4%;
}
.contact .title{
    padding-left: 2%;
    border-left:solid 4px #f08519;
    font-size: 24px;
    line-height: 1.1;
}
.contact .content{
    padding: 20px 2% 50px 2%;
}
.contact .content li{
    margin-bottom: 20px;
}

.contact .content .map{
    width: 100%;
    height: 265px;
}

.customer{
    padding: 40px 10%;
}
.customer a{
    display: block;
    margin-bottom: 20px;
    line-height: 1;
    border: solid 1px #e2e2e2;
    overflow: hidden;
}
.customer a img{
    transition: transform .2s ease-in-out;
}
.customer a:hover img{
    transform: scale(1.1)
}

/* 产品中心 */
.banner-product{
    position: relative;
    height: 450px;
    text-align: center;
    color: #ffffff;
    background-image: url("../img/banner-news.jpg")
}
.banner-product .banner-text{
    position: absolute;
    width: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 10px;
}
.banner-product .cn{
    font-size: 34px;
    font-weight: 700;
}
.banner-product .en{
    font-size: 22px;
    padding: 0px 0 20px 0;
}
.banner-product .mome{
    font-size: 18px;
}
.product-left{
    width: 250px;
    float: left;
}
.product-left .title{
    padding: 0 20px;
    height: 48px;
    line-height: 48px;
    color: #ffffff;
    background: #f08519;
}
.product-left .cn{
    float: left;
    font-size: 22px;
    font-weight: 100;
}
.product-left .en{
    padding: 5px 0 0 100px;
    font-size: 14px;
}
.product-left .product-left-list{
    padding-bottom: 30px;;
}
.product-left .product-left-list li{
     padding: 12px;
    margin: 0 10px;
    border-bottom:solid 1px #e2e2e2;
}
.product-left .product-left-list li:last-child{
    border-bottom:solid 0px #e2e2e2;
}
.product-left .product-left-list li a{
    position: relative;
    display: block;
    max-width: 160px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
    transition: all .2s ease-in-out; 
}
.product-left .product-left-list li a:hover{
    color: #f08519;
}
.product-left .product-left-list li a.active{
    color: #f08519;
    text-align: left;
}
.product-left .product-left-list li a.active::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 13px solid #f08519;
    border-bottom: 10px solid transparent;
}
.product-right{
    margin-left: 270px;
}
.product-right-list li{
    margin-bottom: 20px;
}
.product-right-list li a{
    display: block;
    box-shadow: 0 0 10px rgba(0,0,0,.05);
    overflow: hidden;
}
.product-right-list li a .img{
    width: 100%;
    height: 368px;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease-in-out;
    z-index: 8;
    
}
.product-right-list li a:hover .img{
    transform: scale(1.2)
}
.product-right-list li a .inner{
    background: #ffffff;
    padding: 20px;
    position: relative;
}
.product-right-list li a .inner .title{
    font-size: 20px;
    padding-right: 100px ;
    margin-bottom: 10px;
    position: relative;
}
.product-right-list li a .inner .btn{
    position: absolute;
    right: 0;
    top: 5px;
    padding: 1px 15px;
}
.product-right-list li a .inner .btn:hover{
    background: #f08519;
    color: #ffffff;
}
.product-right-list li a .inner .mome{
    color: #a0a0a0;
}
@media (max-width:992px){
    .banner-product{
        height: 300px;
    }
    .product-right-list li a .img{
        height: 280px;
    }
}
@media (max-width:768px){
    .banner-product{
        height: 150px;
    }
    .banner-product .cn{
        font-size: 26px;
    }
    .banner-product .en{
        font-size: 20px;
        padding: 0px 0 10px 0;
    }
    .banner-product .mome{
        font-size: 14px;
    }
    .product-left{
        width: 100%;
        float: none;
    }
     .product-right{
         margin-top:20px;
        margin-left: 0px;
    }
}

/* 产品详情 */
.product-back{
    display: inline-block;
    position: relative;
    padding: 10px 15px 10px 20px;
    margin: 5px 20px 50px 20px;
    color: #f08519;
}
.product-back .arrow{
    color: #f08519;
    width: 15px;
    height: 15px;
    left: 0;
}
.product-detail-inner{
    padding: 0 5% 50px 5%
}
.product-detail-inner .product-imgs{
    width: 360px;
    float: left;
}
.product-detail-inner .product-content{
    margin-left: 430px;
}
.product-detail-inner .product-content .title{
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 30px;
}
@media (max-width:1199px){
    .product-detail-inner .product-imgs{
        width: 100%;
        float: none;
    }
    .product-detail-inner .product-content{
        margin-left: 0px;
    }
}
@media (max-width:1199px){
    .product-back{
        margin: 5px 20px 20px 20px;
    }
}

/* 品质保障 */
.banner-certificate{
    background-image: url("../img/banner-certificate.jpg")
}
.certificate{
    padding: 40px 8%;
}


.shipin .meta-media {
  position: relative;
  margin-bottom: 30px;
  //float: left;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
}
.shipin  .video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}




/*服务*/
.ziload ul{ margin: 0 -3%;}
.ziload li{ float: left; width: 100%; padding:0 3%; box-sizing: border-box;}
.ziload_box{ padding: 1% 0; border-bottom:1px dashed #dbdbdb;}
.ziload_box a{ display: block;}
.ziload_bimg{ width: 10%;}
.ziload_bfor{ width: 60%; padding:2%;}
.ziload_size{ padding-top: 8px; font-size: 12px;}
.ziload_bmimg{ width:30px; margin: 0 auto;}
.ziload_bmore{ padding-top: 2%;}
.ziload_btext{ padding-top: 6px; font-size: 12px;}
.ziload li a:hover .ziload_bfor>div{ color:#008ad0;}
.fl100{ float: left; width: 100%;}



/*联系我们*/

.yt_contactdiv1{background-color: #f2f9fd;
  padding:20px 10px;}
.yt_contactdiv2{padding: 20px 10px;}
.yt_contactdiv3{background-color: #f2f9fd;padding: 20px 10px;
 }
.yt_quancheng{color: #008ad0;
    font-size: 18px;margin:20px;
}
.yt_gongsi_yingwen{    color: #000;
    font-size: 14px;
    margin-bottom: 20px;}
.overflowhidden{overflow:hidden;}

.lianxi img{ margin-right:10px; 
   
}
.slide-text > a.btn{
        box-shadow: 0px 0px 1px #000;
        color:#f08519;
}
  #productsinquiry .quform-option{float: left;
    padding-right: 30px;}
#productsinquiry .quform-submit{    background: #000;
    color: #fff;
    width: 100%;
    padding: 8px 30px;}