@charset "UTF-8";
/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2017-10-18 08:57:34
 * @version $Id$
 */
 /* header */
header{
    width:100%;
    position: relative;
    z-index: 10;
    border-bottom: 2px solid #3258a6;
}
.header{
    height: 98px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.logo{
    float: left;
    width: 80px;
    /* margin-top: 6px; */
}
.logo img{
    display: block;
    width: 100%;
}
.nav-ul li{
    float: left;
    margin-right: 5px;
    position: relative;
    height: 100px;
}
.nav-ul li:last-child{
    margin-right: 0px;
}
.nav-ul li > a{
    line-height: 40px;
    font-size: 16px;
    width: 120px;
    background: transparent;
    color: #313131;
    display: block;
    transition: all 0.5s;
    text-align: center;
    margin-top: 30px;
}
.nav-ul li:hover>a, .nav-ul li.nav-active > a{
    color: #fff;
    background: #3258a6;
}
.nav-sub{
    position: absolute;
    top: 100px;
    left: 0px;
    z-index: 66;
    display: none;
    width: 100%;
    box-sizing: border-box;
}
.nav-sub dl dd{
    margin-bottom: 2px;
}
.nav-sub dl dd a{
    display: block;
    line-height: 40px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    background: #3258a6;
}
.nav-sub dl dd:hover a{
    background: #049dd9;
}
.lan{
    display: flex;
}
.lan a{
    display: block;
    width: 46px;
    height: 42px;
    line-height: 42px;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    background: #3258a6;
    text-align: center;
}
.lan .lan-en{
    margin-right: 10px;
}
.lan a:hover{
    background: #049dd9;
}
@media(max-width: 1400px){
    .nav-ul li > a{
        width: 110px;
    }
}
@media(max-width:1200px){
    .nav-ul li {
        margin-right: 0px;
    }
    .nav-ul li > a{
        width: 90px;
        font-size: 14px;
    }
    .lan a{
        width: 36px;
        height: 36px;
        line-height: 36px;
    }
    .nav-sub dl dd a{
        line-height: 36px;
        font-size: 14px;
    }
}
@media(max-width: 991px){
    .header{
        height: 70px;
    }
    .lan{
        display: none;
    }
    .logo{
        width: 60px;
        margin-top: 3px;
    }
    .nav{
        display: none;
    }
}
/* 首页关于我们 */
.home-about{
    padding-top: 95px;
    padding-bottom: 100px;
    position: relative;
    padding-left: 13.2%;
}
.habout-main{
    position: relative;
    z-index: 10;
    display: flex;
}
.habout-info{
    width: 47.1%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.habout-top{
    padding-right: 80px;
}
.habout-title{
    font-size: 42px;
    color: #000;
    padding-left: 22px;
    position: relative;
}
.habout-title h3{
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Arial";
    margin-bottom: 5px;
}
.habout-title::before{
    width: 4px;
    height: 95px;
    position: absolute;
    top: 5px;
    left: 0px;
    content: "";
    background: #3258a6;
}
.habout-txt{
    font-size: 16px;
    line-height: 32px;
    color: #333;
    margin-top: 46px;
    margin-bottom: 76px;
}
.habout-more{
    display: block;
    width: 140px;
    height: 50px;
    color: #fff;
    text-align: center;
    line-height: 50px;
    background: #3258a6;
}
.habout-img{
    width: 52.9%;
    position: relative;
    padding-right: 15%;
}
.habout-bg{
    position: absolute;
    height: 210px;
    width: 100%;
    background: #3258a6;
    bottom: 0px;
    right: 0px;
    z-index: -1;
}
.habout-vedio{
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.habout-vedio img{
    display: block;
    width: 100%;
}
.habout-vedio video{
    display: block;
    width: 100%;
}
.habout-play{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: url(../img/play_icon.png) no-repeat center;
    opacity: 0;
    transition: all .5s;
}
.habout-vedio:hover .habout-play{
    opacity: 1;
}
.habout-list{
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding-left: 13.2%;
    width: 100%;
    z-index: 3;
    box-sizing: border-box;
}
.habout-ul{
    background: #3258a6;
    display: flex;
    margin-top: 80px;
}
.habout-ul li{
    flex: 1;
}
.habout-ul li a{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 210px;
}
.habout-ul li img{
    transition: all .5s;
}
.habout-ul li a span{
    padding-top: 28px;
    font-size: 22px;
    line-height: 24px;
    color: #fff;
}
.habout-ul .habout-culture a{
    background: #05c7f2;
}
.habout-ul .habout-honor a{
    background: #049dd9;
}
.habout-ul .habout-history a{
    background: #0477bf;
}
.habout-ul .habout-recruit a{
    background: #3258a6;
}
.habout-ul li:hover img{
    transform: rotateY(180deg);
}
@media(max-width: 1720px){
    .habout-txt{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-all;
        text-overflow: ellipsis;
        -webkit-line-clamp: 4;
    }
    .habout-img{
        padding-right: 10%;
    }
    .home-about{
        padding-left: 9%;
    }
}
@media(max-width: 1600px){
    .habout-txt{
        margin-bottom: 50px;
    }
    .habout-ul li a{
        height: 180px;
    }
    .habout-bg{
        height: 180px;
    }
}
@media(max-width: 1400px){
    .habout-title{
        font-size: 36px;
        line-height: 40px;
    }
    .habout-title::before{
        height: 80px;
    }
    .habout-txt{
        margin-top: 30px;
    }
}
@media(max-width: 1200px){
    .home-about{
        padding-top: 75px;
        padding-bottom: 80px;
    }
    .habout-top{
        padding-right: 50px;
    }
    .habout-txt{
        margin-bottom: 20px;
        -webkit-line-clamp: 2;
    }
}
@media(max-width: 991px){
    .habout-top{
        padding-right: 0px;
        text-align: justify;
    }
    .home-about{
        padding-left: 0px;
        padding-top: 50px;
        padding-bottom: 30px;
    }
    .habout-main{
        flex-direction: column;
    }
    .habout-info{
        width: 100%;
        padding: 0 20px;
    }
    .habout-vedio{
        margin-top: 20px;
    }
    .habout-img{
        padding-right: 0px;
        width: 100%;
        max-width: 620px;
        margin: 0 auto 40px;
    }
    .habout-title{
        font-size: 32px;
        line-height: 36px;
    }
    .habout-title::before{
        height: 74px;
    }
    .habout-txt{
        -webkit-line-clamp: 20;
    }
    .habout-more{
        margin-bottom: 40px;
    }
    .habout-ul{
        margin-top:0px;
    }
}
@media(max-width: 599px){
    .habout-ul{
        flex-wrap: wrap;
    }
    .habout-ul li{
        flex: none;
        width: 50%;
    }
}
/* 首页产品 */
.home-pro{
    display: flex;
    overflow: hidden;
    width: 100%;
}
.hpro-item{
    flex: 1;
    position: relative;
}
.hpro-img{
    width: 100%;
    overflow: hidden;
}
.hpro-img img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.hpro-info{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0);
    transition: all .5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.hpro-info h2{
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 10px;
}
.hpro-info span{
    font-size: 24px;
    font-family: "Arial";
    line-height: 30px;
}
.hpro-info a{
    display: block;
    width: 168px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #3258a6;
    margin-top: 55px;
    color: #fff;
}
.hpro-item:hover .hpro-info{
    background: rgba(0, 0, 0, .5);
}
.hpro-item:hover .hpro-img img{
    transform: scale(1.1);
}
@media(max-width: 1200px){
    .hpro-info h2{
        font-size: 36px;
        line-height: 36px;
    }
    .hpro-info a{
        margin-top: 40px;
    }
}
@media(max-width: 991px){
    .home-pro{
        flex-direction: column;
    }
    .hpro-info h2{
        font-size: 32px;
        line-height: 34px;
    }
    .hpro-info span{
        font-size: 20px;
        line-height: 24px;
    }
}
/* 定制文化 */
.public-title{
    padding-top: 98px;
    text-align: center;
    padding-bottom: 55px;
}
.public-title h2{
    font-size: 42px;
    line-height: 44px;
    color: #000;
    margin-bottom: 14px;
}
.public-title span{
    font-size: 16px;
    color: #666;
    line-height: 24px;
}
@media(max-width: 1200px){
    .public-title{
        padding-top: 80px;
    }
}
@media(max-width: 991px){
    .public-title{
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .public-title h2{
        font-size: 36px;
        line-height: 40px;
    }
}
@media(max-width: 559px){
    .public-title{
        padding-top: 40px;
        padding-bottom: 30px;
    }
    .public-title h2{
        font-size: 32px;
        line-height: 34px;
    }
}
.home-culture{
    background: #f7f7f8;
    padding-bottom: 100px;
}
.hcuture-ul{
    margin-left: -13px;
    margin-right: -13px;
}
.hcuture-ul li{
    padding: 0 13px;
    float: left;
    width: 25%;
}
.hculture-item{
    width: 100%;
    overflow: hidden;
    position: relative;
    border-top: 6px solid #3258a6;
    padding-top: 74px;
    background: #fff;
    transition: all .5s;
}
.hculture-img{
    position: relative;
    height: 60px;
    margin-bottom: 35px;
}
.hculture-img img{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    transition: all .5s;
}
.hculture-img img.hculture-imgon{
    opacity: 0;
} 
.hculture-info{
    padding: 0 34px;
    text-align: center;
}
.hculture-info h2{
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: bold;
    color: #000;
}
.hculture-info p{
    min-height: 176px;
    text-align: center;
    line-height: 24px;
}
.hcuture-ul li:hover .hculture-item{
    background: #3258a6;
}
.hcuture-ul li:hover .hculture-info h2{
    color: #fff;
}
.hcuture-ul li:hover .hculture-info p{
    color: #fff;
}
.hcuture-ul li:hover .hculture-img img{
    opacity: 0;
}
.hcuture-ul li:hover .hculture-img img.hculture-imgon{
    opacity: 1;
} 
@media(max-width: 1400px){
    .hculture-item{
        padding-top: 55px;
    }
}
@media(max-width: 1200px){
    .hcuture-ul li{
        width: 50%;
        margin-bottom: 25px;
    }
    .home-culture{
        padding-bottom: 70px;
    }
}
@media(max-width: 991px){
    .home-culture{
        padding-bottom: 55px;
    }
}
@media(max-width: 767px){
    .hcuture-ul li{
        width: 100%;
    }
}
@media(max-width: 599px){
    .home-culture{
        padding-bottom: 25px;
    }
}
/* 首页新闻 */
.hnews-main{
    padding-bottom: 95px;
}
.hnews-img{
    width: 100%;
    overflow: hidden;
}
.hnews-img img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.hnews-info {
    padding-top: 20px;
}
.hnews-info h2{
    margin-bottom: 7px;
    font-size: 18px;
    font-weight: bold;
    color: #111;
    line-height: 300%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}
.hnews-info p{
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
.hnews-ul li:hover .hnews-img img{
    transform: scale(1.1);
}
.hnews-ul li:hover .hnews-info h2{
    color: #3258a6;
}
@media(max-width: 1200px){
    .hnews-main{
        padding-bottom: 80px;
    }
}
@media(max-width: 991px){
    .hnews-main{
        padding-bottom: 60px;
    }
    .hnews-info h2{
        min-height: 48px;
    }
}
@media(max-width: 767px){
    .hnews-ul li{
        margin-bottom: 25px;
    }
    .hnews-info h2{
        min-height: 24px;
    }
    .hnews-main{
        padding-bottom: 30px;
    }
}
/* 底部 */
#footer{
    background: #707070;
    padding-top: 55px;
}
.footer-top{
    padding-bottom: 53px;
    border-bottom: 1px solid #b5b5b5;
}
.footer-ul{
    float: left;
    width: 80%;
}
.footer-ul li{
    float: left;
    margin-right: 80px;
}
.footer-ul li:last-child{
    margin-right: 0px;
}
.footer-ul li > a{
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    display: block;
    margin-bottom: 14px;
}
.footer-ul li dl dd{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 6px;
    color: #ccc;
}
.footer-ul li dl dd a{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 6px;
    color: #ccc;
}
.footer-code{
    float: right;
    width: 19.7%;
}
.footer-code h3{
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 20px;
}
.fcode-img{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.fcode-img li{
    width: 47%;
    overflow: hidden;
}
.fcode-img li img{
    display: block;
    width: 100%;
    margin-bottom: 8px;
}
.fcode-img li p{
    font-size: 14px;
    line-height: 24px;
    color: #ccc;
    text-align: center;
}
.footer-bom{
    padding: 23px 0px;
}
.copy{
    float: left;
    color: #dcdcdc;
    font-size: 16px;
    line-height: 34px;
}
.footer-share{
    float: right;
}
.footer-share .bshare-custom .bshare-more{
    color: #fff !important;
}
.footer-share .bshare-custom .bshare-item{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    padding-left: 0px;
    margin-right: 10px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
}
.footer-share .bshare-custom .bshare-weixin{
    margin-right: 0px;
    background-image: url(../img/share_wx.png);
}
.footer-share .bshare-custom .bshare-sinaminiblog{
    background-image: url(../img/share_weibo.png);
}
.footer-share .bshare-custom .bshare-qqim{
    background-image: url(../img/share_qq.png);
}
.footer-share .bshare-custom .bshare-item:hover{
    opacity: 1;
    background-color: #049dd9;
}
.footer-share .bshare-custom .bshare-weixin:hover{
    background-image: url(../img/share_wx_on.png);
}
.footer-share .bshare-custom .bshare-sinaminiblog:hover{
    background-image: url(../img/share_weibo_on.png);
}
.footer-share .bshare-custom .bshare-qqim:hover{
    background-image: url(../img/share_qq_on.png);
}
.footer-share .bshare-custom .bshare-more{
    display: none;
}
.footer-share .bshare-custom .bshare-share-count{
    display: none;
}
@media(max-width: 1400px){
    .footer-ul li{
        margin-right: 60px;
    }
}
@media(max-width: 1200px){
    .footer-ul li{
        margin-right: 15px;
    }
}
@media(max-width: 991px){
    .footer-ul{
        width: 100%;
        float: none;
    }
    .footer-ul li{
        margin-right: 0px;
        float: none;
        width: 100%;
        margin-bottom: 15px;
    }
    .footer-ul li > a{
        text-align: center;
        margin-bottom: 10px;
    }
    .footer-ul li dl{
        text-align: center;
    }
    .footer-ul li dl dd{
        display: inline-block;
        margin-bottom: 0px;
    }
    #footer{
        padding-top: 40px;
    }
    .footer-code{
        width: 100%;
        float: none;
        text-align: center;
    }
    .fcode-img {
        justify-content: center;
    }
    .fcode-img li{
        width: 100%;
        max-width: 136px;
        margin: 0 10px;  
    }
    .footer-top{
        padding-bottom: 40px;
    }
    .copy{
        float: none;
        text-align: center;
        width: 100%;
        line-height: 24px;
        margin-bottom: 12px;
    }
    .footer-share{
        float: none;
        text-align: center;
        width: 100%;
    }
}
@media(max-width: 599px){
    .footer-top{
        padding-bottom: 20px;
    }
}
/* 关于我们内页 */
.inside-nav{
    padding-top: 60px;
}
.inav-ul{
    display: flex;
}
.inav-ul li{
    flex: 1;
    transition: all .5s;
    margin: 0 1px;
}
.inav-ul li a{
    display: block;
    width: 100%;
    line-height: 72px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    background: #3258a6;
}
.inav-ul li a:hover{
    background: #049dd9;
}
.inav-ul li.inav-act a{
    background: #049dd9;
}
.ititle{
    display: none;
    position: relative;
    width: 100%;
    height: 50px;
    background: #049dd9;
}
.ititle h2{
    float: left;
    font-size: 26px;
    line-height: 50px;
    padding-left: 20px;
    color: #fff;
}
.about-main{
    padding-top: 60px;
}
.about-main h2{
    text-align: center;
    font-size: 42px;
    color: #000;
    margin-bottom: 48px;
}
.about-info{
    font-size: 16px;
    line-height: 36px;
    color: #333;
    text-indent: 32px;
    margin-bottom: 30px;
}
.about-ul{
    margin-left: -28px;
    margin-right: -28px;
}
.about-ul li{
    padding: 0 28px;
    margin-bottom: 60px;
}
.about-img{
    width: 100%;
    overflow: hidden;
}
.about-img img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.about-ul li:hover .about-img img{
    transform: scale(1.1);
}
@media(max-width: 1200px){
    .about-ul{
        margin-left: -15px;
        margin-right: -15px;
    }
    .about-ul li{
        padding: 0 15px;
    }
}
@media(max-width: 991px){
    .inside-nav{
        padding-top: 40px;
    }
    .about-main{
        padding-top: 50px;
    }
    .about-main h2{
        font-size: 36px;
        margin-bottom: 30px;
    }
}
@media(max-width: 767px){
    .inav-ul{
        flex-wrap: wrap;
        justify-content: center;
    }
    .inav-ul li{
        flex: none;
        width: 25%;
        margin-bottom: 10px;
    }
    .inav-ul li a{
        line-height: 60px;
    }
    .about-main{
        padding-top: 30px;
    }
    .about-ul li{
        margin-bottom: 30px;
    }
    .about-main{
        padding-bottom: 20px;
    }
}
@media(max-width: 559px){
    .about-main{
        padding-top: 20px;
    }
    .about-main h2{
        font-size: 32px;
    }
}
/* 内页新闻 */
.newnav-ul li:nth-child(1){
    background-color: #049dd9;
}
.newnav-ul li:nth-child(2){
    background-color: #3258a6;
}
.newnav-ul li:nth-child(1):hover{
    background-color: #3258a6;
}
.newnav-ul li:nth-child(2):hover{
    background-color: #049dd9;
}
.news-main{
    padding-top: 20px;
}
.news-ul li{
    padding: 40px 0px;
    border-bottom: 1px solid #dcdcdc;
}
.news-ul li a{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.news-img{
    width: 440px;
    overflow: hidden;
}
.news-img img{
    width: 100%;
    display: block;
    transition: all .5s;
}
.news-info{
    width: calc(100% - 480px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-info h2{
    font-size: 18px;
    font-weight: bold;
    color: #000;
    line-height: 300%;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}
.page p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}
.news-info span{
    font-size: 16px;
    color: #999;
    line-height: 24px;
}
.news-info p{
    margin-top: 10px;
    font-size: 16px;
    line-height: 30px;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}
.news-ul li:hover .news-img img{
    transform: scale(1.1);
}
.news-ul li:hover .news-info h2{
    color: #3258a6;
}
@media(max-width: 1200px){
    .news-img{
        width: 360px;
    }
    .news-info{
        width: calc(100% - 400px);
    }
}
@media(max-width: 991px){
    .news-ul li{
        padding: 20px 0px;
    }
    .news-ul li a{
        flex-direction: column;
    }
    .news-img{
        width: 100%;
        margin: 0 auto 25px;
        max-width: 440px;
    }
    .news-info{
        width: 100%;
    }
}
@media(max-width: 767px){
    .newnav-ul li{
        width: 50%;
    }
}
@media(max-width: 599px){
    .news-main{
        padding-top: 10px;
    }
}
/* 服装展示 */
.pros-main{
    padding-top: 60px;
}
.pros-img{
    width: 100%;
    overflow: hidden;
}
.pros-img img{
    width: 100%;
    display: block;
    transition: all .5s;
}
.pros-ul li p{
    padding-top: 14px;
    font-size: 16px;
    color: #333;
    line-height: 24px;
    text-align: center;
    padding-bottom: 16px;
}
.pros-ul li:hover .pros-img img{
    transform: scale(1.1);
}
.pros-ul li:hover p{
    color: #3258a6;
}
@media(max-width: 767px){
    .pronav-ul li{
        width: 33.33333%;
    }
    .pros-main{
        padding-top: 40px;
    }
}
@media(max-width: 599px){
    .pros-main{
        padding-top: 30px;
    }
}
/* 联系我们 */
.contact-main{
    padding-bottom: 60px;
}
.contact-cont{
    overflow: hidden;
}
.contact-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f3f3f3;
    justify-content: center;
}
.contact-info dl dt{
    font-size: 24px;
    color: #3258a6;
    margin-bottom: 25px;
}
.contact-info dl dd{
    line-height: 30px;
    color: #666;
    font-size: 16px;
}
.contact-img{
    overflow: hidden;
    width: 100%;
}
.contact-img img{
    display: block;
    width: 100%;
}
.contact-ditu{
    margin-top: 28px;
    overflow: hidden;
    width: 100%;
}
.contact-ditu img{
    display: block;
    width: 100%;
}
@media(max-width: 1200px){
    .contact-info dl dt{
        margin-bottom: 15px;
    }
}
@media(max-width: 991px){
    .col-xxs-12{
        width:100%;
    }
    .contact-info{
        padding: 30px 0px;
        margin-bottom: 15px;
    }
    .contact-main{
        padding-bottom: 40px;
    }
}
@media(max-width: 599px){
    .contact-main{
        padding-bottom: 30px;
    }
    .contact-ditu{
        margin-top: 15px;
    }
}
/*.inav-ul .dc a{*/
    /*font-weight: bolder*/
/*}*/
.about-info img{
    max-width: 100%;
}