/*作者：韩博
  作用：评测学新首页样式
   时间2018年7月6日
*/


/*滚动条*/


/*滚动条整体*/

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    /*滚动条宽度 width*/
}


/*滚动条按钮*/

::-webkit-scrollbar-button {}

::-webkit-scrollbar-track {
    background-color: transparent;
    /*滑道全部*/
}

::-webkit-scrollbar-track-piece {
    background-color: transparent;
    /*滑道*/
    -webkit-border-radius: 2px;
    /*滑道圆角宽度*/
}

::-webkit-scrollbar-thumb {
    background-color: rgba(75, 165, 182, 0.8);
    border: solid 1px transparent;
    /*滑动条边框*/
    border-radius: 4px;
    /*滑动条圆角宽度*/
}


/*横竖滚动条交角*/

::-webkit-scrollbar-corner {
    background-color: transparent;
}


/*横竖滚动条交角图案*/

::-webkit-resizer {
    /*background-image: url(/public/img/resizer-inactive.png);*/
    background-repeat: no-repeat;
    background-position: bottom right;
}


/*鼠标滑过滑动条*/

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(75, 165, 182, 0.5);
}


/*初始默认样式*/

body {
    margin: 0px;
    padding: 0px;
    position: absolute;
    width: 100%;
    min-width: 1366px;
    font-family: "Microsoft YaHei", sans-serif;
}

em {
    margin: 0px;
    font-style: normal;
}

a:link {
    text-decoration: none;
    /*指正常的未被访问过的链接*/
}

a:visited {
    text-decoration: none;
    /*指已经访问过的链接*/
}

a img {
    border: 0px;
}

a:hover {
    text-decoration: none;
    /*指鼠标在链接*/
}

a:active {
    text-decoration: none;
    /*指正在点的链接*/
}


/*顶部联系方式登录注册样式*/

.top {
    /* position: relative; */
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    /*overflow: hidden;*/
    background-color: #F5F5F5;
}

