*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
img{
    font-size: 12px;
}
input{
    color: #5C5C5C;
}
button{
    outline: none;
    border: none;
    cursor: pointer;
}
html,body{
    width: 100%;
    height: 100%;
    min-width: 1124px;
    min-height: 100%;
    -webkit-text-size-adjust:none;
}
#container{
    width: 100%;
    height: auto;
}
.main{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#header{
    width: 100%;
    height: 59px;
    position: sticky;
    top: 0;
    left: 0;
    background: #FFFFFF;
    z-index: 10000;
    box-shadow: 1px 3px 34px 2px rgba(113, 93, 83, 0.3);
}
#header.active-bg{  
    background: #48A5FF;
}
.nav_box{
    max-width: 1124px;
    height: 59px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.nav_box .nav_left{
    width: 146px;
    height: 59px;
}
.nav_box .nav_left img{
    width: 122px;
    padding-top: 5px;
}
/* 导航菜单 */
.nav_box .nav_center{
    flex: 1;
    height: 59px;
    text-align: left;
    margin: 0px 20px 0px 90px;
}
.nav_box .nav_center ul{
    width: 100%;
    height: 59px;
}
.nav_box .nav_center ul a{
    display: inline-block;
}
.nav_box .nav_center ul a li{
    float: left;
    height: 59px;
    line-height: 59px;
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #383838;
    margin: 0px 25px;
    position: relative;
}
.nav_box .nav_center ul a li i{
    display: none;
    position: absolute;
    width: 26px;
    height: 2px;
    left: 50%;
    bottom: 14px;
    margin-left: -13px;
    background-color: #ffaf00;
}
.nav_box .nav_center ul li.active{  
    font-family: Source Han Sans CN;
    color: #353535;
    font-weight: 600;
}
.nav_box .nav_center ul li span:hover{
    font-family: Source Han Sans CN;
    color: #353535;
    font-weight: 600;
}

/* 导航按钮 */
.nav_box .nav_right{
    width: 180px;
    height: 63px;
    display: flex;
    margin-right: 20px;
}
.nav_box .nav_right button{
    flex: 1;
    margin: 15.5px 7.5px;
    width: 76px;
    height: 28px;
    border-radius: 14px;
    font-size: 12px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    cursor: pointer; 
    border: 1px solid #EB6020;
    background: #FFFFFF;
    color: #EB6020;
}
.nav_box .nav_right #registered{
    background: #EB6020;
    box-shadow: -1px 1px 5px 0px rgba(235, 96, 32, 0.56);
    color: #FFFFFF;
}

