@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;
    z-index: 999;
    position: fixed;
    top: 0px;
    background: rgba(88,38,129,0.95);     
}
.header{    
    width:100%;
    padding: 15px 0px 20px;
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*头部logo*/
.header .logo .logo{   
    transition: all .5s;
    padding: 0px 15px 0px 15px;
}
/*头部导航*/  
header .navbar{   
    transition: all .5s;
    padding: 0px 0px;
    border-radius: 0px;
    margin-bottom: 0px;
    border: none;
}
.navbar-brand {
    float: left;
    height: 40px;
    padding: 8px 0px;
    font-size: 18px;
    line-height: 20px;
}
.navbar-brand>img{
    height: 35px;
}
header .nav>li>a{ 
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px; 
    padding: 15px 30px 15px 0px;
    font-weight: 400;
    color: #fff;   
    -webkit-transition: border 15ms ease-out,all .15s ease-in-out;
    -o-transition: border 15ms ease-out,all .15s ease-in-out;
    transition: border 15ms ease-out,all .15s ease-in-out;
    -webkit-transition-delay: .08s;
    -o-transition-delay: .08s;
    transition-delay: .08s;
}
header .nav.navbar-right>li>a{
    padding: 12px 0px 10px 30px;
}
header .nav>li>a:focus, header .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
}
.nav .open>a, .nav .open>a:focus, .nav .open>a:hover{
    background-color: transparent;
}
.nav li.weChat .er-box {
    position: absolute;
    text-align: center;
    top: 100%;
    padding: 10px;
    margin-left: -30px;
    width: 100px;
    background: #fff;
    height: 100px;
    opacity: 0.0;
    transition: all 0.3s;
}
.nav li.weChat:hover .er-box {
    opacity: 1.0;
    width: 120px;
    height: 120px;
}

header.on .header{
    height: 0px;
    overflow: hidden;
    padding: 0px 0px 0px;
}
header .navbar-brand{
    width: 0;
    transition: width 250ms ease 0s;
}
header.on .navbar-brand{
    width: 260px;
}
header .nav .sub-menu {
    position: absolute;
    display: block;
    left: 0px;
    top: 100%;
    background-color: #fff;
    visibility: hidden;    
    opacity: 0;
    height: 0px;
    z-index: 10;
    -webkit-box-shadow: 0 25px 50px 0 rgba(0,0,0,.15);
    box-shadow: 0 25px 50px 0 rgba(0,0,0,.15);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .15s ease-in-out;
    -o-transition: .15s ease-in-out;
    transition: .15s ease-in-out;
}
header .nav>ul>li:hover .sub-menu{
    opacity: 1.0;
    height: auto;
    visibility: visible;
}
header .nav .sub-menu .inner{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
    padding: 25px 0px;
}
header .nav .sub-menu .inner li{
    width: 160px;
    position: relative;   
    display: block;
    border-bottom: 1px solid #efefef;
}
header .nav .sub-menu .inner li a{
    display: block;    
    padding: 7px 30px;
    font-family: Rajdhani,sans-serif;
    position: relative;
    overflow: hidden;
    font-size: 14px;   
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: grey;
    -webkit-transition: padding .2s ease-in-out;
    -o-transition: padding .2s ease-in-out;
    transition: padding .2s ease-in-out;
}
header .nav .sub-menu .inner li a:hover{
    color: #f27c06;
}
header .nav .sub-menu .inner li a span{
    display: block;
}
header .nav .sub-menu .inner li a:before {
    content: '';
    position: absolute;
    display: block;
    top: calc(50% - 2px);
    left: -23px;
    width: 12px;
    height: 2px;
    background-color: #f27c06;
    color: inherit;
    line-height: inherit;
    font-weight: 300;
    font-style: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: left .2s ease-in-out;
    -o-transition: left .2s ease-in-out;
    transition: left .2s ease-in-out;
}
header .nav .sub-menu .inner li a:after {
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    top: calc(50% - 10px);
    right: 25px;
    /*content: '\f105';*/
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #f27c06;
}
header .nav .sub-menu .inner li a:hover:before{
    left: 20px;
}
header .nav .sub-menu .inner li a:hover{
    padding: 7px 30px 7px 40px;
}


