/* reset */
html,body,h1,h2,h3,h4,h5,h6,div,dl,dt,dd,ul,ol,li,p,blockquote,pre,hr,figure,table,caption,th,td,form,fieldset,legend,input,button,textarea,menu{margin:0;padding:0;}
header,footer,section,article,aside,nav,hgroup,address,figure,figcaption,menu,details{display:block;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;font-weight:normal;}
html,body,fieldset,img,iframe,abbr{border:0;}
i,cite,em,var,address,dfn{font-style:normal;}
[hidefocus],summary{outline:0;}
li{list-style:none;}
h1,h2,h3,h4,h5,h6,small{font-size:100%;}
sup,sub{font-size:83%;}
pre,code,kbd,samp{font-function:inherit;}
q:before,q:after{content:none;}
textarea{overflow:auto;resize:none;}
label,summary{cursor:default;}
a,button{cursor:pointer;}
h1,h2,h3,h4,h5,h6{font-weight: 500;}
del,ins,u,s,a,a:hover{text-decoration:none;}
body,textarea,input,button,select,keygen,legend{outline:0;}
body {
    font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,Helvetica,Segoe UI,Arial,Roboto,PingFang SC,miui,Hiragino Sans GB,Microsoft Yahei,sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #373D52;
    letter-spacing: 2px;
}
a,a:hover{
    line-height: 1.5;
    color: #373D52;
}
body,html{
    height: 100%;
}
.container{
    width: 70%;
    min-width: 1300px;
    margin: auto;
    position: relative;
}
.bk{
    clear: both;
}

/* header */
.header{
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0px;
    z-index: 999;
    transition: all .2s;
    background-color: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}
