/* @charset "UTF-8"; */
html,
body,
div,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
form,
input,
textarea,
th,
td,
select,
a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: '微软雅黑';
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mt60 {
    margin-top: 60px;
}

.pt50 {
    padding-top: 50px;
}

.pb50 {
    padding-bottom: 50px;
}

.pb70 {
    padding-bottom: 70px;
}

.mt70 {
    margin-top: 70px;
}

.pt70 {
    padding-top: 70px;
}

.bg {
    background: #ebf8ff;
}

ul,
a {
    list-style: none;
    text-decoration: none;
}

.white {
    color: #fff !important;
}

.flex_box {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.bz-webWrap {
    width: 100%;
    color: #333;
}

.bz-webWrap .container {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    box-sizing: border-box;
}

.bz-webWrap .btn_wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.bz-webWrap .morebtn {
    height: 50px;
    line-height: 50px;
    background: #06b9b9;
    border-radius: 25px;
    color: #fff;
    font-size: 20px;
    padding: 0 65px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.bz-webWrap .morebtn:hover {
    background-color: #39bacb;
    color: #ffffff;
}

.bz-webWrap .title-box {
    width: 100%;
}

.bz-webWrap .title-box .bigtitle {
    font-size: 40px;
    color: #333;
    text-align: center;
    font-weight: 700;
    box-sizing: border-box;
    letter-spacing: 2px;
}

.bz-webWrap .title-box .bigtitle>.mark {
    color: #5093f1;
}

.bz-webWrap .title-box .smalltitle {
    font-size: 24px;
    line-height: 36px;
    color: #999;
    margin-top: 15px;
    font-weight: 500;
    text-align: center;
    box-sizing: border-box;
}

.bz-webWrap .img_wrapper {
    overflow: hidden;
}

.bz-webWrap .img_wrapper img {
    width: 100%;
}

.bz-webWrap .img-wrapper {
    overflow: hidden;
}

.bz-webWrap .img-wrapper img {
    width: 100%;
}

.sec_1 .swiper-slide:nth-of-type(1) a {
    display: block;
    height: 699px;
    background: url("../images/banner1.jpg") center no-repeat;
}

.sec_1 .swiper-slide:nth-of-type(2) a {
    display: block;
    height: 699px;
    background: url("../images/banner2.jpg") center no-repeat;
}

.sec_2 .flex_box {
    align-items: flex-end;
}

.sec_2 .flex_left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    font-size: 20px;
    margin-right: 30px;
}

.sec_2 .flex_left li {
    height: 80px;
    background: #f5f5f5;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.sec_2 .flex_left li:before {
    display: inline-block;
    width: 60px;
    height: 80px;
    border-radius: 10px 0 0 10px;
    color: #fff;
    margin-right: 30px;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec_2 .flex_left li:nth-of-type(1)::before {
    content: "1";
    background: linear-gradient(to right, #fd6e50, #fa3927);
}

.sec_2 .flex_left li:nth-of-type(2)::before {
    content: "2";
    background: linear-gradient(to right, #5ab7fe, #318fff);
}

.sec_2 .flex_left li:nth-of-type(3)::before {
    content: "3";
    background: linear-gradient(to right, #feaa25, #fe810a);
}

.sec_2 .flex_left li:nth-of-type(4)::before {
    content: "4";
    background: linear-gradient(to right, #0cc7c0, #00b7bc);
}

.sec_2 .flex_left li:last-of-type {
    margin-bottom: 0;
}

.sec_2 .circle_box {
    height: 502px;
    position: relative;
}

.sec_2 .circle_box .circle1,
.sec_2 .circle_box .circle2,
.sec_2 .circle_box .circle3,
.sec_2 .circle_box .circle4 {
    position: absolute;
    border-radius: 50%;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.sec_2 .circle_box span {
    display: block;
    border-radius: 50%;
    position: absolute;
}

.sec_2 .circle_box .circle1 {
    width: 502px;
    height: 502px;
    border: 1px solid #e5e5e5;
    -webkit-animation: animation1 8s infinite linear;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}

.sec_2 .circle_box .circle1 span {
    width: 16px;
    height: 16px;
    background: #bfd2f5;
    bottom: 50px;
    left: 80px;
}

@-webkit-keyframes animation1 {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

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

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
.sec_2 .circle_box .circle2 {
    width: 392px;
    height: 392px;
    border: 1px solid #cfcfcf;
    -webkit-animation: animation2 6s infinite linear;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}
.sec_2 .circle_box .circle2 span:nth-of-type(1){
    width: 21px;
    height: 21px;
    background: #0ecabf;
    bottom: 25px;
    right: 72px;
}
.sec_2 .circle_box .circle2 span:nth-of-type(2){
    width: 13px;
    height: 13px;
    background: #ff2d4b;
    top: 90px;
    left: 19px;
}
.sec_2 .circle_box .circle2 span:nth-of-type(3){
    width: 28px;
    height: 28px;
    background: #ff7f0d;
    top: -10px;
    right: 140px;
}
.sec_2 .circle_box .circle3 {
    width: 271px;
    height: 271px;
    background: #e8effb;
}

.sec_2 .circle_box .circle4 {
    width: 210px;
    height: 210px;
    background: #1b5fbc url("../images/sec2_bg.png") center no-repeat;
    background-size: 80%;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sec_2 .shenxue{
    width: 100%;
    height: 100%;
}
.sec_2 .shenxue li{
    width: 385px;
    height: 76px;
    border-radius: 38px;
    color: #333;
    font-size: 30px;
    line-height: 76px;
    font-size: 30px;
    font-weight: 700;
    position: absolute;
    box-sizing: border-box;
}
.sec_2 .shenxue li:nth-of-type(odd){
    padding-left: 30px;
}
.sec_2 .shenxue li:nth-of-type(even){
    padding-left: 90px;
}
.sec_2 .shenxue li:nth-of-type(1){
    background: #ffeedf;
    top: 55px;
    left: 50px;
}
.sec_2 .shenxue li:nth-of-type(2){
    background: #ffeedf;
    top: 55px;
    right: 50px;
}

.sec_2 .shenxue li:nth-of-type(3){
    background: #f7d7ef;
    top: 238px;
    left: 52px;
}
.sec_2 .shenxue li:nth-of-type(4){
    background: #f2f9ff;
    bottom: 90px;
    right: 100px;
}
.sec_2 .shenxue li:nth-of-type(5){
    background: #ffe6ea;
    bottom: 20px;
    left: 86px;
}
.sec_2 .shenxue li:nth-of-type(odd)::after{
    display: inline-block;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    right: 0;
    text-align: center;
    font-size: 36px;
}
.sec_2 .shenxue li:nth-of-type(even)::before{
    display: inline-block;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 36px;
}
.sec_2 .shenxue li:nth-of-type(1)::after{
    content: "01";
    background: #ff7f0d;
}
.sec_2 .shenxue li:nth-of-type(3)::after{
    content: "03";
    background: #ac1786;
}
.sec_2 .shenxue li:nth-of-type(5)::after{
    content: "05";
    background: #ff2d4b;
}
.sec_2 .shenxue li:nth-of-type(2)::before{
    content: "02";
    background: #0ecabf;
}
.sec_2 .shenxue li:nth-of-type(4)::before{
    content: "04";
    background: #0785f1;
}

.sec_3 {
    background: #ebf8ff;
}
.sec_3 .container{
    padding: 0 25px;
}
.sec_3 .box1 ul{
    width: 345px;
}
.sec_3 .box1 ul li{
    padding: 25px 25px 25px 30px;
    text-align: justify;
    margin-bottom: 45px;
    position: relative;
    background: #fff;
    border-radius: 10px;
}
.sec_3 .box1 ul li::before{
    content: "";
    display: inline-block;
    position: absolute;
    width: 46px;
    height: 48px;
    top: -20px;
    left: -20px;
}
.sec_3 .box1 ul li:last-of-type{
    margin-bottom: 0;
}
.sec_3 .box1 ul li .p1{
    font-size: 18px;
    font-weight: 700;
}
.sec_3 .box1 ul li .p2{
    font-size: 16px;
    margin-top: 16px;
}
.sec_3 .box1 .item2{
    align-self: center;
}
.sec_3 .box1 .item1 li:nth-of-type(1)::before{
    background: url("../images/sec3_icon1.png") center  no-repeat;
}
.sec_3 .box1 .item1 li:nth-of-type(2)::before{
    background: url("../images/sec3_icon2.png") center no-repeat;
}
.sec_3 .box1 .item1 li:nth-of-type(3)::before{
    background: url("../images/sec3_icon3.png") center no-repeat;
}
.sec_3 .box1 .item3 li:nth-of-type(1)::before{
    background: url("../images/sec3_icon4.png") center no-repeat;
}
.sec_3 .box1 .item3 li:nth-of-type(2)::before{
    background: url("../images/sec3_icon5.png") center no-repeat;
}
 
.sec_hj .img-wrapper img{
    height: 100%;
}
.sec_hj .item2,
.sec_hj .item3{

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sec_4 .flex_box {
    background: url("../images/sec4_bg.png") center bottom no-repeat;
    padding-bottom: 35px;
}

.sec_4 .flex_item {
    width: 500px;
    box-sizing: border-box;
    font-size: 20px;
}
.sec_4 .abs_box{
    width: 200px;
    color: #fff;
    font-size: 24px;
}
.sec_4 .abs_box ul li:first-of-type{
    background: url("../images/sec4_VS.png") center no-repeat;
}
.sec_4 .item_left ul li:last-of-type,
.sec_4 .item_right ul li:last-of-type,
.sec_4 .abs_box ul li:last-of-type{
    border: none;
}
.sec_4 .flex_box li{
    height: 83px;
    border-bottom: 3px solid #fff;
    text-align: center;
    line-height: 24px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec_4 .item_left li{
    background: #e9e9e9;
}
.sec_4 .item_right li{
    background: #f2e727;
}
.sec_4 .flex_box li:first-of-type{
    height: 100px;
    color: #40bbcd;
    font-size: 24px;
    background: none;
    border: none;
}
.sec_5 .flex_box{
    justify-content: center;
}
.sec_5 .video_box{
    width: 709px;
    height: 423px;
}
/* .sec_5 .video_tip{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.sec_5 .video_tip li{
    width: 295px;
    height: 65px;
    font-size: 18px;
    background: #fff;
    border: 3px solid #40bbcd;
    border-radius: 32.5px;
    box-sizing: border-box;
    padding-left: 30px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}


.sec_5 .video_tip li::after{
    display: inline-block;
    content: "";
    width: 65px;
    height: 65px;
    position: absolute;
    right: -3px;
    top: -3px;
    background: #fff url("../images/play.png") center no-repeat;
    border-radius: 50px;
    box-shadow: 0 0 10px #ccc;
} */

.sec_6 .img-wrapper{
    width: 271px;
    height: 201px;
}
.sec_6 .img-wrapper img{
    width: 100%;
    height: 100%;
}
.sec_6 p{
    margin-top: 50px;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
}
.sec_7 .small-title{
    margin-top: 50px;
    font-size: 25px;
    text-align: center;
}
.sec_7 .flex_box{
    position: relative;
}
.sec_7 .sec_7_content{
    width: 648px;
    height: 284px;
    color: #fff;
    background: #40bbcd;
    font-size: 20px;
    line-height: 30px;
    padding: 35px 30px 0 158px;
    text-align: justify;
    box-sizing: border-box;
}
.sec_7 .pos_box{
    position: absolute;
    width: 670px;
    height: 176px;
    background: #fff;
    box-sizing: border-box;
    font-size: 16px;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 15px;
    align-items: center;
    justify-content: space-around;
    padding: 0 20px;
    box-shadow: 0 0 15px #ccc;
}
.sec_7 .pos_box li{
    text-align: center;
}
.sec_7 .pos_box span{
    display: block;
    width: 70px;
    height: 50px;
    margin: 0 auto;
}
.sec_7 .pos_box li:nth-of-type(1) span{
    background: url("../images/sec7_icon1.png") center no-repeat;
}
.sec_7 .pos_box li:nth-of-type(2) span{
    background: url("../images/sec7_icon2.png") center no-repeat;
}
.sec_7 .pos_box li:nth-of-type(3) span{
    background: url("../images/sec7_icon3.png") center no-repeat;
}
.sec_7 .pos_box li:nth-of-type(4) span{
    background: url("../images/sec7_icon4.png") center no-repeat;
}
.sec_7 .pos_box li:nth-of-type(5) span{
    background: url("../images/sec7_icon5.png") center no-repeat;
}
.sec_7 .pos_box li p{
    margin-top: 20px;
}
.sec_8 .small-title{
    text-align: center;
    font-size: 30px;
    margin-top: 50px;
}
.sec_8 .container{
    padding: 0 15px;
}
.sec_8 table{
    width: 100%;
    margin-top: 25px;
    border-collapse: collapse;
    text-align: center;
    box-shadow: 0 0 15px #ccc;
    font-size: 20px;
}
.sec_8 table tr{
    height: 80px;
}
.sec_8 table th{
    background: #40bbcd;
    color:#fff;
    font-size: 24px;
}
.sec_8 table tbody tr:nth-of-type(odd){
    background: #fff;
}

.sec_9 form{
    box-shadow: 0 0 15px #ccc;
    border-radius: 5px;
    padding-bottom: 70px;
    position: relative;
}
.sec_9 form .f_title{
    font-size: 30px;
    margin-top: 50px;
    text-align: center;
}
.sec_9 form .flex_box{
    margin-top: 40px;
    padding: 0 75px;
}
.sec_9 form .flex_box .input_group{
    width: 380px;
    height: 60px;
    border: 1px solid #bcc4c4;
    border-radius: 5px;
}
.sec_9 form .flex_box .input_group label{
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    box-sizing: border-box;
    padding-left: 20px;
}
.sec_9 form .flex_box .input_group label span{
    height: 100%;
    font-size: 20px;
    display: flex;
    align-items: center;
}
.sec_9 form .flex_box .input_group label input{
    height: 100%;
    outline: none;
    border: none;
    background: none;
    font-size: 20px;
}
.sec_9 form .flex_box .submit_wrapper{
    width: 265px;
    border-radius: 5px;
    background: #40bbcd;
}
.sec_9 form .flex_box .submit_wrapper input{
    background: none;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}
.sec_9 form p{
    padding-left: 75px;
    margin-top: 30px;
    color: #999;
    font-size: 18px;
}
.sec_9 form .mark{
    display: block;
    width: 180px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #40bbcd;
    color: #fff;
    font-size: 22px;
    transform: rotate(-45deg);
    position: absolute;
    top: 18px;
    left: -45px;
}

.sec_10 .question{
    margin-top: 0;
    box-sizing: border-box;
    padding: 0 110px;
}
.sec_10 .question a{
    font-size: 20px;
    color: #666;
}
.sec_10 .question a span{
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 4px;
    border: 2px solid #40bbcd;
    margin-right: 10px;
    color: #40bbcd;
}
.sec_10 .question a:hover{
    color: #40bbcd;
}
.sec_10 .question li{
    line-height: 85px;
    border-bottom: 1px solid #ccc;
}
.sec_10 .question li a:nth-of-type(1){
    width: 580px;
    display: inline-block;
}


.sec_12 .flex_item{
    text-align: center;
    margin-top: 30px;
}

.sec_12 .flex_item p {
    margin-top: 10px;
}
.sec_14 .item{
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 30px 20px;
}
.sec_14>.item{
    margin-top: 30px;
}
.sec_14 .flex_box .item{
    width: 380px;
}
.sec_14 .item p{
    display: flex;
}
.sec_14 .item .question{
    color: #666;
}
.sec_14 .item .question span:first-of-type{
    color: #4979ff;
}
.sec_14 .item .answer{
    margin-top: 20px;
    color: #a2a2a2;
}
.sec_14 .item .answer span:first-of-type{
    color: #f19149;
}
/* hover */
.img_wrapper img {
    transition: transform 0.2s linear;
    overflow: hidden;
}

.img_wrapper:hover img {
    transform: scale(1.2);
}

.rotate {
    transition: all 1.2s linear;
}

.rotate:hover {
    transform: rotate(360deg);
}

.scale {
    transition: all 0.2s linear;
    overflow: hidden;
}

.scale2 {
    transition: all 0.2s linear;
    overflow: hidden;
}

.scale3 {
    transition: all 0.2s linear;
    overflow: hidden;
}

.scale:hover {
    transform: scale(1.2);
}

.scale2:hover {
    transform: scale(1.45);
}

.scale3:hover {
    transform: scale(1.05);
}