@media (max-width: 992px){     
    .navbar-toggle {        
        background-color: #582681;
        border: 1px solid white;
    }
    .navbar-toggle .icon-bar {
        background: #fff;
    }
    .header{  
        padding: 0px 0px;
        display: none;
    }
    header .navbar-brand {
        width: 75%;
        transition: width 250ms ease 0s;
        padding-left: 15px;
    }
    .navbar-nav {
        margin: 7.5px 0px;
    }
    header .nav>ul{
        display: block;
        margin: 10px 20px;
    }    
    header .nav>li>a{
        border-bottom: 1px solid #fff;
        padding: 12px 0px 10px 10px;
    }
    header .nav>li>a .caret{
        float: right;
        margin-top: 10px;
        margin-right: 10px;
    } 
    .nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
        background-color: transparent;
        border-color: #fff;
    } 
    header .nav ul li a{
        color:#fff;
        font-size: 14px;
    }
    header .nav.navbar-right>li>a {
        padding: 12px 0px 10px 10px;
    }
}

/* banner */
.banner{
    position: relative;
    min-height: 100px;
}
.banner .swiper-slide img{
    width: 100%;
}
.banner .swiper-pagination-bullet{
    width: 14px;
    height: 14px;
    background-color: #fff;
    opacity: 1.0;
    border: 1px solid #fff;
}
.banner.swiper-container-horizontal>.swiper-pagination-bullets{
    bottom: 5%;
}
.banner .swiper-pagination-bullet-active{
    background-color: #ff2b2b;
    border: 1px solid #ff2b2b;
}
.ion-ios-play:before {
    content: "\f105";
}

.common{
    padding-top: 100px;
    padding-bottom: 100px;
}
.title{
    font-size: 40px;
    color: #222222;    
    font-weight: 500;
    line-height: 1.0;
    text-transform: uppercase;   
    position: relative;
    margin-bottom: 40px;   
}
.title ul{
    float: right;
    color: #676767;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}
.title ul li a{
    font-size: 18px;
    color: #676767;
    line-height: 1.0;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #676767;
}
.homeLink{
    width: 100%;
    color: #712c7a;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 16px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 14px 10px;
    display: block;
    transition: all 0.6s;
    margin-top: 40px;
    position: relative;
}
@media (max-width:767px){
    .common{
       padding-top:30px;
       padding-bottom:30px;
    }    
    .title{
        font-size: 20px;
        margin-bottom: 20px;
    } 
    .homeLink {
        font-size: 16px;
        padding: 10px 10px;
        margin-top: 20px;
    }
}
/*产品*/
.product{
    background: #f3f5f6;
    overflow: hidden;
}
.product .pro-box{
    padding: 0px 80px;
}
.product ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}
.product ul li.info-section {
    width: calc(51.5% - 30px);
}
.product ul li.media-section {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 48.5%;
}

.product .swiper-button-next.pro-next, .product .swiper-button-prev.pro-prev {
    position: absolute;
    top: 50%;
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 100%;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: 17px 44px;
    -webkit-background-size: 17px 44px;
    background-size: 17px 44px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s;
}
.product .swiper-button-next.pro-next:hover  {   
    background-color: #582681;
    background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}
.product .swiper-button-prev.pro-prev:hover{
    background-color: #582681;
    background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}
.swiper-button-prev.pro-prev{
    left: -50px;
}
.swiper-button-next.pro-next{
    right: -50px;
}
.btn-more{
    display: inline-block; 
    background: #582681;
    color: #fff;
    font-size: 16px;
    padding: 16px 75px;
    margin-top: 25px;
    transition: all 0.3s ease-in-out;
}
.btn-more:hover{    
    background: #46007f;
    color: #fff;
}
.product .overview img{
    margin-top: 10px;
}
.product h5{     
    font-size: 20px;    
    font-weight: 400;
    line-height: 1.3;
    margin: 0px 0px 15px;       
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all 0.5s ease;
}
.product h5 span{
    display: block;
    font-size: 30px;    
    font-weight: 900;
}