.top .box {
    width: 1335px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top a {
    color: rgba(0, 0, 0, 0.5);
}

.top_left {
    height: 40px;
    display: flex;
    line-height: 12px;
    justify-content: space-between;
    align-items: center;
}

.top_left .phones {
    display: flex;
    justify-content: start;
}

.top_left .phones p {
    display: flex;
    align-items: center;
}

.top_left .phones p img {
    margin-right: 5px;
}

.top_left .phones p:last-child {
    margin-left: 15px;
    margin-right: 5px;
}


/* .top_right {
	position: absolute;
	right: 15%;
	top: 0px;
} */

.top_left .qrCodes_item {
    float: left;
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 15px;
}

.top_left .qrCodes_item .show {
    display: flex;
    align-items: center;
    cursor: default;
}

.top_left .qrCodes_item_cli .show {
    cursor: pointer;
}

.top_left .qrCodes_item .show:hover+.hide {
    display: block;
    transition: all 0.3s ease;
}

.top_left .qrCodes_item .show img {
    margin-right: 5px;
}

.top_left .qrCodes_item .hide {
    display: none;
    padding: 5px;
    text-align: center;
    background: #fff;
    box-shadow: 0px 2px 3px #ccc;
    position: absolute;
    top: 27px;
    left: -13px;
    z-index: 99;
}

.top_left .qrCodes_item .hide img {
    width: 100px;
}

.top_left .qrCodes_item .hide span {
    line-height: 18px;
    font-size: 14px;
    color: #666;
}

.no_login {
    display: inline-block;
    width: 135px;
    position: relative;
    top: 0px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    /* Firefox 4 */
    -webkit-transition: all 0.3s ease;
    /* Safari 和 Chrome */
    -o-transition: all 0.3s ease;
}

.no_login a:nth-child(1) {
    margin-right: 20px;
}

.yes_login {
    display: inline-block;
    position: absolute;
    top: -80px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    /* Firefox 4 */
    -webkit-transition: all 0.3s ease;
    /* Safari 和 Chrome */
    -o-transition: all 0.3s ease;
}

.yes_login:hover {
    background: #ededed;
}

.yes_login img {
    position: relative;
    margin-right: 10px;
    top: 4px;
    width: 20px;
    height: 20px;
}

.yes_login:hover div {
    visibility: visible;
}

.yes_login div {
    z-index: 9999;
    visibility: hidden;
    background-color: #f5f5f5;
    position: absolute;
    top: 40px;
    right: 0px;
}

.yes_login a {
    cursor: pointer;
    text-align: left;
    width: 160px;
    display: block;
    right: 0px;
}

.yes_messge_em1 {
    position: absolute;
    width: 15px;
    height: 15px;
    font-size: 12px;
    line-height: 15px;
    border-radius: 50%;
    top: 0px;
    left: 16px;
    z-index: 10;
    background-color: #20AEEC;
    color: white;
    text-align: center;
}

.yes_messge_em2 {
    display: inline-block;
    position: relative;
    width: 15px;
    top: -2px;
    left: 5px;
    height: 15px;
    font-size: 10px;
    line-height: 15px;
    border-radius: 50%;
    background-color: #20AEEC;
    color: white;
    text-align: center;
}

.yes_login a:hover {
    background: #ededed;
}

.yes_login i {
    margin-left: 15px;
    margin-right: 10px;
}


/*右上角浮动按钮*/

.fixed_message {
    position: fixed;
    top: 200px;
    right: 20px;
    z-index: 2000;
}

.fixed_phone,
.fixed_wechat {
    box-sizing: border-box;
    padding-top: 10px;
    position: relative;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 3px;
    color: white;
    font-size: 10px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 3px;
}

.fixed_phone {
    background-color: #F0BB0B;
}

.fixed_wechat {
    background-color: #ADCB69;
}

.fixed_advise {
    background-color: #7bc9ac;
    box-sizing: border-box;
    padding-top: 10px;
    position: relative;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 3px;
    color: white;
    font-size: 10px;
    text-align: center;
    margin-bottom: 3px;
}

.fixed_advise a {
    display: inline-block;
    width: 100%;
    height: 100%;
    color: white;
}

.fixed_phone div {
    visibility: hidden;
    position: absolute;
    left: -300px;
    top: 10px;
    width: 280px;
    height: 40px;
    color: black;
    line-height: 40px;
    font-size: 15px;
    border-radius: 10px;
    background-color: #F0BB0B;
    opacity: 0;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    /* Firefox 4 */
    -webkit-transition: all 0.3s ease;
    /* Safari 和 Chrome */
    -o-transition: all 0.3s ease;
}

.fixed_phone span {
    position: absolute;
    right: -6px;
    top: 15px;
    width: 12px;
    height: 12px;
    background-color: #F0BB0B;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -moz-transform: rotate(45deg);
    /* Firefox */
    -webkit-transform: rotate(45deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(45deg);
    /* Opera */
}

.fixed_wechat img {
    /*display:block;*/
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: -120px;
    top: -35px;
    width: 110px;
    height: 127px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    /* Firefox 4 */
    -webkit-transition: all 0.3s ease;
    /* Safari 和 Chrome */
    -o-transition: all 0.3s ease;
}

.fixed_phone:hover div {
    visibility: visible;
    opacity: 1;
}

.fixed_wechat:hover img {
    visibility: visible;
    opacity: 1;
}


/*导航栏*/

.home_nav_div {
    overflow: hidden;
    width: 100%;
    height: 80px;
    line-height: 80px;
    position: relative;
    /*background-color: rgba(0,0,0,0.1);*/
}

.home_logo {
    padding-top: 10px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* Firefox */
    -webkit-box-sizing: border-box;
    /* Safari */
    display: inline-block;
    position: relative;
    height: 80px;
    left: 15%;
}

.home_nav {
    display: inline-block;
    right: 15%;
    position: absolute;
}

.home_nav a {
    color: #000;
    display: inline-block;
    padding: 0px 10px 0px 10px;
    width: auto;
    box-sizing: border-box;
    height: 80px;
    cursor: pointer;
    transition: all .1s linear;
    -moz-transition: all .1s linear;
    /* Firefox 4 */
    -webkit-transition: all .1s linear;
    /* Safari 和 Chrome */
    -o-transition: all .1s linear;
}

.home_nav a:nth-child(1) {
    color: #30B382;
    border-bottom: 4px solid #30B382 !important;
}

.home_nav a:hover {
    color: #30B382;
    border-bottom: 4px solid #30B382;
}


/*轮播图*/

.pic_carousel {
    overflow: hidden;
    width: 100%;
    height: auto;
    position: relative;
}

.pic_carousel div {
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
}

.pic_carousel img {
    width: 100%;
    height: auto;
}

.pic_carousel a {
    position: absolute;
    width: 100%;
    left: 0px;
    top: 0px;
    height: auto;
    transition: all 1s ease;
    -moz-transition: all 1s ease;
    /* Firefox 4 */
    -webkit-transition: all 1s ease;
    /* Safari 和 Chrome */
    -o-transition: all 1s ease;
    /* Opera */
}

.a_show {
    /*z-index: 8;*/
    opacity: 1;
}

.a_hide {
    /*z-index: 7;*/
    opacity: 0;
}

.pic_left,
.pic_right {
    cursor: pointer;
    position: absolute;
    width: 25px;
    height: 44px;
    font-size: 60px;
    line-height: 80px;
    color: white;
    z-index: 999;
    top: calc(50% - 22px);
    opacity: 0.5;
}

.pic_left {
    left: 1%;
}

.pic_right {
    right: 1%;
}


/*内容1*/

.content_1 {
    width: 100%;
    height: 750px;
    background-color: #F5F5F5;
    position: relative;
    text-align: center;
}

.content_1_h1 {
    display: inline-block;
    text-align: center;
    width: 360px;
    padding-top: 40px;
    font-size: 40px;
}

.content_1_message1,
.content_1_message2,
.content_1_message3 {
    margin-top: 50px;
    background-color: white;
    position: relative;
    /*padding-top: 150px;*/
    display: inline-block;
    width: 300px;
    line-height: 80px;
    text-align: center;
    border-radius: 10px;
    height: 80px;
    font-size: 25px;
    box-shadow: 0px 5px 5px #888888;
    z-index: 1;
}

.content_1 span {
    position: absolute;
    width: 20px;
    height: 20px;
    left: calc(50% - 10px);
    bottom: -7px;
    background-color: white;
    box-shadow: 5px 5px 5px #888888;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -moz-transform: rotate(45deg);
    /* Firefox */
    -webkit-transform: rotate(45deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(45deg);
    /* Opera */
}

.content_1_message2 {
    margin-left: 20px;
    margin-right: 20px;
}

.content_1 img {
    position: absolute;
    width: 1127px;
    height: 571px;
    left: calc(50% - 630px);
    /*	left: calc(50% - 402px);*/
    bottom: -131px;
}


/*内容2*/

.content_2 {
    position: relative;
    text-align: center;
    width: 100%;
    height: 700px;
}

.content_2_h1 {
    padding-top: 100px;
    font-size: 40px;
}

.content_2_h2 {
    padding-top: 10px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.5);
}

.content_2 img {
    display: block;
    position: absolute;
    left: calc(50% - 436px);
    top: 230px;
}

.content_2_img {
    left: calc(50% - 300px) !important;
    top: 280px !important;
    cursor: pointer;
}

.content_2_video {
    position: absolute;
    width: 590px;
    height: 335px;
    left: calc(50% - 295px);
    top: 280px;
}


/*内容3*/

.content_3 {
    width: 100%;
    height: 680px;
    position: relative;
    text-align: center;
    background-color: #F5F5F5;
}

.content_3_h1 {
    padding-top: 40px;
    font-size: 40px;
}

.content_3_h2 {
    padding-top: 10px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.5);
}

.content_3_div {
    background-color: white;
    vertical-align: top;
    text-align: center;
    margin-top: 80px;
    display: inline-block;
    width: 380px;
    height: 380px;
}

.content_3_cir {
    position: relative;
    margin-top: -48px;
}

.content_3_div em {
    display: inline-block;
    margin-top: 10px;
    font-size: 20px;
}

.content_3_div span {
    margin-top: 10px;
    display: inline-block;
    width: 190px;
    height: 100px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
}

.content_3_center {
    margin-left: 20px;
    margin-right: 20px;
}


/*内容4*/

.content_4 {
    width: 100%;
    height: 880px;
    position: relative;
    text-align: center;
}

.content_4_h1 {
    padding-top: 40px;
    font-size: 40px;
}

.content_4_h2 {
    padding-top: 10px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.5);
}