/* banner */
.banner_box{
    width: 100%;
    height: 520px;
    background: linear-gradient(0deg, #FA7A30 0%, #FE5516 100%);
    position: relative;
}   
.banner{
    max-width: 1124px;
    margin: 0 auto;
    height: 520px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.banner .poster{
    width: 100%;
    height: 520px;
    position: relative;
}
.banner .poster .img1{
    height: 450px;
    /* margin-top: 115px; */
    position: absolute;
    right: 60px;
    top: 70px;
    z-index: 2000;
}
.banner .poster .img2{
    height: 288px;
    position: absolute;
    left: 0px;
    top: 232px;
    z-index: 1000;
}
.banner_cont{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    height: 300px;
}
.registereds_main{
    position: relative;
    max-width: 1124px;
    height: 520px;
    margin: 0 auto;
}
.banner_cont .banner_title{
    position: absolute;
    top: 139px;
    left: 30px;
    z-index: 1000;
}
.banner_title .title_cont p{         
    font-size: 40px;
    font-family: Source Han Sans CN;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 46px;
    text-shadow: 0px 4px 0px rgba(170, 115, 95, 0.22);
}
.banner_title .desc{
    padding-top: 50px;
}
.banner_title .desc ul li{
    height: 30px;
    display: flex;
    align-items: center;
}
.banner_title .desc ul li img{
    width: 15px;
}
.banner_title .desc ul li span{
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    padding-left: 10px;
}

/* 内容 */
#section{
    width: 100%;
    height: auto;
}
.section1{
    width: 100%;
    padding: 43px 0px 66px 0px;
}
.title{
    width: 100%;
    text-align: center;
}
.title h3{   
    font-size: 31px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #333333;
}
.title span{
    display: block;
    width: 40px;
    height: 2px;
    background: #EB6020;
    margin: 18px auto 12px;
}
.title label{  
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666464;
}
.title label a{
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    line-height: 18px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #666464;
    margin-right: 3px;
}
.teacher_module{
    max-width: 1124px;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin: 14px auto 28px;
}
.teacher_list{
    width: 25%;
    height: auto;
    margin: 0px 10px;
    position: relative;
}
.teacher_list:hover{
    -webkit-animation: active_img .5s ease-in-out forwards;
    cursor: default;
}
.teacher_list img{
    width: 100%;
}
.teacherImg{
    width: 100%;
    position: absolute;
    left: 10px;
    top: 270px;
}
.teacher_list span{
    display: block;
    width: 65px;
    height: 21px;
    border: 1px solid #FFFFFF;
    border-radius: 3px;
    text-align: center;
    line-height: 21px; 
    font-size: 12px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    position: absolute;
    right: 10px;
    top: 270px; 
}
.teacherImg p:first-child{
    font-size: 20px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #FFFFFF;
}
.teacherImg p:nth-child(2){
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #FFFEFE;
}
.teacher_list .teacher_desc{
    /* width: 100%; */
    position: absolute;
    left: 10px;
    top: 335px;
}
.teacher_desc ul li{  
    font-size: 12px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 17px;
}

/* 滑过放大效果 */
@-webkit-keyframes active_img{
    0%{
        -webkit-transform: scale(1);
    }
    100%{
        -webkit-transform: scale(1.05);
    }
}

.section2{
    width: 100%;
    height: auto;
    padding: 25px 0px 32px 0px;
    background: #F8F8F8;
}
.step_cont{
    max-width: 1124px;
    margin: 0 auto;
}
.step_detail{
    width: 100%;
    margin-top: 50px;
}
.step_detail ul{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.step_detail ul li{
    flex: 1;
    text-align: center;
    position: relative;
}
.step_detail ul li img{
    width: 100px;
}
.step_detail ul li h3{
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #333333;
    padding-top: 20px;
}
.step_detail ul li label{
    display: block;
    position: absolute;
    width: 80px;
    height: 1px;
    background: #EC5C27;
    left: 185px;
    top: 50px;
}
.step_detail ul li span{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #333333;
    padding-top: 20px;
}
.step_cont .submit_btn2{
    width: 186px;
    height: 40px;
    margin: 33px auto 0px;
}
.submit_btn2 button{
    width: 186px;
    height: 40px;
    background: #EB6020;
    box-shadow: -1px 1px 4px 0px rgba(235, 96, 32, 0.56);
    border-radius: 20px;
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #FFFFFF;
}

.section3{
    width: 100%;
    padding: 45px 0px 35px 0px;
}
.team_list{
    max-width: 1124px;
    margin: 27px auto 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.team_detail{
    width: 24%; 
    background: #FFFFFF;
    box-shadow: 0px 1px 3px 0px rgba(254, 226, 221, 0.47);
    border-radius: 13px;
    margin-bottom: 20px;
}
.team_detail dl dt{
    width: 100%;  
    height: 242px;
    background: #D6D5D1;
    text-align: center;
    border-radius: 13px 13px 0px 0px;
    position: relative;
    overflow: hidden;
    padding-top: 8px;
}
.personal_profile{
    width: 100%;  
    height: 242px;
    background: #EC5D24;
    opacity: 0.9;
    border-radius: 9px 9px 0px 0px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0px 17px 0px 17px;
    display: none;
    cursor: default;
    /* -webkit-animation: upmove .5s ease-in-out forwards; */
}
.personal_cont{
    width: 100%;  
    height: 242px;
    display: flex;
    align-items: center;
}
.personal_cont p{
    width: 100%;
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 25px;
    text-align: left;
}
.personal_profile.actives{
    -webkit-animation: upmove .5s ease-in-out forwards;
}
@-webkit-keyframes upmove{
    0%{
        -webkit-transform: translate(0,150px);
    }
    100%{
        -webkit-transform: translate(0,0px);
    }
}
.team_detail dl dt img{
    /* width: 100%; */
    height: 236px;
}
.team_detail dl dd{
    width: 100%;
    text-align: center;
    padding: 19px 0px;
}
.team_detail dl dd h3{ 
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #333333;
    padding-bottom: 5px;
}
.team_detail dl dd p{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #777777;
    line-height: 18px;
}

/* 教学服务 */
.section4{
    width: 100%;
    height: auto;
    padding: 40px 0px 33px 0px;
    background: #F8F8F8;
}
.service_cont{
    max-width: 800px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 14px auto;
}
.service_list{
    width: 23%;
    height: auto;
    background: #FFFFFF;
    border-radius: 6px;
    text-align: center;
    padding: 28px 0px 21px 0px;
}
.service_list img{
    width: 106px;
}
.service_list h3{      
    font-size: 15px;
    font-family: Source Han Sans CN;
    font-weight: 600;
    color: #4C4948;
    padding-top: 22px;
}
.service_list span{ 
    font-size: 12px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #4C4948;
    padding-top: 15px;
}
.service_step{
    max-width: 1124px;
    margin: 27px auto;
    text-align: center;
}
.service_step img{
    width: 80%;
}
.service_step ul{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.service_step ul li{
    flex: 1;
    text-align: center;
    position: relative;
}
/* .service_step ul li:first-child{
    position: relative;
} */
.service_step ul li .icon1{
    width: 55px;
    position: absolute;
    left: 160px;
    top: 30px;
}
.service_step ul li img{
   width: 80px;
}
.service_step ul li label{
    display: block; 
    font-size: 15px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #4C4948;
    padding-top: 5px;
}
.service_step ul li span{
    display: block; 
    font-size: 12px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #4C4948;
    line-height: 18px;
}

/* 注册弹窗 */
.registered_dialog{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 30000!important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.registered_box{
    width: 473px;
    height: 294px;
    background: url('../images/home/dialog_bg.png') no-repeat center;
    background-size: cover;
    position: relative;
}
.registered_box #close{
    width: 22px;
    height: 22px;
    position: absolute;
    top: 10px;
    right: 18px;
    cursor: pointer;
}
.registered_box #close img{
    width: 100%;
}
.registered_box #close img:hover{
    -webkit-animation: rotate_btn .5s ease-in-out forwards;
}
.registered_form{
    width: 220px;
    height: auto;
    position: absolute;
    top: 23px;
    right: 25px;
}
.registered_form p{
    font-size: 17px;
    font-family: STYuanti-SC-Bold, STYuanti-SC;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 30px;
}
.registered_form p span{
    font-size: 32px;
}
.form_list{
    width: 100%;
}
/* 手机号 */
.form_list .form_phone{
    width: 100%;
    height: 31px;
    background: #FFFFFF;
    position: relative;
    border-radius: 6px;
    margin-top: 20px;
}
.form_list .form_phone input{
    width: 100%;
    height: 31px;
    line-height: 31px;
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 13px;
}
/* 验证码 */
.form_list .form_yzm{
    width: 100%;
    height: 31px;
    background: #FFFFFF;
    border-radius: 6px;
    margin-top: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form_yzm input{
    width: 60%;
    height: 31px;
    padding-left: 13px;
}
.form_yzm span{
    display: inline-block;
    flex: 1;
    height: 31px;  
    line-height: 31px;
    font-size: 11px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #EE5536;
    cursor: pointer;
    position: relative;
    text-align: center;
}
.form_yzm span::before{
    content: "";
    width: 1px;
    height: 14px;
    background: #979797;
    position: absolute;
    left: 0px;
    top: 9px;
}
/* 错误校验码 */
.form_list .prompt-text{
    color: red;
    font-size: 12px;
    line-height: 20px;
    /* text-align: center; */
}
/* 协议 */
.form_xieyi{
    width: 100%;
    height: 15px;
    padding-top: 8px;
    position: relative;
}
.form_xieyi input{
    width: 15px;
    float: left;
}
.form_xieyi label{  
    display: inline-block;
    float: left;
    width: 230px;
    font-size: 11px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    transform: scale(0.8);
    position: absolute;
    left: -5px;
}

.btn_register{
    width: 100%;
    /* height: 34px; */
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.btn_register button{
    width: 100%;
    height: 34px;    
    background: #FFFFFF;
    border-radius: 17px; 
    font-size: 17px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #EF6237;
    box-shadow: 0px 6px 20px 0px rgba(220, 81, 48, 0.8);
}

/* 预约课程 */
.layui-layer{
    border-radius: 10px!important;
    background: #59AFFF!important;
    border-radius: 17px!important;
}
.layui-layer-shade{
    background: rgba(0,0,0)!important;
    opacity: 0.5!important;
}   
#yuyue_success{
    padding: 10px; 
    /* border-radius: 6px; */
}
.yuyue_dialog{
    text-align: center;
    position: relative;
}
.yuyue_dialog #yuyue_close{
    width: 14px;
    height: 14px;
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
}
.yuyue_dialog #yuyue_close:hover{
    -webkit-animation: rotate_btn .5s ease-in-out forwards;
}
@-webkit-keyframes rotate_btn{
    0%{
        -webkit-transform: rotate(0);
    }
    100%{
        -webkit-transform: rotate(180deg);
    }
}
.yuyue_dialog .yuyue_title{  
    font-size: 21px;
    font-family: STYuanti-SC-Bold, STYuanti-SC;
    font-weight: bold;
    color: #FFFFFF;
    padding-top: 29px;
}
.yuyue_dialog .yuyue_desc{
    width: 100%;
    text-align: center;
    margin-top: 15px;
}
.yuyue_dialog .yuyue_desc p{ 
    font-size: 14px;
    font-family: STYuanti-SC-Bold, STYuanti-SC;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 10px;
}
.yuyue_dialog .qr_code{
    width: 162px;
    height: 162px;
    background: #FFC040;
    border-radius: 7px;
    padding: 3px;
    margin: 0 auto;
    margin-top: 18px;
}
.yuyue_dialog .qr_code img{
    width: 100%;
    border-radius: 6px;
}
.yuyue_dialog p{
    font-size: 14px;
    font-family: STYuanti-SC-Bold, STYuanti-SC;
    font-weight: bold;
    color: #FFFFFF;
    padding-top:16px;
}

/* 底部导航 */
#footer{
    width: 100%;
    height: auto;
    background: #3B3C3D;
    padding-bottom: 33px;
}
.introduce_box{
    max-width: 1124px;
    margin: 40px auto 0px;
    display: flex;
}
.introduce_l{
    width: 320px;
}
.introduce_l h3{
    font-size: 24px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
}
.introduce_l p{       
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    padding-top: 15px;
}
.introduce_r{
    flex: 1;
}
.introduce_r ul{
    width: 500px;
    display: flex;
    justify-content: center;
    padding-left: 92px;
}
.introduce_r ul li{
    flex: 1;
    text-align: center;
}
.introduce_r ul li a{    
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #FFFFFF;
    position: relative;
}
.introduce_r ul li a::after{
    content: "";
    width: 2px;
    height: 18px;
    background: #FFFFFF;
    position: absolute;
    right: -10px;
    top: 50%;
    margin-top: -9px;
}
.introduce_r ul li:last-child>a::after{
    content: none;
}
.introduce_r ul li a:hover{
    color: #659EFD;
}
.footer_cont{
    max-width: 1124px;
    margin: 40px auto 0px;
}
.web_linkCont{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: row;
}
.web_linkCont .tel{
    width: 22%;
    margin-top: 10px;
}
.tel .info_list{
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
}
.web_linkCont .info_list img{
    width: 28px;
}
.web_linkCont .info_list span{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    padding-left: 11px;
}
.web_linkCont .info_list span a{
    font-size: 14px;
    font-weight: 500;
}
.link{
    width: 30%;
    height: 130px;
    text-align: left;
}
.link ul{
    width: 100%;
    display: flex;
    /* justify-content: center; */
    flex-wrap: wrap;
    position: relative;
    padding-left: 40px;
}
.link ul::before{
    content: "";
    width: 1px;
    height: 133px;
    background: #FFFFFF;
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -56.5px;
}
.link ul li{
    width: 30%;
    margin: 0px 10px;
    line-height: 32px;
    /* line-height: 30px; */
}
.link ul li a{  
    display: inline-block;
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #FFFFFF;
}
.link ul li a:hover{
    color: #659EFD;
}
.share{
    flex: 1;
    margin-top: 0px;
    padding-left: 50px;
}
.share div{
    width: 140px;
    height: auto;
    text-align: center;
    float: left;
}
.share div img{
    width: 90px;
    margin: 0 auto;
}
.share div span{
    display: block;
    font-size: 12px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #FFFFFF;
    /* line-height: 31px; */
}
.web_introduce{
    text-align: center;
    margin-top: 40px;
}
.web_introduce ul{
    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
}
.web_introduce ul li{
    text-align: center;
    flex: 1;
}
.web_introduce ul li a{  
    font-size: 12px;
    display: inline-block;
    transform: scale(0.89);
   font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
}
.web_introduce ul li a:hover{
    color: #659EFD;
}
.web_introduce p{
    line-height: 15px;
}
.web_introduce p a{
    font-size: 12px;
    display: inline-block;
    transform: scale(0.89);
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
}
.web_introduce p a:hover{
    color: #659EFD;
}
.web_introduce p label{   
    font-size: 12px;
    display: inline-block;
    transform: scale(0.89);
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
}
.advertise_cont{
    width: 100%;    
    height: 60px;
    background: #FFFFFF;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.advertise_cont a{
    display: inline-block;
}
.advertise_cont a img{
    height: 40px;
    margin: 0px 5px;
}

