@charset "UTF-8";
/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2017-10-18 08:57:34
 * @version $Id$
 */
 /* header */
 header{
    width:100%;
    z-index: 10;
    position: relative;
    background: #fff;
}
.header{
    height: 105px;
    overflow: hidden;
    position: relative;
}
.navbar-body{
    position: relative;
    width: 100%;
    height: 40px;
    margin-top: 38px;
}
.navbar-body .nav li{
    float: left;
    height: 40px;
    padding: 0 50px 0 0;
}
.navbar-body .nav li:last-child{
    padding-right: 0px;
}
.navbar-body .nav li a{
    padding: 0 12px;
    line-height: 40px;
    border-radius: 10px;
    transition: all 0.5s;
	-moz-transition: all 0.5s; 
	-webkit-transition: all 0.5s; 
    -o-transition: all 0.5s;
}
.navbar-body .nav li.active a{
    background: #00aabc;
    color: #fff;
}
.navbar-body .nav li:hover a{
    background: #00aabc;
    color: #fff;
}
.logo{
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -62px;
    width: 124px;
}
.logo img{
    display: block;
    width: 100%;
}
.navbar-body .nav li:nth-child(4){
    margin-right: 280px;
}
@media(max-width: 1599px){
    .navbar-body .nav li:nth-child(4){
        margin-right: 165px;
    }
    .navbar-body .nav li{
        padding: 0 40px 0 0;
    }
}
@media(max-width: 1200px){
    .navbar-body .nav li{
        padding: 0 10px 0 0;
    }
}
@media(max-width: 991px){
    .navbar-body{
		display: none;
    }
    .header{
        height: 70px;
    }
    .logo{
        position: relative;
        left: 0px;
        top: 0px;
        width: 86px;
        margin-left: 0px;
    }
}
@media(max-width: 599px){
    .header{
        height: 50px;
    }
    .logo{
        width: 61px;
    }
}
/* banner */
.swiper-container{
    width: 100%;
    max-width: 1920px;
}
#banner .swiper-slide img{
    width: 100%;
    display: block;
}
.swiper-pagination-bullet{
    width: 50px;
    height: 4px;
    background: #fff;
    border-radius: 0px;
    opacity: 1;
}
.swiper-pagination-bullet-active{
    background: #00a9bc;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 15px;
}
.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets{
    bottom: 38px;
}
@media (max-width: 991px){
    .swiper-pagination-bullet{
        width: 40px;
    }
    .swiper-container-horizontal > .swiper-pagination-bullets{
        bottom: 20px;
    }
}
@media (max-width: 599px){
    .swiper-pagination-bullet{
        width: 30px;
    }
    .swiper-container-horizontal > .swiper-pagination-bullets{
        bottom: 8px;
    }
    .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet{
        margin: 0 8px;
    }
}
/* 首页产品 */
.index-main{
    padding-top: 80px;
}
.ipro-item{
    max-width: 408px;
    margin: 0 auto;
}
.ipro-item .ipro-img{
    width: 100%;
    overflow: hidden;
}
.ipro-item .ipro-img img{
    display: block;
    width: 100%;
    transition: all 0.5s;
	-moz-transition: all 0.5s; 
	-webkit-transition: all 0.5s; 
    -o-transition: all 0.5s;
}
.ipro-item .ipro-info{
    height: 80px;
    text-align: center;
    background: #00a9bc;
    transition: all 0.5s;
	-moz-transition: all 0.5s; 
	-webkit-transition: all 0.5s; 
    -o-transition: all 0.5s;
}
.ipro-item .ipro-info h4{
    padding-top: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}
