@charset "utf-8";

* {
    padding: 0;
    margin: 0;
}/*去掉所有标签之间的默认间隙*/
html,body {
    width: 100%;
    margin: 0 auto;
    /*设置所有body中所有div居中显示*/
    font-family: "微软雅黑", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #FFFFFF;
    font-size: 13px;
}

input {
    outline: none!important;
    /*去除蓝色边框*/
}

ul {
    list-style: none;
}/*去掉无序列表的项目符号*/
ol {
    list-style: none;
}/*去掉无序列表的项目符号*/
a {
    text-decoration: none;
}/*去掉超级链接的下划线*/
img {
    border: none;
}/*去掉图片加载完链接之后的边框*/
a {
    color: black
}

a:link {
    text-decoration: none!important;
}

a:visited {
    text-decoration: none!important;
}

a:hover {
    text-decoration: none!important;
}

a:active {
    text-decoration: none!important;
}
/*
background: url("../images/smal_bj.png") no-repeat;*/
@charset "utf-8";

* {
    padding: 0;
    margin: 0;
}

html,body {
    width: 100%;
    margin: 0 auto;
    font-family: "微软雅黑", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #FFFFFF;
    font-size: 13px;
}

input {
    outline: none!important;
}

ul {
    list-style: none;
}

ol {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    border: none;
}

a {
    color: black
}

a:link {
    text-decoration: none!important;
}

a:visited {
    text-decoration: none!important;
}

a:hover {
    text-decoration: none!important;
}

a:active {
    text-decoration: none!important;
}
#happy_new{
    display: none;
}
#loading {
    display: none;
    background-color: #ffd34e;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    margin-top: 0px;
    top: 0px;
}
.helpTips {
    animation-name: upAnimation;
    transform-origin: center bottom;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-delay: .5s;
}
@keyframes upAnimation
{
    0% {
        transform: rotate(0deg);
        transition-timing-function: cubic-bezier(0.215,.61,.355,1);
    }
    10% {
        transform: rotate(-12deg);
        transition-timing-function: cubic-bezier(0.215,.61,.355,1);
    }
    20% {
        transform: rotate(12deg);
        transition-timing-function: cubic-bezier(0.215,.61,.355,1);
    }
    28% {
        transform: rotate(-10deg);
        transition-timing-function: cubic-bezier(0.215,.61,.355,1);
    }
    36% {
        transform: rotate(10deg);
        transition-timing-function: cubic-bezier(0.755,.5,.855,.06);
    }
    42% {
        transform: rotate(-8deg);
        transition-timing-function: cubic-bezier(0.755,.5,.855,.06);
    }
    48% {
        transform: rotate(8deg);
        transition-timing-function: cubic-bezier(0.755,.5,.855,.06);
    }
    52% {
        transform: rotate(-4deg);
        transition-timing-function: cubic-bezier(0.755,.5,.855,.06);
    }
    56% {
        transform: rotate(4deg);
        transition-timing-function: cubic-bezier(0.755,.5,.855,.06);
    }
    60% {
        transform: rotate(0deg);
        transition-timing-function: cubic-bezier(0.755,.5,.855,.06);
    }
    100% {
        transform: rotate(0deg);
        transition-timing-function: cubic-bezier(0.215,.61,.355,1);
    }
}
#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 200px;
    width: 200px;
    margin-top: -100px;
    margin-left: -100px;
}

.object {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0);
    margin-right: auto;
    margin-left: auto;
    border: 4px solid #FFF;
    left: 73px;
    top: 73px;
    position: absolute;
}

#first_object {
    -webkit-animation: first_object_animate 1s infinite ease-in-out;
    animation: first_object_animate 1s infinite ease-in-out;
}

#second_object {
    -webkit-animation: second_object 1s forwards, second_object_animate 1s infinite ease-in-out;
    animation: second_object 1s forwards, second_object_animate 1s infinite ease-in-out;
}

#third_object {
    -webkit-animation: third_object 1s forwards, third_object_animate 1s infinite ease-in-out;
    animation: third_object 1s forwards, third_object_animate 1s infinite ease-in-out;
}

@-webkit-keyframes second_object {
    100% {
        width: 100px;
        height: 100px;
        left: 48px;
        top: 48px;
    }
}

@keyframes second_object {
    100% {
        width: 100px;
        height: 100px;
        left: 48px;
        top: 48px;
    }
}

@-webkit-keyframes third_object {
    100% {
        width: 150px;
        height: 150px;
        left: 23px;
        top: 23px;
    }
}

@keyframes third_object {
    100% {
        width: 150px;
        height: 150px;
        left: 23px;
        top: 23px;
    }
}

@-webkit-keyframes first_object_animate {
    0% {
        -webkit-transform: perspective(100px);
    }

    50% {
        -webkit-transform: perspective(100px) rotateY(-180deg);
    }

    100% {
        -webkit-transform: perspective(100px) rotateY(-180deg) rotateX(-180deg);
    }
}

