@charset "utf-8";
header{
    width:100%;       
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    background: url(../img/line.jpg) repeat-x center top;
    padding-top: 8px;
}
.header .logo .logo{   
    transition: all .5s;
}
.header .logo span{
    font-size: 24px;
    font-weight: bold;
    margin-left: 10px;
}
.header{
    padding:0px 0px;
    width:100%;
    position: relative;
    color:#3b3b3b;
    border-bottom: 1px solid #ececec;
}
.header .header-mail{  
    margin:0px 0px 0px;
    line-height: 72px;   
    transition: all .5s;
}
.header .header-mail span{
    font-size: 18px;
    color: #949494;
}
.header .header-tel{
    line-height: 60px;
    margin: 5px 0px 0px;
    transition: all .5s;
    font-size: 18px;
}
.header .header-tel b{
    font-size: 20px;
    font-weight: bold;
    color: #005cac;
}
@media(max-width:991px){
    .header .header-tel{
        margin: 15px 0px 0px;
    }
}
.header .header-tel span{
    font-size: 20px;
    color:#8fbc15;
    margin: 0px 10px;
    cursor: pointer;
}

header .nav>ul{
    margin:0 auto;   
    transition: all .5s;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
header .nav>ul>li{
    display: inline-block;
    padding: 0 30px;
    position: relative;
}
header .nav>ul>li::before{    
    border-left:1px dotted #c1c1c1;
    content: "";
    height: 20px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
}
header .nav>ul>li:last-child::after{    
    border-left:1px dotted #c1c1c1;
    content: "";
    height: 20px;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
}
header .nav>ul>li>a{
    display: block;
    position: relative;
    color:#3b3b3b;
    font-size: 18px;
    padding:18px 0 15px 0;
}
header .nav>ul>li>a>b{
    display: block;
    height:3px;
    width:100%;
    background:#005cac;
    position: absolute;
    left:0;
    bottom:0;
    transform: rotateY(90deg);
    -webkit-transform: rotateY(90deg);
    -o-transform: rotateY(90deg);
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
header .nav>ul>li:hover a{
    color: #005cac;
}
header .nav>ul>li:hover a>b{
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
    -o-transform: rotateY(0);
}
header .nav ul.submenu {
    display: none;
    position: absolute;
    left: 50%;
    top: 50px;
    margin-left: -80px;
    width: 160px;
    background: #fff;
    border-radius: 4px;
}

header .nav ul.submenu:before{content:"\e253"; 
font-family: 'Glyphicons Halflings'; position:absolute; left:50%; 
top:-13px; transform: translate(-50%, 0); 
font-size:18px; color:#fff; font-style:normal; -webkit-font-smoothing: antialiased; -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale;}
header .nav ul.submenu li{width:100%; border-bottom:1px solid rgba(0,0,0,.05);}
header .nav ul.submenu li a{display:block;font-size:14px; color:#444; line-height:20px; padding:12px 2%; text-align:center;}
header .nav ul.submenu li a:hover{color:#63a82f; background:#f2fcfa;}
header .nav>ul>li:hover ul.submenu{
    display: block;
}

.search-from{position:absolute;top:-125px;
    z-index:8;
    padding:20px;
    box-shadow:0 0 5px rgba(0,0,0,.2);
    background:#fff;
    left:50%;
    margin-left: -150px;
    opacity:0;transition:.5s all ease-in-out}
.search-from.active{top:100px;opacity:1;transition:.5s all ease-in-out}
.search-from form{justify-items:center}
.search-from #txtSearch{width:300px;border:1px #dedede solid;color: #232323;height:42px;outline:0;padding-left:10px}
.search-from .btnSearch{border:none;font-size:16px;height:42px;background:#13aa1e;width:90px;color:#fff}


.m-btn{
    display: none;
    position: absolute;
    cursor: pointer;
    right:20px;
    top:35px;
}
.m-btn span{
    display: block;
    width:20px;
    height:2px;
    background:#424242;
    position: relative;
    -webkit-transition: all 200ms cubic-bezier(.4,0,0,1);
    -o-transition: all 200ms cubic-bezier(.4,0,0,1);
	transition: all 200ms cubic-bezier(.4,0,0,1);
}
.m-btn span::before, .m-btn span::after{
    content:'';
    display: block;
    height:2px;
    width:20px;
    background:#424242;
    position: absolute;
	left: 0;
    -webkit-transition: all 200ms cubic-bezier(.4,0,0,1);
    -o-transition: all 200ms cubic-bezier(.4,0,0,1);
	transition: all 200ms cubic-bezier(.4,0,0,1);
}
.m-btn span:before {
	top: -8px;
}
.m-btn span:after {
	bottom: -8px;
}
.m-btn.active span {
	background: transparent;
	margin-left: 10px;
}
.m-btn.active span:before {
    transform: rotate(-48deg) translate(-6px, 5px);
    -webkit-transform: rotate(-48deg) translate(-6px, 5px);
    -o-transform: rotate(-48deg) translate(-6px, 5px);
	width: 24px;
}
.m-btn.active span:after {
    transform: rotate(48deg) translate(-6px, -5px);
    -webkit-transform: rotate(48deg) translate(-6px, -5px);
    -o-transform: rotate(48deg) translate(-6px, -5px);
	width: 24px;
}

header.on{
    color:#424242;
    background-color:#fff;
    box-shadow: 0 0 10px #eee;
    top: 0;
    position: fixed;
    left: 0;
    width:100%;
    z-index: 99;
}
header.on .header .nav ul li a{
    color:#424242;
}
header.on .header .logo .logo{
    height: 72px;
}
header.on .language a{
    color:#424242;
}
@media (max-width: 1199px){
    .header .nav>ul>li{
        padding-left:0;
    }    
}
@media (max-width: 992px){   
    .m-btn{
        display: block;
    }    
    .header{
        position: relative;    
        padding:0;
    }
    header .nav>ul{
        display: block;
    }    
    header.on .header .logo .logo, .header .logo .logo{
        height:60px !important;       
    }
    .header .header-mail {
        margin: 8px 45px 0px;
        line-height: 45px;
    }
    header .nav{
        position: absolute;
        left:-100vw;
        top:64px;
        width:70%;
        height:calc(100vh - 60px);
        background:#fff;
        box-shadow: 0 0 10px #eee;
        z-index:999;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        padding-top:20px;
    }
    header .nav.show{
        left:0;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
    }
    header .nav ul li{
        display: block !important; 
        padding:0 20px;
    }    
    header .nav ul li a{
        color:#424242;
        font-size: 14px;
    }
    header .nav>ul>li::before,
    header .nav>ul>li:last-child::after{
        border-left: 0px dotted #c1c1c1;        
    } 
}
@media(max-width:1200px){
    .header .nav .submenu li {
        display: none !important;
    }
}
@media (max-width: 540px){
    header.on .header .logo .logo, .header .logo .logo {
        height: 45px !important;
        margin-top: 10px;
    }
}
/* banner */
.banner{
    position: relative;
}
.banner .carousel-caption{
    text-align: left;
    width:100%;
    margin-top:-150px;
    position: absolute;
    left:0%;
    top:50%;
    color:#fff;
    padding:0 15px;
}
.banner .carousel-caption h1{
    font-size: 72px;
    font-weight: bold;
}
.banner .carousel-caption p{
    font-size: 16px;
    margin:30px 0px;
    width: 52%;
}
.banner .carousel-caption p.bann2{
    font-size: 36px;    
}
.home-btn{margin-top:5%;}
.homeLink{position:relative; display:block; text-align:left; width:180px; height:50px; text-indent:0px; font-size:16px; padding-left:40px;  overflow:hidden; border-radius:50px; line-height:50px; overflow:hidden; color:#fff; background:#13aa1e;transition: all 0.3s ease-in-out;}
.homeLink:after{ content: '→'; font-family: 'iconfont'; position:absolute; right:40px; top:50%; transform: translate(0, -50%); text-indent:0px; font-size:24px; font-style:normal; -webkit-font-smoothing: antialiased; -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale;}
.homeLink:hover{ width:200px; text-indent:0; color:#fff;}

.Home-swiper .swiper-slide .home-btn{opacity:0; transition:all .4s;}
.Home-swiper .ani-slide .home-btn{opacity:1; }

/* 搜索 */
.search{
    height:100px;
    background:#f8f8f8;
}
.search .keywords{
    line-height: 100px;
}
.search .keywords a{
    display: inline-block;
    padding:0 10px;
}
.search .search-box{
    margin-top:35px;
}
.search .search-n{
    width:385px;
    height:40px;
}
.search .search-n form{
    width:100%;
    height:100%;
}
.search .search-n form input{
    width:325px;
    height:100%;
    border:1px solid #ddd;
    padding:0 0 0 10px;
}
.search .search-n form input:-moz-placeholder {
    font-size: 14px;
}
.search .search-n form input:-ms-input-placeholder{
    font-size: 14px;
}
.search .search-n form input::-webkit-input-placeholder{
    font-size: 14px;
}
.search .search-n form button{
    background:#0064ba;
    border:none;
    width:60px;
    color:#fff;
    height:100%;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
@media (max-width:992px){
    .search{
        height:60px;
    }
    .search .keywords{
        overflow: hidden;
        text-overflow:ellipsis;
        line-height: 60px;
    }
}

.common{
    padding:60px 0;
}
/* 关于我们 */
.about .about-box .about-intro{
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 40px;
    width: 70%;
    margin:0px auto 
}
.about .about-box .more,.ny-about .more{ 
    color:#fff;
    display: inline-block;
    padding: 10px 50px;
    font-weight: bolder;
    background: #0088e5;
    margin-top: 30px;  
}
.about .about-box img{
    max-width: 100%;
}
@media (max-width:992px){
    .common{
        padding:20px 0;
    }  
    .about .about-box .about-intro {       
        width:100%;
        font-size: 14px;
        margin-bottom: 0px;
    }
}
/* 产品分类展示 */
.title{
    font-size: 100px;
    color:#f4f4f4;
    line-height:1.4;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: bolder;
    position: relative;
}
.title span{
    display: block;
    font-size: 35px;
    color: #005cac;
    position: absolute;
    top: 50%;
    text-align: center;
    width: 100%;
    margin-top: -22px;
}
.title::after{
    display: block;
    content: "";
    width: 80px;
    height: 5px;
    background: #8fbc15;
    border-radius: 10px;
    margin: 0px auto;
}
.product{
    background: #f4f4f4;
}
.product .title{
    color: #dedede;
}
.product-box {
    display: flex;
    justify-content: space-between;  
    flex-wrap: wrap;
}
.pro-con{
    background: #fff;
    padding:20px 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}
.product-box .col{
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
}
.product-box .pro-img {
    overflow: hidden;
    height: 75px;
}
.product-box .pro-img img{
    max-width:100%;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;    
}
.pro-con h5::before{
    display: block;
    content: "";
    width: 40px;
    height: 3px;
    background: #8fbc15;
    border-radius: 10px;
    margin: 0px auto;
}

.pro-con:hover img:nth-child(1){
    margin-top: -85px;
}
.pro-con:hover img:nth-child(2){
    margin-top: -20px;
}
.product-box .pro-con h5{
    font-size: 16px;
    line-height:2.5;
    text-align: center;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}

.product-box .pro-con:hover{
    background:#0088e5;
    color:#fff;
}
.product-box .pro-con:hover h5{
    color: #fff;
}

@media (max-width:992px){
    .title{
        font-size: 30px;
    }
    .title span{
        font-size: 20px;
        margin-top: -16px;
    } 
    .product-box .pro-con h5 {
        font-size: 14px;
    }
    .product-box .col {
        width: 50%;
    }
}

/* 公示 */
.notice{
    background: url(../img/notice.jpg) no-repeat top center;
    color: #fff;
}
.notice .title{
    color: #1f77c3;
}
.notice .title span{
    color: #fff;
}
.news-content{
    background: #fff;
    border-radius: 5px;
    padding: 50px;
    box-shadow: 0px 5px 50px #aeaeae;
}
.news-content .news-list,
.ny-notice .news-list{   
    border-bottom: 1px solid #f7f7f7;
}

.news-content .news-list .news-title,
.ny-notice .news-list .news-title{   
    line-height: 4;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-left: 30px;
    position: relative;    
}
.news-content .news-list .news-title span,
.ny-notice .news-list .news-title span{
    font-size: 14px;
    float: right;
}
.news-content .news-list .news-title::before,
.ny-notice .news-list .news-title::before{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    left: 10px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: transparent;
    border: 2px solid #dcdcdc;
}

/* 新闻 */
.news-box .img{
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
}
.news-box .img img{
    width: 100%;
    transition: all .5s;
}
.news-box .img:hover img{
    transform:  scale(1.1);
    -webkit-transform:  scale(1.1);
    -o-transform:  scale(1.1);
}
.news-box .news-con{   
    width: 100%;
    overflow: hidden;
    position: relative;    
}
.news-box .news-time{
    color: #8fbc15;
    font-size: 14px;
    line-height: 3;
    font-weight: bold;
    border-bottom: 3px solid #f7f7f7;
}
.news-box .news-time::after{
    display: block;
    content: "";
    width: 50px;
    height: 3px;
    margin-bottom: -3px;
    background: #005cac;
}
.news-box .news-title{   
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    padding: 10px 0px;
    border-bottom: 1px solid #f7f7f7;  
    width: 100%;
    margin-bottom: 5px;   
}
.news-box .news-desc{
    font-size: 14px;
}
.news-box .more{
    font-size: 16px;
    color: #005cac;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

@media (max-width:992px){
   .news-content {  
        padding: 20px;
    } 
}