.ipro-item .ipro-info span{
    display: block;
    margin-top: 5px;
    color: #fff;
}
.ipro-item:hover .ipro-info{
    background: #fcb815;
}
.ipro-item:hover .ipro-img img{
    -moz-transform: scale(1.1,1.1);
    -ms-transform: scale(1.1,1.1);
    -o-transform: scale(1.1,1.1);
    -webkit-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
}
@media(max-width: 991px){
    .index-main{
        padding-top: 30px;
    }
    .ipro-item .ipro-info h4{
        font-size: 18px;
    }
    .ipro-item .ipro-info span{
        font-size: 12px;
    }
}
@media(max-width: 767px){
    .index-main{
        padding-top: 20px;
    }
    .ipro-item{
        margin-bottom: 20px;
    }
    .ipro-main .col-sm-4:last-child .ipro-item {
        margin-bottom: 0px;
    }
    .ipro-item .ipro-info span{
        font-size: 14px;
        margin-top: 8px;
    }
}
/* 企业简介 */
.iabout{
    background: #00a9bc;
}
.iabout-left{
    float: left;
    width: 430px;
    padding: 0 22px;
}
.iabout-left h2{
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    padding-top: 58px;
    margin-bottom: 32px;
}
.iabout-left .iabout-info{
    color: #fff;
    line-height: 30px;
    margin-bottom: 68px;
}
.iabout-right{
    float: left;
    width: calc(100% - 430px);
    padding-right: 15px;
    background-color: #fff;
}
.iabout-right img{
    width: 100%;
    display: block;
}
.look-more{
    display: block;
    width: 200px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    color: #fff;
    background: #fcb815;
    transition: all 0.5s;
	-moz-transition: all 0.5s; 
	-webkit-transition: all 0.5s; 
    -o-transition: all 0.5s;
}
.look-more:hover{
    border-radius: 10px;
}
@media(max-width: 1599px){
    .iabout-left h2{
        font-size: 34px;
        margin-bottom: 25px;
        padding-top: 35px;
    }
    .iabout-left .iabout-info{
        margin-bottom: 54px;
    }
}
@media(max-width: 1200px){
    .iabout-left h2{
        font-size: 24px;
        margin-bottom: 15px;
        padding-top: 20px;
    }
    .iabout-left .iabout-info{
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 15px;
    }
}
@media(max-width: 991px){
    .iabout{
        background: #fff;
        padding: 0 15px;
    }
    .iabout-left{
        width: 100%;
        float: none;
        padding-bottom: 20px;
        background: #00a9bc;
    }
    .iabout-right{
        width: 100%;
        float: none;
        padding-right: 0px;
    }
    .look-more{
        height: 44px;
        line-height: 44px;
        width: 144px;
    }
}
/* 新闻资讯 */
.inews{
    padding-bottom: 80px;
}
.inews-title{
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}
.inews-title h2{
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}
.inews-title span{
    color: #666;
}
.inews-item{
    max-width: 626px;
    margin: 0 auto;
}
.inews-img{
    width: 100%;
    overflow: hidden;
}
.inews-img img{
    display: block;
    width: 100%;
}
.inews-ul li{
    width: 100%;
    height: 75px;
    border-bottom: 1px dashed #bfbfbf;
}
.inews-ul li p{
    width: 80%;
    float: left;
    line-height: 75px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all 0.5s;
	-moz-transition: all 0.5s; 
	-webkit-transition: all 0.5s; 
    -o-transition: all 0.5s;
}
.inews-ul li span{
    width: 20%;
    text-align: right;
    float: left;
    color: #999;
    line-height: 75px;
}
.inews-ul li:hover p{
    color: #00aabc;
    transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    -webkit-transform: translateX(5px);
}
@media(max-width: 991px){
    .inews-ul li{
        height: 50px;
    }
    .inews-ul li p{
        font-size: 14px;
        line-height: 50px;
        width: 72%;
    }
    .inews-ul li span{
        font-size: 14px;
        line-height: 50px;
        width: 28%;
    }
    .inews-title h2{
        font-size: 24px;
        margin-bottom: 10px;
    }
    .inews-title span{
        font-size: 14px;
    }
    .inews-title{
        margin-bottom: 20px;
    }
    .inews{
        padding-bottom: 40px;
    }
}
@media(max-width: 767px){
    .inews-item{
        margin-bottom: 20px;
    }
    .inews{
        padding-bottom: 10px;
    }
}
/* 底部版权 */
.footer{
    padding-top: 50px;
    width: 100%;
    background-color: #313131;
    overflow: hidden;
    position: relative;
}
.footer-nav{
    padding-bottom: 60px;
    overflow: hidden;
}
.footer-ul{
    width: 22%;
    float: left;
    position: relative;
}
.footer-ul::before{
    content: "";
    width: 1px;
    height: 126px;
    background-color: #555;
    position: absolute;
    top: 0px;
    right: 0px;
}
.footer-ul li{
    margin-right: 58px;
    float: left;
    margin-bottom: 10px;
}
.footer-ul li a{
    color: #dcdcdc;
}
.footer-contact{
    width: 55%;
    float: left;
    position: relative;
    padding: 0 100px;
}
.footer-mid{
    float: left;
}
.footer-mid:last-child{
    float: right;
}
.footer-contact p{
    color: #dcdcdc;
    margin-bottom: 20px;
}
.footer-contact p>span{
    display: block;
    margin-bottom: 10px;
}
.footer-contact::before{
    content: "";
    width: 1px;
    height: 126px;
    background-color: #555;
    position: absolute;
    top: 0px;
    right: 0px;
}
.footer-code{
    float: right;
}
.footer-code p{
    color: #dcdcdc;
    text-align: center;
    padding-top: 8px;
}
.footer-wechat{
    width: 106px;
    float: left;
    margin: 0 10px;
}
.footer-wechat img{
    display: block;
    width: 100%;
}
.copy{
    border-top: 1px solid #555;
    color: #dcdcdc;
    padding: 30px 0;
}
.copy p{
    float: left;
}
.copy span{
    display: block;
    float: right;
}
.copy span>a{
    color: #dcdcdc;
    text-decoration: underline !important;
}
@media(max-width: 1199px){
    .footer-ul li{
        margin-right: 38px;
    }
    .footer-contact{
        padding: 0 50px;
    }
    .footer-wechat{
        width: 86px;
    }
    .footer-nav{
        padding-bottom: 40px;
    }
}
@media(max-width: 991px){
    .footer-mid{
        float: none;
    }
    .footer-mid:last-child{
        float: none;
    }
    .footer-ul, .footer-contact{
        width: 100%;
        float: none;
        text-align: center;
    }
    .footer-ul::before, .footer-contact::before{
        width: 0px;
        height: 0px;
    }
    .footer-ul li{
        margin-right: 15px;
        margin-bottom: 15px;
        display: inline-block;
        float: none;
    }
    .footer-ul li a{
        font-size: 14px;
    }
    .footer-contact{
        padding: 0px 0px 0px 15px;
    }
    .footer-contact p{
        font-size: 14px;
        margin-bottom: 6px;
    }
    .footer-contact p>span{
        margin-bottom: 0px;
    }
    .footer-code{
        display: none;
    }
    .copy{
        text-align: center;
        padding: 15px 0;
        font-size: 14px;
    }
    .copy p{
        float: none;
    }
    .copy span{
        float: none;
    }
    .footer{
        padding-top: 30px;
    }
    .footer-nav{
        padding-bottom: 10px;
    }
}
/* 公司简介 */
.inside-banner{
    width: 100%;
}
.inside-banner img{
    display: block;
    width: 100%;
}
.public-title{
    height: 49px;
    border-bottom: 1px solid #dedede;
}
.public-title-main{
    line-height: 49px;
    padding-left: 20px;
    background: url(../img/title_icon.png) no-repeat left center;
}
.public-title-main a{
    font-size: 14px;
    color: #666;
}
.public-title-main a:hover{
    color: #00aabc;
}
.about-main{
    padding-top: 70px;
    padding-bottom: 50px;
}
.about-main h2{
    font-size: 36px;
    color: #222;
    margin-bottom: 48px;
    text-align: center;
}
.about-info img{
    display: block;
    width: 100%;
}
.about-info .about-ms{
    margin-top: 20px;
    line-height: 30px;
    text-indent: 24px;
}
@media(max-width: 991px){
    .about-main{
        padding-top: 40px;
        padding-bottom: 30px;
    }
    .about-main h2{
        font-size: 28px;
        margin-bottom: 25px;
    }
    .about-info .about-ms{
        font-size: 14px;
        line-height: 24px;
    }
}
@media(max-width: 599px){
    .about-main{
        padding-top: 30px;
    }
}
/* 新闻资讯 */
.news-top{
    padding-bottom: 20px;
    border-bottom: 1px dashed #a1a1a1;
}
.news-img{
    float: left;
    width: 210px;
}
.news-top-right{
    float: right;
    width: calc(100% - 230px);
}
.news-top-title{
    padding-top: 10px;
}
.news-top-title h3{
    line-height: 28px;
    font-size: 20px;
    transition: all 0.5s;
	-moz-transition: all 0.5s; 
	-webkit-transition: all 0.5s; 
    -o-transition: all 0.5s;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    float: left;
}
.zhiding{
    display: block;
    float: left;
    width: 34px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    background: #d22819;
    font-size: 12px;
    margin-left: 15px;
    margin-top: 2px;
}
.news-top-title h3:hover>a{
    color: #00a9bc;
}
.news-top-title h3:hover{
    transform: translateX(8px);
    -moz-transform: translateX(8px);
    -ms-transform: translateX(8px);
    -o-transform: translateX(8px);
    -webkit-transform: translateX(8px);
}
.news-date{
    margin-top: 10px;
    font-size: 14px;
    color: #999;
    margin-bottom: 12px;
}
.news-ms{
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
}
.news-ul li{
    padding: 15px 0px;
    border-bottom: 1px dashed #a1a1a1;
}
.news-ul li h3{
    line-height: 28px;
    font-size: 20px;
    transition: all 0.5s;
	-moz-transition: all 0.5s; 
	-webkit-transition: all 0.5s; 
    -o-transition: all 0.5s;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news-ul li h3:hover{
    transform: translateX(8px);
    -moz-transform: translateX(8px);
    -ms-transform: translateX(8px);
    -o-transform: translateX(8px);
    -webkit-transform: translateX(8px);
}
.news-ul li h3:hover>a{
    color: #00a9bc;
}
@media(max-width: 767px){
    .news-img{
        float: none;
        width: 100%;
        text-align: center;
    }
    .news-top-right{
        float: none;
        width: 100%;
    }
    .news-top-title h3{
        font-size: 16px;
    }
    .news-ul li h3{
        font-size: 16px;
    }
    .zhiding{
        margin-left: 10px;
    }
    .news-date{
        margin-top: 4px;
        margin-bottom: 8px;
    }
    .news-ms{
        font-size: 14px;
    }
    .news-top{
        padding-bottom: 14px;
    }
    .news-ul li{
        padding-top: 10px;
    }
}
/* 产品配件 */
.about-main h2>a{
    font-size: 18px;
    color: #222;
}
.about-main h2>a:hover{
    color: #00a9bc;
}
.pro-item{
    max-width: 408px;
    margin: 0 auto;
    overflow: hidden;
}
.pro-img{
    border: 2px solid #999;
    transition: all 0.5s;
	-moz-transition: all 0.5s; 
	-webkit-transition: all 0.5s; 
    -o-transition: all 0.5s;
}
.pro-img img{
    display: block;
    width: 100%;
}
.pro-item p{
    line-height: 60px;
    text-align: center;
    font-size: 18px;
}
.pro-item:hover .pro-img{
    border: 2px solid #00a9bc;
}
.pro-item:hover p{
    color: #00a9bc;
}
.pro-main{
    overflow: hidden;
}
@media(max-width: 991px){
    .pro-item p{
        line-height: 48px;
        font-size: 16px;
    }
}
/* 产品详情 */
.pros-main{
    margin: 20px 0px;
    font-size: 14px;
    min-height: 200px;
    text-align: center;
}
.pros-page{
    width:100%; 
	line-height:30px; 
	text-align:left; 
	margin-top:20px; 
	border-top:solid 1px #CCCCCC;	
	padding-top:5px;
	font-size: 16px;
}
@media(max-width:1199px){
    .pros-main img{
        display: block;
        width: 100%;
    }
}
/* 联系我们 */
.contact_left{
    background: #f3f3f3;
    padding: 61px 54px;
    margin-bottom: 20px;
    width: 50%;
    float: left;
}
.contact_left>h3{
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 25px;
}
.contact_left>p{
    font-size: 16px;
    line-height: 30px;
}
.contact_right{
    width: 48%;
    float: right;
}
.contact_right>img{
    display: block;
    width: 100%;
}
@media(min-width: 1199px){
    .contact_right>img{
        height: 355px;
    }
}
.map>img{
    display: block;
    width: 100%;
    padding-bottom: 20px;
}
@media(max-width: 1199px){
    .contact_left,.contact_right{
        width: 100%;
        float: none;
    }
    .contact_right>img{
        margin-bottom: 20px;
    }
}
@media(max-width: 767px){
    .contact_left{
        padding: 15px;
    }
    .contact_left>h3{
        font-size: 18px;
        margin-bottom: 10px;
    }
    .contact_left > p{
        font-size: 14px;
        line-height: 24px;
    }
}

/* 新增 */
.pro-title{
    position: relative;
    overflow: hidden;
}
.pro-title h2{
    font-size: 36px;
    color: #222;
    margin-bottom: 48px;
    text-align: center;
}
.pro-title h2>a{
    font-size: 18px;
    color: #222;
}
.pro-title h2>a:hover{
    color: #00a9bc;
}
.pronavToggle{
    display: none;
}
/* 导航按钮 */
#pronavToggle{
    display: none;
	overflow: hidden;
	position: absolute;
	cursor: pointer;
	box-sizing: border-box;
	width: 70px;
	height: 70px;
	padding: 15px;
	background: #0064b2;
	padding: 0;
	right: 0px;
	top: 0px;
	z-index: 999;
	-moz-transition: -moz-transform 0.3s;
	-o-transition: -o-transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;	
}
#pronavToggle::before {
    margin-top: -7px;
}
#pronavToggle::after {
    margin-top: 7px;
}
#pronavToggle span,
#pronavToggle::after,
#pronavToggle::before {
    height: 2px;
    width: 22px;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    background: #000;
    position: absolute;
    display: block;
    content: '';
    text-indent: -9999px;
    transition: all 300ms ease-in-out;
}
#pronavToggle.show span {
    opacity: 0;
}
#pronavToggle span, #pronavToggle::after, #pronavToggle::before {
    height: 3px;
    width: 22px;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    background: #fff;
    position: absolute;
    display: block;
    content: '';
    text-indent: -9999px;
    transition: all 300ms ease-in-out;
}
.pro-ul{
    text-align: center;
    overflow: hidden;
    margin-bottom: 40px;
}
.pro-ul li{
    display: inline-block;
    margin: 0 2px;
}
.pro-ul li a{
    display: block;
    line-height: 40px;
    padding: 0 10px;
    background: transparent;
    border-radius: 10px;
    transition: all 0.5s;
	-moz-transition: all 0.5s; 
	-webkit-transition: all 0.5s; 
    -o-transition: all 0.5s;
}
.pro-ul li a:hover, .pro-ul li.active a{
    background: #00aabc;
    color: #fff;
}
@media(max-width: 1200px){
    .pro-ul{
        margin-bottom: 0px;
    }
    .pro-ul li{
        margin-bottom: 10px;
    }
}
@media(max-width:991px){
    .pro-main{
        margin-top: 30px;
    }
    #pronavToggle{
        display: block;
        width: 50px;
        height: 50px;
    }
    .pro-ul{
        display: none;
    }
    .pro-ul li{
        display: block;
    }
    .pro-title{
        background: #00aabc;
        height: 50px;
    }
    .pro-title h2{
        font-size: 18px;
        margin-bottom: 0px;
        float: left;
        line-height: 50px;
        padding-left: 20px;
        color: #fff;
    }
    .pro-title h2>a{
        color: #fff;
        font-size: 16px;
    }
    .pro-title h2>a:hover{
        color: #fff;
    }
    .pro-ul li{
        margin: 0px;
    }
    .pro-ul li a{
        border-radius: 0px;
        border: 1px solid #00aabc;
        background: #fff;
        border-bottom: none;
    }
    .pro-ul li:last-child a{
        border-bottom: 1px solid #00aabc;
    }
    .pro-ul li a:hover, .pro-ul li.active a{
        background: #fff;
        color: #00aabc;
        
    }
}