/*样式重置*/
*{margin: 0;padding: 0;list-style: none;box-sizing: border-box;}
body,html{
    width: 100%;
    height: 100%;
    background: #ffffff;
}
/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */ {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 { font-size: 100%; }
address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读，让 small 正常化 */

/** 重置列表元素 **/
ul, ol { list-style: none; }

/** 重置文本格式元素 **/
a { text-decoration: none; }
a:hover { text-decoration: underline; }

input{
    outline: none;
    -webkit-appearance: none;
    border: none;
}

/** 重置表单元素 **/
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0; } /* img 搭车：让链接里的 img 无边框 */
button, input, select, textarea { font-size: 100%; } /* 使得表单元素在 ie 下能继承字体大小 */
/* 注：optgroup 无法扶正 */

/** 重置表格元素 **/
table { border-collapse: collapse; border-spacing: 0; }
a,a:link,a:visited,a:hover,a:active{
    text-decoration: none !important;
    color:inherit;
}
/* 清除浮动 */
.ks-clear:after, .clear:after {
    content: '\20';
    display: block;
    height: 0;
    clear: both;
}
.ks-clear, .clear {
    *zoom: 1;
}
.fl-l{
    float: left;
}
.fl-r{
    float: right;
}
.banner img{
    max-width:100%;
}
/*分页*/
.tcdPageCode{
    padding: 15px 20px;
    text-align: center;
    color: #ccc;
}
.tcdPageCode a{
    display: inline-block;
    color: #9f9f9f;
    font-size: 18px;
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin: 0 10px;
    vertical-align: middle;
    border-radius: 50%;
}
.tcdPageCode span.current{
    display: inline-block;
    height: 25px;
    width: 25px;
    line-height: 25px;
    margin: 0 10px;
    color: #fff;
    background-color: #eb6375;
    vertical-align: middle;
    border-radius: 50%;
}
.tcdPageCode span.disabled{
    display: inline-block;
    height: 25px;
    font-size: 18px;
    line-height: 25px;
    padding: 0 10px;
    margin: 0 10px;
    color: #d9d9d9;
    vertical-align: middle;
}
/*自定义公共css*/
.contain-wrap-width{
    width: 1200px;
    margin: 0 auto;
}
.footer-wrap-bg > div{
    display: flex;
    justify-content: space-between;
}
.footer-wrap-bg .qyjj{
    width: 25%;
    padding-top: 60px;
}
.footer-wrap-bg .qyjj .logo{
    width: 140px;
    min-height: 40px;
}
.footer-wrap-bg .qyjj h2{
    font-size: 26px;
    margin: 20px 0 30px 0;
}
.footer-wrap-bg .qyjj p{
    font-size: 18px;
    line-height: 1.4;
    margin-top: 35px;
}
.footer-right-wrap {
    width: 230px !important;
}
.footer-wrap-bg .ewm-wrap {
    padding-top: 140px;
}
.full-screen-width{
    width: 100%;
    min-width: 1200px;
}
/*flex*/
.flex {
    display: box;              /* OLD - Android 4.4- */
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex-align-center{
    /* 09版 */
    -webkit-box-align: center;
    /* 12版 */
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.flex-justify-around{
    -webkit-justify-content: space-around;
    -moz-justify-content: sspace-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
}
.flex-justify-between{
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
}
.flex-justify-center{
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}
.flex-direction-column{
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}
.flex-wrap{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
.hide{
    display: none;
}
/*字体颜色*/
.text-center{
    text-align: center;
}
.white-color-font{
    color: #ffffff;
}
.gray-color-font{
    color: #707070;
}
.light-gray-colr{
    color: #959595;
}
.main-font-color{
    color: #cb2457;
}
/*字体大小*/

.font-18{
    font-size: 18px;
}
.font-20{
    font-size: 20px;
}
.font-22{
    font-size: 22px;
}
.font-24{
    font-size: 24px;
}
.font-26{
    font-size: 26px;
}
.font-28{
    font-size: 28px;
}
.font-30{
    font-size: 30px;
}
.font-32{
    font-size: 32px;
}
.font-36{
    font-size: 36px;
}
.font-38{
    font-size: 38px;
}
/*margin*/
.mb-30{
    margin-bottom: 30px;
}
.position-relative{
    position: relative;
}
.wrap-center{
    position:absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.wrap-Y-center{
    position:absolute;
    top: 50%;
    transform: translateY(-50%);
}
.wrap-X-center{
    position:absolute;
    left: 50%;
    transform: translateX(-50%);
}
.font-line-num-1{
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.font-line-num-2{
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.font-line-num-3{
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.full-white-bg{
    width: 100%;
    background: #ffffff;
    position: initial !important;
}
#sub-nav ul{
    display: flex;
    justify-content: center;
}
#sub-nav ul a{
    display: inline-block;
    height: 80px;
    line-height: 80px;
    margin: 0 6px;
    color: #b0b0b0;
}
#sub-nav ul li{
    font-size: 24px;
}
.contain-wrap-width .module-nav-on{
    color: #cb2457 !important;
    border-bottom: 2px solid #cb2457;
}
.find_nav_left{
    display: none;
}
@media screen and (max-width:768px){
    .find_nav_left{
        display: block;
        background-color: #cb2457;
    }
    .find_nav_left a{
        color: #fff !important;
    }
    body{
        padding-top: 50px !important;
    }
    .padding{
        padding-left: 2.5% !important;
        padding-right: 2.5% !important;
    }
    .contain-wrap-width,.review-wrap-width,.classroom-left-wrap,.classroom-right-wrap,.activity-right-wrap,.gallery-thumbs{
        width: 100% !important;
    }
    .full-screen-width{
        min-width: 0;
    }
    .font-18{
        font-size: 15px;
    }
    .footer-wrap-bg{
        height: auto !important;
        margin-top: 0 !important;
    }
    .footer-wrap-bg > div{
        display: block;
    }
    .footer-wrap-bg > div >div,
    .footer-wrap-bg > div >div>div{
        width: 100% !important;
    }
    .footer-wrap-bg > div >div:nth-of-type(2) .mr-83{
        display: none;

    }
    .footer-wrap-bg .qyjj{
        padding-top: 20px;
    }
    .footer-wrap-bg .qyjj .logo{
        width: 50% !important;
        margin: 0 auto;
    }
    .footer-left-wrap{
        float: initial;
        padding-top: 20px !important;
        display: none;
    }
    .footer-left-wrap > dl{
        width: 100% !important;
        float: initial !important;
        text-align: center;
    }
    .footer-left-wrap dt{
        font-size: 18px !important;
        text-align: center;
        margin-bottom: 10px !important;
    }
    .footer-left-wrap dd{
        display: inline-block;
        margin: 0 10px;
    }
    .footer-wrap-bg .ewm-wrap{
        padding-top: 20px;
        display: none;
    }
    .footer-wrap-bg .ewm-wrap .ewm{
        width: 30% !important;
        height: auto !important;
        margin: 0 auto;
        background-color: transparent !important;
    }
    .footer-wrap-bg  .mb-content{
        display: block !important;
    }
    .footer-wrap-bg  .mb-content h4{
        font-size: 18px;
        text-align: center;
        color: #707070;
        padding: 20px 0;
    }
    .footer-wrap-bg  .mb-content >div{
        display: flex;
    }
    .footer-wrap-bg  .mb-content >div >div{
        width: 50%;
    }
    .footer-wrap-bg  .mb-content >div .tel{
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 10px;
    }
    .footer-wrap-bg  .mb-content >div .tel a{
        display: block;
        padding: 10px 0;
    }
    .footer-wrap-bg  .mb-content >div .tel span{
        color: #707070;
        font-size: 20px;

    }
    .footer-wrap-bg  .mb-content >div .tel em{
        color: #707070;
        font-size: 16px;
    }
    .footer-wrap-bg  .mb-content >div .mb-ewm {
        text-align: center;

    }
    .footer-wrap-bg  .mb-content >div .mb-ewm img{
        width: 50% !important;
        margin: 0 auto;
        display: block;
    }
    .footer-wrap-bg  .mb-content >div .mb-ewm p{
        font-size: 15px;
        text-align: center;
        line-height: 2;
        color: #707070;
    }
    .company-num{
        margin-top: 10px !important;
        font-size: 15px !important;
    }
    #sub-nav ul a{
        height: 40px;
        line-height: 40px;
        margin: 0 !important;
    }
    #sub-nav ul li{
        font-size: 14px !important;
    }
    .module-nav-wrap {
        height: 40px !important;
    }
    .module-nav-wrap li{
        line-height: 40px !important;
        margin-right: 0 !important;
        padding: 0 !important;
    }
    .find_nav {
        width: 100%;
        height: 45px;
        background-color: #f9f9f9;
        position: fixed;
        top: 0;
        z-index: 99;
        border-bottom: 1px solid #ddd;
        display: -moz-box;
        display: -webkit-box;
        display: box;
    }
    .find_nav_left {
        height: 46px;
        position: relative;
        overflow: hidden;
        -moz-box-flex: 1;
        -webkit-box-flex: 1;
        box-flex: 1;
    }
    .find_nav_list {
        position: absolute;
        left: 0;
    }
    .find_nav_list ul {
        position: relative;
        white-space: nowrap;
        font-size: 0;
    }
    .find_nav_list ul li {
        display: inline-block;
        padding: 0 13px;
        position: relative;
    }
    .find_nav_list ul li::after{
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        display: block;
        width: 1px;
        height: 60%;
        transform: translateY(-50%);
        background-color: #ebebeb;
    }
    .find_nav_list ul li a {
        display: block;
        width: 100%;
        height: 100%;
        line-height: 46px;
        font-size: 18px;
        text-align: center;
        color: #666;
    }
    .find_nav_cur a::before,
    .nav_cur a::before{
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        display: block;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
        border-bottom: 6px solid #fff;
        transform: translateX(-50%);
    }
    .sideline {
        display: block;
        position: absolute;
        border: 0;
        height: 2px;
        background-color: #cb2457;
        left: 0;
        top: 43px;
        pointer-events: none;
        padding: 0 60;
    }
    .search_logo {
        display: block;
        width: 44px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        font-size: 14px;
        color: #cb2457;
    }
    #sub-nav{
        display: none;
    }

    .mb-news-wrap{
        display: block !important;
    }
    .mb-news-wrap .link{
        display: flex;
        margin-bottom: 2%;
    }
    .mb-news-wrap .link .img{
        width: 30%;
        flex-shrink: 0;
        margin-right: 10px;
    }
    .mb-news-wrap .link .text{
        flex: 1;

    }
    .mb-news-wrap .link .text h6{
        font-size: 16px;
        margin-bottom: 6px;
    }
    .mb-news-wrap .link .text p{
        font-size: 13px;
        color: #666;
        line-height: 1.4;
    }
    .mb-news-wrap .link .text div{
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .mb-news-wrap .link .text div i,
    .mb-news-wrap .link .text div span{
        color: #666;
    }
    .banner{
        display: none !important;
    }
    .mb-banner{
        display: block !important;
        min-height: 400px;
        background-color: #ebebeb;
    }
    .mb-banner img{
        width: 100%;
        display: block;
    }
    .mb-title{
        text-align: center;
        padding: 10px 0;
    }
}