@charset "utf-8";

.header{
    width: 100%;
    padding: 20px 0px;     
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;    
    z-index: 12;
    position: fixed; 
}
.header .logo img{
    height: 55px;
    margin-right: 10px;
    width: auto;
    transition: all .5s;  
}
.header .logo .img2 {
    display: none;
}
.header.on{
    background: #fff;
}
.header.on .logo .img1 {
    display: none;
}
.header.on .logo .img2 {
    display: block;
}
.header .nav{
    justify-content: flex-end;
}
.header .nav>ul{
    display: flex;
    justify-content: flex-end;   
}
.header .nav>ul>li{
    display: inline-block;   
    padding: 16px 9px;
    position: relative;    
}
.header .nav>ul>li>a{   
    position: relative;
    font-size: 17px;
    color: #fff;
    text-transform: uppercase;    
    padding: 0px 0px; 
    display: block;  
    line-height: 1.0;
    white-space: nowrap;
    transition: all 0.3s;
}
.header .nav>ul>li>a.other{   
    font-weight: bold;
}
.header .nav>ul>li:hover a,.header .nav>ul>li.active a,.header.on .nav>ul>li.active a{
    color: #00449b;
}
.header .nav>ul>li.weChat,.header .nav>ul>li.tel{
    padding: 16px 0px 0px 10px;
}
.header .nav>ul>li.weChat i,.header .nav>ul>li.tel i,.header .nav>ul>li.tel a{
    font-size: 18px;
    color: #fff;
}
.header .nav>ul>li.weChat .er-box {
    position: absolute;
    text-align: center;
    top: 100%;
    padding: 15px;
    margin-left: -50px;
    width: 100px;
    background: #fff;
    height: 100px;
    opacity: 0.0;
    transition: all 0.3s;
}
.header .nav>ul>li.weChat:hover .er-box {
    opacity: 1.0;
    width: 120px;
    height: 120px;
}