.header .logo{
    width: 295px;
    height: 80px;
    display: inline-block;
    background-image: url(../images/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    text-indent: -9999px;
    float: left;
}
.header .nav{
    float: right;
}
.header .nav li{
    float: left;
    position: relative;
    margin: 0 20px;
}
.header .nav li a{
    line-height: 80px;
    height: 80px;
    display: inline-block;
    padding: 0px 10px;
    transition: all .2s;
    font-size: 16px;
    color: #373D52;
}
.header .nav li a:hover{
    font-weight: bold;
    color: #7dbeb9;
}
.header .nav li a.active{
    font-weight: bold;
    color: #7dbeb9;
}
.header .nav li a:before{
    content: "";
    width: 0px;
    height: 5px;
    display: block;
    background-color: #7dbeb9;
    position: absolute;
    left: 50%;
    bottom: 0px;
    border-radius: 30px;
    transition-duration: 0.4s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.header .nav li a.active:before{
    width: 70%;
    left: 15%;
}

/*.fixedheader{
    background-color: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}
.fixedheader .logo{
    background-image: url(../images/logo.png);
}
.fixedheader .nav li a{
    color: #373D52;
}
.fixedheader .nav li a:hover{
    color: #7dbeb9;
}
.fixedheader .nav li a.active{
    color: #7dbeb9;
}
.fixedheader .nav li a:before{
    background-color: #7dbeb9;
}*/
/* page */
.page{
    padding: 90px 0;
    position: relative;
    min-height: 300px;
}
.page .title{
    text-align: center;
    margin-bottom: 50px;
}
.page .title h2{
    font-weight: normal;
    font-size: 40px;
    line-height: 1.3;
}
.page .title p{
    font-size: 20px;
    line-height: 30px;
    margin-top: 20px;
    color: #606787;
    line-height: 1.6;
}

.page-color{
    background-color: rgba(247, 250, 255, 0.55);
}

/* home */
.home-banner{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.home-video{
    object-fit: cover;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
}
.home-banner .text{
    padding-top: 18%;
    padding-left: 20px;
}
.home-banner .text h2{
    border-bottom: 1px solid hsla(0,0%,100%,.5);
    display: inline-block;
    font-size: 46px;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-shadow: 0 1px 0 rgb(0 0 0 / 40%);
    color: #fff;
}
.home-banner .text h2 span{
    font-weight: bold;
}
.home-banner .text p{
    font-size: 20px;
    color: #fff;
    text-shadow: 0 1px 0 rgb(0 0 0 / 40%);
    letter-spacing: 3px;
}

.home-banner .down{
    width: 100px;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 60px;
    left: 50%;
    margin-left: -50px;
    -webkit-animation: jump 2s infinite;
    animation: jump 2s infinite;
}
.home-banner .down i{
    width: 40px;
    height: 40px;
    display: inline-block;
    font-size: 24px;
    margin-bottom: 0px;
}
.home-banner .down span{
    display: block;
    font-size: 16px;
}

.home-about .box{
    width: 1200px;
    min-width: 1200px;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
}
.home-about .box .desc{
    background-image: url(../images/bg.daac63fa.jpg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    transition: all 2s;
    overflow: hidden;
    position: relative;
}
.home-about .box .desc:hover{
    background-size: 110%;
    /*height: auto;*/
}

.home-about .box .desc .text{
    background-color: rgba(33,218,197,.8);
    text-align: center;
    overflow: hidden;
    position: relative;
    display: block;
    box-sizing: border-box;
    color: #fff;
    height: 430px;
    padding: 30px;
    transition: all 1s;
}
.home-about .box .desc .text:hover{
    height: 580px;
}
.home-about .box .desc .text h3{
    font-size: 28px;
    margin-top: 30px;
    font-weight: bold;
}
.home-about .box .desc .text p{
    width: 60%;
    font-size: 17px;
    margin: auto;
    margin-top: 15px;
    line-height: 1.8;
}
.home-about .box .desc .text .p-h{
    height: 0px;
    overflow: hidden;
    transition: all 1s;
}
.home-about .box .desc .text:hover .p-h{
    height: 180px;
}
.home-about .box .desc .more{
    position: absolute;
    bottom: 35px;
    color: #fff;
    left: 50%;
    margin-left: -20px;
}
.home-about .box .desc .more i{
    width: 40px;
    height: 40px;
    display: inline-block;
    font-size: 40px;
}
.home-about .box .intro{
    padding: 50px 20px;
}
.home-about .box .intro ul li{
    width: 26.3333%;
    float: left;
    margin: 0 3.5%;
    position: relative;
}
.home-about .box .intro ul li::before{
    content: '';
    display: block;
    height: 81px;
    border-right: 1px solid rgba(0,0,0,.06);
    position: absolute;
    top: 3px;
    left: -45px;
}
.home-about .box .intro ul li.n1::before{
    display: none;
}
.home-about .box .intro ul li h3{
    font-size: 18px;
    margin-bottom: 10px;
}
.home-about .box .intro ul li p{
    line-height: 1.6;
}

.home-family .title{
    text-align: left;
}
.home-family .layui-tab-title{
    width: 300px;
    float: right;
    margin-top: -110px;
    height: 50px;
    border: none;
}
.home-family .layui-tab-title li{
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    border-radius: 30px;
    padding: 0 20px;
    margin: 0 3px;
}
.home-family .layui-tab-title .layui-this{
    background-color: #7dbeb9;
    color: #fff;
}
.home-family .layui-tab-title .layui-this:after{
    display: none;
}
.home-family .layui-tab-content{
    height: 500px;
    background-color: #fff;
    border-radius: 8px;
    padding: 0px;
    overflow: hidden;
}
.home-family .layui-tab-content .family-one{
    width: 100%;
    height: 550px;
    display: block;
    background-color: #3772ff;
    overflow: hidden;
    position: relative;
}
.home-family .layui-tab-content .family-one .bg{
    width: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
}
.home-family .layui-tab-content .family-one .text{
    width: 40%;
    float: left;
    margin-left: 8%;
    margin-top: 90px;
    color: #fff;
}
.home-family .layui-tab-content .family-one .text h3{
    font-size: 20px;
}
.home-family .layui-tab-content .family-one .text h2{
    font-size: 40px;
}
.home-family .layui-tab-content .family-one .text .logo{
    height: 60px;
    margin-bottom: 20px;
}
.home-family .layui-tab-content .family-one .text p{
    line-height: 1.8;
    margin-top: 10px;
    font-size: 15px;
}
.home-family .layui-tab-content .family-one .text a{
    margin-top: 20px;
    display: inline-block;
    color: #fff;
    font-size: 16px;

}
.home-family .layui-tab-content .family-one .text a i{
    margin-left: 5px;
    transition: all .4s;
}
.home-family .layui-tab-content .family-one .text a:hover i{
    margin-left: 10px;
}
.home-news{
    /*min-height: 580px;*/
}
.home-news .layui-carousel,.home-news .layui-carousel div{
    background-color: #fff;
    padding-top: 15px;
}
.home-news .layui-carousel[lay-arrow=always] .layui-carousel-arrow {
    left: -100px;
}
.home-news .layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add] {
    right: -100px;
}
.home-news .layui-carousel-arrow{
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 27px;
}
.home-news .item{
    width: 100%;
}
.home-news .item li{
    width: 31.33333%;
    float: left;
    margin-left: 3%;
}
.home-news .item li a{
    display: block;
    width: 100%;
    background-color: rgba(247, 250, 255, 0.55);
    border-radius: 10px;
    height: 550px;
    position: relative;
    transition: all .4s;
}
.home-news .item li a .thumb{
    width: 100%;
    height: 280px;
    border-radius: 10px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    transition: all 1s;
    position: relative;
    overflow: hidden;
}
.home-news .item li a:hover .thumb{
    background-size: 110%;
}
.home-news .item li a .thumb span{
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(33,218,197,.8);
    text-align: center;
    transition: all .4s;
    opacity: 0;
}
.home-news .item li a .thumb span i{
    line-height: 280px;
    color: #fff;
    font-size: 50px;
}
.home-news .item li a:hover .thumb span{
    opacity: 1;
}

.home-news .item li a .text{
    padding: 30px;
    background-color: transparent;
}
.home-news .item li a .text span{
    display: inline-block;
    margin-top: 10px;
}

.home-news .item li a .text h3{
    font-size: 18px;
    font-weight: bold;
    margin-top: -5px;
}
.home-news .item li a .text p{
    margin-top: 10px;
    line-height: 1.6;
    font-size: 15px;
}
.home-news .item li a .text span{
    margin-top: 15px;
    font-weight: bold;
    color: #7dbeb9;
    font-size: 15px;
}
.home-news .item li a .text span i{
    font-weight: normal;
    font-size: 14px;
    margin-left: 5px;
    transition: all .4s;
}
.home-news .item li a:hover{
    margin-top: -10px;
}
.home-news .item li a .text span:hover i{
    margin-left: 10px;
}


.home-news .more{
    text-align: center;
    margin-top: 40px;
}
.home-news .more .btn{
    /*width: 180px; */
    height: 60px;
    background-color: #7dbeb9;
    display: inline-block;
    border-radius: 30px;
    text-align: center;
    line-height: 60px;
    font-size: 18px;
    padding: 0 40px;
    font-weight: bold;
    color: rgba(255,255,255,1);
    transition: all .2s;
}
.home-news .more .btn i{
    margin-left: 5px;
    transition: all .2s;
}
.home-news .more .btn:hover{
    opacity: .7;
}
.home-news .more .btn:hover i{
    margin-left: 10px;
}

.home-join{
    background-image: url(../images/bg.da2363fa.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: all 2s;
    overflow: hidden;
    position: relative;
    min-height: 230px;
    position: relative;
}
.home-join .bg{
    width: 100%;
    height: 100%;
    background-color: rgba(33,218,197,.3);
    position: absolute;
    left: 0;
    top: 0;
}
.home-join .text{
    position: relative;
}
.home-join .text h2{
    border-bottom: 1px solid hsla(0,0%,100%,.5);
    display: inline-block;
    font-size: 46px;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-shadow: 0 1px 0 rgb(0 0 0 / 40%);
    color: #fff;
}
.home-join .text h2 span {
    font-weight: bold;
}
.home-join .text p{
    font-size: 20px;
    color: #fff;
    text-shadow: 0 1px 0 rgb(0 0 0 / 40%);
}
.home-join .text .btn{
    width: 180px; 
    height: 60px;
    background-color: #7dbeb9;
    display: inline-block;
    border-radius: 30px;
    text-align: center;
    line-height: 60px;
    font-size: 18px;
    font-weight: bold;
    color: rgba(255,255,255,1);
    transition: all .2s;
    position: absolute;
    right: 30px;
    top: 50%;
}
.home-join .text .btn:hover{
    opacity: .7;
}

.page-banner{
    height: 550px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.page-banner .text{
    height: 100%;
    box-sizing: border-box;
    padding: 0 1%;
}
.page-banner .text .thumb{
    width: 493px;
    position: absolute;
    right: 0px;
    top: 25%;
}
.page-banner .text h3{
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
    padding-top: 160px;
    color: #373D52;
}
.page-banner .text p{
    width: 50%;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #606787;
    line-height: 1.6;
}
.page-banner .text .btn-more{
    display: inline-block;
    color: #00C4B3;
    font-size: 20px;
    border: 1px solid #00C4B3;
    border-radius: 50px;
    padding: 11px 70px;
    user-select: none;
    -khtml-user-select: none;
    margin-top: 35px;
}
.page-banner .text .btn-more i{
    font-weight: normal;
    margin-left: 10px;
}
.page-banner .text .btn-more:hover{
    background-color: #00C4B3;
    color: #fff;
}

.about-banner{
    background-image: url(../images/bg.da2343fa.png);
}
.about-banner .bg{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(33,218,197,.6);
}
.about-banner h2{
    padding-top: 210px;
    line-height: 1.5;
    font-size: 48px;
    color: #fff;
    margin-left: 30px;
    text-shadow: 0 1px 0 rgb(0 0 0 / 40%);
}
.about-banner h2 span{
    font-weight: bold;
}
.about-data{
    padding-bottom: 0px;
    min-height: auto;
}
.about-data .text{
    height: 175px;
    margin-top: -150px;
    background: #fff;
    border-radius: 8px;
    filter: drop-shadow(0 0 8px rgba(10,10,10,.2));
    box-sizing: border-box;
}
.about-data .text ul li{
    width: 33.3333%;
    float: left;
    text-align: center;
}
.about-data .text ul li h3{
    font-size: 40px;
    line-height: 60px;
    margin-top: 35px;
}
.about-data .text ul li p{
    font-size: 20px;
    margin-top: 15px;
    color: #606787;
}
.about-desc{
    padding: 105px 0;
}
.about-desc .text{
    width: 1075px;
    text-align: center;
}
.about-desc .text p{
    font-size: 18px;
    line-height: 2;
    color: #606787;
}
.about-intro ul{
    width: 975px;
}
.about-intro ul li{
    width: 45%;
    height: 176px;
    display: inline-block;
    float: left;
    transition: all .2s;
    margin: 0 2.5%;
    padding: 50px;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
}
.about-intro ul li:hover{
    background: linear-gradient(0deg,#0cdaac,#0cda99);
    color: #fff;
    border: 1px solid #0cda99;
}
.about-intro ul li span{
    width: 76px;
    height: 76px;
    display: inline-block;
    text-align: center;
    float: left;
    margin-right: 30px;
}
.about-intro ul li span i{
    line-height: 76px;
    font-size: 70px;
    color: #0cda99;
    transition: all .2s;
}
.about-intro ul li:hover span i{
    color: #fff;
    font-size: 75px;
}
.about-intro ul li h3{
    font-size: 32px;
    line-height: 32px;
    font-weight: bold;
}
.about-intro ul li p{
    font-size: 16px;
    margin-top: 21px;
}
.about-team{
    padding-bottom: 0px;
}
.about-team ul li{
    width: 25%;
    display: inline-block;
    float: left;
    position: relative;
    overflow: hidden;
}
.about-team ul li img{
    width: 100%;
    opacity: 0;
}
.about-team ul li .thumb{
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 101%;
    z-index: 1;
    transition: all .2s;
}
.about-team ul li:hover .thumb{
    width: 90%;
    left: 5%;
    top: 3%;
}
.about-team ul li .text{
    background: linear-gradient(0deg,#0cdaac,#0cda99);
    color: #fff;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    transition: all .2s;
    height: 370px;
    margin-bottom: -370px;
    text-align: center;
}
.about-team ul li:hover .text{
    margin-bottom: 0px;
}
.about-team ul li .text h3{
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    margin-top: 15%;
}
.about-team ul li .text h4{
    font-size: 18px;
    line-height: 18px;
    font-weight: 300px;
    margin-top: 20px;
    margin-bottom: 50px;
}
.about-team ul li .text p{
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 15%;
    margin-left: 10%;
    margin-right: 10%
}

.about-up .container{
    width: 1200px;
}
.about-up .box{
    min-height: 400px;
    position: relative;
}
.about-up .box .bg{
    width: 2px;
    height: 100%;
    display: block;
    background-color: #E6E8EC;
    position: absolute;
    margin-left: -1px;
    left: 50%;
    opacity: .4;
}
.about-up .box .text{
    width: 300px;
    height: 130px;
    display: inline-block;
    position: absolute;
    left: 55%;
    top: 50px;
    background: #FCFCFD;
    border-radius: 10px;
    box-shadow: 0 0 12px 0 hsl(0deg 0% 72% / 30%);
}
.about-up .box .text h3{
    letter-spacing: 1.12px;
    text-align: justify;
    line-height: 28px;
    font-size: 18px;
    color: #23262F;
    font-weight: 500;
    padding: 30px;
    padding-top: 40px;
}
.about-up .box .text .time{
    position: absolute;
    padding: 10px 30px;
    background-color: #0cda99;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    left: 20px;
    top: -20px;
}
.about-up .box .text .dian{
    width: 10px;
    height: 10px;
    background-color: #E6E8EC;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    left: -73px;
    margin-top: -7px;
    top: 50%;
    border: 3px solid #fff;
}
.about-up .box .text1{
    left: 21%;
    top: 200px;
}
.about-up .box .text1 h3{
    text-align: right;
}
.about-up .box .text1 .time{
    left: auto;
    right: 20px;
}
.about-up .box .text1 .dian{
    left: auto;
    right: -85px;
}

.about-awards .text{
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
    border-radius: 8px;
    padding: 110px 80px;
    overflow: hidden;
}
.about-awards .text img{
    width: 100%;
}
.about-awards .text .t1 li{
    width: 33.3333%;
    float: left;
    text-align: center;
}
.about-awards .text .t1 li img{
    width: 65%;
    margin: 10% 0;
}
.about-awards .text .t2{
    margin-top: 50px;
    border-top: 1px solid #e8eaf1;
    padding-top: 40px;
    padding-bottom: 20px;
}
.about-awards .text .t2 li{
    width: 50%;
    float: left;
    text-align: center;
}
.about-awards .text .t2 li img{
    width: 68px;
}
.about-awards .text .t2 li h3{
    font-size: 20px;
    margin-top: 15px;
}
.about-awards .text .t2 li p{
    font-size: 16px;
    margin-top: 5px;
    color: #606787;
}


.about-contact .layui-tab{
    width: 1200px;
}
.about-contact .layui-tab-title{
    height: 55px;
    line-height: 55px;
    background-color: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    overflow: hidden;
}
.about-contact .layui-tab-title li{
    margin: 0px;
    padding: 0px;
    width: 25%;
    font-size: 18px;
    height: 55px;
    line-height: 55px;
    color: #ffd100;
}
.about-contact .layui-tab-title li:after{
    position: absolute;
    left: 0;
    top: 16px;
    content: '';
    width: 100%;
    height: 25px;
    border-right: 1px solid #EAEAEA;
    box-sizing: border-box;
    pointer-events: none;
}
.about-contact .layui-tab-title li.layui-this{
    background: linear-gradient(0deg,#0cdaac,#0cda99);
    color: #fff;
}
.about-contact .layui-tab-title .layui-this:after,.about-contact .layui-tab-title li.li-n:after{
    display: none;
}
.about-contact .layui-tab-content{
    padding: 0px;
    margin-top: 20px;
}
.about-contact .layui-tab-item{
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #EAEAEA;
    background-color: #fff;
}
.about-contact .layui-tab-item .maps{
    width: 45%;
    float: left;
}
.about-contact .layui-tab-item .maps img{
    width: 100%;
    border-radius: 8px;
}
.about-contact .layui-tab-item .maps p{
    position: absolute;
    left: 227px;
    top: 223px;
    padding: 0 20px;
    background-color: #0cda99;
    line-height: 30px;
    height: 30px;
    border-radius: 5px;
    color: #fff;
}
.about-contact .layui-tab-item .maps p span{
    content: "";
    position: absolute;
    left: calc(50% - 8px);
    top: 30px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top: 9px solid #0cda99;
    transition: border-color .3s ease;
}
.about-contact .layui-tab-item .text{
    width: 50%;
    float: right;
    padding-top: 40px;
}
.about-contact .layui-tab-item .text h3{
    font-size: 24px;
    margin-top: 15px;
    color: #23262F;
    line-height: 50px;
    margin-bottom: 25px;
}
.about-contact .layui-tab-item .text h3 i{
    font-size: 40px;
    float: left;
    height: 50px;
    line-height: 50px;
    margin-right: 10px;
    color: #0cda99;
}
.about-contact .layui-tab-item .text p{
    line-height: 1.6;
    margin: 10px 0;
    padding-left: 5px;
    font-size: 16px;
    font-weight: 300;
    color: #606787;
}


.page-family{
    height: 100%;
    overflow: hidden;
    position: relative;
}
.page-family .family{
    height: 100%;
    position: relative;
}
.page-family .tabs{
    width: 110px;
    height: 350px;
    position: absolute;
    left: 0;
    top: 47%;
    margin-top: -170px;
    display: inline-block;
}
.page-family .tabs h3{
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}
.page-family .tabs ul{
    margin-top: 10px;
}
.page-family .tabs ul li{
    padding-left: 15px;
    line-height: 50px;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    font-weight: bold;
    color: rgb(153, 153, 153);
}
.page-family .tabs ul li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: rgb(153, 153, 153);
    position: absolute;
    top: 50%;
    left: 0px;
    margin-top: -2.5px;
    border-radius: 50%;
}
.page-family .tabs ul li.on{
    color: #0cda99;
}
.page-family .tabs ul li.on::before{
    background-color: #0cda99;
}
.page-family .content{
    width: 1000px;
    height: 1000px;
    display: inline-block;
    background-color: rgba(255,255,255,.95);
    position: absolute;
    border-radius: 50%;
    right: 5%;
    top: 55%;
    margin-top: -500px;
    z-index: 99;
    padding: 250px;
    box-sizing: border-box;
}
.page-family .content .text{
    display: none;
}
.page-family .content .text h3{
    font-size: 22px;
}
.page-family .content .text h2{
    font-size: 50px;
}
.page-family .content .text .logo{
    height: 60px;
    margin-bottom: 20px;
    margin-top: 30px;
}
.page-family .content .text p{
    line-height: 1.8;
    margin-top: 10px;
    font-size: 16px;
}
.page-family .content .text a{
    margin-top: 20px;
    display: inline-block;
    color: #0cda99;
    font-size: 16px;
    font-weight: bold;
}
.page-family .content .text a i{
    margin-left: 5px;
    transition: all .4s;
}
.page-family .content .text a:hover i{
    margin-left: 10px;
}

.page-family .content .on{
    display: inline-block;
}
.page-family .bg img{
    position: absolute;
    right: -5%;
    bottom: 0;
    width: 50%;
    display: none;
}
.page-family .bg .on{
    display: inline-block;
}

.page-news{
    margin-top: 80px;
}
.page-news ul li{
    width: 31.33333%;
    float: left;
    margin: 1.5% auto;
    margin-left: 3%;
}
.page-news ul li a{
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 10px;
    height: 550px;
    position: relative;
    transition: all .4s;
}
.page-news ul li a .thumb{
    width: 100%;
    height: 280px;
    border-radius: 10px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    transition: all 1s;
    position: relative;
    overflow: hidden;
}
.page-news ul li a:hover .thumb{
    background-size: 110%;
}
.page-news ul li a .thumb span{
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(33,218,197,.8);
    text-align: center;
    transition: all .4s;
    opacity: 0;
}
.page-news ul li a .thumb span i{
    line-height: 280px;
    color: #fff;
    font-size: 50px;
}
.page-news ul li a:hover .thumb span{
    opacity: 1;
}
.page-news ul li a .text{
    padding: 30px;
    background-color: transparent;
}
.page-news ul li a .text span{
    display: inline-block;
    margin-top: 10px;
}

.page-news ul li a .text h3{
    font-size: 18px;
    font-weight: bold;
    margin-top: -5px;
}
.page-news ul li a .text p{
    margin-top: 10px;
    line-height: 1.6;
    font-size: 15px;
}
.page-news ul li a .text span{
    margin-top: 15px;
    font-weight: bold;
    color: #7dbeb9;
    font-size: 15px;
}
.page-news ul li a .text span i{
    font-weight: normal;
    font-size: 14px;
    margin-left: 5px;
    transition: all .4s;
}
.page-news ul li a:hover{
    /*margin-top: -10px;*/
}
.page-news ul li a .text span:hover i{
    margin-left: 10px;
}

.page-investor ul li{
    width: 30.3333%;
    float: left;
    text-align: center;
    margin: 1.5%;
}
.page-investor ul li img{
    height: 120px;
    border-radius: 8px;
    box-shadow: 0 0 12px 0 hsla(0,0%,71.8%,.3);
}
.page-investor .text{
    border-radius: 8px;
    background: linear-gradient(0deg,#0cdaac,#0cda99);
    color: #fff;
    text-align: center;
    padding: 48px 0 68px;
    margin-top: 50px;
}
.page-investor .text h3{
    font-size: 32px;
}
.page-investor .text p{
    font-size: 20px;
    margin: 32px 0 48px;
    padding: 0 100px;
}
.page-investor .text h4{
    font-size: 24px;
}

.join-banner{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.join-banner .video{
    object-fit: cover;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
}
.join-banner .text{
    padding-top: 18%;
    text-align: center;
}
.join-banner .text h3{
    width: 100%;
    text-align: center;
    font-size: 20px;
    letter-spacing: 5px;
    font-weight: bold;
    color: #fff;
}
.join-banner .text h2{
    width: 100%;
    text-align: center;
    font-size: 56px;
    letter-spacing: 5px;
    font-weight: bold;
    color: #fff;
    line-height: 2;
}
.join-banner .text .btn{
    /*width: 180px; */
    height: 60px;
    background-color: #fff;
    display: inline-block;
    border-radius: 30px;
    text-align: center;
    line-height: 60px;
    font-size: 18px;
    padding: 0 60px;
    font-weight: bold;
    color: #7dbeb9;
    transition: all .2s;
    margin-top: 30px;
}
.join-banner .text .btn i{
    margin-left: 5px;
    transition: all .2s;
}
.join-banner .text .btn:hover{
    opacity: .7;
}
.join-banner .text .btn:hover i{
    margin-left: 10px;
}
.join-banner .down{
    width: 100px;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 60px;
    left: 50%;
    margin-left: -50px;
    -webkit-animation: jump 2s infinite;
    animation: jump 2s infinite;
}
.join-banner .down i{
    width: 40px;
    height: 40px;
    display: inline-block;
    font-size: 24px;
    margin-bottom: 0px;
}
.join-banner .down span{
    display: block;
    font-size: 16px;
}

.join-video #video1,.join-video #video2,.join-video #video3{
    display: none;
}
.join-video .box{
    width: 1200px;
    min-width: 1200px;
    height: 600px;
    background-color: #eee;
    border-radius: 8px;
    overflow: hidden;
}
.join-video .box .layui-tab{
    position: relative;
    height: 600px;
    margin: 0px;
}
.join-video .box .layui-tab-title{
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding: 0 30px;
    height: 45px;
    z-index: 2;
    box-sizing: border-box;
    border: none;
}
.join-video .box .layui-tab-title li{
    width: 30.3333%;
    float: left;
    margin: 0;
    padding: 0;
    text-align: left;
    line-height: 20px;
    padding-top: 10px;
    color: #fff;
    border-top: 2px solid rgba(255,255,255,.2);
    margin-right: 1.5%;
}
.join-video .box .layui-tab-title .layui-this{
    border-top: 2px solid rgba(255,255,255,1);
}
.join-video .box .layui-tab-title .layui-this:after{
    display: none;
}
.join-video .box .layui-tab-content{
    padding: 0px;
}
.join-video .box .layui-tab-item{
    height: 600px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}
.join-video .box .layui-tab-item .bg{
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg,#001b40,rgba(0,27,64,0));
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}
.join-video .box .layui-tab-item .text{
    margin-left: 100px;
    margin-top: 180px;
    color: #fff;
    width: 360px;
    position: relative;
}
.join-video .box .layui-tab-item .text .icon1{
    position: absolute;
    left: -25px;
    top: -15px;
}
.join-video .box .layui-tab-item .text .icon2{
    position: absolute;
    right: -5px;
    bottom: -15px;
    transform:rotate(180deg);
}
.join-video .box .layui-tab-item .text p{
    font-size: 24px;
    line-height: 1.8;
}
.join-video .box .layui-tab-item .play{
    font-size: 50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    color: #fff;
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -25px;
    margin-top: -25px;
}
.join-video .box .layui-tab-item .play:hover{
    opacity: .7;
}

/* footer */
.footer{
    padding: 65px 0 70px 0;
    background-color: #1fcdb6;
}
.footer ul{
    width: 13%;
    float: left;
    position: relative;
}
.footer ul::before{
    content: '';
    display: block;
    height: 92px;
    border-right: 1px solid rgba(255,255,255,.2);
    position: absolute;
    top: 8px;
    left: -55px;
}
.footer ul li{
    line-height: 2.3;
    color: #fff;
}
.footer ul li h3{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}
.footer ul li a{
    color: #fff;
}
.footer ul.b1{
    width: 40%;
}
.footer ul.b1::before{
    display: none;
}
.footer ul.b1 li{
    line-height: 2.5;
    font-size: 15px;
}
.footer ul.b1 li h3{
    width: 330px;
    height: 55px;
    display: inline-block;
    background-image: url(../images/logo1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    text-indent: -9999px;
}
.footer .sns{
    width: 34%;
    float: left;
}
.footer .sns .icon .iconfont{
    font-size: 32px;
    margin-right: 10px;
}
.copyright{
    line-height: 60px;
    color: #fff;
    font-size: 13px;
    background-color: #1fcdb6;
}
.copyright .container{
    border-top: 1px solid rgba(255,255,255,.2);
}
.copyright .p1{
    float: right;
}
.copyright a{
    color: #fff;
}


.top{
    width: 50px;
    height: 50px;
    display: none;
    position: fixed;
    right: 30px;
    bottom: 60px;
    border: 2px solid #7dbeb9;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    z-index: 999;
    background-color: #fff;
}
.top a{
    width: 100%;
    height: 100%;
    display: block;
}
.top i{
    font-size: 33px;
    color: #7dbeb9;
}
.topfixed{
    display: inline-block;
}
.top:hover{
    background-color: #7dbeb9;
    color: #fff;
}
.top:hover i{
    color: #fff;
}