@keyframes first_object_animate {
    0% {
        transform: perspective(100px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(100px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: perspective(100px) rotateX(-180deg) rotateY(0deg);
        -webkit-transform: perspective(100px) rotateX(-180deg) rotateY(0deg);
    }

    100% {
        transform: perspective(100px) rotateX(-180deg) rotateY(-180deg);
        -webkit-transform: perspective(100px) rotateX(-180deg) rotateY(-180deg);
    }
}

@-webkit-keyframes second_object_animate {
    0% {
        -webkit-transform: perspective(200px);
    }

    50% {
        -webkit-transform: perspective(200px) rotateY(180deg);
    }

    100% {
        -webkit-transform: perspective(200px) rotateY(180deg) rotateX(180deg);
    }
}

@keyframes second_object_animate {
    0% {
        transform: perspective(200px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(200px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: perspective(200px) rotateX(180deg) rotateY(0deg);
        -webkit-transform: perspective(200px) rotateX(180deg) rotateY(0deg);
    }

    100% {
        transform: perspective(200px) rotateX(180deg) rotateY(180deg);
        -webkit-transform: perspective(200px) rotateX(180deg) rotateY(180deg);
    }
}

@-webkit-keyframes third_object_animate {
    0% {
        -webkit-transform: perspective(300px);
    }

    50% {
        -webkit-transform: perspective(300px) rotateY(-180deg);
    }

    100% {
        -webkit-transform: perspective(300px) rotateY(-180deg) rotateX(-180deg);
    }
}

@keyframes third_object_animate {
    0% {
        transform: perspective(300px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(300px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: perspective(300px) rotateX(-180deg) rotateY(0deg);
        -webkit-transform: perspective(300px) rotateX(-180deg) rotateY(0deg);
    }

    100% {
        transform: perspective(300px) rotateX(-180deg) rotateY(-180deg);
        -webkit-transform: perspective(300px) rotateX(-180deg) rotateY(-180deg);
    }
}

#information_right_top_2 {
    margin-bottom: 6px;
}

.flex-control-nav {
    display: block!important;
}

#new_lin_hit li {
    line-height: 25px!important;
}

.bg_white {
    background: #FFFFFF;
}

.header .nav ol li .leftp-0 {
    padding-right: 0;
}

.subject {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
}

.subject_x {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
}

.subject_x {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
}

.subject_1160 {
    width: 1160px;
    min-width: 1160px;
    margin: 0 auto;
    overflow: hidden;
}

.reversion_top {
    height: 100px;
    background: #FFFFFF;
}

.reversion_logo {
    padding-top: 30px;
    float: left;
    display: block;
}

.reversion_serch {
    float: left;
    padding-top: 29px;
    padding-left: 55px;
}

.new_w_100_footer {
    width: 100%;
    background: #f2f1f1;
    overflow: hidden;
}

.new_w_100_footer_top {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 30px;
}

.new_w_100_footer_top ul {
    float: left;
    padding: 0 120px 0px 50px;
}

.new_w_100_footer_top ul li a {
    color: #666666;
}
#WeChatGroupChat{}
#WeChatGroupChat .WeChatGroupChat{
    width: 140px;
    position: relative;
    cursor:pointer;
}
#WeChatGroupChat .WeChatGroupChat:hover img{
    display: block;
}
#WeChatGroupChat .WeChatGroupChat p{text-align: center;}
#WeChatGroupChat .WeChatGroupChat p span{text-align: center;background: url("/tp/PC/b2c/images/WeChatGroupChat_icon.png") no-repeat left center;padding-left: 28px;background-size: 20px;    font-size: 16px;}
#WeChatGroupChat .WeChatGroupChat img{
    width: 140px;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    padding-top: 25px;
}
.new_w_100_footer_top ul li {
    line-height: 30px;
}

.new_w_100_footer_top ul .title_about {
    padding-top: 33px;
    font-size: 16px;
    padding-bottom: 10px;
}

.pay_attention_us {
    float: left;
    width: 360px;
}

.pay_attention_us h3 {
    padding-top: 33px;
    font-size: 16px;
    padding-bottom: 10px;
    font-weight: normal;
    line-height: 30px;
}

.pay_attention_us dl {
    float: left;
    margin-right: 36px;
}

.pay_attention_us dl dt {
}

.pay_attention_us dl dd {
    text-align: center;
    padding-top: 10px;
    font-size: 14px;
}

.customer_service_center_new {
    float: left;
}


.customer_service_center_new .email {
line-height:30px;
color:#666666;
}
.customer_service_center_new .cycle {
line-height:30px;
color:#666666;
}
.customer_service_center_new .cycle span {
    color:#666666;
}

.customer_service_center_new h3 {
    padding-top: 33px;
    font-size: 16px;
    padding-bottom: 10px;
    font-weight: 700;
    line-height: 30px;
}
.customer_service_center_new .customer_numbers_new {
    line-height: 30px;
    background:url(/tp/PC/b2c/b2cImg/pic_17.png) no-repeat left center;
    padding-left: 28px;
    font-size: 18px;
}

.online_service_new {
    display: block;
    background: url("../images/new_about_img_7.png") no-repeat;
    height: 37px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.yhs_new {
    line-height: 30px;
}

.yhs_new span {
    color: #666666;
}

.new_w_100_footer_bottom {
    width: 100%;
    min-width: 1200px;
    background: #b5b4b4;
    height: 78px;
    color: #ffffff;
    text-align: center;
    padding-top: 20px;
}

.new_w_100_footer_bottom img {
    display: block;
    width: 107px;
    margin: 0 auto;
    margin-top: 10px;
}

.reversion_serch .reversion_serch_btn {
    float: left;
    display: block;
    width: 92px;
    height: 42px;
    background: #2caf2b;
    color: #FFFFFF;
    text-align: center;
    line-height: 42px;
    border-radius: 0px 5px 5px 0px;
    font-size: 16px;
    cursor: pointer;
}

.reversion_top ul {
    float: right;
    padding-top: 39px;
}

.reversion_top ul li {
    float: left;
}

.reversion_top ul li a {
    font-size: 16px;
    padding: 0px 10px;
}

.reversion_top ul .reversion_shopping_cart {
    margin-right: 10px;
}

.reversion_w100 {
    width: 100%;
}

.bg_green {
    background: url("../images/nav_bj_bds.jpg") 50% 0 no-repeat;
    min-width: 1200px;
}

.curriculum_classification {
    width:280px;
    float: left;
}

.curriculum_classification_title {
    background: #2b8979;
    color: #FFFFFF;
    font-size: 17px;
    text-align: center;
    line-height: 45px;
}

.reversion_nav ul {
    float: left;
    padding-left: 30px;
}

.reversion_nav ul li {
    float: left;
    margin: 0px 32px;
}

.reversion_nav ul li a {
    line-height: 45px;
    color: #FFFFFF;
    padding: 12px 12px;
    font-size: 17px;
}
.reversion_nav ul li a.hot{
    background: url(../images/tk_hot.png) no-repeat right 3px;
    background-size: 30px;
    padding-right: 33px;
}

.reversion_nav ul li a:hover {
    transition: all 0.4s ease 0s;
    text-decoration: underline!important;
}

.reversion_banner {
    height: 430px;
}

.subject_nav {
    position: relative;
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
    z-index: 99;
}

.curriculum_classification_conct {
    width: 280px;
    height: 405px;
    position: absolute;
    z-index: 9;
    top: 0px;
    background: url(../images/bj_nav.png) no-repeat;
    background-size: 100% 100%;
    padding-top: 15px;
}
.curriculum_classification_conct .curriculum_classification__item{padding-top: 0px;padding-bottom: 0;margin-bottom: 10px;padding-left: 15px;padding-right: 15px;}
.curriculum_classification_conct .curriculum_classification__item h3{color: #2caf2b;font-size: 15px;padding-bottom: 8px;}
.curriculum_classification_conct .curriculum_classification__item ul{
    overflow: hidden;
}
.curriculum_classification_conct .curriculum_classification__item ul li{float: left;margin-right: 17px;line-height: 21px;}
.curriculum_classification_conct .curriculum_classification__item ul li a{font-size: 13px;color: #686a71;}
.curriculum_classification_conct .curriculum_classification__item ul li a:hover{
    color: #2caf2b;
    -moz-transition: ease-out 0.5s;
    -o-transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    transition: ease-out 0.5s;
}

/*.curriculum_classification_conct ul {
    padding-top: 20px;
}

.curriculum_classification_conct ul li {
    line-height: 50px;
    padding-left: 20px;
    border-left: 4px solid rgba(0,0,0,0);
    margin: 22px 0px;
    cursor: pointer;
}

.curriculum_classification_conct ul li .left_bo_ho {
    font-size: 15px;
    padding: 7px 0px 7px 36px;
}

*/
.m__aboutUs__main{
    display: none;
}
.m__aboutUs{
    display: none;
}
.zswxgw {
    position: absolute;
    width: 91px;
    left: -114px;
    top: -48px;
    display: none;
}

.flex-direction-nav li a.flex-prev {
    display: none;
}

.flex-direction-nav li a.flex-next {
    display: none;
}

/*.curriculum_classification_conct ul li .left_bo_ho_1 {
    background: url("../images/left_bo_ho_1.png") no-repeat left center;
}

.curriculum_classification_conct ul li .left_bo_ho_2 {
    background: url("../images/left_bo_ho_2.png") no-repeat left center;
}

.curriculum_classification_conct ul li .left_bo_ho_3 {
    background: url("../images/left_bo_ho_3.png") no-repeat left center;
}

.curriculum_classification_conct ul li .left_bo_ho_4 {
    background: url("../images/left_bo_ho_4.png") no-repeat left center;
}

.curriculum_classification_conct ul li .left_bo_ho_5 {
    background: url("../images/left_bo_ho_5.png") no-repeat left center;
}

.curriculum_classification_conct ul .hover {
    background: #f5f5f5;
    border-left: 4px solid #2caf2b;
}

.curriculum_classification_conct ul .hover .two_level_navigation_box {
    display: block;
}
*/
.two_level_navigation_box {
    position: absolute;
    padding: 20px;
    height: 430px;
    width: 550px;
    left: 203px;
    top: 0px;
    background: #f5f5f5;
    display: none;
}

.login_box {
    width: 180px;
    height: 320px;
    background: #FFFFFF;
    position: absolute;
    right: 0;
    top: 60px;
    border-radius: 6px;
}

.xlr {
    display: block;
    width: 68px;
    margin: 15px auto;
}

.welcome {
    text-align: center;
    line-height: 25px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0px 15px;
}

.reversion_land_s,.reversion_register_s {
    width: 138px;
    height: 32px;
    border: 1px solid #2caf2b;
    outline: none;
    cursor: pointer;
    border-radius: 4px;
    display: block;
    margin: 10px auto;
}

.reversion_land_s {
    background: #2caf2b;
    color: #FFFFFF;
}

.reversion_register_s {
    background: #FFFFFF;
    color: #2caf2b;
}

.login_box ul {
    padding-left: 22px;
}

.login_box ul li {
    line-height: 30px;
    padding-left: 30px;
}

.self_library {
    background: url("../images/ztk.png") no-repeat left center;
}

.self_test {
    background: url("../images/edd.png") no-repeat left center;
}

.wechat_network {
    background: url("../images/wx.png") no-repeat left center;
    position: relative;
}

.recommend {
    margin-top: 5px;
    overflow: hidden;
    padding-bottom: 20px;
}

.recommend ul {
    overflow: hidden;
}

.recommend ul li {
    float: left;
    margin-right: 30.8px;
    margin-top: 15px;
}

.m_r_0 {
    margin-right: 0!important;
}

.recommend ul li a img {
    display: block;
}

.education {
    background: #FFFFFF;
    overflow: hidden;
    padding-bottom: 10px;
}

.education_left {
    float: left;
    width: 930px;
}

.education_left_top {
    height: 73px;
    position: relative;
    border-bottom: 1px solid #d0d0d0;
}
.WeChatGroupChat_tab{
    position: absolute;
    top: 40px;
    right: 50px;
}
.education_right {
    float: right;
    width: 220px;
    padding-right: 20px;
    height: 606px;
    overflow: hidden;
}

.education_left_top h3 {
    float: left;
    font-size: 22px;
    font-weight: normal;
    border-left: 6px solid #2caf2b;
    padding-left: 20px;
    margin-top: 32px;
    color: #2caf2b;
}

.education_left_top ul {
    overflow: hidden;
    float: left;
    padding-top: 40px;
    padding-left: 125px;
}

.education_left_top ul li {
    float: left;
    font-size: 16px;
    cursor: pointer;
    margin: 0px 20px;
}

.education_left_top ul .on {
    color: #2caf2b;
}

.education_left_top a {
    float: right;
    display: inline-block;
    padding: 5px 10px;
    color: #666666;
    margin-top: 38px;
}

.education_left_bottom {
    overflow: hidden;
    padding-top: 20px;
    padding-left: 20px;
    height: 512px;
}

.ggt {
    display: block;
    float: left;
    /* width: 200.6px; */
}

.education_tap {
    float: right;
    width: 696px;
}

.list_of_courses {
    overflow: hidden;
}

.list_of_courses li a {
    overflow: hidden;
    float: left;
}

.list_of_courses li {
    width: 212px;
    float: left;
    height: 193px;
    padding-bottom: 15px;
    margin-left: 20px;
}

.images_box {
    width: 210px;
    height: 126px;
    overflow: hidden;
}

.images_box img {
    width: 100%;
    height: 100%;
}

.bat_box {
    overflow: hidden;
    padding-bottom: 5px;
}

.kecjj {
}

.course_name {
    font-size: 14px;
    padding-top: 5px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width:200px;
    float: left;
}

.course_bay {
    padding-top: 5px;
    display:none;
    float: right;
    color: #666666;
    padding-right: 5px;
}

.bay_box {
    overflow: hidden;
}

.purchase_immediately {
    border: 1px solid #dadad8;
    background: #ffffff;
    color: #f13241;
    padding: 3px 13px;
    margin-right: 10px;
    border-radius: 4px;
    float: left;
}

.online_consulting {
    border: 1px solid #526784;
    background: #526784;
    color: #fff;
    padding: 3px 13px;
    border-radius: 4px;
    cursor: pointer;
    float: left;
}

.images_box img:hover {
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -moz-transition: ease-out 0.5s;
    -o-transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    transition: ease-out 0.5s;
}

.education_right_down {
    border-bottom: 1px solid #d0d0d0;
    padding-bottom: 11px;
    padding-top: 34px;
    overflow: hidden;
    margin-bottom: 20px;
}

.education_right_down .education_right_down_title {
    border-left: 4px solid #2caf2b;
    line-height: 24px;
    font-size: 16px;
    padding-left: 10px;
    color: #222222;
    float: left;
    margin-top: 4px;
}

.education_right_down_djs {
    height: 27px;
    background: url(../images/djs.png) no-repeat left 10px;
    float: right;
    padding-left: 15px;
    line-height: 24px;
}

.education_right_down_djs span {
    color: #ffffff;
    background: #d6000f;
    margin-right: 3px;
    display: inline-block;
    font-size: 21px;
    padding: 1px 2px;
}

.education_right_bottom {
}

.education_right_bottom ul {
    overflow: hidden;
}

.education_right_bottom ul li {
    float: left;
    text-align: center;
    margin: 8px 10px;
    cursor: pointer;
}

.education_right_bottom ul li:hover {
    color: #20981f;
}

.education_right_bottom ul li dl dt {
    margin-bottom: 5px;
}

.education_right_hot {
    border-bottom: 1px solid #d0d0d0;
    padding-top: 12px;
    padding-bottom: 11px;
    overflow: hidden;
}

.education_right_hot_title {
    border-left: 4px solid #2caf2b;
    line-height: 24px;
    padding-left: 10px;
    color: #222222;
    float: left;
    font-size: 16px;
    margin-top: 4px;
}

.education_right_hot a {
    float: right;
    display: inline-block;
    padding: 5px 10px;
    color: #666666;
}

.education_hot_kc {
    padding-top: 12px;
}

.purchase_immediately {
    border: 1px solid #dadad8;
    background: #ffffff;
    color: #f13241;
    padding: 3px 13px;
    margin-right: 10px;
    border-radius: 4px;
    float: left;
}

.online_consulting {
    border: 1px solid #526784;
    background: #526784;
    color: #fff;
    padding: 3px 13px;
    border-radius: 4px;
    cursor: pointer;
    float: left;
}

.education_hot_kc li {
    margin: 0!important;
    line-height: 33px;
}

.education_hot_kc li .span_1 {
    width: 88px;
    display: inline-block;
    text-align: left;
}

.education_hot_kc li .span_2 {
    color: #666;
}

.number {
    font-weight: bold;
    color: #3cb93b;
    padding-right: 5px;
    font-size: 15px;
}

.information {
    margin-top: 20px;
}

.information_right {
    float: left;
    overflow: hidden;
    padding-left: 22px;
    width: 674px;
}

.information_right_left_zx p a {
    color: #2caf2b;
    font-size: 15px;
    padding-bottom: 8px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 320px;
    display: block;
}

.information_right_left {
    float: left;
    width: 315px;
}

.information_right_right {
    float: right;
    /* padding-right: 20px; */
    width: 316px;
}

.information_right_left_zx ul li {
    line-height: 24px;
}

.information_right_left_zx p {

}

.m_b_40 {
    margin-bottom: 40px;
}

.information_right_left_zx ul li a:hover {
    color: #2caf2b;
}

.information_right_top {
    overflow: hidden;
    width: 670px;
}

.information_right_right_ggt {
    display: block;
    margin-bottom: 21px;
    width: 100%;
}

.information_right_right_ggt_bottom {
    display: block;
    margin-top: 43px;
    margin-bottom: 3px;
}

.information_right_bottom ul {
    overflow: hidden;
}

.information_right_bottom ul li {
    float: left;
    margin: 0px 8px;
}

#kcxc {
    padding-top: 4px
}

#kcxc li {
    margin-left: 19px;
    margin-right: 5px;
}

.information_right_bottom ul li img {
    display: block;
}

.information_lode {
    width: 100%;
    background: #f5f5f5;
    margin-top: 16px;
}

.information_lode .information_lode_list {
    padding: 14px;
}

.information_lode .information_lode_list li {
    background: url("../images/img_7.png") no-repeat left center;
    padding-left: 20px;
    line-height: 35px;
}

.practice {
    margin-top: 20px;
}

.information_lode .practice_lode_list {
    padding: 15px;
}
#information_right_top_1 .InformationType{
    display: none;
}
.information_lode .practice_lode_list li {
    background: url("../images/img_8.png") no-repeat left center;
    padding-left: 20px;
    line-height: 29px;
}

.advertising_map {
    margin-top: 20px;
}

.other_information {
    overflow: hidden;
}

.other_information .other_information_list {
    width: 388px;
    float: left;
    background: #ffffff;
    margin-right: 17px;
    padding-bottom: 10px;
    height: 384px;
}

.mr_0 {
    margin-right: 0!important;
}

.other_information_list .title {
    font-size: 18px;
    height: 28px;
    border-left: 8px solid #2ab02d;
    line-height: 28px;
    display: inline-block;
    margin-top: 23px;
    padding-left: 15px;
}

.other_information_list .kszx_dl {
    padding-top: 20px;
}

.kszx_text_1_list {
    padding-top: 10px;
    padding-left: 10px;
}

.kszx_text_1_list li {
    overflow: hidden;
    line-height: 32px;
    background: url(../images/kszx_text_1_list_bj.png) no-repeat left center;
    padding-left: 10px;
}

.bas_2 {
    float: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 300px;
}

.other_information_list .kszx_text_1_list li a .list_time {
    padding: 0;
    padding-right: 10px;
}

.kszx_text_1_list li a .list_time {
    float: right;
    color: #9f9f9f;
}

.kszx_dl dl {
    overflow: hidden;
    padding-left: 5px;
}

.kszx_dl dl dt {
    float: left;
}

.kszx_dl dl dd h3 {
    width: 200px;
    padding-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: normal;
}

.kszx_dl dl dd p {
    line-height: 22px;
    color: #656565;
}

.kszx_dl dl dd {
    float: left;
    width: 200px;
    padding-left: 8px;
}

.cadet_voice .user {
    font-size: 14px;
    height: 27px;
    background: url(../images/user.png) no-repeat left center;
    padding-left: 35px;
    line-height: 27px;
    color: #2aaf2f;
}

.user_evaluate {
    margin-top: 10px;
    line-height: 23px;
    padding-right: 10px;
    padding-bottom:15px;

}

.cadet_voice {
    padding-left: 20px;
    /*
        padding-top: 18px;
    */
}

.oled_bott {
    margin-top: 20px;
}

#top {
    width: 100%;
    background: #fff;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}
#top .subject.logo_box_black:after {
    content:"";
    display:block;
    visibility:hidden;
    clear:both;
}
#top .subject.logo_box_black a.homeIndex{
    position: relative;
    float: left;
    padding-right: 90px;
}
#top .subject.logo_box_black a.homeIndex i {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: url(https://www.edu-edu.com/tp/PC/b2c/b2cImg/24.gif);
    background-size: 100% 100%;
    position: absolute;
    top: -8px;
    right: 0;
}
.logo_black {
    display: block;
    float: left;
    width: 220px;
    padding-top: 14px;
}