.content_4_img {
    margin-top: 40px;
    box-sizing: border-box;
    display: inline-block;
    width: 540px;
    height: 470px;
    border: 8px solid #F7F7F7;
    padding: 45px;
    border-radius: 60px;
}

.content_4_img img {
    width: 100%;
    height: 100%;
    border-radius: 60px;
}

.content_4_cir {
    background-color: white;
    width: 80px;
    height: 80px;
    position: absolute;
    line-height: 80px;
    border-radius: 50%;
    border: 8px solid #F7F7F7;
}

.content_4_cir i {
    color: #26C642;
    font-size: 50px;
}

.content_4_cir_1,
.content_4_cir_3 {
    left: calc(50% - 314px);
}

.content_4_cir_2,
.content_4_cir_4 {
    left: calc(50% + 218px);
}

.content_4_cir_1,
.content_4_cir_2 {
    top: 250px;
}

.content_4_cir_3,
.content_4_cir_4 {
    top: 450px;
}

.content_4_cir_5 {
    left: calc(50% - 40px);
    top: 588px;
}

.content_4_content {
    width: 250px;
    position: absolute;
    text-align: left;
}

.content_4_content div {
    margin-bottom: 10px;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
}

.content_4_content div:before {
    content: 'I';
    color: #26C642;
    position: relative;
    left: 0px;
    top: 0px;
    background-color: #26C642;
}

.content_4_content span {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
}

.content_4_content_1 {
    top: 220px;
    left: calc(50% - 590px);
}