@media only screen and (max-width: 1024px){
    .product .pro-box {
        padding: 0px 20px;
    }
    .product h5 {
        font-size: 16px;
    }    
    .product h5 span{
        font-size: 20px;
    }
    .product ul li.info-section,.product ul li.media-section{
        width: 100%;
    }  
    .product .pro-img{margin-bottom: 15px;}
    .product .swiper-button-next.pro-next, .product .swiper-button-prev.pro-prev{
        background-color:transparent;
    }
    .btn-more {    
        font-size: 14px;
        padding: 5px 15px; 
        position: relative;         
    }
    .about .btn-more { 
        float: right;
        margin-top: -45px;
        z-index: 9;       
    }
}
/*关于我们*/
.about{
    background: #fff; 
}
.about .about-txt{
   line-height: 2.1;
   overflow: hidden;
}
.about .sign {    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about .sign li{
    width: 20%;     
    position: relative;
}
.about .sign li:nth-child(2){    
    width: 65%;
}
.about .sign li:nth-child(3){ 
    text-align: right;
    width: 15%;
}
.about .sign li .er-box {
    width: 142px;
    border: 1px solid #dcdcdc;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    background: #fff;
    display: inline-block;
}


@media (max-width:992px){
    .about .sign li,.about .sign li:nth-child(2){
        width: 100%;
    }
    .about .sign li:nth-child(3){
        display: none;
    }
    .about .about-txt{
        overflow: hidden;
        text-overflow: -o-ellipsis-lastline;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
        line-height: 1.8;
        margin-top: 15px;
    }
}
/*应用方案*/
.case{
    background: #fff;
}
.case ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.case ul li{
    width: 18.5%;
}
.case .case-img{
    width: 100%;    
    position: relative;
    background: #000;
    transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    margin-bottom: 25px;
}
.case .case-img img{
    width: 100%;
    transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
}
.case-hover{    
    width: 100%;
    position: absolute;
    bottom: 20px;
}
.case .case-hover img{
    margin: 0px 0px;
    width: auto;
    max-width: 100%;
}
.case .case-hover h5{
    font-size: 18px;
    text-align: center;
    font-weight: 300;
    color: #fff;     
    transition: all .5s;   
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.case .case-img:hover{
    transform: translate(0%,-3%);
}
.case .case-img:hover img{
    opacity: 0.85;
}
@media (max-width:991px){    
    .case ul li{
        width: 48.2%;
    }
    .case .case-img{
        height: 150px;
        overflow: hidden;
        margin-bottom: 15px;
    }
    .case .case-hover img {
        width: 45px;
    }
    .case .case-hover h5 {
        font-size: 18px;
    }   
}
/*合作伙伴*/
.core{
    background: #fff;
}
.core .core-img{
    padding: 45px 25px;
    width: 100%; 
    display: flex;
    justify-content: flex-start;
    align-items: center; 
    position: relative;
    background: #000;
    transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
}
.core .core-img.core1{
    background: url(../img/l1.jpg) no-repeat center;
}
.core .core-img.core2{
    background: url(../img/l2.jpg) no-repeat center;
}
.core .core-img.core3{
    background: url(../img/l3.jpg) no-repeat center;
}
.core .core-img img{
    width: 60px;
    transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
}
.core .core-img h5{
    font-size: 22px;
    margin: 0px 30px 0px;
    color: #fff;     
    transition: all .5s;   
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.core .core-img h5 span{    
    font-size: 12px;
    font-weight: 200;
    opacity: 0.8;
    display: block;
    overflow: hidden;
    line-height: 1.1;
    text-transform: uppercase;
}
.core .core-img:hover{
    transform: translate(0%,-3%);
}
.core .core-img:hover img{
    opacity: 0.85;
}
@media (max-width:991px){    
    .core .core-img{
        overflow: hidden;
        padding: 25px 25px;
        margin-bottom: 15px;
    }
    .core .core-img img {
        width: 40px;
    }
    .core .core-img h5 {
        font-size: 16px;
    }    
}

/* 新闻 */
.news{
    background: #fff;
}
.news-box .img{
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
}
.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 li .n-title{
    overflow: hidden;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 900;
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;    
    transition: all 0.6s;
}
.news-box li .n-time{    
    line-height: 1.2;
    font-weight: 900;
    font-size: 18px;
    color: #712c7a;
    transition: all 0.6s;   
}
.news-box li .n-time:before{
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    background-color: #d21125;
    margin: 15px 0px;
}
.news-box li .n-desc{
    overflow: hidden;
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-height: 1.4;
    -webkit-box-orient: vertical;
}
.news-box li .n-more{    
    color: #cdcdcd;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    transition: all 0.6s;
}
@media (max-width:991px){
   .news-box li{
    margin-bottom: 15px;
   }
   .news-box li .n-title{
    font-size: 16px;
   }
   .news-box li .n-time{
    font-size: 14px;
   }
}