.nav_box_black {
    overflow: hidden;
    float: left;
    padding-top: 25px;
    padding-left: 10px;
}

.nav_box_black li {
    float: left;
    margin: 0px 7px;
}

.nav_box_black li a {
    font-size: 15px;
    padding: 0px 5px;
}

.serch_div {
    width: 175px;
    border-bottom: 1px solid #d1d1d1;
    float: left;
    height: 24px;
    overflow: hidden;
    padding-top: 20px;
    margin-left: 20px;
    position: relative;
}
.m__aboutUs__main{
    display:none;
}
.serch_div input {
    width: 137px;
    height: 24px;
    color: #222;
    border: none;
    background: #fff;
    padding-left: 10px;
}

.logo_box_black {
    background: #fff;
}
.logo_box_black i{
    display: inline-block;
    width: 80px;
    height: 80px;
    background: url(https://www.edu-edu.com/tp/PC/b2c/b2cImg/24.gif);
    background-size: 100% 100%;
    position: absolute;
    top: -20px;
    right: -5px;
}
.serch_div a {
    width: 24px;
    height: 24px;
    display: block;
    background: url("../images/black_serch.png") no-repeat;
    float: right;
}

.logo_box_black ol {
    float: left;
    overflow: hidden;
    padding-top: 28px;
    padding-left: 20px;
}

.logo_box_black ol li {
    float: left;
    margin: 0px 5px;
    color: #ffffff;
}

.logo_box_black ol li a {
    padding: 0px 5px;
}

.logo_box_black ol .reversion_register {
    padding-left: 0px;
    margin-left: -4px;
}

.erbanner {
    height: 164px;
    margin-bottom: 20px;
}

.screening_box {
    background: #ffffff;
    padding: 16px 20px;
}

.screening_box_region {
    border-bottom: 1px solid #efefef;
    overflow: hidden;
}

.screening_box_region p {
    float: left;
}

.screening_box_region ul {
    overflow: hidden;
    float: left;
    width: 1100px;
    padding-left: 10px;
}

.screening_box_region ul li {
    float: left;
    margin: 0px 5px 5px 5px;
}

.screening_box_region ul li a {
    display: block;
    padding: 5px 10px;
}

.screening_box_region ul .on {
    background: #2caf2b;
    color: #ffffff;
    border-radius: 4px;
}

.screening_box_region p {
    color: #2caf2b;
    font-size: 15px;
    padding-top: 3px;
}

.arrangement {
    border: none;
    padding-top: 22px;
}

.professional_university {
    border: none;
    padding-top: 10px;
}

.self_examination_major {
    margin-top: 20px;
    background: #ffffff;
}

.self_examination_major ul {
    overflow: hidden;
    padding: 20px;
}

.self_examination_major ul li {
    float: left;
    width: 220px;
    height: 58px;
    border: 1px solid #eaeaea;
    padding: 20px;
    box-shadow: 0px 0px 5px #888888;
    margin: 14px;
    background: #effffc;
}

.self_examination_major ul li p {
    font-size: 16px;
    padding-bottom: 10px;
}

.self_examination_major ul li .p_r_5 {
    padding-right: 5px;
}

.erbanner .new_mbx {
    color: #ffffff;
    font-size: 14px;
    padding-top: 20px;
}
.notice__box{
    position: fixed;
    right: 100px;
    bottom: 248px;
    z-index: 530;
}
.notice__box .notice__main{
    position: relative;
}
.notice__box .notice__main .close{
    position: absolute;
    cursor: pointer;
    display: block;
    width: 30px;
    height: 30px;
    right: 0;
    top: 0;
}
.notice__box .notice__main .link{
    display: block;
    position: absolute;
    width: 68px;
    height: 21px;
    bottom: 13px;
    left: 40px;
}
.notice__box .notice__main img{

}
.erbanner .new_mbx a {
    color: #ffffff;
    font-size: 14px;
}

.erbanner_title {
    font-size: 32px;
    color: #ffffff;
    text-align: center;
}

.erbanner_introduce {
    text-align: center;
    color: #ffffff;
    font-size: 17px;
    padding-top: 15px;
}

.screening_box .professional_university ul {
    width: 1070px;
}

.introduction_whole_profession {
    margin-top: 20px;
    overflow: hidden;
}

.introduction_whole_profession_left {
    float: left;
    width: 908px;
    background: #ffffff;
    padding-bottom: 30px;
    padding-top: 60px;
}

.introduction_whole_profession_right {
    float: right;
    background: #ffffff;
    width: 271px;
    padding-bottom: 0px;
}
.introduction_whole_profession_left_tip {
    padding: 30px 40px;
}
.m_show_app{
    display: none;
}

.introduction_whole_profession_left_tip ul {
    overflow: hidden;
    border-bottom: 1px solid #cacaca;
    padding-bottom: 8px;
    padding-left: 20px;
}

.introduction_whole_profession_left_tip ul li {
    float: left;
    margin: 0px 10px -8px 10px;
}

.introduction_whole_profession_left_tip ul .on {
    border-bottom: 3px solid #2caf2b;
    color: #2caf2b;
    padding-bottom: 17px;
}

.introduction_whole_profession_left_tip ul li a {
    font-size: 15px;
    padding: 0px 5px -8px 5px;
}

.introduction_whole_profession_left_recommendation {
    border: 1px solid #e0dfdf;
    width: 830px;
    /* padding: 20px; */
    margin: 0 auto;
    box-shadow: 0px 0px 5px #e0dfdf;
    overflow: hidden;
    /* margin-bottom: 30px; */
}

.introduction_whole_profession_left_recommendation_img {
    display: block;
    float: left;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.introduction_whole_profession_left_recommendation_center {
    float: left;
    padding-left: 20px;
    width: 440px;
    margin-top: 20px;
}

.introduction_whole_profession_left_recommendation_center_top {
    overflow: hidden;
}

.introduction_whole_profession_left_recommendation_center_top p {
    font-size: 16px;
    float: right;
    font-weight: bold;
    color: #fb1f20;
}

.introduction_whole_profession_left_recommendation_center h3 {
    float: left;
    font-size: 16px;
}

.unlimited_learning {
    margin-top: 5px;
    position: relative;
    line-height: 28px;
}

.unlimited_learning i {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url("../images/kc_4.png");
    position: absolute;
    top: 4px;
    margin-right: 5px;
}

.unlimited_learning span {
    display: inline-block;
    padding-left: 24px;
}

.short_time {
    margin-top: 8px;
    position: relative;
    line-height: 28px;
}

.short_time i {
    width: 20px;
    height: 18px;
    display: inline-block;
    background: url("../images/kc_5.png");
    position: absolute;
    top: 4px;
    margin-right: 5px;
}

.short_time span {
    display: inline-block;
    padding-left: 25px;
}

.introduction_whole_profession_left_recommendation_right {
    float: right;
    width: 100px;
    border-left: 1px solid #d1d1d1;
    height: 183px;
}

.include_services {
    margin-top: 5px;
    position: relative;
    line-height: 28px;
}

.include_services i {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url("../images/kc_6.png");
    position: absolute;
    top: 4px;
    margin-right: 5px;
}

.include_services span {
    display: inline-block;
    width: 415px;
    padding-left: 26px;
}

.immediate_consultation {
    border-bottom: 1px solid #d1d1d1;
}

.view_the_details {
}

.h_50 {
    height: 92px;
}

.immediate_consultation a {
    display: block;
    height: 91px;
}

.immediate_consultation dl {
    text-align: center;
}

.immediate_consultation dt {
    padding-top: 20px;
}

.immediate_consultation dd {
    color: #2caf2b;
    background: url(http://www.edu-edu.com/tp/PC/b2c/img/0002.png) no-repeat center 15px;
    padding-top: 60px;
    margin-top: 0px;
}

.view_the_details a {
    display: block;
    height: 91px;
}

.view_the_details dl {
    text-align: center;
}

.view_the_details dt {
    padding-top: 20px;
}

.view_the_details dd {
    color: #2caf2b;
    background: url(http://www.edu-edu.com/tp/PC/b2c/img/0001.png) no-repeat center 15px;
    padding-top: 60px;
    margin-top: 0px;
}

.introduction_whole_profession_left_rich_text {
    width: 830px;
    margin: 0 auto;
}

.introduction_whole_profession_left_rich_text p {
    line-height: 28px;
    font-size: 17px;
    padding-left: 10px;
}

.introduction_whole_profession_left_rich_text table {
    border-collapse: collapse;
}

.introduction_whole_profession_left_rich_text table tr td {
    border: 1px solid #c9c9c9;
    text-align: center;
    padding: 3px 10px!important;
}

.table_header td {
    background: #e4e4e4;
}

.introduction_whole_profession_right_title {
    border-left: 4px solid #2caf2b;
    line-height: 27px;
    font-size: 17px;
    padding-left: 10px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.introduction_whole_profession_right ul {
    padding-left: 19px;
}

.introduction_whole_profession_right ul li {
    width: 234px;
}

.introduction_whole_profession_right ul li img {
    width: 100%;
    display: block;
}

.introduction_whole_profession_right ul li a {
    display: block;
    overflow: hidden;
}

.kcjs_xq {
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 10px;
}

.ggw_course_name {
    float: left;
    font-size: 14px;
    padding-left: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 140px;
}

.ggw_purchase_number {
    float: right;
    color: #666666;
    padding-right: 5px;
}

.new_course_introduction {
    line-height: 24px;
    padding: 0px 5px;
    padding-bottom: 20px;
}

.colleges_and_Universities {
    margin-top: 20px;
    overflow: hidden;
}

.colleges_and_Universities_left {
    float: left;
    background: #ffffff;
    padding: 20px;
    width: 867px;
}

.colleges_and_Universities_left ul {
    overflow: hidden;
}

.colleges_and_Universities_left ul li {
    position: relative;
    float: left;
    width: 273px;
    height: 98px;
    border: 1px solid #eaeaea;
    margin: 0px 7px;
    margin-bottom: 14px;
}

.colleges_and_Universities_left_logo {
    position: absolute;
    top: 11px;
    left: 10px;
    width: 76px;
    height: 76px;
}

.colleges_and_Universities_left_title {
    position: absolute;
    left: 98px;
    top: 22px;
    font-size: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 170px;
}

.colleges_and_Universities_left_option {
    position: absolute;
    left: 98px;
    top: 52px;
}

.colleges_and_Universities_left_985_211 {
    position: absolute;
    right: 0px;
    top: 0;
}

.colleges_and_Universities_left_option .colleges_and_Universities_left_option_1 {
    padding-right: 5px;
    font-size: 15px;
}

.colleges_and_Universities_left_option .colleges_and_Universities_left_option_2 {
    padding-left: 5px;
    font-size: 15px;
}

.is985 {
    color: #fff;
    background: #ff0000;
    padding: 2px 5px;
}

.is211 {
    background: #2065dc;
    color: #fff;
    padding: 2px 5px;
}

.colleges_and_Universities_right {
    float: right;
    background: #ffffff;
    padding-top: 20px;
    width: 270px;
    height: 670px;
}

.colleges_and_Universities_right_title {
    /* border-left: 4px solid #2caf2b; */
    overflow: hidden;
    /* margin-bottom: 10px; */
}

.colleges_and_Universities_right_title p {
    background: url("../images/kc_11.png") no-repeat right center;
    float: left;
    border-left: 4px solid #2caf2b;
    font-size: 18px;
    padding-left: 11px;
    padding-right: 25px;
    line-height: 26px;
}

.colleges_and_Universities_right ul {
    padding-left: 21px;
}

.colleges_and_Universities_right ul li {
    position: relative;
    height: 95px;
    width: 225px;
    border-bottom: 1px solid #d6d6d6;
    padding-left: -18px;
}

.hot_serial_number {
    position: absolute;
    top: 35px;
    left: 0;
    color: #2caf2b;
    font-size: 25px;
}

.hot_serial_title {
    position: absolute;
    left: 31px;
    top: 27px;
    font-size: 15px;
}

.hot_serial_introduce {
    position: absolute;
    top: 53px;
    left: 32px;
    color: #666666;
}

.hot_serial_logo {
    position: absolute;
    right: 0;
    top: 24px;
    width: 56px;
}

.p_t_20 {
    padding-top: 40px;
}

.introduction_whole_profession_left_rich_text_s {
    width: 830px;
    margin: 0 auto;
}

.introduction_whole_profession_left_rich_text_s .title_odben {
    border-left: 4px solid #2caf2b;
    line-height: 27px;
    font-size: 17px;
    padding-left: 10px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.introduction_whole_profession_left_rich_text_s h3 {
    text-align: center;
    font-size: 16px;
}

.introduction_whole_profession_left_rich_text_s_fwb {
    padding-left: 22px;
    padding-right: 22px;
    padding-top: 30px;
}

.introduction_whole_profession_left_rich_text_s_fwb p {
    font-size: 14px;
    line-height: 30px;
}

.two_level_navigation_box p {
    line-height: 1;
    padding-top: 16px;
    padding-bottom: 6px;
    color: #2a9e4d;
    font-size: 16px;
    font-weight: bold;
    padding-left: 17px;
}

.two_level_navigation_box ol {
    overflow: hidden;
    padding-bottom: 12px;
}

.two_level_navigation_box ol li {
    float: left;
    padding: 0;
    border: none;
    margin: 1px 20px;
    width: 100px;
    white-space: nowrap;
    line-height: 25px;
}

.two_level_navigation_box ol li a:hover {
    transition: all 0.4s ease 0s;
    text-decoration: underline!important;
    color: #2caf2b;
}

.two_level_navigation_box ol li:hover {
    padding: 0;
    border: none;
    background: none;
}

.propaganda_img_1 {
    display: block;
    float: left;
    margin-left: 21px;
    margin-top: 10px;
    margin-right: 30px;
}

.propaganda_img_2 {
    display: block;
    margin-top: 10px;
}

.curriculum_images {
    display: block;
    margin-bottom: 10px;
}

#footer {
    width: 100%;
    min-width: 1180px;
    /* background: #e0e0e0;*/
    border-bottom: 1px solid #e2e2e2;
    margin-top: 10px;
}

.footer {
    overflow: hidden;
    padding-bottom: 20px;
}

.content {
    width: 1180px;
    min-width: 1180px;
    margin: 0 auto;
}

.friendship_text {
    font-size: 18px;
    padding-top: 15px;
    margin-bottom: 10px;
    margin-left: 40px;
}

.friendship_ul {
    overflow: hidden;
    /*padding-left: 40px;*/
}

.friendship_ul li {
    line-height: 30px;
    float: left;
    /*width: 140px;*/
    padding: 0 20px 0 40px;
}

.friendship_ul li a {
    font-size: 14px;
    color: #666666;
}

#footer_s {
    width: 100%;
    min-width: 1180px;
    background: #e0e0e0;
}

.footer_yqlj {
    overflow: hidden;
    padding-left: 15px;
    margin-top: 20px;
    float: left;
}

.footer_dl {
    float: left;
}

.footer_khfw {
    float: left;
    margin-right: 60px;
}

.footer_yqlj ul {
    float: left;
    margin-right: 100px;
}

.footer_yqlj ul li {
    line-height: 24px;
}

.footer_tit {
    font-size: 18px;
}
.new_footer{
    width: 100%;
    height: 110px;
    background: #121921;
    min-width: 1200px;
    padding-top: 15px;
    padding-bottom: 10px;
}
.new_footer p{
    text-align: center;
    color: #fff;
    font-size: 16px;
    padding: 5px 0px;
}
ul li{
    list-style: none;
}
.new_footer ul{
    overflow: hidden;
    width: 330px;
    margin: auto;
    margin-top: 10px;
}
.new_footer ul li{float: left;margin: 0px 4px;}
.new_footer p a{
    color: #ffffff;
    padding-left: 26px;
    margin-left: 8px;
}
.new_footer p .a1{
    background: url("../images/new_footer_5.png") no-repeat left center;
}

.footer_dl p {
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 15px;
}

.hxdd_er {
    overflow: hidden;
}

.wb {
    margin-top: 10px;
}

.footer_dl dl {
    float: left;
    margin-right: 60px;
}

.footer_dl dl dd {
    text-align: center;
    padding-top: 5px;
}

.wb img {
    vertical-align: middle;
}

.wb button {
    width: 65px;
    height: 30px;
    border: none;
    background: #c90010;
    margin-left: 8px;
    color: #ffffff;
}

.footer_khfw .kfzx {
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 15px;
}

.footer_khfw .phpne {
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 15px;
}

.phpne {
    padding: 0!important;
}

.phonesxz {
    display: inline-block;
    width: 26px;
    height: 22px;
    margin-right: 4px;
    background: url(http://www.edu-edu.com/index/template/b2c/images/consultation_s.png) no-repeat;
}

.zxkf {
    margin-top: 10px;
}

.zxkf a {
    width: 106px;
    height: 27px;
    background: url(http://www.edu-edu.com/index/template/b2c/images/zxkf.png) no-repeat;
    display: block;
}

.time {
    padding-top: 10px;
    font-size: 15px;
}

.email {
    font-size: 15px;
}

.email_s a {
    color: #cc000e;
    padding-top: 5px;
}

#last_footer {
    background: #212121;
    width: 100%;
    min-width: 1180px;
    height: 106px;
}

.footer_last {
    padding-top: 15px;
    text-align: center;
    color: #929292;
}

.footer_last a {
    color: #929292;
}

.beian {
    text-align: center;
    margin-top: 10px;
}

.introduction_whole_profession_left_rich_text table {
    width: 830px!important;
}

.firstRow td {
    background: #e4e4e4;
}
.toolbar-item,.toolbar-layer {
    background: url("../images/smal_bj.png") no-repeat;
    background-color: #ffffff
}

.toolbar {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    box-shadow: 0px 0px 10px lightgrey;
}

.toolbar-item {
    display: block;
    width: 54px;
    height: 54px;
    position: relative;
    -moz-transition: background-position 0.5s;
    -ms-transition: background-position 0.5s;
    -o-moz-transition: background-position 0.5s;
    -webkit-moz-transition: background-position 0.5s;
    transition: background-position 0.5s;
}

.toolbar-item:hover .toolbar-layer {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.toolbar-item-weixin {
    background-position: 0px -440px;
}

.toolbar-item-weixin:hover {
    background-position: 0px -495px;
}

.toolbar-item-weixin .toolbar-layer {
    height: 105px;
    background: url("https://www.edu-edu.com/tp/PC/b2c/images/wx___gzh.jpg") no-repeat;
    background-size: 93%;
}

.toolbar-item-feedback {
    background-position: 0px -109px;
}

.toolbar-item-feedback:hover {
    background-position: 0px -165px;
}

.toolbar-item-app {
    background-position: 0px -330px;
}

.toolbar-item-app:hover {
    background-position: 0px -386px;
}

.toolbar-item-app .toolbar-layer {
    height: 105px;
    background: url("https://www.edu-edu.com/tp/PC/b2c/images/zkedd.png") no-repeat
}

.toolbar-item-top {
    background-position: 0 -674px;
}

.toolbar-item-top:hover {
    background-position: 0 -736px;
}

.toolbar-layer {
    position: absolute;
    right: 46px;
    bottom: -10px;
    width: 114px;
    opacity: 0;
    filter: alpha(opacity=0);
    transform-origin: 95% 95%;
    -moz-transform-origin: 95% 95%;
    -ms-transform-origin: 95% 95%;
    -o-transform-origin: 95% 95%;
    -webkit-transform-origin: 95% 95%;
    transform: scale(0.01);
    -moz-transform: scale(0.01);
    -ms-transform: scale(0.01);
    -o-transform: scale(0.01);
    -webkit-transform: scale(0.01);
    transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    -webkit-transition: all 1s;
}

.toolbar .toolbar-item {
    border-bottom: 1px solid #d3d3d3
}

.toolbar-item-about {
    border-bottom: 1px solid #d3d3d3
}

.toolbar-item-emal {
    background-position: 0px -220px;
}

.toolbar-item-emal:hover {
    background-position: 0px -275px;
}

.toolbar-item-emal .toolbar-layer {
    height: 52px;
    background: none;
    position: absolute;
    right: 54px;
    bottom: 0px;
    width: 130px;
    line-height: 50px;
    padding-left: 10px;
    background: #ffffff;
    border: 1px solid #d3d3d3;
    top: 0px;
}

.toolbar-item-feedback .toolbar-layer {
    height: 52px;
    background: none;
    position: absolute;
    right: 54px;
    bottom: 0px;
    width: 120px;
    font-size: 16px;
    line-height: 50px;
    padding-left: 10px;
    background: #ffffff;
    border: 1px solid #d3d3d3;
    top: 0px;
}

.toolbar-item-about {
    display: block;
    width: 54px;
    height: 54px;
    position: relative;
    background: url("../images/smal_bj.png") no-repeat;
    background-position: 0px -0px;
    -moz-transition: background-position 0.5s;
    -ms-transition: background-position 0.5s;
    -o-moz-transition: background-position 0.5s;
    -webkit-moz-transition: background-position 0.5s;
    transition: background-position 0.5s;
}

.toolbar-item-about:hover {
    background-position: 0px 0px;
}

.toolbar-item-about img {
    position: absolute;
    top: -70px;
    left: -10px;
    width: 70px;
}

.pages .fl {
    float: left;
}

.pages {
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding-top: 27px;
    width: 770px;
    margin: 0 auto;
    padding-bottom: 13px;
}

.total-pages {
    float: left;
    padding-left: 20px;
}

.pages button {
    padding: 0 10px;
    margin: 0 10px;
    height: 40px;
    float: left;
    cursor: pointer;
    border: 1px solid #ebebeb;
    background-color: #ffffff;
}

.pages .first-page,
.pages .last-page {
    margin: 0;
}

.pages .pageWrap {
    height: 40px;
    float: left;
    overflow: hidden;
}

.pages .pageWrap ul {
    width: 100000px;
    height: 40px;
    float: left;
}

.pages .pageWrap ul li {
    width: 60px;
    height: 40px;
    border: 1px solid #ebebeb;
    line-height: 40px;
    box-sizing: border-box;
    cursor: pointer;
    float: left;
    margin: 0;
}

.pages .pageWrap ul .sel-page {
    background-color: #2caf2b;
    color: #fff;
}

.pages .jump-text {
    width: 60px;
    height: 40px;
    box-sizing: border-box;
    text-align: center;
    margin: 0 5px;
    float: left;
}

.pages .jump-button {
    margin: 0;
    float: left;
}

.pages.total-pages,
.pages.total-count {
    margin-left: 10px;
    float: left;
    font-size: 14px;
}

.serch_div input {
    position: absolute;
    left: 0;
}

.m_app {
    display: none;
}

.serch_m {
    display: none;
}

.user_m {
    display: none;
}

.m_nav {
    display: none;
}

.m_recommend {
    display: none;
}

.m_banner_1 {
    display: none;
}

.m_looking_major {
    display: none;
}

.m_course {
    display: none;
}

.m_release_time {
    display: none;
}

.m_release_img {
    display: none;
}

#serch_box_main {
    display: none;
}

.flexslider_m {
    display: none;
}

.m_top {
    display: none;
}

.m_erbanner {
    display: none;
}

.h_20 {
    height: 20px;
    background: #efefef;
    display: none
}

.m_banner_xq {
    display: none;
}

.phone_hide {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    zoom: 1;
}

.left {
    float: left;
}

.right {
    float: right;
}

.container {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
}

.img-responsive {
    display: block;
    /*max-width: 100%;*/
    height: auto;
}

.subject-list li {
    width: 188px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 14px;
    margin: 6px 6px;
}

.subject-list-second {
    margin-bottom: 10px;
}

.subject-list-second li {
    width: 188px;
    height: 68px;
    margin: 0px 6px;
}

.bg-wrap {
    display: block;
    width: 100%;
    height: 140px;
}
/*@media screen and (max-width: 801px){
    .subject-wrap{
        display: none;
    }
    .new_w_100_footer{
        display: none;
    }
    .new_w_100_footer_bottom{
        min-width: 100%;
    }
}*/
.subject-list img,.subject-list-second img {
    width: 190px;
}

.subject-list img {
    height: 107px;
}

.subject-list-second img {
    height: 68px;
}

.sponsor-item p {
    font-size: 12px;
}

.new_about_strategic {
    background: #fff;
    margin-top: 20px;
    padding: 15px 0 35px;
}

.new_about_strategic .subject {
}

.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 21px;
    height: 39px;
    left: 0;
    top: 8%;
    background: url(../images/btn_pre.png) no-repeat center center;
}

.owl-carousel .owl-nav .owl-next {
    position: absolute;
    width: 21px;
    height: 39px;
    right: 0;
    top: 8%;
    background: url(../images/btn_next.png) no-repeat center center;
}

@media only screen and (max-width: 1200px) {
    .new_about_strategic {
        height: auto;
        padding: 0;
    }

    .new_about_strategic .subject {
        padding: 15px 0 35px;
        background: #fff;
    }
}
/*********************/
html,body {
    background: #efefef;
}

.two_level_navigation_box p a {
    float: right;
    font-weight: 100;
    position: relative;
    top: -18px;
}

.kszx_box_1_city {
    overflow: hidden;
    height: 30px;
}

.kszx_box_1_city:hover {
    height: 90px;
}

.kszx_box_1_city li {
    float: left;
    margin: 0px 2px;
    line-height: 30px;
}

.kszx_box_1_city li a {
    padding: 5px 10px;
    border-radius: 4px;
}

.kszx_box_1_city li a:hover {
    background: #2caf2b;
    color: #fff;
}

.city {
    background: #daf4da;
    position: absolute;
    padding: 5px;
}

#information_right_top_1 {
}

.zkzx_qg_zkzx {
    line-height: 26px!important;
    overflow: hidden;
}

.curriculum_images {
    cursor: pointer;
}

#selectedCourse {
    width: 800px;
    height: 500px;
    border: none;
    background: #fff;
}

.layui-layer-content {
    background: #000000!important;
}

#move_port {
    position: fixed;
    width: 240px;
    height: 202px;
    left: 0;
    top: 0;
    cursor: pointer;
    z-index: 9999999999;
}

.zkzx_qg_zkzx a {
    float: left;
}

.zkzx_qg_zkzx span {
    float: right;
}

.information_right_left_zx ul li {
    overflow: hidden;
}

.information_right_left_zx ul li a {
    float: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 230px;
}

.information_right_left_zx ul li span {
    float: right;
}

.box_mb {
    width: 100%;
    height: 100%;
    position: fixed;
    background: url("http://files.edu-edu.com/template/newb2c/images/tm.png") repeat;
    display: none;
    z-index: 99999999;
}

.box_mb .img_box_mb {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 560px;
    height: 576px;
    margin: auto;
}

.po_img_mb {
    position: relative;
    width: 100%;
    height: 100%;
}

.po_img_mb img {
    position: absolute;
    width: 560px;
}

.po_img_mb span {
    width: 39px;
    height: 40px;
    right: 47px;
    top: 68px;
    position: absolute;
    display: block;
    cursor: pointer;
    z-index: 1;
    background: url("http://files.edu-edu.com/template/newb2c/images/ounder.png") repeat;
}

.po_img_mb a {
    width: 205px;
    height: 50px;
    left: 177px;
    bottom: 49px;
    position: absolute;
    display: block;
    cursor: pointer;
    z-index: 1;
    background: url("http://files.edu-edu.com/template/newb2c/images/ounder.png") repeat;
}

.reversion_serch input {
    background: url("../images/black_serch.png")  no-repeat 10px center;
    height: 38px;
    line-height: 38px;
    width: 240px;
    padding-left: 47px;
    border: 2px solid #2caf2b;
    border-radius: 5px 0px 0px 5px;
    float: left;
    font-size: 16px;
}

.reversion_serch {
    position: relative;
}

.recommended_class_shape {
    height: 213px;
    width: 288px;
    background: #fff;
    position: absolute;
    z-index: 999;
    bottom: -223px;
    border: 1px solid #dedede;
    display: none;
    right: 93px;
    padding-top: 10px;
}

.reversion_serch span {
    position: absolute;
    right: 104px;
    top: 40px;
    color: #8c8c8c;
    font-size: 14px;
}

.recommended_class_shape p {
    line-height: 30px;
    padding-left: 19px;
}

.recommended_class_shape p a {
    font-size: 14px;
    display: block;
    color: #666666;
    width: 100%;
    height: 100%;
}

.recommended_class_shape p a:hover {
    color: #44b543;
}
.site_map{
    padding: 0 35px;
    width: 1130px;
    min-width: 1130px;
    padding-bottom: 15px;
}
.site_map h2{
    text-align: center;
    color: #b20101;
    padding: 20px;
    padding-bottom: 10px;
    font-size: 24px;
}
.site_map h3{
    text-align: left;
    color: #4d4d4d;
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
    border-bottom: 1px #dddddd dashed;
    padding-top: 20px;
}
.site_map h4{
    text-align: left;
    border-left: 3px solid #14b38b;
    font-size: 16px;
    color: #333333;
    letter-spacing: 2px;
    padding-left: 10px;
    margin-left: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.site_map h5{
    text-align: left;
    border-left: 3px solid #14b38b;
    font-size: 15px;
    color: #333333;
    letter-spacing: 1px;
    padding-left: 5px;
    margin-left: 44px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.site_map_floor{
    overflow: hidden;
    margin-bottom: 14px;
}
.site_map_floor_s{
    overflow: hidden;
}
.site_map_left{
    float: left;
}
.site_map_right{
    float: left;
    width: 1030px;
}
.site_map_right ul{
    float: left;
}
.site_map_right ul li{
    float: left;
    margin: 0px 20px;
    line-height: 26px;
}
.site_map_right ul li a{
    color: #333333;
    font-size: 14px;
}
.site_map_left p{
    font-size: 14px;
    font-weight: bold;
    width: 98px;
    text-align: right;
    line-height: 26px;
}
.site_map_floor_yxk{
    overflow: hidden;
    padding: 20px 30px 0px 30px;
}
.site_map_floor_yxk li{
    float: left;
    margin: 0px 20px;
    line-height: 26px;
}
.site_map_floor_yxk li a{
    color: #333333;
    font-size: 14px;
}
.site_map_news ul{
    overflow: hidden;
    margin-left: 22px;
}
.site_map_news ul li{float: left;width: 118px;height: 40px;background: #f5f5f5;text-align: center;line-height: 40px;padding-left: 30px;}
.site_map_news ul li a{font-size: 14px;    display: block;width: 100%; height: 100%;}
.site_map_news{padding-bottom: 30px;}
.m_happanewyea {
    display: none;
}
/*@media screen and (max-width: 801px){
    .m_happanewyea{
        display: block;
        width: 100%;
    }
    .yxjtc{
        display: none;
    }
}*/
.sponsor-item a {
    overflow: hidden;
    display: block;
}

.screening_box_region  .curr {
    background: #2caf2b;
    border-radius: 4px;
}

.screening_box_region  .curr a {
    color: #ffffff;
}


/**********自定义分页************/
.pages .fl {
    float: left;
}

.pages {
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding-top: 27px;
    width: 770px;
    margin: 0 auto;
    padding-bottom: 25px;
}

.total-pages {
    float: left;
    padding-left: 20px;
}

.pages button {
    padding: 0 10px;
    margin: 0 10px;
    height: 40px;
    float: left;
    cursor: pointer;
    border: 1px solid #ebebeb;
    background-color: #ffffff;
}

.pages .first-page,
.pages .last-page {
    margin: 0;
}

.pages .pageWrap {
    height: 40px;
    float: left;
    overflow: hidden;
}

.pages .pageWrap ul {
    width: 100000px;
    height: 40px;
    float: left;
}
.site_map h3 a{
    color: #4d4d4d;
    font-size: 14px;
    float: right;
    padding-top: 6px;
}
.pages .pageWrap ul li {
    width: 60px;
    height: 40px;
    border: 1px solid #ebebeb;
    line-height: 40px;
    box-sizing: border-box;
    cursor: pointer;
    float: left;
}

.pages .pageWrap ul .sel-page {
    background-color: #2caf2b;
    color: #fff;
}

.pages .jump-text {
    width: 60px;
    height: 40px;
    box-sizing: border-box;
    text-align: center;
    margin: 0 5px;
    float: left;
}

.pages .jump-button {
    margin: 0;
    float: left;
}

.pages.total-pages,
.pages.total-count {
    margin-left: 10px;
    float: left;
    font-size: 14px;
}
#information_right_top_2 #new_lin_hit li a {
    width: 310px!important;
}
/*移动端头部*/
.m_head{
    display: none;
}
/*移动端轮播*/
.m_flexslider {
    display: none;
}
/*移动端导航*/
.m_nav {
    display: none;
}
/*移动端活动板块*/
.m_activity {
    display: none;
}
/*移动端二级导航*/
.m_list_nav {
    display: none;
}
/*悬浮导航*/
.m_flex_nav {
    display: none;
}
.Institute_main {
    margin:0 auto;
    width: 1200px;
    position: relative;
}

#Institute{
    width: 1020px;
    margin: auto;
    height: 115px;
    overflow: hidden;
}
#Institute ul{
    width: 1500px;
    height: 600px;

    margin: 0;
}
#Institute ul li{
    display: inline-block;
    margin: 10px 0;
}
#Institute ul li p{
    text-align: center;
}