.content_4_content_3 {
    top: 400px;
    left: calc(50% - 590px);
}

.content_4_content_2 {
    top: 260px;
    left: calc(50% + 345px);
}

.content_4_content_4 {
    top: 435px;
    left: calc(50% + 345px);
}

.content_4_content_5 {
    top: 700px;
    left: calc(50% - 125px);
}


/*内容5 内部使用了内容3的样式*/

.content_5 {
    width: 100%;
    height: 680px;
    position: relative;
    text-align: center;
    background-color: #F5F5F5;
}

.content_5_h1 {
    padding-top: 40px;
    font-size: 40px;
}

.content_5_h2 {
    padding-top: 10px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.5);
}


/*内容6样式*/

.content_6 {
    width: 100%;
    height: 690px;
    position: relative;
    text-align: center;
}

.content_6 a:link {
    text-decoration: none;
    color: #35B489;
}

.content_6 a:visited {
    text-decoration: none;
    color: #35B489;
}

.content_6 a:hover {
    text-decoration: none;
    color: #35B489;
}

.content_6 a:active {
    text-decoration: none;
    color: #31906F;
}

.content_6_h1 {
    padding-top: 40px;
    font-size: 40px;
}

.content_6_content {
    position: absolute;
    line-height: 25px;
    text-align: left;
    /*border: 1px solid grey;*/
}

.content_6_img {
    position: absolute;
}

.content_6_img_1 {
    top: 280px;
    left: calc(50% - 680px);
}

.content_6_img_2 {
    top: 350px;
    left: calc(50% - 480px);
}

.content_6_img_3 {
    top: 240px;
    left: calc(50% - 260px);
}

.content_6_img_4 {
    top: 300px;
    left: calc(50% + 40PX);
}

.content_6_img_5 {
    top: 250px;
    left: calc(50% + 320px);
}

.content_6_content div {
    margin: 20px 0px 10px 0px;
    text-align: center;
    line-height: 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #F5F5F5;
}

.content_6_content i {
    font-size: 40px;
    color: #26C642;
}

.content_6_content em {
    font-size: 15px;
}

.content_6_content span {
    display: block;
    width: 160px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
}

.content_6_content_1,
.content_6_content_2,
.content_6_content_3,
.content_6_content_4,
.content_6_content_5 {
    top: 300px;
}

.content_6_content_1 {
    left: calc(50% - 600px);
}

.content_6_content_2 {
    left: calc(50% - 340px);
}

.content_6_content_3 {
    left: calc(50% - 80px);
}

.content_6_content_4 {
    left: calc(50% + 210px);
}

.content_6_content_5 {
    left: calc(50% + 490px);
}


/*内容7*/

.content_7 {
    width: 100%;
    height: 1100px;
    font-size: 0px;
    position: relative;
    text-align: center;
    background-color: #F5F5F5;
}

.content_7_h1 {
    padding-top: 50px;
    font-size: 40px;
}

.content_7_h2 {
    padding-top: 20px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.5);
}

.content_7 em {
    text-align: left;
    font-size: 30px;
    display: block;
}

.content_7 span {
    margin-right: 15px;
    line-height: 25px;
    text-align: left;
    font-size: 15px;
    display: block;
}

.content_7 a {
    cursor: pointer;
    margin-top: 60px;
    background-color: #f5f5f5;
    display: inline-block;
    width: 240px;
    height: 44px;
    font-size: 16px;
    text-align: center;
    line-height: 44px;
    color: rgb(50, 178, 130);
    border: 1px solid rgb(50, 178, 130);
    border-radius: 5px;
    /*line-height: 40px;*/
}

.content_7_div_1,
.content_7_div_2,
.content_7_div_3,
.content_7_div_4,
.content_7_div_5,
.content_7_div_6 {
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    color: white;
    font-size: 15px;
    /*background-color: rgba(0,0,0,0.2);*/
    vertical-align: top;
    display: inline-block;
    height: 330px;
}

.content_7_div_4,
.content_7_div_5 {
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 10px;
    width: 265px;
}

.content_7_div_1 {
    margin-top: 40px;
    background: url('../../../Images/newhomeimage/8.png');
    margin-right: 5px;
    width: 640px;
}

.content_7_div_2 {
    margin-top: 40px;
    background: url('../../../Images/newhomeimage/9.png');
    margin-left: 5px;
    width: 540px;
}

.content_7_div_3 {
    background: url('../../../Images/newhomeimage/10.png');
    margin-top: 10px;
    margin-right: 5px;
    width: 365px;
}

.content_7_div_4 {
    background: url('../../../Images/newhomeimage/11.png');
}

.content_7_div_5 {
    background: url('../../../Images/newhomeimage/12.png');
}

