@charset "utf-8";
header{
    width:100%;
}
/*................*/
.header{
    padding: 0px 0px;
    width: 100%;
    max-width:1920px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    z-index: 999;
    position: relative;
    margin: 0px auto;
}
.header.on{
    background: rgba(0,180,161, 0.9);
}
.header .logo img{
    width: auto;
    transition: all .5s;
    max-height: 120px;
    padding: 25px 0px;
}
.topbar{
    width: 80%;
    position: relative;
    float: right;
    background: linear-gradient(to right, #fff, #f3f3f3);
}
.topbar:after{
    content: "";
    width: 11%;
    height: 100%;
    background-color: #f3f3f3;
    position: absolute;
    right: -11%;
    top: 0;
    bottom: 0;
    margin: auto;
}
@media (max-width: 992px){
    .topbar{
        width: 100%;
    }
    .topbar:after{
        width: 10px;
        right: -10px;
    }
}
.topbar ul{
    padding: 6px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.topbar ul li{
    background-size: 20px;
    padding-left: 1.5rem;
    background-repeat: no-repeat;
    background-position: left center;
    margin-left: 10px;
}
.topbar ul li.tel{
    background-image: url(../img/m.png);
}
.topbar ul li.mail{
    background-image: url(../img/y.png);
}
.header .nav{
    width: 80%;
    padding: 0px 0px;
    float: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header .nav>ul{
    transition: all .5s;
}
.header .nav>ul>li{
    display: inline-block;
}
.header .nav>ul>li>a{
    position: relative;
    display: block;
    font-size: 1.125rem;
    padding: 20px 1.8rem;
    line-height: 39px;
    white-space: nowrap;
    transition: all 0.3s;
}
.header .show>ul>li>a{
    color: #181818;
    line-height: 1;
}
@media (max-width: 1440px){
    .header .nav>ul>li>a{
        padding: 20px 1.2rem;
    } 
}
@media (max-width: 1360px){
    .header .nav>ul>li>a{
        padding: 20px 1.0rem;
    } 
}
@media (max-width: 1280px){
    .header .nav>ul>li>a{
        padding: 20px 1.0rem;
    }    
}
.header .nav>ul>li:hover a,.header .nav>ul>li.active a{
    font-weight: 700;
    color: #c2ab8b;
}

/* 下拉 */
.header .nav>ul>li:hover .submenu{ opacity:1; visibility:visible;display: block;}
.header .nav>ul>li .submenu li:hover a,header .header.on .nav>ul>li .submenu li:hover a {opacity: 0.8;}
.header .nav>ul>li{
    position: relative;
}
.submenu {
    min-width: 160px;
    width: auto;
    background: rgba(255, 255, 255, 0.9);
    left: 50%;
    padding-top: 4px;
    border-radius: 4px;
    position: absolute;
    top: 98%;
    z-index: 100;
    display: none;
    transform: translateX(-50%);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}
.submenu::before{
    content: '';
    position: absolute;
    left: 0;top: 0;
    z-index: 101;
    width: 100%;
    height: 4px;
    background: #c2ab8b;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -o-transition: 0.3s all;
    -ms-transition: 0.3s all;
    border-radius: 4px 4px 0px 0px;
}
.submenu .sub-menuimg{
    display: flex;
    justify-content: flex-end;
}
.submenu .sub-menuimg li {
    display: inline-block;
    width: 20%;
    margin: 0px 1%;
    opacity: 0;
    white-space: nowrap;
    -webkit-transition:  -webkit-transform .5s;
    -moz-transition:  -moz-transform .5s;
    -ms-transition:  -ms-transform .5s;
    -o-transition:  -o-transform .5s;
    transition:  transform .5s;
    text-align: center;
}
.header .nav .submenu .sub-menuimg li a{
    font-size: 14px;
    line-height: 35px;
    text-align: center;
    display: block;
    transition: .5s;
}
.submenu .t {
    font-size: 1.375rem;
    font-weight: bold;
    line-height: 35px;
    margin-bottom: 20px;
}
.submenu .sub-menu li {
    display: block;
    opacity: 0;
    white-space: nowrap;
    text-align: center;
}
.header .nav .submenu .sub-menu li a{
    font-weight: normal;
    font-size: 1rem;
    line-height: 45px;
    display: block;
    color: #181818;
    border-bottom: 1px solid #e1e4e7;
}
.header .nav .submenu .sub-menu li a:hover{
    color: #c2ab8b;
}
.header .nav .submenu .sub-menu li:last-child a{
    border-bottom: none;
}
.header .nav>ul>li:hover .submenu li, .header .nav>ul>li:focus .submenu li {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
/*分享按钮*/
.shareicon{
    margin-left: 15px;
}
.shareicon a.yuyue {
    background-color: #c2ab8b;
    color: #fff;
    font-size: 1.0rem;
    display: flex;
    align-items: center;
    padding: 8px 1.5rem;
    border-radius: 25px;
}
.shareicon a.yuyue img {
    margin-right: 0.3rem;
}
@media (max-width: 992px){
    .header .logo img {
        height: 70px;
        padding: 10px 0px;
    }
    header .nav>ul{
        display: block;
    }
    header .nav{
        position: absolute;
        left:-100vw;
        top: 100%;
        width:100%;
        height:calc(100vh - 45px);
        background:#fff;
        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;
        align-items: flex-start;
        justify-content: flex-start;
        align-content: flex-start;
    }
    header .nav ul li{
        display: block;
        padding:0 10px;
        width: 100%;
        margin-left: 0px;
    }
    header .nav ul li a{
        line-height: 45px;
        display: block;
        color: #2b2b2b;
        font-size: 16px;
        padding: 0px 10px;
        border-bottom: 1px solid #f8f8f8;
    }
    .shareicon i, .shareicon a{
        color: #2b2b2b;
    }
    .header .nav>ul>li:hover .submenu,.submenu{
        display: none;
    }
    .shareicon{
        width: 100%;
        padding-top: 10px;
        /* margin-right: 5%; */
    }    
}
/* banner */
.banner{
    position: relative;
    width: 100%;
    background: #0d1635;
    overflow: hidden;
}
.banner .banner-txt{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;    
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    z-index: 9;   
    line-height: 1.2;
    color: #fff;
    font-size: 2.5rem;
}
.banner .banner-txt h3{ 
  font-size: 1.75rem; 
  line-height: 1.1;
}
.banner .banner-txt h3 span{   
  font-weight: 600;   
  font-size: 5.0rem;   
  display: block;
  margin-bottom: 1.0rem;
}
.ban-more {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #c2ab8b;
    padding: 1.5rem 2.5rem 1.5rem 2.5rem;
    border-radius: 2.5rem;
    background: #fff;
    margin-top: 5rem;
}
.ban-more:hover {
    background: #c2ab8b;
    color: #fff;
}
@media (max-width:1280px) {
    .ban-more {
        margin-top: 1.0rem;
        padding: 0.8rem 1.0rem 0.8rem 1.0rem;
    }
}

@media(max-width:1299px){
    .banner .banner-txt h3{
        font-size: 1.35rem;
    }
    .banner .banner-txt h3 span{
        font-size: 3.5rem;       
    }
}
@media(max-width:991px){    
  .banner .banner-txt{
    width: 100%;
    font-size: 1.125rem;
  } 
  .banner .banner-txt h3{
    font-size: 1.0rem;
  }  
  .banner .banner-txt h3 span{ 
    font-size: 1.8rem;
    width: 100%;
  } 
  .ban-more {
        margin-top: 0.5rem;
        padding: 0.4rem 1.5rem 0.4rem 1.5rem;
    }    
}
@media(max-width:768px){
    .banner .banner-txt h3{
        font-size: 0rem;
    }
    .banner .banner-txt h3 span{ 
        font-size: 1.8rem;
        width: 100%;
    } 
}
.common{
    padding-top: 7rem;
    padding-bottom: 7rem;
}
.commonB{
    padding-bottom: 7rem;
}
.title{
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 2.85rem;
    position: relative;
    z-index: 2;
}
.title span{
    display: block;
    font-weight: 400;
    font-size: 1.25rem;
}
@media (max-width: 1360px) {
  .title{
    font-size: 2.0rem;
  }  
}
@media (max-width: 1280px) {
  .title{
    font-size: 1.75rem;
  }
  .title span{
    font-size: 1.125rem;
  }
}
@media (max-width:992px){
    .common{
       padding-top: 2rem;
       padding-bottom: 2rem;
    }    
    .title{
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .title span{
        font-size: 1.125rem;
    }    
}
/*首页关于我们*/
.about{
    position: relative;
    background: #fff;
    overflow: hidden;
}
/* 为什么要选择日本医疗？ */
.why{
    background: #f7f7f7;
    overflow: hidden;
}
.video{
    background: #fafafa;
    overflow: hidden;
}
.why .why-item{
    background-color: #fff;
    padding: 2rem;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.why .number{
    font-size: 5rem;
    line-height: 1.4;
    font-weight: lighter;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}
.why .number img{
    filter: brightness(0) invert(0);
    transition: all 0.3s ease;
}
.why h5{
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 1.0rem;
    transition: all 0.3s ease;
}
.why .why-item:hover{
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.why .why-item:hover .number img{
    filter: brightness(1.0) invert(0);
}
.why .why-item:hover h5,.why .why-item:hover .number{
    color: #c2ab8b;
}
@media(max-width:992px){
    .why .why-item{
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .why .number{
        font-size: 3.0rem;
    }
    .why .number img{
        width: 40px;
    }
    .why h5{
        font-size: 1.45rem;
    }

}
/* 看病流程 */
.process{
    background: url(../img/process.jpg) no-repeat top center #fff;
    background-size: 100% 65%;
}
.process .title{
    color: #fff;
}
.process .process-item{
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.process .number span{
    font-size: 2.0rem;
    padding: 0.5rem;
    text-align: center;
    color: #c2ab8b;
    line-height: 60px;
    font-weight: lighter;
    background-color: #e7e7e7;
    display: inline-block;
    width: 76px;
    height: 76px;
    font-weight: 600;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}
.process .number span:after{
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-color: #e7e7e7;
    margin: 0rem auto;
    margin-top: -26px;
    transform: rotate(45deg) ;
    position: relative;
    z-index: -1;
}
.process .con-txt{
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 1.0rem;
    vertical-align: top;
    writing-mode: vertical-rl; /* 垂直从右到左 */
    text-orientation: mixed;
    margin: 0px auto;
}
.process .process-item img{
    transition: all 0.3s ease;
    width: auto;
    margin-top: 0.5rem;
}
.process h5{
    font-size: 1.75rem;
    line-height: 1.2;
    transition: all 0.3s ease;
}
.process h5:after{
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    background-color: #c2ab8b;
    margin: 1.0rem auto;
    transition: all 0.3s ease;
}
.process .process-item:hover{
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    transform: translateY(-10px);
}
.process .process-item:hover img{
    filter: brightness(1.0) invert(0);
}
.process .process-item:hover h5,.process .process-item:hover .h5 span{
    color: #c2ab8b;
}
@media (max-width: 992px){
    .process .process-item{
        margin-bottom: 1.0rem;
    }
    .process .number span{
        line-height: 40px;
        width: 50px;
        height: 50px;
    }
    .process .number span:after{
        width: 30px;
        height: 30px;
        margin-top: -22px;
    }
    .process .process-item img{
        width: 45px;
    }
}
.tijian{
    border-top: 1px solid #e5e5e5;
    overflow: hidden;
    margin: 5px 0px;
}
.tijian::before {
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    background: #e5e5e5;
    margin-top: -6px;
}
.tijian .tijian-img,.case-info-content .tijian-img{
    width: 50%;
}
.tijian .overview,.case-info-content .overview{
    width: 45%;
}
.tijian .overview .con-txt{
    line-height: 1.5;
    margin-bottom: 1.0rem;   
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9; /* 限制行数为5 */
    overflow: hidden;
}
.case-info-content .overview .case-con-txt{
    line-height: 1.5;
    margin-bottom: 1.0rem; 
}
.case-info-content .overview .case-con-txt ul{
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 992px){
    .tijian .tijian-img, .case-info-content .tijian-img,.tijian .overview, .case-info-content .overview{
        width: 100%;
    }
    .tijian .tijian-img, .case-info-content .tijian-img,.video .video-img,.ny-video .video-img{
        margin-bottom: 1.0rem;
    }
}
/*产品*/
.product{
    background: url(../img/product.jpg) no-repeat top center #fff;
    background-size: 100% 55%;
    overflow: hidden;
    position: relative;
}
.product .title{
    color: #fff;
}
.product .product-more{
    display: inline-block;
    font-size: 1.5rem;
    text-align: center;
    padding: 1.5rem 5.0rem;
    transition: all 0.3s;
    position: relative;
    background-color: #c2ab8b;
    color: #fff;
    border-radius: 3rem;
    transition: all 0.3s;
}
.product-box{
    position: relative;
}
.product-box .swiper-container{
    padding: 15px 10px;
}
.product .swiper-button-prev,.product .swiper-button-next {
    width: 55px;
    height: 55px;
    background: url(../img/wm_button_icon.png) no-repeat #ededed;
    background-position: 0 0;
    background-size: 100%;
    transition: all 0.6s;
    border-radius: 100%;
}
.product .swiper-button-prev:hover {
    background: url(../img/wm_button_icon.png) no-repeat #c2ab8b;
    background-position: -5px -70px;
}
.product .swiper-button-next {
    background-position: -0px -112px;
}
.product .swiper-button-next:hover {
    background: url(../img/wm_button_icon.png) no-repeat #c2ab8b;
    background-position: -3px -138px;
}
.product .swiper-button-prev{
    left: -60px;
}
.product .swiper-button-next{
    right: -60px;
}
@media (max-width:992px){
}