@charset "UTF-8";

* {
    margin: 0 auto;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    /*    overflow: hidden;*/

    /*	max-width: 1920px;*/
    position: relative;
    font-size: 12px;
    font-family: '微软雅黑', 'Arial';
    margin: auto;
    background: white;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@font-face {
    font-family: 'century';
    src: url('../fonts/GOTHICB.TTF');
}

.content {
    width: 1400px;
    margin: auto;
}

.content2 {
    width: 1200px;
    margin: auto;
}

.nav-btn {
    position: fixed;
    top: 4px;
    right: 2%;
    z-index: 100;
    opacity: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    cursor: pointer;
    display: none;
    transform: scale(.8);
    -webkit-transform: scale(.8);
    opacity: 1;

}

.nav-btnop {
    opacity: 0;
}

.nav-btn span {
    width: 50px;
    height: 6px;
    display: block;
    background: white;
    margin: 0 0 10px 0;
    position: relative;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;

}

.nav-btn-blue span {
    background: #e16a00;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.nav-btn-blue2 span {
    background: white;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.nav-btn .nav-btn-span3 {
    width: 25px;
    float: right;

}

.nav-btn:hover {

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.nav-btn:hover .nav-btn-span1 {
    transform: translate(8.75%, 0);
    -ewbkit-transform: translate(8.75%, 0);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.nav-btn:hover .nav-btn-span2 {
    transform: translate(8.75%, 0);
    -ewbkit-transform: translate(8.75%, 0);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.nav-btn:hover .nav-btn-span3 {
    transform: translate(-25%, 0);
    -ewbkit-transform: translate(-25%, 0);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.nav-btnac {
    z-index: 60;
    opacity: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.nav-btn-colse .nav-btn-span1 {
    transform: translate(0%, 250%) rotate(45deg) !important;
    -webkit-transform: translate(0%, 250%) rotate(45deg) !important;
}

.nav-btn-colse .nav-btn-span2 {
    transform: translate(0%, 0%) rotate(-45deg) !important;
    -webkit-transform: translate(0%, 0%) rotate(-45deg) !important;
}

.nav-btn-colse .nav-btn-span3 {
    opacity: 0;
}


.nav-layer {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0);
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transition: transform 0.5s ease 0.3s, background 0.3s ease;
    -webkit-transition: transform 0.5s ease 0.3s, background 0.3s ease;
    display: block;
}

.nav-layerac {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    background: rgba(0, 0, 0, 0.6);
    -webkit-background: rgba(0, 0, 0, 0.6);
    transition: background 0.3s ease;
    -webkit-transition: background 0.3s ease;
}

.nav-layer .nav-layer-content {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background: #e16a00;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
    -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
}

.nav-layerac .nav-layer-content {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transition: all 0.5s cubic-bezier(0, 0, 0.58, 1);
    -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.58, 1);
}

.nav-layer-items {
    position: relative;
    height: 80%;
    top: 20%;
    padding: 0 5%;
    overflow: auto;
}

.nav-layer-more {
    position: absolute;
    right: 0;
    top: 14px;
    width: 20px;
    height: 20px;
    z-index: 3;
}

.nav-layer-more .line1 {
    width: 20px;
    height: 3px;
    background: white;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.nav-layer-more .line2 {
    height: 20px;
    width: 3px;
    background: white;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);

}

.nav-layer-moreac .line1 {}

.nav-layer-moreac .line2 {
    opacity: 0;

}

.nav-layer-items .nav-layer-item {
    margin: 4% 0;
    position: relative;
}

.nav-layer-items .nav-layer-item a {
    display: inline-block;
    position: relative;
    padding: 10px 0;
}

.nav-layer-items .nav-layer-item a b {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    display: block;
    transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
    -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
}

.nav-layer-items .nav-layer-item a:hover b {
    width: 100%;
    transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
    -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
}

.nav-layer-items .nav-layer-item span {
    color: white;
    font-size: 20px;
}

.nav-layer-items .nav-layer-item font {
    color: white;
    font-size: 16px;
}

.nav-layer-items .nav-layer-itemac {}



.nav-layer-items .nav-layer-item .nav-layer-item2 {
    position: relative;
    display: none;
}

.nav-layer-items .nav-layer-item .nav-layer-item2 a {
    display: block;
    padding: 6px 10px;
    color: white;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}


.header {
    background: rgba(62, 58, 57, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.nav1 {
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}

.nav2 {
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}

.nav1ac {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}

.navac {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}

.nav2 {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
}

.nav2ac {

    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}


.logo {
    width: 300px;
    float: left;
}

.header_ul {
    float: right;
    display: block;
}

.header_ul li {
    display: inline-block;
}

.header_ul li a {
    display: inline-block;
    color: white;
    font-size: 16px;
    padding: 6px 30px;
    margin: 25px 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    border-radius: 37px;
}

.header_ul li a.active {
    background: #ed6d00;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}






.footer_top {
    background: #313037;
    padding: 50px 0;
}

.footer_one {
    width: 28%;
    float: left;
    margin-right: 4%;

}

.footer_two {
    width: 23%;
    float: left;
    margin-right: 4%;
}

.footer_three {
    width: 30%;
    float: left;
    margin-right: 4%;
}

.footer_four {
    width: 6%;
    float: right;
}




















.footer_title {
    margin-bottom: 20px;
}

.footer_title span {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.footer_title font {
    font-size: 16px;
    color: white;
    font-weight: lighter;
    padding-top: 6px;
}

.footer_one_ul ul {
    width: 25%;
    float: left;
}

.footer_one_ul ul li {
    margin: 10px 0;
}

.footer_one_ul ul li a {
    color: #c9caca;
    font-size: 14px;
}

.footer_one_ul ul li .abold {
    font-weight: bold;
    color: white;
}


.fotter_form {}

.form_input {}

.form_input input {
    background: none;
    outline: none;
    border-bottom: 1px dashed #c9caca;
    height: 40px;
    display: block;
    width: 100%;
    color: #c9caca;
    /*输入文字、光标颜色*/
    -webkit-text-fill-color: #c9caca;
    /*输入文字、placeholder颜色*/
    caret-color: #c9caca;
    /*光标颜色*/
    font-size: 16px;
}

.form_input input:focus {
    background: none;
    outline: none;
}

.form_btn a {
    background: #ed6d00;
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
    margin-top: 16px;
    display: block;
    color: white;
}

.footer_contact p {
    margin-bottom: 10px;
}

.footer_contact p img {
    width: 20px;
    float: left;
}

.footer_contact p span {
    float: left;
    color: 14px;
    color: #c9caca;
    line-height: 1.6em;
    padding-left: 6px;
}

.footer_code span {
    color: 14px;
    color: #c9caca;
    display: block;
    text-align: center;
    padding: 6px 0;
    margin-bottom: 10px;
}


.copyright {
    background: black;
    padding: 10px 0;
    font-size: 12px;
    color: #b5b5b6;
    text-align: center;
}

.copyright a {
    color: #b5b5b6;
}

.title {
    padding: 20px 0;
    text-align: center;
    margin-bottom: 20px;
}

.title p {
    font-size: 45px;
    color: #3e3a39;
    font-family: 'century';
    display: block;
}

.title span {
    font-size: 32px;
    color: #ed6d00;
}

.title2 {
    padding: 20px 0;
    text-align: center;
    margin-bottom: 20px;
}

.title2 p {
    font-size: 45px;
    color: white;
    font-family: 'century';
    display: block;
}

.title2 span {
    font-size: 32px;
    color: #ed6d00;
}


.answer_box {
    padding: 40px 0 100px 0;
}

.answer_item {
    position: relative;
    border-bottom: 1px solid #ed6d00;
    padding: 20px 0;
}

.answer_item h6 {
    padding: 20px 0;
    position: relative;
    cursor: pointer;
}

.answer_item h6 span {
    width: 60px;
    height: 60px;
    color: white;
    line-height: 60px;
    text-align: center;
    border-radius: 4px;
    background: #ed6d00;
    display: block;
    float: left;
    font-size: 30px;
    position: absolute;
    left: 0;
    top: 0;
}

.answer_item h6 p {
    font-size: 16px;
    float: left;
    position: relative;
    padding: 0 20px 0 80px;
    line-height: 1.6em;
}

.answer_item div {
    display: none;
    border-top: 1px dashed #595757;
    position: relative;
    padding: 20px 0;
    margin-top: 20px;
}

.answer_item div span {
    width: 60px;
    height: 60px;
    color: white;
    line-height: 60px;
    text-align: center;
    border-radius: 4px;
    background: #595757;
    display: block;
    float: left;
    font-size: 30px;
    position: absolute;
    left: 0;
    top: 20px;
}

.answer_item div p {
    color: #595757;
    font-size: 16px;
    float: left;
    position: relative;
    padding: 0 20px 0 80px;
    line-height: 1.6em;
}



.news {
    padding: 40px 0 100px 0;
}

.news_items {
    display: block;
    padding: 30px;
    border-bottom: 1px solid #dcdddd;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.news_items:hover {
    background: #ffe8d5;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.news_thumb {
    width: 34%;
    float: left;
    border: 6px solid #f0862b;
    box-sizing: border-box;overflow: hidden;
    height: 185px;
}

.news_content {
    width: 66%;
    padding-left: 60px;
    box-sizing: border-box;
    float: left;
}

.news_content h6 {
    font-size: 18px;
    color: #595757;
    font-weight: bold;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_content span {
    font-size: 16px;
    color: #595757;
    font-weight: lighter;
    margin: 10px 0;
    display: block;
}

.news_content p {
    line-height: 1.6em;
    color: #595757;
    font-size: 14px;
    display: block;
    text-align: justify;
}

.news_content font {
    font-size: 14px;
    text-align: center;
    padding: 10px 26px;
    color: #f0862b;
    border: 1px solid #f0862b;
    display: inline-block;
    border-radius: 40px;
    margin-top: 20px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.news_items:hover font {
    background: #f0862b;
    color: white;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.main_page {
    text-align: center;
    font-size: 0;
    margin: 30px 0;
}

.main_page a {
    display: inline-block;
    border: 1px solid #d5d5d5;
    font-size: 12px;
    color: #747474;
    padding: 6px 10px;
    border-radius: 2px;
    overflow: hidden;
    margin: 0 2px;
}

.main_page a.active {
    color: white;
    background: #f0862b;
    border: 1px solid #f0862b;
}

.main_page a.submit {
    color: white;
    background: #f0862b;
    border: 1px solid #f0862b;
}

.main_page span {
    display: inline-block;
    border: 0px solid #d5d5d5;
    font-size: 12px;
    color: black;
    padding: 6px 4px;
    border-radius: 2px;
    overflow: hidden;
    margin: 0 2px;
}

.main_page font {
    display: inline-block;
    border: 1px solid #d5d5d5;
    font-size: 12px;
    color: black;
    border-radius: 2px;
    overflow: hidden;
}

.main_page input {
    width: 30px;
    height: 28px;
    outline: none;
}


.work {
    padding: 40px 0 100px 0;
}

.work_table_box {
    position: relative;
    width: 100%;
}

.work_table_box .th {
    width: 100%;
    font-size: 0;
}

.work_table_box .th p {
    display: inline-block;
    font-size: 16px;
    color: #313037;
}

.work_table_box .th .th_p_1 {
    width: 25%;
    padding: 10px;
    box-sizing: border-box;
}

.work_table_box .th .th_p_2 {
    width: 25%;
    padding: 10px;
    box-sizing: border-box;
}

.work_table_box .th .th_p_3 {
    width: 25%;
    padding: 10px;
    box-sizing: border-box;
}

.work_table_box .th .th_p_4 {
    width: 25%;
    padding: 10px;
    box-sizing: border-box;
}


.work_table {
    position: relative;
    width: 100%;
}

.work_table .td {
    width: 100%;
    font-size: 0;
    background: #f2f2f2;
    cursor: pointer;
}

.work_table .td p {
    display: inline-block;
    font-size: 16px;
    color: #313037;
}

.work_table .td .td_p_1 {
    width: 25%;
    padding: 10px;
    box-sizing: border-box;
}

.work_table .td .td_p_2 {
    width: 25%;
    padding: 10px;
    box-sizing: border-box;
}

.work_table .td .td_p_3 {
    width: 25%;
    padding: 10px;
    box-sizing: border-box;
}

.work_table .td .td_p_4 {
    width: 15%;
    padding: 10px;
    box-sizing: border-box;
}

.work_table .td .td_p_5 {
    width: 10%;
    padding: 10px;
    box-sizing: border-box;
}

.work_table .td .td_p_5 span {
    font-size: 14px;
    border: 1px solid #ed6d00;
    color: white;
    background: #ed6d00;
    padding: 6px 16px;
    display: inline-block;
    text-align: center;
    border-radius: 30px;
}

.td_content {
    background: #f2f2f2;
    padding: 30px;
    font-size: 14px;
    color: #898989;
    line-height: 1.6em;
    display: none;
}

.td_content p span {
    display: inline-block;
    margin-right: 40px;
    margin-bottom: 30px;
}

.td_content b {
    font-size: 18px;
    color: #ed6d00;
    font-weight: normal;
    position: relative;
    display: block;
}

.td_content b:after {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    left: -10px;
    top: 0;
    background: #ed6d00;
    position: absolute;
}

.td_content ul {
    margin-bottom: 50px;
    padding-top: 10px;
}

.td_content ul li {
    padding: 6px 0;
}

.work_table_box .work_table:nth-child(odd) .td {
    background: white;
}

.work_table_box .work_table.active .td_p_5 span {
    background: white;
    color: #ed6d00;
}

.work_table_box .work_table.active .td {
    background: #ed6d00;
}

.work_table_box .work_table.active .td p {
    color: white;
}

.work_form_box {
    margin: 40px 0;
}

.work_form_box .work_title span {
    display: inline-block;
    padding: 10px 70px;
    font-size: 18px;
    color: white;
    background: #ed6d00;
}

.work_form {
    width: 610px;
    padding-left: 40px;
    margin: 0;
}

.work_form_input {
    margin: 16px;
}

.work_form_input span {
    width: 50px;
    font-size: 14px;
    color: #898989;
    float: left;
    display: inline-block;
    padding-top: 10px;
}

.work_form_input input {
    width: 520px;
    font-size: 14px;
    color: #898989;
    float: left;
    display: block;
    height: 38px;
    border: 1px solid #898989;
    outline: none;
    padding: 2px 10px;
    box-sizing: border-box;
}

.work_form_input textarea {
    width: 520px;
    height: 120px;
    font-size: 14px;
    color: #898989;
    float: left;
    display: block;
    border: 1px solid #898989;
    outline: none;
    padding: 2px 10px;
    box-sizing: border-box;
    line-height: 1.6em;
}

.form_submit {
    text-align: center;
    padding: 30px 0;
}

.form_submit a {
    padding: 13px 30px;
    background: #ed6d00;
    color: white;
    font-size: 14px;
}



.master {
    margin: 40px 0;
}

.master_content {}

.master_content .master_desp {
    float: left;
    width: 45%;
    padding-right: 45px;
    box-sizing: border-box;
}

.master_content .master_desp h5 {
    color: #3e3a39;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.master_content .master_desp p {
    font-size: 14px;
    color: #3e3a39;
    line-height: 2em;
    text-align: justify;
}

.master_content .master_thumb {
    float: right;
    width: 55%;
}


.master_introduce .master_in_item {
    width: 24%;
    margin-right: 1.3333%;
    margin-bottom: 1%;
    float: left;
    position: relative;
    overflow: hidden;
}

.master_introduce .master_in_item:nth-child(4n) {
    margin-right: 0;
}

.master_introduce .master_in_item .master_in_desp {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: #ed6d00;
    color: white;
    padding: 20px 0;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
}

.master_in_item:hover .master_in_desp {
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.master_introduce .master_in_item .master_in_desp span {
    font-size: 18px;
    display: block;
}

.master_introduce .master_in_item .master_in_desp font {
    font-size: 14px;
    display: block;
    line-height: 1.6em;
    padding: 10px 0 0 0;
}

.master_in_item .master_pop {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: rgba(56, 56, 56, .8);
    overflow: auto;
    box-sizing: border-box;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.master_in_item:hover .master_pop {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
}

.master_in_item .master_pop h6 {
    color: white;
    text-align: center;
    font-size: 20px;
    padding: 10px 0;
}

.master_in_item .master_pop p {
    color: white;
    text-align: justify;
    font-size: 14px;
    line-height: 1.6em;
}



.master_swiper {
    position: relative;
}

.master_2 {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
}

.master_swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.master_swiper p {
    position: absolute;
    width: 100%;
    padding: 20px;
    text-align: center;
    color: white;
    background: rgba(56, 56, 56, .8);
    z-index: 2;
    bottom: 0;
    left: 0;
}

.master-button-prev {
    position: absolute;
    top: 50%;
    left: 24%;
    width: 46px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 4;
    cursor: pointer;
}

.master-button-next {
    position: absolute;
    top: 50%;
    right: 24%;
    width: 46px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 4;
    cursor: pointer;
}
.master-pagination{
    display: none;
}


.teacher_bg {
    background: #1a1a1b;
    overflow: hidden;
}

.teacher_tab {
    margin-bottom: 50px;
}

.teacher_tab .teacher_tab_item {
    float: left;
    width: 50%;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
    background: #595757;
    cursor: pointer;
}

.teacher_tab .teacher_tab_item.active {
    background: #ed6d00;
}


.btn_more {
    position: relative;
    width: 120px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: rgba(237, 109, 0, 0.3);
    border-radius: 50px;
    margin: 20px auto;
    display: block;
    overflow: hidden;
    cursor: pointer;
}

.btn_more p {
    color: white;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.btn_more em {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50px;
    transform: scale(0.78);
    -webkit-transform: scale(0.78);
    -moz-transform: scale(0.78);
    -ms-transform: scale(0.78);
    -o-transform: scale(0.78);
    transform-origin: center;
    display: block;
    background: #ed6d00;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.btn_more:hover em {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.teacher {
    padding: 40px 0;
}

.result {
    padding: 20px 0;
}

.result .result_item {
    float: left;
    width: 32.33333%;
    margin-right: 1%;
    margin-bottom: 4%;
    position: relative;
}

.result .result_item:nth-child(3n) {
    margin-right: 0;
}

.result .result_item p {
    font-size: 16px;
    color: #808080;
    padding: 0 10px;
    margin: 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.result .result_item .desp {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px 10px;
    background: #ed6d00;
    color: white;
    font-size: 14px;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.result .result_item .desp img {
    position: relative;
    float: right;
    width: 40px;
    position: absolute;
    right: 10px;
    top: 10px;
}



.result_page {
    text-align: center;
    padding: 20px 0;
}

.result_page a {
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 16px;
    color: #313037;
    display: inline-block;
    font-family: 'century';
}

.result_page a.active {
    background: #ff6d00;
    color: white;
    border-radius: 4px;
}

.chengji {
    background: #313036;
    position: relative;
    padding: 40px 0;
}

.chengji_content .chengji_item {
    width: 48%;
    float: left;
    margin-right: 4%;
    margin-bottom: 80px;
}

.chengji_content .chengji_item:nth-child(2n) {
    margin-right: 0;
}

.chengji_item1 .chengji_item_left {
    float: left;
    width: 46%;
    position: relative;
    z-index: 2;
}

.chengji_item1 .chengji_item_left em {
    position: absolute;
    width: 100%;
    height: 120%;
    border: 2px solid #ff9100;
    z-index: 3;
    left: 5%;
    top: -5%;
}



.chengji_item1 .chengji_item_right {
    float: left;
    width: 54%;
    padding: 20px 40px 20px 60px;
    box-sizing: border-box;
    background: #ed6d00;
    color: white;
    margin-top: 80px;
    min-height: 350px;
    position: relative;
}

.chengji_item1 .chengji_item_right:after {
    content: '';
    display: block;
    left: 0;
    top: 0;
    width: 25px;
    left: -25px;
    height: 100%;
    background: #ed6d00;
    position: absolute;
}

.chengji_item1 .chengji_item_right p {
    font-size: 28px;
}

.chengji_item1 .chengji_item_right span {
    font-size: 16px;
    padding: 10px 0;
    display: block;
}

.chengji_item1 .chengji_item_right font {
    font-size: 14px;
    line-height: 1.6em;
    display: block;
}







.chengji_item2 .chengji_item_left {
    float: left;
    width: 46%;
    position: relative;
    z-index: 2;
}

.chengji_item2 .chengji_item_left em {
    position: absolute;
    width: 100%;
    height: 120%;
    border: 2px solid #ff9100;
    z-index: 3;
    right: 5%;
    top: -5%;
}



.chengji_item2 .chengji_item_right {
    float: left;
    width: 54%;
    padding: 20px 40px 20px 60px;
    box-sizing: border-box;
    background: #ed6d00;
    color: white;
    margin-top: 80px;
    min-height: 350px;
    position: relative;
}

.chengji_item2 .chengji_item_right:after {
    content: '';
    display: block;
    top: 0;
    width: 25px;
    right: -25px;
    height: 100%;
    background: #ed6d00;
    position: absolute;
}

.chengji_item2 .chengji_item_right p {
    font-size: 28px;
}

.chengji_item2 .chengji_item_right span {
    font-size: 16px;
    padding: 10px 0;
    display: block;
}

.chengji_item2 .chengji_item_right font {
    font-size: 14px;
    line-height: 1.6em;
    display: block;
}

.chengji_show_box {
    padding: 40px 0;
}

.chengji_show {
    padding: 40px 0;
}

.chengji_show .chengji-slide {
    width: 15%;
    margin-right: 2%;
    float: left;
    position: relative;
    margin-bottom: 2%;
}
.chengji_show2 .chengji-slide {
    width: 8%;
    margin-right: 1%;
    float: left;
    position: relative;
    margin-bottom: 1%;
}

.chengji_show .chengji-slide:nth-child(6n) {
    margin-right: 0;
}
.chengji_show2 .chengji-slide:nth-child(6n) {
    margin-right: 1%;
}
.chengji_show .chengji-slide div {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.chengji_show .chengji-slide div p {
    padding: 6px 20px;
    background: #7f7e83;
}

.chengji_show .chengji-slide div span {
    background: #3e3a39;
    color: white;
    text-align: center;
    font-size: 14px;
    display: block;
    padding: 6px 0;
}

.chengji_show .chengji-slide div font {
    background: #ed6d00;
    color: white;
    font-size: 14px;
    text-align: center;
    display: block;
    padding: 6px 0;
}


.video_box {
    background: #313036;
    position: relative;
    padding: 40px 0;
}



.school_box {
    position: relative;
    padding: 40px 0;
    background: #efefef;
}

.school .school_item {
    width: 16.6666666%;
    float: left;
    box-sizing: border-box;
    border: 1px solid #dcdddd;
    background: white;
}

.school_item img {
    width: 80%;
}


.contact_1 {
    background: #e4e4e4;
    padding: 100px 0;
    position: relative;
}

.about {
    position: relative;
}

.about_left {
    width: 62.5%;
    padding-right: 10px;
    box-sizing: border-box;
    float: left;
}

.about_right {
    width: 37.5%;
    position: absolute;
    right: 0;
    height: 100%;
    background: white;
    right: 0;
    top: 0;
}

.about_right_inner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    text-align: justify;
    font-size: 14px;
    color: #727171;
}

.about_right_inner img {
    width: 80%;
}

.about_right_inner span {
    display: block;
    text-align: center;
    font-size: 16px;
    padding: 40px 0 20px 0;
}

.contact_2 {
    padding: 40px 0;

}


.contact_img {
    margin: 40px auto;
    width: 40%;
}

.contact_ul {
    position: relative;
    text-align: center;
    font-size: 0;
}

.contact_ul li {
    display: inline-block;
    width: 16%;
    margin: 0 4%;
}

.contact_yj {
    margin-top: 80px;
    padding-bottom: 40px;
}

.contact_yj_left {
    float: left;
    width: 54%;
}

.contact_yj_right {
    float: right;
    width: 42%;
    font-size: 18px;
    color: #595757;
    line-height: 1.6em;
}

.contact_yj_right b {}

.contact_yj_right p {}

.contact_3 {
    padding: 40px 0;
    background: #e4e4e4;
}

.contact_hj {
    padding: 40px 0;
}

.contact_hj .hj_1 {
    width: 49.5%;
    float: left;
    margin-right: 1%;
    margin-bottom: 1%;
}

.contact_hj .hj_2 {
    width: 49.5%;
    float: left;
    margin-bottom: 1%;
}

.contact_hj .hj_2 .img1 {
    margin-bottom: 2%;
}

.contact_hj .hj_2 .img2 {}

.contact_hj .hj_3 {
    width: 49.5%;
    float: left;
    margin-right: 1%;
}

.contact_hj .hj_4 {
    width: 49.5%;
    float: left;
}

.contact_4 {
    padding: 40px 0;
}


.lxwm {
    padding: 40px 0;
}

.lxwm_1 {
    width: 15%;
    margin-right: 4.5%;
    float: left;
    position: relative;
    border: 1px solid #dcdddd;
    box-sizing: border-box;
    padding: 54px 40px;
}

.lxwm_2 {
    width: 34%;
    margin-right: 4.5%;
    float: left;
    position: relative;
    border: 1px solid #dcdddd;
    box-sizing: border-box;
    padding: 40px 20px;
}

.lxwm_3 {
    width: 42%;
    float: left;
    position: relative;
    border: 1px solid #dcdddd;
    box-sizing: border-box;
    padding: 40px 60px;
}

.lxwm_1 > img {
    width: 60px;
    position: absolute;
    left: 12px;
    top: -30px;
}

.lxwm_2 > img {
    width: 60px;
    position: absolute;
    left: 12px;
    top: -30px;
}

.lxwm_3 > img {
    width: 60px;
    position: absolute;
    left: 12px;
    top: -30px;
}

.lxwm_1 p {
    line-height: 2em;
    font-size: 14px;
    color: #3e3a39;
}

.lxwm_2 p {
    line-height: 2em;
    font-size: 14px;
    color: #3e3a39;
}

.lxwm_3 ul {
    font-size: 0;
    text-align: center;
}

.lxwm_3 ul li {
    width: 24%;
    margin: 0 4%;
    display: inline-block;
}

.lxwm_3 ul li span {
    display: block;
    font-size: 14px;
    color: #3e3a39;
}


.yk_map {
    width: 100%;
    position: relative;
    margin: 40px 0;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 280px;
    border: #ccc solid 1px;
    font-size: 12px;
    box-sizing: border-box;
}

.BMap_Marker img {
    width: auto;
}


.class_box {
    background: #fafafa;
    padding: 40px 0;
}

.class_card {
    margin: 40px 0;
}


.class_card .class_card_inner {
    width: 32%;
    margin-right: 2%;
    position: relative;

    padding: 30px;
    box-sizing: border-box;
    float: left;
    margin-bottom: 2%;
    border-radius: 10px;
    height: 200px;

    background: #ef6717;
    background: -webkit-linear-gradient(left top, #ef6a19, #f09d22);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(bottom right, #ef6a19, #f09d22);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(bottom right, #ef6a19, #f09d22);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(to bottom right, #ef6a19, #f09d22);
    /* 标准的语法（必须放在最后） */

}
.class_card .class_card_inner_dance{
	 background: #ef6717;
    background: -webkit-linear-gradient(left top, #4a4b9d, #a3a4fe);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(bottom right, #4a4b9d, #a3a4fe);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(bottom right, #4a4b9d, #a3a4fe);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(to bottom right, #4a4b9d, #a3a4fe);
    /* 标准的语法（必须放在最后） */
}
.class_card_inner_img img{
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	-o-transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
	-moz-transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
	width:80%;
}
.class_card .class_card_inner:nth-child(3n) {
    margin-right: 0;
}

.class_card .class_card_inner h6 {
    color: white;
    font-size: 18px;
    font-weight: lighter;
}

.class_card .class_card_inner span {
    color: white;
    font-size: 18px;

}

.class_card .class_card_inner p {
    color: white;
    font-size: 14px;
    line-height: 1.6em;
    padding-top: 16px;
    text-align: justify;
}




.class_type_box {
    background: #313037;
    padding: 40px 0;
}


.class_type_1 {
    position: relative;
    margin-bottom: 130px;
}

.class_type_1 .class_type_desp {
    width: 44%;
    float: left;
    color: white;
}

.class_type_1 .class_type_desp h5 {
    font-size: 30px;
    padding: 30px 0 6px 0;
}

.class_type_1 .class_type_desp h6 {
    font-size: 30px;
}

.class_type_1 .class_type_desp p {
    font-size: 16px;
    line-height: 2em;
    margin-top: 50px;
    text-align: justify;
    letter-spacing: 2px;
}

.class_type_1 .class_type_img {
    width: 50%;
    float: right;
    position: relative;

}

.class_type_1 .class_type_img em {
    position: absolute;
    width: 30%;
    height: 110%;
    right: 0;
    top: 50%;
    border: 1px solid #ff6d00;
    z-index: 1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.class_type_1 .class_type_img img {
    position: relative;
    z-index: 2;
    width: 94%;
}


.class_type_2 {
    position: relative;
    margin-bottom: 130px;
}

.class_type_2 .class_type_desp {
    width: 44%;
    float: right;
    color: white;
    text-align: right;
    position: absolute;
    right: 0;
    top: 0;
}

.class_type_2 .class_type_desp h5 {
    font-size: 30px;
    padding: 30px 0 6px 0;
}

.class_type_2 .class_type_desp h6 {
    font-size: 30px;
}

.class_type_2 .class_type_desp p {
    font-size: 16px;
    line-height: 2em;
    margin-top: 50px;
    text-align: right;
    letter-spacing: 2px;
}

.class_type_2 .class_type_img {
    width: 50%;
    float: left;
    position: relative;

}

.class_type_2 .class_type_img em {
    position: absolute;
    width: 30%;
    height: 110%;
    left: 0;
    top: 50%;
    border: 1px solid #ff6d00;
    z-index: 1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.class_type_2 .class_type_img img {
    position: relative;
    z-index: 2;
    width: 94%;
}

.class_ts_box {
    padding: 80px 0;
}

.class_ts {
    position: relative;
}

.class_ts_img {
    width: 50%;
    float: left;
}

.class_ts_desp {
    width: 44%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.class_ts_desp h5 {
    font-size: 45px;
    color: #3e3a39;
    font-family: 'century';
    display: block;
}

.class_ts_desp h6 {
    font-size: 32px;
    color: #ed6d00;
}

.class_ts_desp p {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: justify;
    font-size: 16px;
    color: #595757;
    line-height: 1.6em;
    letter-spacing: 2px;
}

.class_sign {
    padding: 40px 0;
}

.sign_img_2 {
    width: 20%;
}



.banner {
    height: 500px;
    position: relative;
    background-size: cover;
}

.crumbs {
    padding: 26px 0;
    font-size: 0;
}

.crumbs img {
    width: 18px;
    float: left;
    margin-right: 2px;
}

.crumbs span {
    display: inline-block;
    float: left;
    margin-right: 2px;
    font-size: 14px;
    color: #333333;
}

.crumbs a {
    display: inline-block;
    float: left;
    margin-right: 6px;
    font-size: 14px;
    color: #333333;
}

.content_show {
    width: 800px;
    margin: 0;
    padding: 40px 0;
}

.show {
    position: relative;
    background: white;

    padding-bottom: 20px;
}

.show_title {
    padding: 30px;
}

.show_title h4 {
    font-size: 20px;
    float: left;
    font-weight: bold;
}

.show_title span {
    float: right;
    font-size: 14px;
}

/*
.show_content p {
    padding: 10px 30px;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}
*/

.show_content {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.show_btn {
    position: relative;
    margin: 20px 0;
    text-align: right;
}

.show_btn a {
    display: inline-block;
    padding: 10px 30px;
    background: white;
    color: #ff6000;
    font-size: 14px;
    border: 2px solid #ff6000;
    margin: 10px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.show_btn a:hover {
    border: 2px solid #ff6000;
    background: #ff6000;
    color: white;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.new_school_title{
    text-align: center;
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ed6d00;
}
.new_school .swiper-container{
	height: 200px;
}
.new_school{
    position: relative;
    margin-bottom: 20px;
}
.school-swiper1 .swiper-slide{
    height: 200px;
    width: auto;
}
.school-swiper1 img{
    width: auto;
    height: 100%;
}
.new_school .school-1-pagination{
    position: absolute;
    bottom: 10px;
    text-align: center;
    z-index: 10;
}
.school-1-pagination .swiper-pagination-bullet{
    background: white;
    opacity: 1;
}
.school-1-pagination .swiper-pagination-bullet-active{
    background: #ed6d00;
}
.school-swiper2 .swiper-slide{
    height: 200px;
    width: auto;
}
.school-swiper2 img{
    width: auto;
    height: 100%;
}
.new_school .school-2-pagination{
    position: absolute;
    bottom: 10px;
    text-align: center;
    z-index: 10;
}
.school-2-pagination .swiper-pagination-bullet{
    background: white;
    opacity: 1;
}
.school-2-pagination .swiper-pagination-bullet-active{
    background: #ed6d00;
}

.school-swiper3 .swiper-slide{
    height: 200px;
    width: auto;
}
.school-swiper3 img{
    width: auto;
    height: 100%;
}
.new_school .school-3-pagination{
    position: absolute;
    bottom: 10px;
    text-align: center;
    z-index: 10;
}
.school-3-pagination .swiper-pagination-bullet{
    background: white;
    opacity: 1;
}
.school-3-pagination .swiper-pagination-bullet-active{
    background: #ed6d00;
}

.school-button{
    position: absolute;
    top: 50%;
    width: 40px;
    z-index: 10;
    transform: translateY(-50%);
    cursor: pointer;
}
.school-button img{
    width: 100%;
	height:auto;
}
.school-1-btn-l{
    left: 10px;
}
.school-1-btn-r{
    right: 10px;
}
.school-2-btn-l{
    left: 10px;
}
.school-2-btn-r{
    right: 10px;
}
.school-3-btn-l{
    left: 10px;
}
.school-3-btn-r{
    right: 10px;
}



.img_360 {
    /* margin-bottom: 40px; */
}

.img_360 a {
    width: 18%;
    float: left;
    margin-right: 2%;
	margin-bottom:2%;
    display: block;
    position: relative;
    overflow: hidden;
}

.img_360 a:nth-child(5n) {
    margin-right: 0;
}
.iconplay {
    position: absolute;
    width: 40px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.img_360 a .img1 {
    position: relative;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.img_360 a:hover .img1 {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}




@media screen and (max-width: 1500px) {

    .content {
        width: 1200px;
    }

    .logo {
        width: 240px;
    }

    .header_ul li a {
        margin: 17px 0;
    }

   

}

@media screen and (max-width: 1440px) {

    .banner {
        height: 420px;
    }

    .title p {
        font-size: 40px;
    }

    .title span {
        font-size: 28px;
    }

    .title2 p {
        font-size: 40px;
    }

    .title2 span {
        font-size: 28px;
    }

    .video_box {
        padding: 0;
    }
    .class_ts_desp h5 {
        font-size: 40px;
        }
.class_ts_desp h6 {
    font-size: 28px;
    }
    
    
    
}

@media screen and (max-width: 1366px) {
    .footer_three {
        width: 33%;
        float: left;
        margin-right: 2%;
    }

    .header_ul li a {

        font-size: 14px;
        padding: 6px 20px;
    }

    .content {
        width: 1000px;
    }

    .content2 {
        width: 1000px;
    }

    .chengji_item1 .chengji_item_right {
        margin-top: 30px;
        min-height: 320px;
        padding: 20px 20px 20px 40px;
    }

    .chengji_item2 .chengji_item_right {
        margin-top: 30px;
        min-height: 320px;
        padding: 20px 20px 20px 40px;
    }




.about_right_inner span {
    padding: 20px 0 10px 0;
}

.contact_yj_right {
    font-size: 16px;
    }
    .contact_yj{
        padding-bottom: 20px;
    }
.lxwm_1 {
    width: 18%;
    margin-right: 2.5%;}
.lxwm_2 {
    width: 40%;
    margin-right: 2.5%;
    }
    .lxwm_3 {
        width: 37%;
        padding: 40px 24px;
    }
    
    .lxwm_3 ul li {
    width: 28%;
        margin: 0 2%;
    }
    
      .work_table .td .td_p_4 {
        width: 13%;}
    
    
    .work_table .td .td_p_5 {
        width: 12%;}
    
    
    
    
    
    
    
    

}

@media screen and (max-width: 1366px) {}


@media screen and (max-width: 1080px) {
    .content {
        width: 750px;
    }

    .content2 {
        width: 750px;
    }

    .logo {
        width: 170px;
    }

    .header_ul li a {
        font-size: 14px;
        padding: 6px 14px;
        margin: 9px 0;
    }

    .footer_one {
        display: none;
    }

    .footer_two {
        width: 44%;
    }

    .footer_three {
        width: 50%;
        margin-right: 0;
    }

    .footer_four {
        float: none;
        width: 100%;
        clear: both;
        padding-top: 40px;
        text-align: center;
        font-size: 0;
    }

    .footer_code {
        width: 28%;
        margin: 0 1.5%;
        display: inline-block;
    }



    .banner {
        height: 330px;
    }

    .news_content {
        padding-left: 30px;

    }

    .news_content p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }


    .chengji_item1 .chengji_item_right p {
        font-size: 20px;
    }

    .chengji_item1 .chengji_item_right span {
        font-size: 14px;
        padding: 8px 0;
    }

    .chengji_item1 .chengji_item_right font {
        font-size: 12px;
    }

    .chengji_item2 .chengji_item_right p {
        font-size: 20px;
    }

    .chengji_item2 .chengji_item_right span {
        font-size: 14px;
        padding: 8px 0;
    }

    .chengji_item2 .chengji_item_right font {
        font-size: 12px;
    }


    .chengji_item1 .chengji_item_right {
        margin-top: 10px;
        min-height: 320px;
        padding: 20px 20px 20px 30px;
    }

    .chengji_item2 .chengji_item_right {
        margin-top: 10px;
        min-height: 320px;
        padding: 20px 20px 20px 30px;
    }

    .chengji_content .chengji_item {
        margin-bottom: 50px;
    }

    .title p {
        font-size: 36px;
    }

    .title span {
        font-size: 26px;
    }

    .title2 p {
        font-size: 36px;
    }

    .title2 span {
        font-size: 26px;
    }




    .chengji_show .chengji-slide {
        width: 23.5%;
        margin-right: 2%;
        float: left;
        position: relative;
        margin-bottom: 2%;
    }

    .chengji_show .chengji-slide:nth-child(6n) {
        margin-right: 2%;
    }

    .chengji_show .chengji-slide:nth-child(4n) {
        margin-right: 0;
    }

    .result .result_item .desp {
        padding: 16px 10px;
    }

    .result .result_item .desp img {

        width: 30px;
    }



    .answer_item h6 p {
        font-size: 14px;
        float: left;
        position: relative;
        padding: 0 10px 0 50px;
    }


    .answer_item h6 span {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }

    .answer_item h6 {
        padding: 8px 0;
    }

    .answer_item {
        position: relative;
        border-bottom: 1px solid #ed6d00;
        padding: 10px 0;
    }

    .answer_item div p {
        color: #595757;
        font-size: 14px;
    }

    .answer_item div span {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }

    .answer_item div p {
        font-size: 14px;

        padding: 0 10px 0 50px;
    }


    .answer_box {
        padding: 40px 0;
    }

    
    .class_card .class_card_inner h6 {
        font-size: 16px;
    }
    .class_card .class_card_inner span {
        font-size: 16px;
    }
    
    
    .class_card .class_card_inner {
        padding: 20px;
    }
    .class_card_inner_img img{
		width:100%;
	}
    .class_card{
        margin: 0;
    }
    
    .class_type_1 .class_type_desp h5 {
        font-size: 24px;
        padding-top: 0;
    }
    
    .class_type_1 .class_type_desp h6 {
        font-size: 26px;}
    
    .class_type_1 .class_type_desp p {
    font-size: 14px;
    line-height: 2em;
    margin-top: 18px;
        letter-spacing: 1px;
    line-height: 1.6em;
    }
    
    
    .class_type_1 .class_type_desp {
        width: 48%;}
    
    .class_type_2 .class_type_desp h5 {
        font-size: 24px;
        padding-top: 0;
    }
    
    .class_type_2 .class_type_desp h6 {
        font-size: 26px;}
    
    .class_type_2 .class_type_desp p {
    font-size: 14px;
    line-height: 2em;
    margin-top: 18px;
        letter-spacing: 1px;
    line-height: 1.6em;
    }
    
    
    .class_type_2 .class_type_desp {
        width: 48%;}
    
    .class_type_1{
        margin-bottom: 50px;
    }
    .class_type_2{
        margin-bottom: 50px;
    }
    .class_ts_desp{
        position: relative;
        float: right;
    }
    .class_ts_desp p {
        position: relative;
        bottom: 0;
        left: 0;
        text-align: justify;
        font-size: 14px;
        color: #595757;
        line-height: 1.6em;
        letter-spacing: 1px;
        margin-top: 10px;
    }
    .class_ts_box{
        padding:40px 0 0 0;
    }
    .class_ts_desp h5 {
    font-size: 36px;
}
    
    
    
    
    
    
    
    
    .about_left {
        width: 58%;}
    
    .about_right {
        width: 42%;
    }
    .about_right_inner{
        width: 92%;
        font-size: 12px;
    }
    
    
    .about_right_inner img {
    width: 50%;
        margin-bottom: 6px;
}
    
    .about_right_inner span{
        padding: 6px 0;
        display: none;
    }
    
    .contact_1{
        padding: 40px 0;
    }
    
    .contact_yj_right {
    font-size: 14px;
        padding-left: 20px;
        box-sizing: border-box;
}
    .contact_yj_right br{
        display: none;
    }
    .contact_yj_left{
        width: 58%;
    }
    
    .contact_yj{
        margin-top: 30px;
    }
    .contact_hj{
        padding: 0 0 20px 0;
    }
    .yk_map{
        margin: 20px 0;
    }
    
    .lxwm_1 {
        width: 40%;
        margin-right: 2%;
    }
    .lxwm_2{
        width: 58%;
        margin-right: 0;
    }
    .lxwm_3{
        margin-top: 8%;
        width: 100%;
    }
    .lxwm_3 ul{
        width: 60%;
        margin: auto;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    .work_table_box .th .th_p_3 {
        width: 20%;
    }
    
    .work_table .td .td_p_3{
        width: 20%;
    }
    .work_table .td .td_p_4 {
    width: 15%;
}
    .work_table .td .td_p_5 {
    width: 15%;
}
    
    
    
    
    
  .master_content .master_desp h5 {

      font-size: 24px;
    }  
    
    .master_content .master_desp {

        padding-right: 30px;
    }
    
    .master_introduce {
		font-size:0;
		vertical-align:top;
		text-align:left;
	}
    .master_introduce .master_in_item{
        width: 24%;
        margin-right: 1%;
        margin-bottom: 1%;
		display:inline-block;
		float:none;
    }
    .master_introduce .master_in_item:nth-child(4n) {
        margin-right: 0%;
    }
    .master_introduce .master_in_item:nth-child(3n) {
        margin-right: 1%;
    }
    
    .result .result_item {
        width: 48%;
        margin-right: 4%;
    
    }
    .result .result_item:nth-child(3n) {
   margin-right: 4%;
}
    .result .result_item:nth-child(2n) {
    margin-right: 0;
}
    .doyoo_f_chat{
	z-index:-10000!important;
}

.about_right{
    position: relative;
    right: 0;
    background: white;
    float: right;
}
.about_right_inner{
	 position: relative;
	  left: 0%;
    top: 0%;
	transform: translate(0%, 0%); 
    -webkit-transform: translate(0%, 0%); 
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
	padding:10px 0;
}
    
	.footer_code {
width: 15%;
}



.img_360 a {
	width:23.5%;
    margin-right: 2%;
	margin-bottom:2%;
}

.img_360 a:nth-child(5n) {
    margin-right: 2%;
}
.img_360 a:nth-child(4n) {
    margin-right: 0%;
}

}


@media screen and (max-width: 850px) {
	.footer_code {
width: 28%;
}
	.doyoo_f_chat{
	z-index:2147483601!important;
}
    .new_school_title{
        font-size: 20px;
    }
    .header_ul {
        display: none;
    }

    .banner {
        height: 140px;
        margin-top: 48px;
    }
    .header{
         transform: translateY(0%);
        -webkit-transform: translateY(0%);
    }
    .content {
        width: 96%;
    }

    .content2 {
        width: 96%;
    }

    .nav-btn {
        display: block;
        opacity: 1;
    }

    .footer_two,
    .footer_three {
        width: 100%;
        float: none;
        margin-right: 0%;
    }

    .footer_three {
        margin-top: 30px;
    }

    .footer_top {
        padding: 40px 0 20px 0;
    }



    .news_thumb {
        float: none;
        width: 100%;
        margin-bottom: 20px;
    }

    .news_content {
        float: none;
        padding: 0;
        width: 100%;
    }

    .news {
        padding: 20px 0;
    }

    .news_items {
        display: block;
        padding: 10px;
    }



    .chengji_content .chengji_item {
        width: 100%;
        float: none;
        margin-right: 0%;
        margin-bottom: 80px;
    }

    .chengji_item1 .chengji_item_left em,
    .chengji_item2 .chengji_item_left em {
        display: none;
    }

    .chengji_item1 .chengji_item_left {
        float: left;
        width: 40%;
    }

    .chengji_item1 .chengji_item_right {
        width: 60%;
        min-height: auto;
        padding: 20px 20px 20px 20px;
        position: absolute;
        right: 0;
        top: 0;
        height: auto;
    }

    .chengji_content .chengji_item {
        position: relative;
    }

    .chengji_item2 .chengji_item_left {
        float: left;
        width: 40%;
    }

    .chengji_item2 .chengji_item_right {
        width: 60%;
        min-height: auto;
        padding: 20px 20px 20px 20px;
        position: absolute;
        right: 0;
        top: 0;
        height: auto;
    }
    .chengji_item2 .chengji_item_right:after {
        content: '';
        display: block;
        top: 0;
        width: 25px;
        left: -25px;
        right: auto;
        height: 100%;
        background: #ed6d00;
        position: absolute;
    }
    .chengji {
        padding: 20px 0;
    }
    .title2 p {
        font-size: 30px;
    }

    .title2 span {
        font-size: 20px;
    }

    .title p {
        font-size: 30px;
    }

    .title span {
        font-size: 20px;
    }

    .chengji_show {
        padding: 0px 0;
    }

    .teacher {
        padding: 20px 0;
    }

    .result .result_item {
        float: left;
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%;
        position: relative;
    }
    .result .result_item:nth-child(3n) {
        margin-right: 4%;
    }

    .result .result_item:nth-child(2n) {
        margin-right: 0;
    }

    .school_box {
        padding: 20px 0;
    }
    .chengji_show .chengji-slide {
        width: 22%;
        margin-right: 4%;
    }
.chengji_show .chengji-slide:nth-child(6n) {
        margin-right: 4%;
    }
    .chengji_show .chengji-slide:nth-child(4n) {
        margin-right: 0;
    }
	
	.chengji_show2 .chengji-slide {
        width: 12%;
        margin-right: 2.66%;
    }

    .chengji_show2 .chengji-slide:nth-child(4n) {
        margin-right: 2.66%;
    }
	.chengji_show2 .chengji-slide:nth-child(6n) {
    margin-right: 2.66%;
}
	.chengji_show2 .chengji-slide:nth-child(7n) {
        margin-right: 0%;
    }
	
    .chengji_show .chengji-slide div p {
        display: none;
    }
    .chengji_show .chengji-slide div font {
        font-size: 12px;
    }
    .result .result_item {
        margin: 0;
        margin-bottom: 2%;
        width: 100%;
        float: none;
    }
    .school .school_item {
        width: 20%;
    }
    .crumbs {
        display: none;
    }
    .content_show {
        width: 100%;
        margin: 0;
        padding: 20px 0;
    }
    .show_content p {
        padding: 10px 10px;
    }
    .show_title {
        padding: 10px;
    }
    .class_box{
        padding: 20px 0;
    }
    .class_card .class_card_inner{
        margin-right: 0;
        width: 100%;
        height: auto;
    }
	.class_card_inner_img{
		display:none;
	}
	.class_card_inner_img img{
		position:relative;
		top:0;
		left:0;
		transform:translate(0);
		-o-transform:translate(0);
		-ms-transform:translate(0);
		-moz-transform:translate(0);
		-webkit-transform:translate(0);
		width:60%;
	}
	
    .class_type_box{
        padding: 20px 0;
    }

    .class_type_1 .class_type_desp{
        float: none;
        width: 100%;
    }
    .class_type_1 .class_type_img em,.class_type_2 .class_type_img em{
        display: none;
    }
    .class_type_1 .class_type_img{
         float: none;
        width: 100%;
        margin-top: 10px;
    }
    .class_type_1 .class_type_img img{
width: 100%}
    
    .class_type_2 .class_type_desp{
        float: none;
        width: 100%;
        text-align: left;
        position: relative;
    }
    
    .class_type_2 .class_type_img{
         float: none;
        width: 100%;
        margin-top: 10px;
    }
    
    .class_type_2 .class_type_img img{
width: 100%}
    
    .class_type_2 .class_type_desp p{
        text-align: justify;
    }
    
    
    
    .class_type_1 .class_type_desp h5{
        text-align: center;
    }
    .class_type_1 .class_type_desp h6{
        text-align: center;
    }
    .class_type_2 .class_type_desp h5{
        text-align: center;
    }
    .class_type_2 .class_type_desp h6{
        text-align: center;
    }

    
    
    .class_ts_img{
        position: relative;
        float: none;
        width: 100%;
    }
    
    .class_ts_desp{
        float: none;
        width: 100%;
        margin-top: 16px;
    }
    .class_ts_desp h5{
        text-align: center;
        font-size: 30px;
    }
    .class_ts_desp h6{
        text-align: center;
        font-size: 20px;
    }
    
    .sign_img_2{
        width: 40%;
    }
    
    
    
    
    
    .about_left{
        float: none;
        width: 100%;
        padding: 0;
    }
    .about_right{
        position: relative;
        width: 100%;
        height: auto;
    }
    .about_right_inner{
        position: relative;
        top: auto;
        left: auto;
        transform: translate(0);
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
    }
    .about_right_inner{
        font-size: 16px;
    }
    .about_right_inner{
        padding: 20px 0;
    }
    .contact_1,.contact_2,.contact_3,.contact_4{
        padding: 20px 0;
    }
    .contact_img{
        margin: 20px auto;
        width: 100%;
    }
    .contact_ul li {
        display: inline-block;
        width: 38%;
        margin: 0 4%;
    }
    
    .contact_yj_left{
        display: none;
    }
    .contact_yj_right{
        padding: 0;
        width: 100%;
        float: none;
        text-align: center;
    }
    .contact_yj_right br{
        display: block;
    }
    
    .contact_yj_right b{
        font-size: 16px;
        padding-bottom: 10px;
        display: block;
    }
    
    
    
    .contact_hj .hj_1 {
        width: 100%;
        float: none;
        margin-right: 0%;
        margin-bottom: 1%;
    }
    
    .contact_hj .hj_2{
         width: 100%;
        float: none;
    }
    .contact_hj .hj_3 {
   width: 100%;
        float: none;
}
    
    .contact_hj .hj_4 {
   width: 100%;
        float: none;
}
    
    .lxwm_1 {
    width: 100%;
    margin-right: 0%;
        float: none;
}
    
     .lxwm_2 {
    width: 100%;
    margin-right: 0%;
        float: none;
             margin-top: 10%;
}
     .lxwm_3 {
    width: 100%;
    margin-right: 0%;
        float: none;
             margin-top: 10%;
         padding: 40px 16px;
}
    .lxwm_3 ul {
    width: 100%;
    margin: auto;
}
    
    
    .work{
        padding: 20px 0;
    }
    
    
    .work_table_box .th .th_p_3{
        display: none;
    }
    
    .work_table .td .td_p_3{
        display: none;
    }
    .work_table_box .th .th_p_4{
        display: none;
    }
    .work_table .td .td_p_4{
        display: none;
    }
    
    .work_table_box .th .th_p_1,.work_table .td .td_p_1,.work_table_box .th .th_p_2,.work_table .td .td_p_2{
        width: 34%;
    }
    .work_table .td .td_p_5 {
        width: 32%;
    }
    .td_content p span {
        display: block;
        margin-right: 0;
        margin-bottom: 6px;
    }
    .td_content{
        padding: 20px;
    }
    .td_content ul li{
        padding: 2px 0;
    }
    
    .td_content ul{
        margin-bottom: 20px;
    }
    
    .work_form_input span{
        display: none;
    }
    .work_form{
        width: 100%;
        padding: 0;
    }
    .work_form_input{
        margin: 10px 0;
    }
    .work_form_input input,.work_form_input textarea{
        width: 100%;
    }
    .work_form_box .work_title span {
    padding: 10px 30px;
        font-size: 16px;
    }
    .work_form_box{
        margin: 20px 0;
    }
    
    
    .master{
        margin: 20px 0;
    }
    
    .master_content .master_desp {
        float: none;
        width: 100%;
        padding-right: 0;
    }
    .master_content .master_thumb {
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    
    
    
    .master_introduce .master_in_item{
        width: 48%;
        margin-right: 4%;
        margin-bottom: 2%;
    }
    .master_introduce .master_in_item:nth-child(4n) {
        margin-right: 4%;
    }
    .master_introduce .master_in_item:nth-child(3n) {
        margin-right: 4%;
    }
    .master_introduce .master_in_item:nth-child(2n) {
        margin-right: 0;
    }
    
    
    .master_in_item .master_pop{
        display: none;
    }
    
    .master_in_item:hover .master_in_desp{
        transform: translateY(0%);
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
    }
    
    .master_2{
        margin: 20px 0;
    }
    .master_swiper p{
        padding: 10px 0;
        font-size: 16px;
    }
    .master-button-prev{
        display: none;
    }
    .master-button-next{
        display: none;
    }
    .master-pagination{
        position: relative;
        width: 100%;
        padding-top: 6px;
        display: block;
    }
    .master-pagination .swiper-pagination-bullet{
        margin:0 2px;
    }
    .master-pagination .swiper-pagination-bullet-active{
        opacity: 1;
        background: #ed6d00;
    }
    .title{
        margin-bottom: 10px;
    }
    .title2{
        margin-bottom: 10px;
    }
    .master_introduce .master_in_item .master_in_desp font {
        font-size: 12px;}
    .master_introduce .master_in_item .master_in_desp span {
        font-size: 16px;}
    
	.img_360 a {
	width:32%;
    margin-right: 2%;
	margin-bottom:2%;
}

.img_360 a:nth-child(5n) {
    margin-right: 2%;
}
.img_360 a:nth-child(4n) {
    margin-right: 2%;
}
	.img_360 a:nth-child(3n) {
    margin-right: 0%;
}
	
}