.content_7_div_6 {
    background: url('../../../Images/newhomeimage/13.png');
    margin-top: 10px;
    width: 265px;
    margin-left: 5px;
}

.content_7_div_1 div,
.content_7_div_2 div,
.content_7_div_3 div,
.content_7_div_4 div,
.content_7_div_5 div,
.content_7_div_6 div {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

.content_7_div_1 div {
    background-color: rgba(25, 198, 135, 0.8);
}

.content_7_div_2 div {
    background-color: rgba(239, 197, 77, 0.8);
}

.content_7_div_3 div {
    background-color: rgba(43, 211, 212, 0.8);
}

.content_7_div_4 div {
    background-color: rgba(181, 226, 81, 0.8);
}

.content_7_div_5 div {
    background-color: rgba(38, 206, 206, 0.8);
}

.content_7_div_6 div {
    background-color: rgba(254, 190, 119, 0.8);
}

.content_7_div_1 em,
.content_7_div_2 em {
    padding-left: 20px;
    padding-top: 40px;
    padding-bottom: 20px;
}

.content_7_div_1 span,
.content_7_div_2 span {
    /*padding-right: 15px;*/
    padding-left: 100px;
}


/*.content_7_div_3 em,.content_7_div_4 em,.content_7_div_5 em,.content_7_div_6 em{
	text-align: left;
	font-size: 30px;
	display: block;
}*/

.content_7_div_3 em {
    padding-left: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.content_7_div_4 em {
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 20px;
}

.content_7_div_5 em {
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 20px;
}

.content_7_div_6 em {
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.content_7_div_3 span {
    padding-left: 180px;
    /*padding-right: 15px;*/
}

.content_7_div_4 span {
    padding-left: 100px;
}

.content_7_div_5 span {
    padding-left: 30px;
}

.content_7_div_6 span {
    padding-left: 30px;
}


/*内容8*/

.content_8 {
    width: 100%;
    height: 850px;
    /*font-size: 0px;*/
    position: relative;
    text-align: center;
}

.content_8_h1 {
    padding-top: 50px;
    font-size: 40px;
}

.content_8_h2 {
    padding-top: 20px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.5);
}

.contnet_8_div {
    margin-top: 40px;
    text-align: left;
    vertical-align: top;
    display: inline-block;
    width: 400px;
    /*box-shadow: 0px 0px 5px red;*/
    /*	white-space:normal; 
	word-break:break-all;*/
}

.contnet_8_div div:nth-child(1) {
    text-align: left;
    line-height: 80px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.5);
}

.contnet_8_div em {
    font-size: 20px;
}

.contnet_8_div span {
    color: rgba(0, 0, 0, 0.5);
    font-size: 15px;
}

.content_8_div_div div {
    width: 270px;
    line-height: 25px;
    margin-left: 20px;
    display: inline-block;
}

.content_8_div_div i {
    display: inline-block;
    width: 100px;
    text-align: center;
    vertical-align: top;
    height: auto;
}

.contnet_8_div_div_center {
    margin-top: 40px;
    margin-bottom: 70px;
}

.contnet_8_div_div_center_2 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.content_8 a {
    cursor: pointer;
    margin-top: 60px;
    background-color: white;
    display: inline-block;
    width: 235px;
    height: 44px;
    font-size: 16px;
    text-align: center;
    line-height: 44px;
    color: rgb(50, 178, 130);
    border: 1px solid rgb(50, 178, 130);
    border-radius: 5px;
    /*line-height: 40px;*/
}


/*内容9*/

.content_9 {
    width: 100%;
    height: 850px;
    font-size: 0px;
    position: relative;
    text-align: center;
    background-color: #F5F5F5;
}

.content_9 img {
    margin-top: 40px;
}

.content_9 a {
    cursor: pointer;
    margin-top: 60px;
    background-color: #f5f5f5;
    display: inline-block;
    width: 190px;
    height: 44px;
    font-size: 16px;
    text-align: center;
    line-height: 44px;
    color: rgb(50, 178, 130);
    border: 1px solid rgb(50, 178, 130);
    border-radius: 5px;
    /*line-height: 40px;*/
}


/*底部信息*/

.bottom {
    position: relative;
    width: 100%;
    height: 280px;
    background: black;
    color: white;
    text-align: center;
}

.bottom_box {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.bottom a,
.bottom em,
.bottom span {
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 15px;
    display: block;
}

.bottom span {
    color: white !important;
}

.bottom em {
    color: white !important;
    padding-top: 5px;
    font-size: 30px;
}

.bottom img {
    display: block;
    padding-top: 8px;
    width: 110px;
    height: 126px;
}

.bottom_phone,
.bottom_notice,
.bottom_home,
.bottom_help,
.bottom_wechat {
    margin-top: 50px;
    font-size: 20px;
    line-height: 30px;
    vertical-align: top;
    text-align: left;
    position: relative;
    display: inline-block !important;
}

.bottom_phone div,
.bottom_notice div,
.bottom_home div,
.bottom_help div,
.bottom_wechat div {
    margin-bottom: 20px;
}

.bottom_phone div:before,
.bottom_notice div:before,
.bottom_home div:before,
.bottom_help div:before,
.bottom_wechat div:before {
    content: "";
    position: absolute;
    top: 1.5em;
    left: 0px;
    width: 1.5em;
    height: 4px;
    background-color: #26C642;
}

.bottom_phone {}

.bottom_notice {
    margin-left: 50px;
    margin-right: 10px;
    width: 385px;
}

.bottom_home {}

.bottom_help {
    margin-left: 50px;
    margin-right: 50px;
}

.bottom_wechat {}


/*六角形*/

.cir {
    display: inline-block;
    position: relative;
    width: 86px;
    height: 86px;
    border-radius: 43px;
    line-height: 86px;
    overflow: hidden;
}

.sexangle {
    display: inline-block;
    width: 80px;
    height: 44px;
    line-height: 44px;
    background: #28C544;
    position: relative;
    color: white;
}

.sexangle i {
    font-size: 40px;
}

.sexangle:before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 25px solid #28C544;
}

.sexangle:after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 25px solid #28C544;
}

