* {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 62.5%;
    font-family: "Microsoft YaHei", "Arial", "榛戜綋", "瀹嬩綋", sans-serif;
    min-width: 1200px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
}

a {
    text-decoration: none;
}

input,
select,
button,
textarea {
    outline: none;
    padding-left: 10px;
}

ul,
li {
    list-style: none;
}

input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #ccc;
}

input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #ccc;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #ccc;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #ccc;
}

input {
    outline: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

@-webkit-keyframes push {
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes push {
    50% {
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.push {
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.push:hover {
    -webkit-animation-name: push;
    animation-name: push;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.scale {
    transition: all 1.2s;
    -webkit-transition: all 1.2s;
    -moz-transition: all 1.2s;
    -o-transition: all 1.2s;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1)
}

.scale:hover {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2)
}

@keyframes leftRight {
    40% {
        transform: translate(30px, 0) scale(.7);
        opacity: 1;
        color: #000;
    }
    60% {
        color: #fff;
    }
    80% {
        transform: translate(0) scale(2);
        opacity: 0;
    }
    100% {
        transform: translate(0) scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateF {
    0% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes rotateF {
    0% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes loading {
    to {
        text-shadow: 0 0 2px rgba(204, 208, 212, 0.2), 0 0 3px rgba(0, 0, 0, 0.02), 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(255, 255, 255, 0), 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(255, 255, 255, 0), 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes scale {
    0% {
        -webkit-transform: scale(1.1, 1.1);
        -moz-transform: scale(1.1, 1.1);
        -o-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1)
    }
    30% {
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1)
    }
    50% {
        -webkit-transform: scale(0.8, 0.8);
        -moz-transform: scale(0.8, 0.8);
        -o-transform: scale(0.8, 0.8);
        transform: scale(0.8, 0.8);
    }
    80% {
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1)
    }
    100% {
        -webkit-transform: scale(1.1, 1.1);
        -moz-transform: scale(1.1, 1.1);
        -o-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1)
    }
}

.hide {
    display: none;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clean {
    clear: both;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.text-center {
    text-align: center;
}

.bold {
    font-weight: bold;
}

.ml40 {
    margin-left: 40px;
}

.ml50 {
    margin-left: 50px;
}

.mr40 {
    margin-right: 40px;
}

.ml20 {
    margin-left: 20px;
}

.mr20 {
    margin-right: 30px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.line20 {
    line-height: 20px;
}

.line26 {
    line-height: 26px;
}

.line30 {
    line-height: 30px;
}

.line40 {
    line-height: 40px;
}

.line60 {
    line-height: 60px;
}

.cor999 {
    color: #999;
}

.cor666 {
    color: #666;
}

.cor333 {
    color: #333;
}

.corff9600 {
    color: #ff9600;
}

.cor0f6be1 {
    color: #0f6be1;
}

.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

.font16 {
    font-size: 16px;
}

.font18 {
    font-size: 18px;
}

.font20 {
    font-size: 20px;
}

.font22 {
    font-size: 22px;
}

.font24 {
    font-size: 24px;
}

.font26 {
    font-size: 26px;
}

.font28 {
    font-size: 28px;
}

.font30 {
    font-size: 30px;
}

.font48 {
    font-size: 48px;
}

.bgfff {
    background-color: #fff;
}

.bgdef4ff {
    background-color: #def4ff;
}

.bgfafafa {
    background-color: #fafafa;
}

.pad_top_16 {
    padding-top: 16px;
}

.pad_top_40 {
    padding-top: 40px;
}

.pad_bottom_40 {
    padding-bottom: 40px;
}

.border-bottom-ddd {
    border-bottom: 1px solid #ddd;
}

.border-right-ddd {
    border-right: 1px solid #ddd;
}

.center {
    width: 1200px;
    margin: 0 auto;
}

.header {
    height: 90px;
    background-color: #fff;
}

.logo {
    line-height: 90px;
}

.logo img {
    display: inline-block;
    vertical-align: middle;
}

.header_middle {
    margin-left: 40px;
    position: relative;
}

.nav ul li,
.menu ul li {
    float: left;
    position: relative;
}

.nav .link,
.nav li h3,
.menu .link,
.menu li h3 {
    display: block;
    color: #333;
    font-size: 16px;
    line-height: 90px;
    cursor: pointer;
    padding-left: 11px;
    padding-right: 11px;
}

.nav li h3 a,
.menu li h3 a {
    color: #333;
}

.nav .link:hover,
.nav li h3:hover,
.menu .link:hover,
.menu li h3 a:hover,
.nav .link.active,
.nav li h3 a.active,
.menu .link.active,
.menu li h3.active {
    color: #0c67e1;
}

.nav ul li:before,
.menu ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 36px;
    display: block;
    width: 1px;
    height: 18px;
    background-color: #ececec;
}

.nav ul li:last-child:after,
.menu ul li:last-child:after {
    content: "";
    position: absolute;
    right: 0;
    top: 36px;
    display: block;
    width: 1px;
    height: 18px;
    background-color: #ececec;
}

.nav ul li .absolute_top_right,
.menu ul li .absolute_top_right {
    display: block;
    position: absolute;
    right: -10px;
    top: 20px;
    background-color: #ff8400;
    font-size: 12px;
    color: #fff;
    width: 34px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}

.menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    /*height: 260px;*/
    z-index: 9999;
    /*background-color: #fff;*/
    padding-bottom: 10px;
}

.menu .row_line_ececec {
    position: absolute;
    left: 0;
    right: 0;
    top: 90px;
    height: 1px;
    background-color: #ececec;
    z-index: 9999;
}

.menu .absolute_top {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 10px 0;
    background-color: #fff;
}

.menu .absolute_top a {
    display: block;
    color: #666;
    font-size: 14px;
    line-height: 30px;
    padding-left: 18px;
    padding-right: 12px;
}

.menu .absolute_top a:hover {
    background-image: url(../image/sjx.png);
    background-repeat: no-repeat;
    background-position: 10px center;
    color: #0c67e1;
}

.tel {
    padding: 15px;
    background-image: url(../image/tel.png);
    background-position: left center;
    background-repeat: no-repeat;
}

.footer {
    background-color: #373d41;
    padding-top: 30px;
    color: #fff;
    padding-bottom: 120px;
}

.footer_menu dl {
    width: 150px;
    text-align: center;
    display: block;
    float: left;
    position: relative;
}

.footer_menu dl:before,
.footer_basic:before,
.footer_basic:last-child:after {
    position: absolute;
    top: 20px;
    content: '';
    display: block;
    width: 1px;
    height: 129px;
    background-color: #4c545a;
}

.footer_menu dl:before,
.footer_basic:before {
    left: 0;
}

.footer_menu dl:last-child:after,
.footer_basic:last-child:after {
    right: 0;
}

.footer_menu dt {
    line-height: 30px;
    font-size: 14px;
    font-weight: bold;
}

.footer_menu dd a {
    display: block;
    line-height: 26px;
    font-size: 12px;
    color: #999
}

.footer_basic {
    padding: 20px 40px;
    position: relative;
}

.footer_basic .lmacc_weixin {
    width: 90px;
    height: 90px;
}

.footer_basic .kefu {
    margin-top: 15px;
    padding-left: 66px;
    background-image: url(../image/kefu_opacity.png);
    background-position: left center;
    background-repeat: no-repeat;
}

.footer_basic .kefu_black {
    display: block;
    margin: 0 auto;
}

.footer_basic .kefu_btn {
    width: 121px;
    height: 40px;
    margin-left: 25px;
    position: relative;
}

.footer_basic .kefu_btn a {
    display: block;
    width: 121px;
    height: 40px;
    background-image: url(../image/22.png);
    background-position: left center;
    background-repeat: no-repeat;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

.footer_basic .kefu_click {
    position: absolute;
    right: 0;
    bottom: 0;
}

.footer_bottom {
    line-height: 50px;
    border-top: 1px solid #4c545a;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.footer_bottom a {
    color: #999;
}

.footer_link {
    line-height: 25px;
    margin-top: 20px;
}

.fullSlide {
    width: 100%;
    height: 480px;
    position: relative;
    background: #fff;
}

.fullSlide .bd {
    margin: 0 auto;
    position: relative;
    z-index: 0;
    overflow: hidden;
    height: 480px;
}

.fullSlide .bd ul {
    width: 100% !important;
    height: 480px;
}

.fullSlide .bd li {
    width: 100% !important;
    overflow: hidden;
    text-align: center;
    height: 480px;
}

.fullSlide .hd {
    width: 100%;
    position: absolute;
    z-index: 1;
    bottom: 40px;
    left: 0;
    height: 30px;
}

.fullSlide .hd ul {
    text-align: center;
}

.fullSlide .hd ul li {
    display: inline-block;
    width: 16px;
    height: 16px;
    overflow: hidden;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    margin: 5px 10px;
    color: rgba(0, 0, 0, 0);
    line-height: 16px;
}

.fullSlide .hd ul .on {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, 1);
}

.fullSlide .bd ul li .btn {
    position: absolute;
    left: 50%;
    bottom: 108px;
    margin-left: -201px;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    display: block;
    border-radius: 30px;
    width: 402px;
    height: 60px;
    border: 1px solid #fff;
    line-height: 56px;
    text-align: center;
}

.allbig {
    display: flex;
    justify-content: space-between;
}

.bigleftop {
    display: flex;
    flex-direction: row;
    /* width: 268px; */
    /* height: 6px; */
    line-height: 60px;
    /* margin-top: 30px; */
}

.bigleftopli {
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    padding: 0 15px;
    cursor: pointer;
}

.bigleftop .active {
    color: #0C67E1;
    font-size: 22px;
}

.bigleftbot {
    display: none;
    margin-top: 10px;
}

.bidright {
    width: 520px;
}

.bigleftbotli {
    display: flex;
    align-items: center;
    width: 570px;
    border-bottom: 1px solid #EBEBEB;
}

.bigyuan {
    width: 5px;
    height: 5px;
    background: #959595;
    border-radius: 50%;
    margin: 0 15px 0 10px;
}

.bigleftbotlia {
    display: flex;
    height: 45px;
    align-items: center;
    justify-content: space-between;
    width: 570px;
}

.bigleftbotlia0 {
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 570px;
}

.bigleftfirstbottom {
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.7;
    font-size: 14px;
    color: #fff;
    line-height: 30px;
    padding: 0 10px;
}

.bigleftbotlidl {
    color: #000;
    width: 85%;
    /* background: rgba(204, 208, 212, 0.2); */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.bigleftbotlidl0 {
    display: inline-block;
    width: 85%;
    /* background: rgba(204, 208, 212, 0.2); */
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.bigleftbotlidr {
    color: #999;
}

.bigleftbotlidr0 {
    display: inline-block;
    text-align: right;
}

.big_title2 {
    line-height: 70px;
    font-weight: bold;
    font-size: 22px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
}

.big_title {
    text-align: center;
    font-size: 36px;
    color: #333;
    line-height: 70px;
    font-weight: bold;
}

.title_icon {
    padding: 30px;
    background-image: url(../image/title_icon.png);
    background-position: left center;
    background-repeat: no-repeat;
}

.big_desc {
    margin-top: 20px;
    font-size: 18px;
    line-height: 24px;
}

.video {
    width: 600px;
    height: 370px;
    /* margin: 50px auto; */
    background-image: url(../image/video_bg.png);
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.video .bofang_btn {
    width: 64px;
    height: 64px;
    background-image: url(../image/bofang_btn.png);
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -32px;
    margin-left: -32px;
}

.hezuo_list {
    width: 498px;
    height: 496px;
    margin: 50px auto 0 auto;
    position: relative;
}

.hezuo_list_left {
    position: absolute;
    left: -368px;
    top: 0;
}

.hezuo_list_left ul li {
    width: 292px;
    height: 80px;
    margin-top: 60px;
    border-width: 1px;
    border-style: dashed;
    border-radius: 42px;
    padding: 10px 10px 10px 92px;
    position: relative;
    font-size: 12px;
    color: #333;
    line-height: 20px;
}

.hezuo_list_left .circle_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    padding-top: 12px;
    font-size: 14px;
    color: #fff;
}

.hezuo_list_left li.ffc000 {
    border-color: #ffc000;
}

.hezuo_list_left li.ffc000 .circle_bg {
    background-color: #ffc000;
}

.hezuo_list_left li.ff8400 {
    border-color: #ff8400;
}

.hezuo_list_left li.ff8400 .circle_bg {
    background-color: #ff8400;
}

.hezuo_list_left li.cor55c5ad {
    border-color: #55c5ad;
}

.hezuo_list_left li.cor55c5ad .circle_bg {
    background-color: #55c5ad;
}

.hezuo_list_right {
    position: absolute;
    right: -357px;
    top: 16px;
}

.hezuo_list_right ul li {
    margin-top: 30px;
    width: 305px;
    height: 72px;
    padding: 15px;
    border-radius: 36px;
    border-width: 1px;
    border-style: dashed;
    font-size: 14px;
    color: #333;
    line-height: 20px;
}

.hezuo_list_right ul li.cor2186f5 {
    border-color: #2186f5;
}

.hezuo_list_right ul li.corff9600 {
    border-color: #ff9600;
}

.hezuo_list_right ul li.cor04b4b2 {
    border-color: #04b4b2;
}

.hezuo_list_right ul li.corff0000 {
    border-color: #ff0000;
}

.hezuo_list_tedian {
    width: 120px;
    height: 40px;
    border-radius: 20px;
    border-width: 3px;
    border-style: solid;
    font-size: 16px;
    color: #fff;
    line-height: 34px;
    text-align: center;
    font-weight: bold;
}

.hezuo_list_tedian1 {
    position: absolute;
    right: 114px;
    top: 60px;
    border-color: #b5d7fc;
    background-color: #4b93e0;
}

.hezuo_list_tedian2 {
    position: absolute;
    left: 30px;
    top: 166px;
    border-color: #ffe4c7;
    background-color: #ff8400;
}

.hezuo_list_tedian3 {
    position: absolute;
    left: 54px;
    top: 326px;
    border-color: #c8fff3;
    background-color: #55c5ad;
}

.hezuo_list .row_line {
    position: absolute;
    display: block;
    height: 1px;
    background-color: #c2daff;
}

.hezuo_list .row_line_r_1 {
    right: -52px;
    top: 84px;
    width: 167px;
}

.hezuo_list .row_line_r_2 {
    right: -52px;
    top: 389px;
    width: 280px;
}

.hezuo_list .row_line_l_1 {
    left: -74px;
    top: 104px;
    width: 136px;
}

.hezuo_list .row_line_l_2 {
    left: -74px;
    top: 387px;
    width: 173px;
}

.hezuo_list .colum_line {
    position: absolute;
    display: block;
    width: 1px;
    background-color: #c2daff;
}

.hezuo_list .colum_line_l_1 {
    left: 73px;
    top: 108px;
    height: 55px;
}

.hezuo_list .colum_line_l_2 {
    left: 99px;
    top: 364px;
    height: 24px;
}

.colum_line_r_1 {
    left: 270px;
    top: 350px;
    height: 40px;
}

.goodness {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.goodnessd {
    width: 274px;
    height: 347px;
    box-shadow: 0px 0px 20px 0px rgba(139, 160, 178, 0.2);
}

.goodnesslidt {
    width: 274px;
    height: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-family: FZLanTingHei-DB-GBK;
    font-weight: 400;
    color: #FFFFFF;
}

.goodnesslidt1 {
    background: url(../image/ysban1.png) center no-repeat;
}

.goodnesslidt2 {
    background: url(../image/ysban2.png) center no-repeat;
}

.goodnesslidt3 {
    background: url(../image/ysban3.png) center no-repeat;
}

.goodnesslidt4 {
    background: url(../image/ysban4.png) center no-repeat;
}

.goodnessul {
    width: 230px;
    margin: 20px auto;
}

.goodnessli {
    /* list-style: disc; */
    /* padding-left: 10px; */
    display: flex;
    align-items: center;
    min-width: 50%;
    line-height: 46px;
    font-size: 16px;
}

.goodian {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #333333;
    margin-right: 10px;
}

.allopen {
    height: 704px;
}

.newturn {
    position: relative;
}

.operate {
    height: 400px;
    padding-top: 60px;
}

.operated {
    display: flex;
    align-items: center;
    padding: 20px 20px 20px 30px;
    width: 278px;
    height: 110px;
    background-color: #fff;
    margin: 20px 10px;
    font-size: 24px;
    font-family: FZLanTingHei-DB-GBK;
    font-weight: 400;
    color: #333333;
}

.operated img {
    margin-right: 20px;
}

.allopena {
    display: block;
    width: 1200px;
    margin: 0 auto;
    /* display: flex; */
    /* overflow: hidden; */
    overflow-y: hidden;
    overflow-x: auto;
    height: 655px;
}

.cpjs {
    position: relative;
    width: 1226px;
    margin: 0 auto;
}

.cpjsdiv {
    width: 1210px;
    height: 635px;
    display: block;
    margin: 0 auto;
    /* display: flex; */
    /* overflow: hidden; */
    overflow-y: hidden;
    overflow-x: auto;
}

.cpjsdivdet {
    width: 2480px;
}

.allopena::-webkit-scrollbar {
    width: 0px
}

.cpjsdiv::-webkit-scrollbar {
    width: 0px
}

.allopenadm {
    width: 2400px;
}

.openimg1 {
    /* width: 40px; */
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -660px;
    cursor: pointer;
}

.openimg2 {
    /* width: 40px; */
    position: absolute;
    top: 50%;
    right: 50%;
    margin-right: -655px;
    cursor: pointer;
}

.course_list ul {
    margin-left: -26px;
    float: left;
    height: 620px;
    width: 1257px;
}

.course_list ul li {
    float: left;
    width: 280px;
    height: 274px;
    margin-top: 30px;
    margin-left: 26px;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 5px 5px 10px #ccc;
}

.course_list .wrap {
    width: 100%;
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.course_list ul li:hover {
    box-shadow: 5px 5px 20px #ccc;
}

.course_list ul li:hover .wrap {
    background-color: #ebf4ff;
    cursor: pointer;
}

.support_list ul {
    margin-left: -15px;
    overflow: hidden;
}

.support_list ul li {
    float: left;
    width: 228px;
    height: 454px;
    margin-top: 100px;
    margin-left: 15px;
    background-color: #fff;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    box-shadow: 5px 5px 10px #ccc;
}

.support_list .wraps {
    width: 100%;
    height: 100%;
    /*border: 1px solid #ddd;*/
    border-radius: 10px;
}

.support_list .wraps .icon_img {
    position: relative;
    height: 110px;
}

.support_list .wraps > p {
    border: dashed 1px #c2c2c2;
    padding: 5px;
    font-size: 16px;
    font-weight: normal;
    border-radius: 20px;
    color: #333;
    margin-bottom: 20px;
}

.support_list .wraps > p:hover {
    background-color: #0c65dd;
    color: #fff;
}

.support_list .wraps .icon_img img {
    position: absolute;
    top: -81px;
    left: 40px;
}

.support_list .wraps .icon_img p {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.support_list ul li:hover {
    box-shadow: 5px 5px 20px #ccc;
    cursor: pointer;
}

.support_list ul li:hover .wraps .icon_img p {
    color: #0c65dd;
}

.icon_img {
    height: 140px;
    line-height: 140px;
    text-align: center;
}

.icon_img img {
    display: inline-block;
    vertical-align: middle;
}

.slide_teacher2 {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.slide_teacher {
    margin-top: 30px;
}

.wrap {
    /* border: 3px solid #f00; */
    width: 1200px;
    height: 330px;
    position: relative;
    overflow: hidden;
}

.wrap ul {
    overflow: hidden;
    position: absolute;
    width: 1600px;
    left: 0;
    top: 0;
    _height: 1px;
}

.wrap ul li {
    float: left;
    width: 380px;
    margin: 0 10px;
}

.slide_teacher img {
    display: block;
}

.slide_teacher p {
    line-height: 80px;
    text-align: center;
    font-size: 20px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
}

.slide_tab {
    position: relative;
    width: 410px;
    height: 350px;
    overflow: hidden;
}

.slide_tab .bd {
    margin: 0 auto;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.slide_tab .bd ul {
    width: 100% !important;
}

.slide_tab .bd li {
    width: 100% !important;
    height: 350px;
    overflow: hidden;
    text-align: center;
}

.slide_tab .hd {
    width: 100%;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    height: 30px;
    line-height: 30px;
}

.slide_tab .hd ul {
    text-align: center;
}

.slide_tab .hd ul li {
    cursor: pointer;
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    margin: 8px;
    overflow: hidden;
    background: #dadada;
    filter: alpha(opacity=50);
    opacity: 0.5;
    line-height: 999px;
}

.slide_tab .hd ul li.on {
    background: #0c67e1;
}

.slide_tab .prev,
.slide_tab .next {
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 40px;
    height: 60px;
    background: url(../image/slider-arrow.png) -126px -137px #dadada no-repeat;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: 0.5;
    display: none;
}

.slide_tab .next {
    left: auto;
    right: 0;
    background-position: -6px -137px;
}

.small_teacher_tab {
    float: left;
    width: 100px;
    margin-bottom: 30px;
    margin-left: 30px;
    cursor: pointer;
}

.small_teacher {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    border: 4px solid #fff;
}

.slide_tab .bd li p {
    display: block;
    width: 72px;
    height: 24px;
    margin: 5px auto;
    font-size: 16px;
    color: #333;
    text-align: center;
    line-height: 24px;
    background-color: #fff;
    border-radius: 12px;
}

.slide_tab .bd li .small_teacher_tab.active .small_teacher {
    border: 3px solid #ff9600;
}

.slide_tab .bd li .small_teacher_tab.active p {
    background-color: #ff9600;
    color: #fff;
}

.bookSlide {
    width: 100%;
    height: 720px;
    position: relative;
}

.bookSlide .bd {
    margin: 0 auto;
    position: relative;
    z-index: 0;
    overflow: hidden;
    height: 734px;
}

.bookSlide .bd ul {
    width: 100% !important;
    height: 734px;
}

.bookSlide .bd li {
    width: 100% !important;
    overflow: hidden;
    text-align: center;
    height: 734px;
    margin-left: -22px;
}

.bookSlide .hd {
    width: 100%;
    position: absolute;
    z-index: 1;
    bottom: 5px;
    left: 0;
    height: 30px;
}

.bookSlide .hd ul {
    text-align: center;
}

.bookSlide .hd ul li {
    cursor: pointer;
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    margin: 8px;
    overflow: hidden;
    background: #dadada;
    filter: alpha(opacity=50);
    opacity: 0.5;
    line-height: 999px;
}

.bookSlide .hd ul li.on {
    background-color: #0c67e1;
}

.bookSlide .shu_bg {
    width: 278px;
    height: 298px;
    margin-left: 22px;
    margin-top: 30px;
    float: left;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 5px 5px 10px #eee;
    text-align: center;
    line-height: 298px;
}

.bookSlide .shu_bg img {
    display: inline-block;
    vertical-align: middle;
}

.w588 {
    width: 588px;
}

.news_one {
    height: 150px;
    padding-left: 240px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.index_news_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 220px;
    height: 128px;
}

.news_one .title {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.news_one .desc {
    font-size: 14px;
    color: #999;
}

.news_one .laiyuan {
    position: absolute;
    left: 250px;
    bottom: 18px;
    font-size: 14px;
    color: #999;
}

.news_other ul li {
    padding-top: 15px;
    border-bottom: 1px solid #eee;
}

.index_news {
    margin-top: 10px;
    padding-top: 20px;
    padding-right: 10px;
    padding-bottom: 30px;
    box-shadow: 5px 5px 10px #ddd;
}

.content_top {
    background-image: url(../image/top_bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    padding-bottom: 60px;
}

.position {
    line-height: 74px;
    font-size: 16px;
    color: #333;
}

.position a {
    color: #333;
}

.left_menu {
    width: 242px;
    height: 703px;
    /*background-color: #fff;
    box-shadow: 2px 2px 15px #ddd;*/
    padding: 10px 15px;
}

.left_menu h2 {
    font-size: 16px;
    color: #333;
    line-height: 40px;
    /*text-align: center;*/
    font-weight: bold;
    border-bottom: 1px solid #333;
}

.left_menu ul li {
    line-height: 30px;
    font-size: 16px;
}

.left_menu ul li a {
    display: block;
    color: #333;
    padding-left: 15px;
    position: relative;
}

.left_menu ul li:hover a,
.left_menu ul li.active a {
    color: #0c67e1;
}

.left_menu ul li a:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #666;
    position: absolute;
    left: 0;
    top: 11px;
}

.left_menu ul li:hover a:before,
.left_menu ul li.active a:before {
    background-color: #0c67e1;
}

.right_content {
    width: 922px;
}

.right_content .title {
    font-size: 24px;
    color: #333;
    line-height: 50px;
    text-align: center;
    font-weight: bold;
}

.row_line_dashed {
    display: inline-block;
    vertical-align: middle;
    width: 84px;
    height: 0;
    border-top: 2px dashed #333;
}

.right_content .description {
    font-size: 18px;
    line-height: 36px;
    color: #333;
}

.fazhan {
    padding-bottom: 80px;
}

.fazhan ul li {
    float: left;
    width: 217px;
    height: 269px;
    margin-top: 30px;
    position: relative;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

.fazhan ul li:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 9px;
    height: 269px;
    display: block;
    content: '';
    background-repeat: no-repeat;
    background-position: left top;
    background-image: url(../image/colum_dian.png);
}

.fazhan ul li:last-child:after,
.fazhan ul .li4:after {
    position: absolute;
    right: -9px;
    top: 0;
    width: 9px;
    height: 269px;
    display: block;
    content: '';
    background-repeat: no-repeat;
    background-position: right top;
    background-image: url(../image/colum_dian.png);
}

.fazhan ul li .quan_bg {
    width: 140px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50px;
    margin-left: -70px;
    background-repeat: no-repeat;
    background-position: center top;
}

.fazhan ul li.li1 .quan_bg {
    background-image: url(../image/24.png);
}

.fazhan ul li.li2 .quan_bg {
    background-image: url(../image/25.png);
}

.fazhan ul li.li3 .quan_bg {
    background-image: url(../image/26.png);
}

.fazhan ul li.li4 .quan_bg {
    background-image: url(../image/27.png);
}

.fazhan ul li.li5 .quan_bg {
    background-image: url(../image/28.png);
}

.fazhan ul li.li6 .quan_bg {
    background-image: url(../image/25.png);
}

.fazhan ul li.li7 .quan_bg {
    background-image: url(../image/29.png);
}

.fazhan ul li .quan_bg {
    padding-top: 90px;
    text-align: center;
}

.fazhan ul li .quan_bg .year {
    font-size: 30px;
    color: #476879;
    font-weight: bold;
}

.fazhan ul li .quan_bg .jieduan {
    font-size: 16px;
    color: #476879;
    font-weight: bold;
}

.shangbiao ul {
    margin-left: -26px;
}

.shangbiao ul li {
    float: left;
    width: 290px;
    height: 180px;
    /*background-color: #0c67e1;*/
    margin-top: 28px;
    margin-left: 26px;
}

.right_content .pinpai {
    margin-top: 30px;
    background-color: #fff;
    box-shadow: 5px 5px 15px #ddd;
    padding: 10px 10px 10px 278px;
    position: relative;
    font-size: 18px;
    color: #333;
    line-height: 40px;
}

.right_content .pinpai span {
    width: 1px;
    height: 54px;
    background-color: #eee;
    display: block;
    position: absolute;
    left: 260px;
    top: 30px;
}

.right_content .pinpai img {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 220px;
}

.jiameng_title {
    width: 100%;
    height: 112px;
    background-image: url(../image/30.png);
    background-repeat: no-repeat;
    font-size: 18px;
    line-height: 40px;
    color: #333;
    padding: 5px 15px;
    text-align: center;
}

.jiameng_list ul {
    margin-left: -40px;
}

.jiameng_list ul li {
    float: left;
    width: 280px;
    height: 390px;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-left: 40px;
    margin-top: 30px;
    box-shadow: 2px 5px 10px #ddd;
}

.jiameng_list ul li img {
    width: 100%;
    height: 100%;
}

.jiameng_list .jiameng_img {
    width: 260px;
    height: 128px;
    overflow: hidden;
}

.jiameng_list .jiameng_news h2 {
    font-size: 18px;
    color: #333;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
}

.jiameng_list .jiameng_news p {
    line-height: 30px;
    font-size: 16px;
    color: #333;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
}

.hezuo_table table {
    width: 100%;
}

.hezuo_table table img {
    vertical-align: middle;
}

.hezuo_table th,
.hezuo_table td {
    height: 50px;
    background-color: #fff;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
}

.hezuo_table td.right_line {
    width: 10px;
    background-color: #f3f3f3;
}

.hezuo_table td.top_line {
    height: 10px;
    background-color: #f3f3f3;
}

.hezuo_table td {
    font-size: 14px;
    color: #666;
}

.hezuo_table th,
.hezuo_table td.title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.hezuo_table td.title {
    border-bottom: 1px solid #ddd;
}

.jiamen_step ul li {
    float: left;
    width: 280px;
    margin-top: 30px;
    text-align: center;
    position: relative;
    color: #4c4c4c;
    line-height: 24px;
}

.jiamen_step ul li .step_next {
    width: 40px;
    height: 60px;
    background-image: url(../image/next_step.png);
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    right: -20px;
    top: 40px;
}

.jiamen_youshi {
    width: 515px;
    height: 216px;
    margin: 120px auto;
    position: relative;
}

.jiamen_youshi_list {
    width: 238px;
    border-width: 6px;
    border-radius: 10px;
    border-style: solid;
    padding: 20px;
    background-color: #fff;
}

.jiamen_youshi_list h3 {
    font-size: 18px;
    color: #333;
    line-height: 40px;
    font-weight: bold;
}

.jiamen_youshi_list h3:before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 16px;
    margin-right: 10px;
}

.jiamen_youshi_list p {
    font-size: 16px;
    color: #333;
    line-height: 30px;
}

.jiamen_youshi_list1 {
    border-color: #6dddff;
    position: absolute;
    left: -150px;
    top: -100px;
}

.jiamen_youshi_list1 h3:before {
    background-color: #6dddff;
}

.jiamen_youshi_list2 {
    border-color: #ff8bbc;
    position: absolute;
    left: -180px;
    top: 180px;
}

.jiamen_youshi_list2 h3:before {
    background-color: #ff8bbc;
}

.jiamen_youshi_list3 {
    border-color: #8f82bc;
    position: absolute;
    right: -184px;
    top: -20px;
}

.jiamen_youshi_list3 h3:before {
    background-color: #8f82bc;
}

.jiamen_youshi_list4 {
    border-color: #f19149;
    position: absolute;
    right: -160px;
    top: 190px;
}

.jiamen_youshi_list4 h3:before {
    background-color: #f19149;
}

.jiamen_zhichi ul {
    margin-left: -26px;
}

.jiamen_zhichi ul li {
    float: left;
    margin-top: 30px;
    margin-left: 26px;
    width: 448px;
    height: 160px;
    background-color: #fff;
    box-shadow: 2px 2px 10px #ddd;
    padding: 10px 10px 10px 164px;
    position: relative;
}

.jiamen_zhichi ul li img {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 140px;
    height: 140px;
}

.jiamen_zhichi ul li h3 {
    font-size: 18px;
    color: #333;
    line-height: 30px;
    font-weight: bold;
}

.jiamen_zhichi ul li p {
    font-size: 16px;
    color: #333;
    line-height: 24px;
    margin-top: 10px;
}

.book_list ul {
    margin-left: -27px;
}

.book_list ul li {
    float: left;
    width: 210px;
    height: 270px;
    margin-left: 27px;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 5px 5px 15px #ddd;
    text-align: center;
    padding-top: 40px;
    position: relative;
}

.book_list ul li img {
    width: 190px;
    display: block;
    margin: 0 auto;
}

.book_list ul li p {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 18px;
    line-height: 70px;
    text-align: center;
    color: #333;
    font-weight: bold;
}

/*内页分页样式*/

.page {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 5px;
}

.page ul li {
    display: inline-block;
    font-size: 12px;
    color: #333;
    margin-right: 8px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 2px;
    padding-left: 6px;
    padding-right: 6px;
}

.page ul li a {
    color: #333;
    display: block;
}

.page ul li.active {
    background: #2187f5;
    color: #fff;
}

.page ul li.active a {
    color: #fff;
}

.article_teacher {
    height: 384px;
    padding: 40px 50px 40px 280px;
    position: relative;
}

.teacher_img {
    width: 214px;
    height: 304px;
    position: absolute;
    left: 40px;
    top: 40px;
}

.nei_title {
    font-size: 18px;
    color: #333;
    line-height: 30px;
    font-weight: bold;
    vertical-align: middle;
}

.nei_title:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background-color: #2187f5;
    margin-right: 5px;
    vertical-align: middle;
}

.slideTcbox {
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
    zoom: 1;
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
}

.slideTcbox .sPrev,
.slideTcbox .sNext {
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -124px;
    display: block;
    width: 50px;
    height: 248px;
    background: url(../image/slide_prev.png);
    background-repeat: no-repeat;
    background-position: center center;
}

.slideTcbox .sNext {
    left: auto;
    right: 10px;
    background: url(../image/slide_next.png);
    background-repeat: no-repeat;
    background-position: center center;
}

.slideTcbox ul {
    overflow: hidden;
    zoom: 1;
    margin-left: -25px;
}

.slideTcbox ul li {
    margin-left: 25px;
    float: left;
    _display: inline;
    overflow: hidden;
    text-align: center;
}

.slideTcbox ul li .pic {
    width: 174px;
    height: 248px;
    text-align: center;
    padding: 10px 5px;
    background-color: #f1f1f1;
    line-height: 228px;
    cursor: pointer;
}

.slideTcbox ul li .pic img {
    width: 100%;
    height: 198px;
    display: inline-block;
    vertical-align: bottom;
}

.slideTcbox ul li:hover .pic {
    border: 2px solid #ff9600;
}

.video_model {
    width: 860px;
    margin: 60px auto 0 auto;
}

.left_video {
    width: 515px;
}

.right_jianjie {
    width: 300px;
}

.right_jianjie .title {
    width: 190px;
    height: 44px;
    margin: 30px auto;
    border-radius: 22px;
    border: 1px solid #ddd;
    background-color: #fff;
    line-height: 42px;
    text-align: center;
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

.right_jianjie .description {
    font-size: 16px;
    color: #333;
    line-height: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 15px;
}

.shixun_shicao ul {
    margin-left: -35px;
}

.shixun_shicao ul li {
    float: left;
    width: 122px;
    height: 81px;
    margin-left: 35px;
    margin-top: 25px;
    background-repeat: no-repeat;
    background-position: center top;
    background-image: url(../image/wenjianjia.png);
    font-size: 18px;
    color: #333;
    padding-top: 37px;
    font-weight: bold;
    text-align: center;
}

.shixun_shizhan ul {
    margin-left: -25px;
}

.shixun_shizhan ul li {
    float: left;
    width: 162px;
    height: 125px;
    margin-top: 25px;
    margin-left: 25px;
    background-repeat: no-repeat;
    background-position: center top;
    font-size: 18px;
    color: #fff;
    text-align: center;
    padding-top: 38px;
    font-weight: bold;
    line-height: 30px;
}

.shixun_shizhan ul li.li1 {
    background-image: url(../image/wenjian_1.png);
}

.shixun_shizhan ul li.li2 {
    background-image: url(../image/wenjian_2.png);
}

.shixun_shizhan ul li.li3 {
    background-image: url(../image/wenjian_3.png);
}

.shizhan_content {
    font-size: 16px;
    color: #333;
    line-height: 30px;
    padding-left: 20px;
    position: relative;
}

.shizhan_content:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #666;
    position: absolute;
    left: 0;
    top: 11px;
}

.shizhan_load {
    margin-top: 50px;
    width: 100%;
    background-color: #eaf4ff;
    font-size: 30px;
    font-weight: bold;
    padding: 30px 50px;
    color: #333;
}

.shizhan_video {
    padding: 30px;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url(../image/video.png);
}

.shizhan_video_btn {
    margin-left: 20px;
    display: inline-block;
    width: 187px;
    height: 60px;
    background-image: url(../image/btn.png);
    line-height: 60px;
    text-align: center;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
}

.map_box {
    width: 920px;
    height: 497px;
}

.map_box img {
    width: 100%;
}

.map_dizhi {
    height: 205px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 5px 5px 10px #ddd;
    font-size: 16px;
    color: #333;
    line-height: 30px;
}

.map_dizhi h3 {
    font-size: 24px;
    color: #333;
    line-height: 40px;
    font-weight: bold;
}

.map_dizhi h3:before {
    content: '';
    padding: 15px;
    background-image: url(../image/zuobiao.png);
    background-position: left center;
    background-repeat: no-repeat;
}

.map_kefu {
    margin-left: 60px;
    padding-left: 35px;
    border-left: 1px solid #ddd;
}

.kefu_hotel {
    padding: 12px;
    background-image: url(../image/hotel.jpg);
    background-position: left center;
    background-repeat: no-repeat;
}

.kefu_weixin {
    padding: 12px;
    background-image: url(../image/map_kf.png);
    background-position: left center;
    background-repeat: no-repeat;
}

.message {
    width: 556px;
    margin: 20px auto;
}

.message input,
.message textarea {
    display: block;
    margin-top: 20px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding-left: 10px;
    font-size: 16px;
    color: #333;
}

.message input {
    height: 46px;
}

.message textarea {
    padding: 10px;
}

.message_sub {
    display: block;
    width: 252px;
    height: 52px;
    border-radius: 26px;
    margin: 30px auto 50px auto;
    border: none;
    background-color: #4b6bc3;
    color: #fff;
    line-height: 52px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.news_list ul li {
    background-color: #fff;
    border-radius: 5px;
    margin-top: 20px;
    height: 142px;
    overflow: hidden;
    box-shadow: 5px 5px 10px #ddd;
    position: relative;
    padding: 10px 10px 10px 242px;
}

.news_list ul li .thumb {
    width: 220px;
    height: 124px;
    position: absolute;
    left: 10px;
    top: 10px;
}

.news_title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    line-height: 40px;
}

.news_desc {
    font-size: 16px;
    color: #333;
    line-height: 30px;
}

.news_date {
    font-size: 14px;
    color: #999;
    position: absolute;
    right: 20px;
    border: 20px;
}

.article_title {
    line-height: 80px;
    position: relative;
}

.article_title h1 {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
}

.article_date {
    /*position: absolute;
    right: 0;
    top: 0;*/
    color: #999;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 20px;
}

.article_body {
    margin-top: 30px;
    font-size: 16px;
    color: #333;
    line-height: 30px;
}

.article_body img,
.article_body table {
    max-width: 100%;
}

.article_title .bottom_dashed_999 {
    width: 84px;
    height: 2px;
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -42px;
    border-bottom: 2px dashed #999;
}

.denglu {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -256px;
}

.denglu_title {
    padding-left: 17px;
    margin-top: 30px;
    font-size: 24px;
    line-height: 50px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.denglu_title .bottom-line-0071e6 {
    position: absolute;
    left: 10px;
    bottom: 0;
    display: block;
    width: 64px;
    height: 3px;
    background-color: #0071e6;
}

.denglu_label {
    margin-top: 30px;
    width: 100%;
    height: 62px;
    background-color: #f1f1f1;
    border-radius: 5px;
    position: relative;
}

.denglu_label span {
    width: 52px;
    height: 62px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
}

.input_icon_tel {
    background-image: url(../image/input_icon_tel.png);
}

.input_icon_suo {
    background-image: url(../image/input_icon_suo.png);
}

.denglu_label input {
    display: block;
    padding-left: 52px;
    width: 100%;
    height: 62px;
    font-size: 18px;
    background-color: #f1f1f1;
    border: none;
}

.get_yzm {
    position: absolute;
    right: 10px;
    top: 12px;
    width: 150px;
    height: 38px;
    background-color: #0071e6;
    border-radius: 19px;
    color: #fff;
    line-height: 38px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
}

.denglu_sub {
    width: 482px;
    height: 64px;
    border-radius: 32px;
    margin-top: 30px;
    background-color: #3c7df5;
    border: none;
    line-height: 64px;
    text-align: center;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/*在线咨询*/

.model_form {
    height: 202px;
    padding-top: 40px;
    background-image: url(../image/bg5.jpg);
    background-repeat: no-repeat;
    background-position: center top;
}

.w1200 {
    width: 1200px;
    margin: 0 auto;
}

.corfff {
    color: #fff;
}

.font30 {
    font-size: 26px;
}

.mt15 {
    margin-top: 35px;
}

.mt15 input {
    width: 270px;
    height: 50px;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 16px;
}

.mt15 button {
    width: 150px;
    height: 50px;
    border-radius: 5px;
    background-color: #ec7826;
    color: white;
    font-size: 18px;
}

.attract {
    height: 795px;
    background: url(../image/jiaomeng.jpg) center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.attbox {
    display: flex;
    margin: 410px auto 0px;
    font-size: 18px;
}

.attbox1 {
    display: flex;
    /*margin: 20px auto 0px;*/
    font-size: 18px;
}

.red {
    color: red;
}

.boxradioslab {
    display: block;
    cursor: pointer;
}

.boxradioslab {
    line-height: 40px !important;
}

.boxradioslab input {
    margin-right: 5px;
}

.attractBox {
    overflow: hidden;
    width: 900px;
    margin: 0 auto;
}

.boxtitleone {
    width: 100px;
    text-align: right;
    margin-right: 10px;
    line-height: 40px !important;
}

.boxtitle {
    width: 100px;
    text-align: right;
    margin-right: 10px;
    line-height: 57px !important;
}

.attractBox .attbox2 {
    /*text-align: center;*/
    /*display: flex;*/
    /*justify-content: space-around;*/
    width: 50%;
}

.attractBox .box1,
.attractBox .box {
    display: flex;
    margin-bottom: 20px;
}

.box1 {
}

.inpsr {
    width: 255px;
    height: 57px;
    padding-left: 15px;
    border: 1px solid #cccccc;
}

.inpsrer {
    width: 705px;
    height: 57px;
    padding-left: 15px;
    border: 1px solid #cccccc;
}

.inptext {
    width: 700px;
    height: 100px;
    border: 1px solid #cccccc;
    padding: 15px;
}

/* åº•éƒ¨ */

.zsbottom {
    height: 300px;
    background: #000000;
}

.bottomBox {
    height: 300px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 50px;
}

.bottomleft ul li {
    float: left;
    color: #FFFFFF;
    padding-left: 15px;
    border-left: 1px solid #FFFFFF;
    margin-left: 15px;
}

.bottomleft .bolp1 {
    margin-top: 50px;
    color: #FFFFFF;
}

.bottomleft .bolp2 {
    margin-top: 20px;
    color: #FFFFFF;
}

.bottomright {
    display: flex;
    justify-content: space-around;
    width: 50%;
}

.bottomright .borp1 {
    color: #FFFFFF;
    margin-top: 20px;
    font-size: 20px;
}

.bottomright .borp2 {
    font-size: 27px;
    font-family: Arial;
    font-weight: 400;
    color: rgba(255, 106, 0, 1);
}

.pbtn {
    width: 296px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    color: white;
    background: rgba(254, 96, 2, 1);
    border-radius: 40px;
    margin: auto;
    cursor: pointer;
    font-size: 26px;
}

.pbtn {
    -webkit-transition-property: background-color;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    font-size: 24px;
}

.pbtn:hover {
    background-color: white;
    color: #ff8a10;
    border: 1px solid #ff8a10;
}

.footers {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: url(../image/footerimg1.png) center;
    background-repeat: no-repeat;
    z-index: 9999;
}

.fooBox {
    padding-top: 20px;
}

.footers ul {
    display: flex;
    justify-content: space-around;
}

.footp {
    font-size: 22px;
    color: white;
    margin-top: 3px;
}

.fooinput {
    margin-top: 4px;
    margin-left: 20px;
}

.fooinput span {
    color: white;
    font-size: 16px;
}

.fooinput input {
    background: rgba(255, 255, 255, 1);
    border-radius: 4px;
    width: 150px;
    padding-left: 15px;
    height: 35px;
}

.foobtn {
    width: 108px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(254, 96, 2, 1);
    border-radius: 23px;
    color: white;
    cursor: pointer;
    margin-top: 2px;
    font-size: 16px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.leftfixed {
    position: fixed;
    left: 20px;
    bottom: 100px;
}