#Institute-btn {
    width: 680px;
    padding-top: 10px;
}
.Institute_main .btn-left{

    position: absolute;

    left: 30px;

    top: 35px;

    cursor: pointer;
}
.Institute_main .btn-right{

    position: absolute;

    right: 30px;

    top: 35px;

    cursor: pointer;
}
/*移动端布局*/
@media screen and (max-width: 500px) {
    html, body {
        background: #fff;
    }

    .subject_x {
        display: none;
    }

    .bg_green {
        display: none;
    }

    .reversion_banner {
        display: none;
    }
    #WeChatGroupChat{
        display: none;
    }
    .subject-wrap {
        display: none;
    }

    .m_4 {
        display: none;
    }

    .advertising_map {
        display: none;
    }

    .new_about_strategic {
        display: none;
    }

    #footer {
        display: none;
    }

    .new_w_100_footer {
        display: none;
    }

    .new_w_100_footer_bottom {
        width: 100%;
        background: #14b38b;
        min-width: 100%;
        height: 1.5rem;
        padding-top: 0.2rem;
        margin-bottom: 1.1rem;
    }

    .toolbar {
        display: none;
    }

    .m_head {
        display: block!important;
        height: 1.12rem;
        margin-bottom: 0.24rem;
        background: #fff;
        box-shadow: 0px 0px 15px #dededf;
    }

    .m_logo {
        height: 0.45rem;
        width: 3.4rem;
        background: url(/tp/PC/b2c/images/reversion_logos.png) no-repeat;
        background-size: 100% 100%;
        margin-left: 0.2rem;
        float: left;
        display: block;
        margin-top: 0.35rem;
    }

    .m_search_box {
        width: 3.05rem;
        height: 0.5rem;
        float: right;
        border-radius: 1rem;
        border: 0.02rem solid #e3e3e3;
        margin-top: 0.32rem;
        margin-right: 0.2rem;
        position: relative;
    }
    #jesong_chat_layout {
        width: 7rem!important;
        left: 0.25rem!important;
    }
    #jesong_chat_body .jesong_chat_left {
        width: 100%!important;
    }
    .m_search_box input {
        width: 2.3rem;
        /* background: red; */
        border: none;
        height: 0.4rem;
        margin-left: 0.01rem;
        padding-left: 0.2rem;
        position: absolute;
        border-radius: 1rem;
        top: 0.06rem;
        background: #fff;
        font-size: 0.25rem;
    }

    .sm_2 {
        display: none;
    }

    .m_search_box span {
        display: block;
        width: 0.37rem;
        height: 0.37rem;
        position: absolute;
        background: url("../images/m_wdj.png") no-repeat;
        background-size: 100% 100%;
        right: 0.2rem;
        top: 0.05rem;
    }

    .m_flexslider {
        display: block;
        height: 2.8rem!important;
        width: 94%;
        border-radius: 0.2rem;
        margin: auto;
    }
    .flex-control-nav{
        bottom: 0.2rem!important;
    }

    .slides li {
        height: 2.8rem!important;
        background-size: 100% 100% !important;
    }

    .m_nav {
        background: #fff;
        overflow: hidden;
        padding: 0.32rem 0.25rem;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-gap: 0.25rem;
    }

    .m_nav dl {
        text-align: center;
    }

    .m_nav dl dt {
    }

    .m_nav dl dt img {
        width: 0.85rem;
    }

    .m_nav dl dd {
        text-align: center;
        font-size: 0.24rem;
        padding-top: 0.1rem;
    }

    .m_nav dl a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .m_activity {
        display: block;
        padding: 0rem 0.2rem;
        overflow: hidden;
        background: #fff;
    }

    .m_activity_left {
        float: left;
        width: 3.42rem;
    }

    .m_activity_left a {
        width: 100%;
        display: block;
    }

    .m_activity_left img {
        width: 100%;
    }

    .m_activity_right {
        float: right;
        width: 3.42rem;
    }

    .m_activity_right_top {
        height: 0.93rem;
        background: url("../images/m_activity_top.png") no-repeat;
        background-size: 100% 100%;
        box-shadow: 0px 0px 15px #dededf;
    }

    .m_activity_right_bottom {
        height: 0.93rem;
        background: url("../images/m_activity_bottom.png") no-repeat;
        background-size: 100% 100%;
        box-shadow: 0px 0px 15px #dededf;
        margin-top: 0.2rem;
    }

    .m_activity_right a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .m_list_nav {
        display: block;
        padding: 0 0.2rem;
    }

    .m_list_nav ul li {
        width: 2.27rem;
        height: 0.93rem;
        float: left;
        box-shadow: 0px 0px 15px #dededf;
    }

    .m_list_nav ul li a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .m_list_nav ul li a img {
        width: 100%;
        height: 100%;
    }

    .m_m_r_n {
        margin-right: 0.14rem;
    }

    .m_list_nav ul {
        overflow: hidden;
        padding: 0.2rem 0;
    }
    .m_1 .information_right_bottom{
        display: none;
    }
    .m_1 {
        width: 100%;
        min-width: 100%;
        background: #fff;
    }

    .m_2 {
        width: 100%;
        min-width: 100%;
        background: #fff;
        padding-top: 0rem;
        margin-top: 0;
    }

    .m_3 {
        width: 100%;
        min-width: 100%;
        background: #fff;
        margin-top: 0;
        border-top: 0.3rem solid #f8f8f9;
    }
    #information_right_top_2{
        width: 100%;
    }

    .sm_1 {
        display: none;
    }

    .education_tap {
        float: left;
        width: 100%;
    }

    .information_right_bottom {
        overflow-x: auto;
        padding-top: 0.15rem;
    }
    .information_right_bottom ul{
        width: 11.25rem;
        padding-top: 0;
    }
    .information_right_bottom ul li{         margin: 0;
        width: 3.75rem;}
    .information_right_bottom ul li a{    display: block;
        padding-right: 0.15rem;}
    .information_right_bottom ul li a img{    width: 100%;}
    .information_right_bottom ul li:last-child a{
        padding-right: 0;
    }

    .education_left_bottom {
        height: auto;
        width: 100%;
        padding-top: 0.2rem;
        padding-left: 0rem;
    }

    .ggt {
        display: none;
    }

    .m_b_40 {
        margin-bottom: 0rem;
    }

    .education_right {
        display: none;
    }

    .education_left {
        width: 96%;
        padding: 0 2%;
        background: #f8f8f9;
        padding-top: 0.2rem;
    }
    .m_2 .education_left{
        background: #fff;
    }
    .m_3 .education_left{
        background: #fff;
    }
    .list_of_courses {
        margin-top: 0rem;
        padding: 0 0.2rem;
        background: #fff;
        border-radius: 0.2rem;
    }
    .m_1 .list_of_courses{
        margin-bottom: 0.3rem;
    }

    .bat_box {
        padding-bottom: 0;
    }

    .list_of_courses li {
        width: 100%;
        float: none;
        height: auto;
        padding: 0;
        margin: 0;
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid #f4f3f3;
        padding: 0.35rem 0;
    }

    .information_right_right_ggt_bottom {
        display: none;
    }

    .list_of_courses li a {
        width: 100%;
        display: grid;
        grid-template-columns: 3rem 1fr;
        grid-gap: 0.3rem;
        padding: 0.1rem 0;
    }

    .images_box {
        width: 100%;
        height: auto;
        border-radius: 0.2rem;
    }
    .m_1 .grid_5{
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    .m_1 .grid_5 li{
        font-size: 0.26rem;
    }

    .m_2 .grid_4{
        grid-template-columns: 1fr 1fr 1fr 1fr ;
    }
    .m_2 .grid_4 li{
        font-size: 0.26rem;
    }

    .course_name {
        font-size: 0.32rem;
        padding-top: 0.05rem;
        width: 100%;
    }

    .course_bay {
        padding-top: 0.15rem;
        width: 100%;
        padding-right: 0;
        text-align: left;
        font-size: 0.28rem;
    }

    .purchase_immediately {
        width: 1rem!important;
        padding: 0.07rem 0.3rem!important;
        background: #fff;
        color: #747474;
        margin-right: 0;
        border: 1px solid #dcdee2;
        border-radius: 0.5rem;
        display: block!important;
        font-size: 0.24rem;
        text-align: center;
    }

    .online_consulting {
        width: 1rem!important;
        padding: 0.07rem 0.3rem!important;
        border: 1px solid #ee4c3b;
        border-radius: 0.5rem;
        background: #ee4c3b;
        border-left: none;
        margin-left: 0.15rem;
        display: block!important;
        font-size: 0.24rem;
        text-align: center;
    }

    .kecjj {
        position: absolute;
        width: 3.45rem;
        right: 0;
        bottom: 0.45rem;
    }

    .education_left_top ul {
        padding-left: 0;
        padding-top: 0.2rem;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 0.15rem;
    }

    .education_left_top h3 {
        margin-top: 0;
        font-size: 0.35rem;
        color: #343434;
        padding-left: 0;
        border-left: none;
        font-weight: bold;
    }

    .education_left_top {
        height: auto;
        position: relative;
        border-bottom: none;
        overflow: hidden;
    }

    .education_left_top ul .on {
        color: #fa3633;
        background: #ffd9d9;
    }

    .education_left_top ul li {
        font-size: 0.3rem;
        cursor: pointer;
        background: #eeeeee;
        color: #999999;
        margin: 0;
        float: none;
        padding: 0.15rem 0;
        text-align: center;
        border-radius: 0.15rem;
    }

    .education_left_top a {
        margin-top: 0;
        padding: 0.05rem 0.1rem;
        font-size: 0.25rem;
        position: absolute;
        right: 0;
        top: 0.05rem;
    }

    #loading {
        display: block;
        z-index: 9999999999;
    }

    .information_right {
        width: 100%;
        padding-left: 0;
    }

    .information_right_left {
        width: 100%;
    }

    #information_right_top_1 {
        width: 100%;
    }

    .zkzxtjt {
        display: none;
    }

    .information_right_right {
        width: 100%;
    }

    .information_right_left_zx {
        margin-bottom: 0.2rem;
    }

    .information_right_left_zx p a {

        color: #343434;
        font-size: 0.3rem;
        padding-bottom: 0;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        white-space: normal;
    }

    .information_right_left_zx p {
        padding-top: 0.2rem;
        padding-bottom: 0.1rem;
    }

    .information_right_left_zx ul li a {
        width: 100%;
        font-size: 0.3rem;
        color: #17233d;
        line-height: 0.45rem;
        text-overflow: -o-ellipsis-lastline;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        white-space: normal;
    }
    .information_right_left_zx ul li span{
        display: block;
        float: none;
        font-size: 0.26rem;
        clear: both;
        color: #9ea7b4;
        padding-top: 0.1rem;
    }

    #new_lin_hit li {
        line-height: initial!important;
        border-bottom: 1px solid #f4f3f3;
        padding: 0.15rem 0;
        margin: 0.05rem 0;
    }
    #information_right_top_2 #new_lin_hit li a{
        width: 100%!important;
    }

    .zkzx_qg_zkzx {
        line-height: initial!important;
        border-bottom: 1px solid #f4f3f3;
        padding: 0.15rem 0;
        margin: 0.05rem 0;
    }

    .m_flex_nav {
        display: block;
        position: fixed;
        bottom: 0;
        height: 1.1rem;
        width: 100%;
        background: #fff;
        overflow: hidden;
        z-index: 99999;
    }

    .m_flex_nav dl {
        float: left;
        text-align: center;
        width: 20%;
        padding-top: 0.15rem;
    }

    .m_flex_nav dl a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .m_flex_nav dl a dt {
        text-align: center;
    }

    .m_flex_nav dl a dt img {
        display: inline-block;
        width: 0.44rem;
    }
    .m__aboutUs{position: fixed;right: 0.2rem;bottom: 2.2rem;padding: 0;background: #fff;    border-radius: 0.2rem;}
    .m__aboutUs img{width: 1rem;    padding: 0.15rem;}
    .m__aboutUs__main{position: fixed;right: -2rem;bottom: 2rem;    z-index: 10;}
    .m__aboutUs__main img{width: 1rem;padding: 0.2rem;position: relative;z-index: 5;}
    .m__aboutUs__main ul{background: #f2f2f2;padding: 0.3rem 0rem;border-radius: 0.2rem;}
    .m__aboutUs__main ul li{padding: 0;position: relative;}
    .ic_dianhua a{
        position: absolute;
        right: -5rem;
        background: #fff;
        width: 2.4rem;
        color: black;
        font-size: 0.35rem;
        box-shadow: 0px 0px 15px #e0e0e0;
        padding: 0.25rem 0.15rem;
        border-radius: 0.2rem;
        top: 0.2rem;
    }
    .m__aboutUs__main ul li.active{
        background: #e6e6e6;
    }
    .ic_weixin .ic_weixin__pic{
        padding: 0;
        position: absolute;
        right: -5rem;
        width: 1.9rem;
        box-shadow: 0px 0px 15px #e0e0e0;
    }
    .m_flex_nav dl a dd {
        font-size: 0.25rem;
        padding-top: 0.05rem;
    }
    .information_right_left_zx ul li a:hover{
        color: #fa3633;
    }
    #top{
        display: none;
    }
    .h_70{
        display: none!important;
    }
    .course_screen_core{
        margin-top: 0!important;
    }
    .content{
        width: 100%;
        min-width: 100%;
    }
    #sxx a{
        font-size: 0.3rem;
    }
    .tk_left{
        display: none;
    }
    .m_tk_pt{
        padding-top: 0rem!important;
    }
    .erbanner{
        width: 100%;
        min-width: 100%;
        background: url("../images/erbanner_m.jpg") no-repeat !important;
        background-size: 100% 100%!important;
    }
    .colleges_and_Universities{
        width: 100%;
        min-width: 100%;
    }
    .subject_1160{
        width: 96%;
        min-width: 96%;
        padding: 2%;
    }
    .screening_box_region p{
        font-size: 0.3rem;
        padding-bottom: 0.2rem;
    }
    .screening_box_region ul{
        width: 97%;
        padding-left: 3%;
    }
    .colleges_and_Universities_right{
        display: none;
    }
    .colleges_and_Universities_left{
        width: 96%;
        padding: 2%;
    }
    .colleges_and_Universities_left ul{
        width: 100%;
    }
    .colleges_and_Universities_left ul li{
        width: 98%;
        margin: 0% 1%;
        margin-bottom: 0.2rem;
    }
    #pages{
        width: 100%!important;
    }
    .pages button{
        display: none;
    }
    .pages .jump-text{
        display: none;
    }
    .pages .pageWrap ul li{

    }
    .pages .pageWrap{
        width: 100%!important;
    }
    .total-pages{
        display: none;
    }
    .self_examination_major{
        margin-top: 0.4rem;
        width: 100%;
        min-width: 100%;
    }
    .introduction_whole_profession{
        width: 100%;
        min-width: 100%;
        margin-top: 0.3rem;
    }
    .introduction_whole_profession_left{
        padding-top: 0.3rem;
        padding-left: 3%;
        padding-bottom: 0.3rem;
        padding-right: 3%;
        width: 94%;
    }
    .introduction_whole_profession_right{
        display: none;
    }
    .introduction_whole_profession_left_recommendation{
        width: 100%;
        position: relative;
    }
    .introduction_whole_profession_left_recommendation_img{
        margin: 0;
        width: 4.2rem;
        margin-left: 0.2rem;
        margin-top: 0.2rem;
    }
    .introduction_whole_profession_left_recommendation_right{
        position: absolute;
        right: 0.2rem;
        top: 0.2rem;
        border: none;
    }
    .immediate_consultation{
        border: 1px solid #d1d1d1;
        border-bottom: none;
    }
    .view_the_details{
        border: 1px solid #d1d1d1;
    }
    .immediate_consultation a{
        height: 100%;
    }
    .view_the_details a{
        height: 100%;
    }
    .h_50{
        height: 1.16rem;
    }
    .immediate_consultation dt{
        padding-top: 0.3rem;
    }
    .view_the_details dt{
        padding-top: 0.3rem;
    }
    .immediate_consultation dd{
        display: none;
    }
    .view_the_details dd{
        display: none;
    }
    .introduction_whole_profession_left_rich_text{
        width: 100%;
    }
    .introduction_whole_profession_left_rich_text table{
        width: 100%!important;
    }
    .self_examination_major ul{
        padding: 0.2rem;
    }
    .self_examination_major ul li{
        width: 92%;
        padding: 4%;
        margin: 0.2rem 0;
    }
    .screening_box .professional_university ul{
        width: 97%;
    }
    .introduction_whole_profession_left_recommendation_center{
        width: 92%;
        padding-left: 4%;
        padding-right: 4%;
    }
    .include_services span{
        width: 92%;
    }
    .m_hide_app{
        display: none;
    }
    .m_show_app{
        display: block;
    }
    .new_footer{
        min-width: 100%;
        padding-bottom: 30px;
        height: auto;
        margin-bottom: 0.5rem;
    }
    .new_footer ul{
        overflow: hidden;
        width: 100%;
        margin: auto;
        margin-top: 10px;
    }
    .new_footer ul li {
        float: left;
        margin: 0px;
        width: 25%;
        text-align: center;
    }
    #enroll{
        display:none;
    }
}

@media screen and (min-width:640px){
    html{font-size:86px;}
}
@media screen and (min-width:414px) and (max-width:639px){
    html{font-size:55px;}
}
@media screen and (min-width:375px) and (max-width:413px){
    html{font-size:50px;}
}
@media screen and (min-width:320px) and (max-width:374px){
    html{font-size:42.5px;}
}