i.advise {
    display: inline-block;
    width: 20px;
    height: 22px;
    background: url('/Images/advise.png') no-repeat;
}

.content1 {
    background: url('/Images/newhomeimage/content1.png') no-repeat;
    background-size: cover;
    height: auto;
    width: 100%;
    box-sizing: border-box;
    padding-top: 80px;
    padding-bottom: 420px;
    position: relative;
}

.contentTitle {
    font-size: 38px;
    font-weight: bold;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contentTitle>span {
    margin: 0 36px;
}

.contentTitle>img {
    width: 102px;
    height: 14px;
}

.contentTitle2 {
    width: 100%;
    text-align: center;
    color: #888888;
    font-size: 24px;
    margin-top: 16px;
    margin-bottom: 10px;
}

.bottom-title {
    color: #000000;
    font-weight: bold;
    font-size: 32px;
    margin: 40px auto 60px;
    position: relative;
    width: 916px;
    height: 46px;
}

.bottom-title p {
    background-color: transparent;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 10px;
    margin: 0;
}

.bottom-title .title-underline {
    background-color: #FFEDD1;
    height: 20px;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 9;
}

.content1TextLeft,
.content1TextRight {
    font-size: 20px;
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.content1TextLeft p,
.content1TextRight p {
    font-size: 22px;
    font-weight: bold;
    color: #5BBC3C;
    margin: 0 0 6px;
}

.content1TextLeft img,
.content1TextRight img {
    height: 110px;
    width: 97px;
    margin-right: 32px;
}

.content1TextLeft {
    margin-left: 530px;
}

.content1TextRight {
    margin-left: 700px;
}

@media only screen and (max-width: 1366px) {
    .content1TextLeft {
        margin-left: 330px;
    }
    .content1TextRight {
        margin-left: 600px;
    }
}

.content2 {
    background: #F6FAFC;
    height: 802px;
    width: 100%;
    box-sizing: border-box;
    padding-top: 80px;
}

.content2Container {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
    margin-top: 60px;
    position: relative;
}

.content2Container>div {
    width: 370px;
    height: 485px;
    background: #FFFFFF;
    box-shadow: 0px 3px 12px rgba(44, 65, 83, 0.16);
    opacity: 1;
    box-sizing: border-box;
    padding: 40px 42px;
    text-align: center;
    flex-shrink: 0;
}

.content2Container>div>img {
    height: 66px;
    width: 66px;
}

.content2Container>div>div:nth-child(2) {
    color: #333333;
    font-size: 20px;
    margin-top: 18px;
}

.content2Container>div>div:nth-child(3) {
    color: #888888;
    font-size: 16px;
    margin-top: 16px;
    text-align: start;
    line-height: 28px;
}

.content2Container>div>div:nth-child(4) {
    height: 120px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 12px;
}

.content2Container>div>div:nth-child(4)>div {
    box-sizing: border-box;
    padding: 0 10px;
    min-width: 90px;
    line-height: 32px;
    text-align: center;
    height: 32px;
    border-radius: 100px;
    margin-top: 12px;
    font-size: 14px;
    margin-right: 8px;
}

.content2Blue>div {
    color: #4DBBFF;
    background: #EDF9FF
}

.content2Blue>div {
    color: #4DBBFF;
    background: #EDF9FF
}

.content2Green>div {
    color: #5BBC3C;
    background: #E4F6DE
}

.content2Yellow>div {
    color: #FF9830;
    background: #FFEDD1
}

.content2Container>div>div:nth-child(5) {
    width: 100%;
    height: 52px;
    text-align: center;
    line-height: 52px;
    color: #fff;
    font-size: 16px;
    border-radius: 100px;
    margin-top: 40px;
    cursor: pointer;
}

.content2Button1 {
    background: #4DBBFF
}

.content2Button2 {
    background: #68BB4C
}

.content2Button3 {
    background: #FF9830
}

.content3 {
    background: #FFFFFF;
    height: 749px;
    width: 100%;
    box-sizing: border-box;
    padding-top: 80px;
}

.content3Container {
    display: flex;
    justify-content: center;
    margin-top: 80px;
    align-items: center;
}

.content3Container>div>div {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    width: 260px;
    margin-bottom: 40px;
}

.content3Container>div>div:last-child {
    margin-bottom: 0px;
}

.content3Container>div:first-child>div {
    justify-content: flex-end;
}

.content3Container>div:first-child>div>img {
    margin-left: 15px;
}

.content3Container>div:last-child>div>img {
    margin-right: 15px;
}

.content3Container img {
    height: 40px;
    width: 40px;
}

.content3Container>img {
    width: 584px;
    height: 460px;
    margin: 0 40px 0 40px;
}

.content4 {
    background: #F6FAFC;
    height: auto;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    padding-top: 80px;
    position: relative;
    overflow: visible;
    padding-bottom: 217px;
}

.content4Container1 {
    width: 640px;
    height: 450px;
    background: #FFFFFF;
    box-sizing: border-box;
    margin: 0 auto;
    margin-top: 60px;
    position: relative;
    left: 276px;
    padding-top: 60px;
    z-index: 9999
}

.content4Container1>div:nth-child(1) {
    font-size: 24px;
    color: #333333;
    margin-left: 130px;
    font-weight: bold;
}

.content4Container1>div:nth-child(2) {
    font-size: 24px;
    color: #333333;
    margin-top: 10px;
    margin-left: 130px;
    font-weight: bold;
    margin-bottom: 54px;
}

.content4Container1>div:nth-child(2)>span {
    position: relative;
}

.content4Container1>div:nth-child(2)>span>span {
    width: 76px;
    display: inline-block;
    height: 12px;
    background: #FFEF9E;
    position: absolute;
    z-index: -1;
    left: 21px;
    bottom: -1px;
}

.content4Container1>div:not(:nth-child(1),
 :nth-child(2)) {
    margin-bottom: 30px;
    font-size: 16px;
    margin-left: 96px;
    display: flex;
    align-items: center;
}

.content4Container1>div:not(:nth-child(1),
 :nth-child(2))>span:first-child {
    background: #27AE60;
    height: 10px;
    width: 10px;
    display: inline-block;
    flex-shrink: 0;
    margin-right: 16px;
}

.content4Container1>div:not(:nth-child(1),
 :nth-child(2))>span:last-child {
    flex-shrink: 0;
    width: 420px;
    line-height: 28px;
}

.content4Container1>img:nth-child(6) {
    position: absolute;
    top: 60px;
    left: 97px;
    height: 40px;
    width: 43px;
}

.content4Container1>img:nth-child(7) {
    position: absolute;
    top: 20px;
    right: 23px;
    height: 63px;
    width: 59px;
}

.content4Container1BG {
    position: absolute;
    top: 263px;
    left: 18.8%;
    width: 700px;
    height: 494px;
    z-index: 1
}

.content4Container1BG01 {
    position: absolute;
    top: 240px;
    left: 22%;
    width: 80px;
    height: 70px;
    z-index: 2
}

.content4Container2 {
    margin-top: 207px;
    left: -276px;
}

.content4Container2>div:nth-child(2)>span>span {
    width: 102px;
    display: inline-block;
    height: 12px;
    background: #FFDEAF;
    position: absolute;
    z-index: -1;
    left: 20px;
    bottom: -1px;
}

.content4Container2BG {
    position: absolute;
    top: 920px;
    left: 44.5%;
    width: 700px;
    height: 494px;
    z-index: 1
}

.content4Container2BG02 {
    position: absolute;
    top: 896px;
    left: 74%;
    width: 80px;
    height: 70px;
    z-index: 2
}

.content5 {
    height: 496px;
    width: 1320px;
    border-radius: 40px;
    background: #fff;
    z-index: 999;
    position: absolute;
    box-sizing: border-box;
    padding: 40px 65px 60px 65px;
    text-align: center;
    box-shadow: 0px -2px 10px rgba(44, 65, 83, 0.03);
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.content5>div:first-child {
    font-size: 38px;
    font-weight: bold;
}

.content5>div:nth-child(2) {
    width: 52px;
    height: 3px;
    background: #2D73F5;
    margin: 0 auto;
    margin-top: 13px
}

.content5>div:nth-child(3) {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.content5>div:nth-child(3)>div {
    width: 33.3%;
    flex-shrink: 0;
    height: 226px;
    box-sizing: border-box;
}

.content5>div:nth-child(3) img {
    height: 75px;
    width: 75px;
    margin-bottom: 24px;
}

.content5>div:nth-child(3)>div>div:nth-child(2) {
    font-weight: bold;
    font-size: 24px;
    color: #333333;
}

.content5>div:nth-child(3)>div>div:nth-child(3) {
    margin-top: 20px;
    font-size: 20px;
    color: #333333
}

.content5>div:nth-child(4) {
    color: #2D73F5;
    font-size: 18px;
    width: 86px;
    margin: 0 auto;
    margin-top: 30px;
    cursor: pointer;
}

.content5>div:nth-child(4):hover {
    border-bottom: 1px solid #2D73F5;
}

.defaultBottom {
    background: url('/Images/newhomeimage/defaultBG.png');
    box-sizing: border-box;
    height: 425px;
    padding-top: 174px;
}

.defaultBottom>div:first-child {
    display: flex;
    justify-content: center;
}

.defaultBottom>div:first-child>div>div:first-child {
    font-size: 24px;
    color: #fff;
    margin-bottom: 24px;
}

.defaultBottom>div:first-child>div>div:last-child {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8)
}

.defaultBottom>div:first-child>img {
    margin-left: 262px;
    margin-right: 30px;
    height: 130px;
    width: 130px;
}

.defaultBottom>div:last-child {
    margin-top: 70px;
    width: 100%;
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content2CodeTwo {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    transform: rotateY(180deg);
    transition: all 0.8s ease;
    padding-top: 60px;
}

.content2CodeTwo>img {
    height: 227px !important;
    width: 227px !important;
}

.content2CodeTwo>div:nth-child(2) {
    font-size: 18px !important;
    color: #333333 !important;
    margin-top: 30px !important;
    text-align: center !important
}

.content2CodeTwo>div:nth-child(3) {
    font-size: 18px !important;
    color: #333333 !important;
    margin-top: 8px !important;
    text-align: center !important
}

.content2CodeTwo>div:nth-child(4) {
    color: #2D73F5 !important;
    width: 100% !important;
    height: 52px !important;
    text-align: center;
    line-height: 50px !important;
    cursor: pointer;
    font-size: 16px !important;
    margin-top: 36px !important;
    display: block !important;
    border: 1px solid #2D73F5;
    box-sizing: border-box;
    border-radius: 50px;
}

.content2CodeTwo>div:nth-child(4):hover {
    border-bottom: 1px solid #2D73F5
}

.content2Code {
    transition: all 0.8s ease;
    position: relative;
    z-index: 2;
    right: 0;
    top: 0;
}

.rotateY180 {
    transform: rotateY(180deg);
}

.rotateY0 {
    transform: rotateY(0deg);
}

.showLearningMachine.a_show {
    z-index: 99;
}

.container1-bk {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 80px 0;
    color: #000000;
}

.new-container1 {
    width: 1100px;
    margin: 40px auto 0;
    height: auto;
    overflow: hidden;
}

.container1-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.container1-wrap:last-child {
    margin-bottom: 0px;
}

.container1-wrap>div {
    width: 50%;
    display: flex;
    justify-content: center;
}

.container1-desc {
    width: 520px;
}

.container1-desc .title {
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: bold;
    margin-left: 20px;
}

.desc-item {
    font-size: 18px;
    margin-top: 20px;
}

.desc-item .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #27AE60;
    display: inline-block;
    margin-right: 10px;
}

.container2-bk {
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #F6FAFC;
    padding: 80px 0 100px;
}

.new-container2 {
    width: 1200px;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.container2-item {
    width: 370px;
    height: 383px;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 12px rgba(44, 65, 83, 0.11);
    opacity: 1;
    border-radius: 10px;
    padding: 34px 38px 0 38px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000000;
}

.container2-item h2 {
    font-size: 26px;
    margin: 36px auto 24px;
}

.item2-desc {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.item2-desc span {
    display: inline-block;
    width: 136px;
    height: 43px;
    line-height: 43px;
    text-align: center;
    border-radius: 4px;
    font-size: 22px;
    font-weight: bold;
}

.container2-item p {
    font-size: 18px;
    line-height: 24px;
    margin-top: 20px;
}

.bg-green span {
    background-color: #E4F6DE;
    color: #5BBC3C;
}

.bg-blue span {
    background-color: #EDF9FF;
    color: #4DBBFF;
}

.bg-orange span {
    background-color: #FFEDD1;
    color: #FF9830;
}