.header.on .nav>ul>li>a,.header.on .nav>ul>li.tel a,.header.on .nav>ul>li.tel i,.header.on .nav>ul>li.weChat i{
    color: #2b2b2b;
}
.header.on .nav>ul>li.tel a,.header.on .nav>ul>li.tel i,.header.on .nav>ul>li.weChat i,.header.on .nav>ul>li:hover a{
    color: #053992;
}
.header .nav ul.sub-menu {
    display: none;
    position: absolute;
    left: -25%;
    top: 100%;
    width: 150%;
    background: #ffffff10;
    border-radius: 2px;
}
.header .nav ul.sub-menu li{width:100%; border-bottom:1px solid rgba(0,0,0,.05);}
.header .nav ul.sub-menu li a{display:block;font-size:14px;font-weight: 300; background: #ffffffd0; color:#444; line-height:20px; padding:12px 2%; text-align:center; }
.header .nav ul.sub-menu li a:hover{color:#00449b; background:#f5f5f5;}
.header .nav>ul>li:hover ul.sub-menu {
    display: block;
}

.m-btn{
    display: none;
    position: relative;
    width: 30px;
    height: 21px;   
    cursor: pointer;
    right: 0px;   
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.btn-hamburger__bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: width .3s ease-in-out,-webkit-transform .3s ease-in-out;
    transition: width .3s ease-in-out,-webkit-transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out,width .3s ease-in-out;
    transition: transform .3s ease-in-out,width .3s ease-in-out;
    transition: transform .3s ease-in-out,width .3s ease-in-out,-webkit-transform .3s ease-in-out;
    pointer-events: none;
}
.btn-hamburger__bar-top {
    top: 0;
}
.btn-hamburger__bar-middle {
    top: 9px;
}
.btn-hamburger__bar-bottom {
    bottom: 0;
}
.m-btn.active {
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.m-btn.active .btn-hamburger__bar-top {
    -webkit-transform: translateY(9px);
    transform: translateY(9px);
}
.m-btn.active .btn-hamburger__bar-middle {
    width: 0;
}
.m-btn.active .btn-hamburger__bar-bottom {
    -webkit-transform: translateY(-9px) rotate(90deg);
    transform: translateY(-9px) rotate(90deg);
}
.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 .btn-hamburger__bar {
    background-color: #000;
}
@media(max-width:992px){
    .m-btn{
        display: block;
        margin-top: 5px;
    }
    .menu_social{
        margin-top: 0px;
    }    
    .header {
        padding: 10px 0px;
    }
    .header .logo img{
        height: 42px;
    }
    .header .nav{
        width: 65vw;
    }
    .header .nav ul {
        padding-top: 60px;
        transition: all .5s;
        max-width: 100%;
    }
    .header .nav ul li a.nav-link{
        font-size: 18px;
        line-height: 30px;
    }
    .header .nav>ul>li.tel {
        padding-left: 0px;
        margin-left: -35px;
        display: inline-block;
        margin-right: 70px;         
    }    
    .header .nav>ul>li.tel:last-child{
        display: block;
        margin-right: 70px;
    }
    .header .nav .sub-menu {       
        padding: 6px 0px 6px 38px;
    }
    .header .nav{
        position: fixed;
        right:-100vw;
        top: 62px;
        width:100vw;
        height:calc(100vh - 62px);       
        transform: translateX(0);
        overflow: hidden;
        background: -o-linear-gradient(60deg,#000,#000 100%);
        background: linear-gradient(60deg,#000,#000 100%);
        background: url(../img/nav.jpg) no-repeat right bottom #063992;
        z-index:-1;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;   
    }
    .header .nav ul{
        width: 100%;
        display: block;
        padding: 20px 20px 50px 55px;
        transition: all .5s;    
        counter-reset: offcanvas-counter;   
    }
    .header .nav ul li{
        display: block;
        padding: 0 0px;    
        position: relative;
    }
    .header .nav ul li a.nav-link{    
        display: block;
        color: #fff;
        position: relative;
        font-size: 16px;     
        line-height: 1.5;
        font-weight: 500;
        counter-increment: offcanvas-counter;
    }
    .header .nav>ul>li:hover a, .header .nav>ul>li.active a, .header.on .nav>ul>li.active a {
        color: #fff;
    }
    .header .nav ul li a.nav-link:before {
        content: counter(offcanvas-counter,decimal-leading-zero);    
        position: absolute;
        top: 6px;
        left: -35px;
        color: #4ea116;
        font-size: 20px;
        font-weight: 600;
        line-height: 1;
        margin-right: 1.5625rem
    }
    .header .nav ul.sub-menu{
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;     
        max-width: 100%;
        left: 0%;
        background: transparent;   
        padding: 0px 0px 0px 0px;
    }
    .header .nav ul.sub-menu li{
        margin-right: 10px;
        width: auto;
        display: inline-block;
    }
    .header .nav ul.sub-menu li a{
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-align: center;
        align-items: center;
        font-size: 14px;
        color: #fff;
        padding: 0px 0%;
        text-align: left;
        background: transparent;
        line-height: 1;
        font-weight: 300;
        padding-right: 8px;
        border-right: 1px solid #fff;
    }
    .header .nav ul.sub-menu li a:hover {        
        background: transparent;
        color: #fff;
    }
    .header .nav ul.sub-menu li:last-child a{
        border-right: 0px solid #fff;
    }
    .header .nav>ul>li .logo{
        padding-bottom: 50px;
    }
    .header .nav.show{
        right: 0;
    }
}

/* banner */
.banner{
    position: relative;   
}
.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: 40px;
}
.banner .swiper-pagination-bullet-active{
    background-color: #56a528;
    border: 1px solid #56a528;
}
@media(min-width:992px){
    .banner.swiper-container-horizontal>.swiper-pagination-bullets{
        bottom: 45px;
    }
}
@media(max-width:991px){  
    .banner{
        position: relative;
        margin-top: 0px;
    }
    .banner .swiper-button-prev,.banner .swiper-button-next{
        display: none;
    }
}

.common{
    padding-top: 120px;
    padding-bottom: 120px;
}
.title{
    font-size: 30px;
    font-weight: 900;
    color: #053992;
    line-height: 0.8;
    margin-bottom: 25px;
    text-transform: uppercase;   
    position: relative;    
}
.title span.small{
    display: block;
    line-height: 1.0;
    font-weight: 600;
    font-size: 60px;    
    color: #dcdcdc;
}
.title a.more{
    float: right;
    font-size: 18px;
    color: #808080;
    font-weight: 300;
}
.title:after {
    content: '';
    display: block;
    width: 45px;
    height: 2px;
    margin-top: 15px;
    background-color: #4ea116;
}
@media (max-width:767px){
    .common{
       padding-top:20px;
       padding-bottom:20px;
    }    
    .title{
        font-size: 20px;
    }
    .title span.small{
        font-size: 26px;
    }
    .title a.more {
        font-size: 13px;
        margin-top: 15px;
    } 
}


/* 简介 */
.about{
    background: url(../images/about.jpg) no-repeat center #fff;
}
.about .about-txt{
    font-size: 20px;
    line-height: 1.2;
    margin: 25px 0px;
}
.about .about-txt b{
    font-size: 30px;
    color: #4ea116;
    font-weight: 400;
}
.about .about-txt span{
    display: block;
    font-size: 40px;
    font-weight: 600;
    color: #053992;
}
/*Featured Products*/
.about .five-title,.ny-about .five-title{
    font-size: 20px;
    margin: 15px 0px;
}
.five-service{   
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
.five-service li{
    width: 20%;    
    color: #fff;
    position: relative;
    overflow: hidden; 
    font-size: 16px;   
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all 0.5s ease;
    border-right: 5px solid #fff;
}
.five-service li:last-child{
    border-right: 0px;
}
.five-service li:hover{
    width: 48%;
}
.five-service li .five-img{
    overflow: hidden;
    position: relative;
}
.five-service li .five-img img{
    width: auto; 
    max-width: none;    
    transition: all 0.6s;    
}
.five-service li:hover .five-img img{    
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    filter: unset;
}
.five-service .five-cover{
    position: absolute;
    bottom: 0px;
    padding: 25px;
    width: 100%;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all 0.5s ease;   
    color: #fff;    
}
.five-service .five-cover h5{  
    font-size: 18px;
    font-weight: bold;  
}
.five-service h5 span{
    font-size: 10px;
    display: block;
    text-transform: uppercase;
    font-weight: 300;
}
.five-service .five-cover h5:after{
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    margin-top: 15px;
    background-color: #fff;
}
.five-service .compet-desc{      
    overflow: hidden;
    height: 0px;
    font-size: 14px;
    line-height: 1.4;
    transition: all .5s;
}
.five-service li:hover .compet-desc{
     height: 55px;
}
@media (max-width:991px){
    .about .about-txt{
        font-size: 16px;
    }
    .about .about-txt span{
        font-size: 20px;
    }
    .about .about-txt b{
        font-size: 18px;
    }
    .five-service{
        flex-wrap: wrap;
    }
    .five-service li{
        width: 100%;
        height: 160px;
        margin-bottom: 10px;
    }
    .five-service li:hover{
        width: 100%;
    }
    .five-service li .five-img {
        margin-top: -20%;
    }
    .five-service li .five-img img {
        width: 100%;
        max-width: none;
        transition: all 0.6s;
    }
    .five-service .five-cover{
        padding: 15px;
    }
    .five-service .five-cover h5 { 
        font-size: 16px;   
    }
    .five-service h5 span{
        font-size: 12px;
    }
}
@media (max-width: 776px){
    .five-service li .five-img {
        margin-top: 0%;
    }
}
/* 课程 */
.course{  
    position: relative;
    overflow: hidden;
    background: url(../images/system.jpg) no-repeat center #fff;    
}
.course .c-more{
    margin-top: 50px;
    font-size: 16px;
    text-decoration: underline;
    transform: matrix(1, 0, 0, 1, 0, 0);
    left: 0;
}
.course .gallery-thumbs {
    width: 100%;
    overflow: hidden;
}
.course .gallery-thumbs .swiper-slide {
    width: 100%;
    opacity: 1.0;
    display: block;
    padding: 1.6% 20px 1.5% 45px;   
    line-height: 2.4;
    font-size: 20px;   
    position: relative; 
    transition: all .5s;
    cursor: pointer;
}
.course .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1.0;
    color: #053992;
    font-weight: 600; 
}
.course .gallery-top .swiper-slide{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.course .gallery-top .swiper-slide img{
    width: 70%;
}
.course .overview{
    width: 30%;
    line-height: 1.6;
    font-size: 14px;
    z-index: 99;    
    position: relative;
    padding: 2% 0px 0px 2%;
}
.course .overview h5{
    font-size: 40px;    
    font-weight: 600;    
    margin-bottom: 15px;
    position: relative;
}
.btn-pagination{
    position: relative;
}
.course .swiper-container-horizontal>.swiper-pagination-bullets{
    bottom: 50px;
    left: 28.5%;
}
.course .swiper-pagination-bullet-active{
    background: #053992;
}
@media(max-width:992px){  
    .course .gallery-top h5 {
        font-size: 18px;
    }
    .course .gallery-top .swiper-slide img{
        width: 100%;
    } 
    .course .overview {
        width: 100%;
        font-size: 14px;
    }    
}


/*业务领域*/
.bussiness{  
    position: relative;
    overflow: hidden;
    background: url(../images/bussiness.jpg) no-repeat center #fff;
    background-size: cover;
}
.bussiness .title,.bussiness .title span{
    color: #fff;
}
.bussiness .title p{
    width: 48%;
    float: right;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    margin-top: -50px;
}
.bussiness ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 300px;
}
.bussiness ul li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 20%;    
    background: #f8f8f8;    
    padding: 2.5% 3%; 
    position: relative; 
    transition: all .5s;
    cursor: pointer;
}
.bussiness ul li:nth-child(2n){
    background: #fff;
}
.bussiness ul li img{
    width: 22.5%;
}
.bussiness ul li h5{ 
    width: 77%;   
    font-weight: 600;      
    line-height: 1.2;
    font-size: 16px;   
    transition: all .5s;
}
.bussiness ul li h5 span{
    font-size: 12px;
    font-weight: 200;    
    text-transform: uppercase;
    display: block;
}
.bussiness ul li .img2{
    display: none;
}
.bussiness ul li:hover{
    background: #053992;
}
.bussiness ul li:hover .img1{
    display: none;
}
.bussiness ul li:hover .img2{
    display: block;
}
.bussiness ul li:hover h5{
    color: #fff;
}
@media(max-width:992px){ 
    .bussiness ul {    
        margin-top: 40px;
    }
    .bussiness .title p {
        width: 100%;
        float: none;
        text-align: left;
        font-size: 14px;
        margin-top: 10px;
    }
   .bussiness ul li{
        width: 50%;
        margin-bottom: 10px;
   }
   .bussiness ul li h5{
        font-size: 14px;
        font-weight: 500;
   }
      
}

/*合作伙伴*/
.cooperation{
    background: url(../images/brand.jpg) no-repeat center #fff;
}
.cooperation ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.cooperation ul li{
    width: 15%;
}
.cooperation .cooper-img,.ny-cooper .cooper-img{
    text-align: center;    
    padding: 14px 0px;    
}
.cooperation .cooper-img img,.ny-cooper .cooper-img img{
    width: auto;
    max-width: 100%;
    opacity: 1.0;    
    transition: all 0.6s;
}
.cooperation .cooper-img:hover img,.ny-cooper .cooper-img:hover img{
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
}

@media (max-width:992px){ 
    .cooperation ul li {
        width: 32%;
    }
    .cooperation .cooper-img,.ny-cooper .cooper-img{
        text-align: center;
        padding: 0px 0px;
        margin: 5px 0px;
    }
}

/* 新闻 */
.news{
    background: #f5f5f5;
}
.news .news-box {
    padding-top: 30px;
    overflow: hidden;
}
.news-box .img{
    width: 100%;
    overflow: hidden;
    border-radius: 0px;
    margin-bottom: 20px;   
}
.news-box .img img{
    width: 100%;    
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.news-box .img:hover img{
   -webkit-transform: scale(1.1) translateX(13px);
    -ms-transform: scale(1.1) translateX(13px);
    transform: scale(1.1) translateX(13px);
}
.news-box .news-con{   
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.news-box .news-time{
    color: #676767;
    display: block;   
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;    
}
.news-box .news-title{
    overflow: hidden;      
    text-overflow: ellipsis;
    white-space: nowrap;    
    font-size: 18px;
    width: 100%;
    margin-bottom: 15px;  
    text-transform: uppercase;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out; 
}
.news-box .news-title span{
    display: block;
}
.news-box .news-time:after {
    content: '';   
    display: block;
    width: 40px;
    height: 2px;
    margin: 10px 0px;
    background-color: #dddddd;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.news-box .news-con:hover .news-title{
    color: #4ea116;
}
.news-box .news-con:hover .news-time{
    font-weight: 600;
}
.news-box .news-con:hover .news-time:after{
    background: #4ea116;
}
@media (max-width:991px){ 
    .news-box .news-con{  
        margin-bottom: 15px;
    }
}
/*底部广告条*/
.service{
    background: url(../images/service.jpg) no-repeat center #fff;
    background-size: cover;
    overflow: hidden;
}
.medical{
    background: url(../images/medical.jpg) no-repeat center #fff;
    background-size: cover;
    overflow: hidden;
}
.protect{
    background: url(../images/protect.jpg) no-repeat center #fff;
    background-size: cover;
    overflow: hidden;
}
.service .stitle{    
    color: #fff;
    line-height: 1.2;
    font-weight: 600;
    font-size: 35px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.medical .stitle{
    font-size: 40px;
}
.service .stitle span{
    display: block;
    font-weight: 400;
    margin-top: 10px;
    font-size: 16px;
}
.medical .stitle span{
    margin-top: 0px;
    font-size: 20px;
}
.service .stitle b{
    font-size: 22px;
    display: block;
}
.service .more{
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.service ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service ul li{
    width: 75%;  
    padding: 2% 0%;
    transition: all 0.6s;
    position: relative;
    font-size: 14px;  
}
@media (max-width:992px){ 
    .service .stitle{        
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .service .stitle span{
        font-size: 14px;
    }
    .service .more{
        font-size: 14px;
    }
    .service ul li {        
        padding: 10px 0px; 
        width: 100%;
        text-align: left;
        margin-bottom: 10px;       
    }         
}