@charset "utf-8";
header{
    width:100%;
    position: fixed;
    top:40px;
    left:0;
    z-index:99;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.header{
    padding:10px 0;
    width:100%;
    position: relative;
    color:#fff;
}
.header .logo .logo2{
    display: none;
}
.header .nav>ul{
    margin:0;
}
.header .nav>ul>li{
    display: inline-block;
    padding: 0 15px;
}
.header .nav>ul>li>a{
    display: block;
    position: relative;
    color:#fff;
    padding:20px 0 15px 0;
}
.header .nav>ul>li>a>b{
    display: block;
    height:3px;
    width:100%;
    background:#fff;
    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>b{
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
    -o-transform: rotateY(0);
}
.header .language{
    padding:0 20px;
    margin:0 15px;
    line-height: 60px;
    color:#fff;
}
.header .language a{
    color:#fff;
}
.header .header-tel{
    line-height: 60px;
}
.header .header-tel strong{
    font-size: 20px;
    color:#fff;
}
.header .header-tel span{
    font-size: 18px;
    color:#fff;
    position: relative;
    top:-1px;
}

.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;
}
header.on .header .nav ul li a{
    color:#424242;
}
header.on .header .logo .logo1{
    display: none;
}
header.on .header .logo .logo2{
    display: block;
}
header.on .header .header-tel span{
    color:#828282;
}
header.on .header .header-tel strong{
    color:#0064ba;
}
header.on .language a{
    color:#424242;
}


@media (max-width: 1199px){
    .header .nav>ul>li{
        padding-left:0;
    }
    .header .language{
        margin:0;
    }
}
@media (max-width: 992px){
    .m-btn{
        display: block;
    }
    header{
        top:0;
    }
    .header{
        position: relative;
        height:70px;
        padding:0;
    }
    .header .logo {
        padding-top:15px;
    }
    .header .logo .logo2{
        display: none;
    }
    .header .logo img{
        height:40px;
    }
    .header .language{
        line-height: 70px;
        padding-right:50px;
    }
    .header .nav{
        position: absolute;
        left:-100vw;
        top:70px;
        width:70%;
        height:calc(100vh - 70px);
        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;
        line-height: 40px !important;
        padding:0 20px;
    }
    .header .nav ul li a{
        color:#424242;
    }
    .header .language a{
        color:#424242;
    }
    .header .logo .logo1{
        display: none;
    }
    .header .logo .logo2{
        display: block;
    }
}

/* banner */
.banner{
    position: relative;
}
.banner .carousel-caption{
    text-align: left;
    width:1400px;
    margin-left:-700px;
    margin-top:-54px;
    position: absolute;
    left:50%;
    top:50%;
    color:#fff;
    padding:0 15px;
}
.banner .carousel-caption h1{
    font-size: 45px;
    font-weight: bold;
}
.banner .carousel-caption p{
    font-size: 18px;
    margin:15px 0 0 0;
}
@media (max-width:1400px){
    .banner .carousel-caption{
        width:100%;
        margin-left:0;
        left:0;
    }
}
@media not all, (-webkit-transform-3d) {
    .carousel-inner>.item{
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
}
@-webkit-keyframes scaleUpDown {
    from {opacity: 0.8; -webkit-transform: scale(1.2); transform: scale(1.2); }
    to { opacity: 1;  -webkit-transform: scale(1); transform: scale(1);}
}

@keyframes scaleUpDown {
    from {opacity: 0.8; -webkit-transform: scale(1.2); transform: scale(1.2);}
    to { opacity: 1;  -webkit-transform: scale(1); transform: scale(1);}
}
.banner .carousel-inner .item img{
    -webkit-animation: scaleUpDown 3.2s forwards cubic-bezier(0.250, 0.460, 0.450, 0.940);
    animation: scaleUpDown 3.2s forwards cubic-bezier(0.250, 0.460, 0.450, 0.940);
}
.banner-zs{
    position: absolute;
    right:0;
    bottom:0;
    width:520px;
    height:80px;
    line-height: 80px;
    background:#0064ba;
    color:#fff;
    padding:0 30px;
}
.banner-zs a{
    color:#fff;
    font-size: 24px;
    padding:0 30px 0 60px;
}
.banner-zs span{
    display: inline-block;
    width:50px;
    height:2px;
    background:#fff;
    position: relative;
    top:-4px;
}
@media (max-width:1400px){
    .banner .carousel-caption h1{
        font-size: 35px;
    }
    .banner .carousel-caption p{
        font-size: 16px;
    }
}
@media (max-width:992px){
    .banner{
        margin-top:70px;
    }
    .banner .carousel-caption h1{
        font-size: 16px;
    }
    .banner .carousel-caption p{
        font-size: 12px;
    }
    .banner-zs{
        width:200px;
        height:35px;
        line-height: 35px;
    }
    .banner-zs a{
        font-size: 16px;
        padding:0 20px 0 10px;
    }
    .banner-zs span{
        width:30px;
        height:2px;
    }
}

/* 搜索 */
.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:100px 0;
}

/* 关于我们 */
.about .about-img{
    position: relative;
    padding-left:70px;
}
.about .about-img .about-img-box{
   width:94%;
}
.about .about-img .about-img-box img{
    width:100%;
}
.about .about-img .about-img-box::after{
    content:'';
    width:83%;
    height:100%;
    background:#0064ba;
    position: absolute;
    right:0;
    top:40px;
    z-index:-1;
}

.about .about-box .title{
    font-size: 40px;
    font-weight: bold;
    color:#0064ba;
}
.about .about-box b{
    display: block;
    width:80px;
    height:3px;
    background:#0064ba;
    margin: 15px 0 20px 0;
}
.about .about-box .p0{
    font-size: 18px;
    font-weight: bold;
}
.about .about-box .about-intro{
    line-height: 28px;
}
.about .about-box .about-intro p{
    margin:0;
}
.about .about-box .more{
    display: block;
    width:125px;
    height:40px;
    background:#0064ba;
    color:#fff;
    text-align: center;
    line-height: 40px;
    margin:30px 0;
}
.about .about-box .more span{
    font-size: 30px;
}
@media (max-width:992px){
    .common{
        padding:40px 0;
    }
    .about .about-img{
        padding:0;
        margin-bottom:50px;
    }
    .about .about-img .about-img-box::after{
        top:20px;
    }
    .about .about-box .title{
        font-size: 25px;
    }
}

/* 面料展示 */
.title p{
    font-size: 40px;
    font-weight: bold;
    color:#0064ba;
}
.title span{
    font-size: 18px;
}
.title span a{
    font-weight: bold;
}
.product{
    background:url(../img/product-bg.jpg) no-repeat fixed center;
}
.pro-title{
    color:#fff;
}
.pro-title p{
    color:#fff;
}
.pro-title span a{
    color:#fff;
}
.product-box {
    margin-top:30px;
}
.product-box .pro-list .pro-img {
    overflow: hidden;
}
.product-box .pro-list .pro-img img{
    width:100%;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
.product-box .pro-list p{
    padding:8px;
    color:#fff;
    text-align: center;
}
.product-box .pro-list:hover .pro-img img{
    transform:  scale(1.1);
    -webkit-transform:  scale(1.1);
    -o-transform:  scale(1.1);
}
.product-box .pro-list:hover p{
    background:#fff;
    color:#0064ba;
}
@media (max-width:992px){
    .title p{
        font-size: 25px;
    }
    .title span{
        font-size: 14px;
    }
}

/* 资质认证 */
.honor{
    background:#fafafa;
}
.honor .honor-box{
    margin-top:30px;
}
.honor .honor-list{
    float: left;
    width:19%;
    height:150px;
    line-height: 150px;
    text-align: center;
    background:#fff;
    margin-left:1.25%;
    margin-bottom: 15px;
}
.honor .honor-list:first-child,.honor .honor-list:nth-child(6){
    margin-left:0;
}
.honor .honor-list img{
    max-height:99px;
}
.honor .honor-list .honor-img2{
    display: none;
    text-align: center;
}
.honor .honor-list:hover{
    background:#0064ba;
    text-align: center;
    line-height: 150px;
}
.honor .honor-list:hover .honor-img1{
    display: none;
}
.honor .honor-list:hover .honor-img2{
    display: inline-block;
    text-align: center;
}

@media (max-width:992px){
    .honor .honor-list{
        width:100%;
        margin-bottom:10px;
        margin-left:0;
    }
}

/* 设备展示 */
.shebei .title .shebei-more{
    display: block;
    width:150px;
    height:40px;
    line-height: 40px;
    text-align: center;
    border:1px solid #424242;
    position: relative;
    top:-20px;
}
.shebei .title .shebei-more:hover{
    background:#0064ba;
    color:#fff;
    border:none;
}
.shebei-box{
    margin-top:30px;
}
.shebei-box .shebei-img{
    overflow: hidden;
}
.shebei-box .shebei-img img{
    width:100%;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
.shebei-box .shebei-img:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}

@media (max-width:992px){
    .shebei .title .shebei-more{
        display: none;
    }
    .shebei .s-more{
        display: block;
        width:150px;
        height:40px;
        line-height: 40px;
        text-align: center;
        border:1px solid #424242;
        margin:30px auto 0;
    }
}

/* 新闻 */
.news{
    background:#fafafa;
}
.title b{
    display: block;
    width:100px;
    height:3px;
    background:#0064ba;
    margin:15px 0 25px 0;
}
.news-box .news-nav li{
    display: inline-block;
    padding:0 0 10px 0;
}
.news-box .news-left{
    width:72%;
    background:#fff;
    padding:40px;
}
.news-box .news-right{
    width:28%;
}
.news-box .news-right .news-img img{
    width:100%;
}
.news-box .news-nav{
    padding:20px 0 0 0;
}
.news-box .news-nav li a{
    font-size: 20px;
    font-weight: 500;
    padding-right:20px;
    color:#828282;
}
.news-box .news-nav li:first-child a{
    color:#424242;
}
.news-box .news-nav li a:hover{
    color:#424242;
}
.news-box .news-content .news-list{
    padding:40px 0;
    border-top:2px solid #f8f8f8;
}
.news-box .news-content .news-list .news-time{
    width:15%;
    font-size: 14px;
    color:#424242;
}
.news-box .news-content .news-list .news-title p{
    font-size: 18px;
}
.news-box .news-content .news-list .news-title span{
    font-size: 14px;
    color:#828282;
}
@media (max-width:1399px){
    .news-box .news-right .news-img img{
        height:356px
    }
    .news-box .news-content .news-list{
        padding:24px 0;
    }
}
@media (max-width:992px){
    .news-box .news-left{
        width:100%;
        padding:20px 10px;
    }
    .news-box .news-right{
        display: none;
    }
    .news-box .news-nav li a{
        font-size: 16px;
    }
    .news-box .news-content .news-list{
        padding:20px 0;
    }
    .news-box .news-content .news-list .news-time{
        display: none;
    }
    .news-box .news-content .news-list .news-title p{
        font-size: 16px;
    }
}
