body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
}

::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 7px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #ccc;
}

::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #EDEDED;
}

#app {
    width: 100%;
    min-width: 1200px;
    overflow: hidden;
}

.relative {
    position: relative;
}

.w1200 {
    width: 1200px;
}

.flex1 {
    flex: 1;
}

.flex2 {
    flex: 2;
}

.flex {
    display: flex;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mt20 {
    margin-top: 20px;
}

.mt25 {
    margin-top: 25px;
}

.mt30 {
    margin-top: 30px;
}

.mt35 {
    margin-top: 35px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.ml5 {
    margin-left: 5px;
}

.ml10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.ml20 {
    margin-left: 20px
}

.ml25 {
    margin-left: 25px;
}

.mr10 {
    margin-right: 10px;
}

.mr15 {
    margin-right: 15px;
}

.mr20 {
    margin-right: 20px
}

.mr25 {
    margin-right: 25px;
}

.mr30 {
    margin-right: 30px;
}

.mr35 {
    margin-right: 35px;
}

.mr40 {
    margin-right: 40px;
}

.mr50 {
    margin-right: 50px;
}

.font-12 {
    font-size: 12px;
}

.font-13 {
    font-size: 13px;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

.font-18 {
    font-size: 18px;
}

.font-20 {
    font-size: 20px;
}

.font-25 {
    font-size: 25px;
}

.font-weight {
    font-weight: bold;
}

.text-center {
    text-align: center;
}

.bg-main {
    color: #06CB94;
}

.bg-black {
    background-color: #313131;
}

.bg-grey {
    background-color: #F5F8FA;
}

.bg-white {
    background-color: white;
}

.bg-red {
    background-color: #eb002a;
}

.pd-5 {
    padding: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pd-10 {
    padding: 10px;
}

.pd-15 {
    padding: 15px;
}

.pd-20 {
    padding: 20px;
}

.pd-25 {
    padding: 25px;
}

.pt-15 {
    padding-top: 15px;
}

.pd-lr-15 {
    padding: 0 15px;
}

.pd-lr-20 {
    padding: 0 20px;
}

.pd-lr-25 {
    padding: 0 25px;
}

.pd-tb-5 {
    padding: 5px 0;
}

.pd-tb-10 {
    padding: 10px 0;
}

.pd-tb-15 {
    padding: 15px 0;
}

.pd-tb-20 {
    padding: 20px 0;
}

.pd-tb-25 {
    padding: 25px 0;
}

.font-main {
    color: #1da0e4;
}

.font-black {
    color: #313131;
}

.font-grey {
    color: gray;
}

.font-blue {
    color: #14B9C8;
}

.font-orange {
    color: #FE931B;
}

.font-red {
    color: #eb002a;
}

.font-green {
    color: #67C23A;
}

.font-white {
    color: white !important;
}

.border {
    border: 1px solid #eee;
}

.border-bottom {
    border-bottom: 1px solid #eee;
}

.border-top {
    border-top: 1px solid #eee;
}


/*公共头样式*/

.zxt-head {
    width: 100%;
    position: fixed;
    height: 70px;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    transition: all .5s;
}

.head-main {
    margin: auto;
    height: 60px;
    width: 1200px;
    min-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.head-logo {
    width: 138px;
    height: 50px;
}

.head-nav {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
}

.head-nav>li {
    position: relative;
    margin-right: 40px;
    margin-top: 5px;
}

.head-nav>li .line {
    margin: 6px auto 0;
    width: 30px;
    display: block;
    height: 4px;
    border-radius: 3px;
    background: transparent;
}

.head-nav>li:hover .line,
.head-nav>.act .line {
    background: white;
}

.head-nav>li>a {
    font-size: 16px;
    font-family: fantasy;
    color: white;
    display: block;
    text-align: center;
    text-decoration: none;
}

.head-nav>li:hover .head-nav-child {
    display: block;
}

.head-nav-child {
    display: none;
    box-sizing: border-box;
    position: absolute;
    width: 166px;
    background: #fff;
    box-shadow: 0px 3px 6px 0px rgb(6 101 75 / 15%);
    border-radius: 10px;
    top: 31px;
    left: calc(-55px + 50%);
    padding: 0 20px 20px 20px;
}

.head-nav-child .jiao {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    left: 30%;
    top: -5px;
}

.head-nav-child a {
    color: #3E464C;
    display: block;
    font-size: 14px;
    text-decoration: none;
}

.head-nav-child-box>div {
    margin-top: 20px;
}

.head-nav-child-box-a {
    display: flex !important;
    align-items: center;
}

.head-nav-child-box-img {
    width: 25px;
    height: 25px;
    margin-right: 8px;
}

.head-btn {
    width: 100px;
    height: 32px;
    line-height: 32px;
    border-radius: 2px;
    border: 1px solid white;
    text-align: center;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.head-btn:hover {
    color: #007aff;
    background: white;
}

.nav-act .zxt-head {
    background: rgba(0, 0, 0, .85);
    box-shadow: 0px 3px 7px 0px rgb(6 101 75 / 15%);
    /* border-bottom: 1px solid #E0E4EA; */
}

.nav-act .head-nav>li>a {
    /* color: #3E464C; */
}

.nav-act .head-nav>li:hover .line,
.nav-act .act .line {
    /* background: #1da0e4; */
}

.nav-act .head-nav>li:hover>a,
.nav-act .act a {
    /* color: #1da0e4 !important; */
}

.nav-act .head-btn {
    /* background: #007aff; */
    /* border: 1px solid #007aff; */
}

.nav-act .head-btn:hover {
    /* background: #1883bd; */
    /* color: white */
}


/*公共底部*/

.foot-main {
    min-width: 1200px;
}

.foot-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100vw;
    min-width: 1200px;
    height: 250px;
    background: url(../img/foot-banner.png) no-repeat center;
    background-size: 100% 101%;
}

.foot-head-btn {
    margin-top: 30px;
    width: 150px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background: white;
    box-shadow: 0px 3px 6px 0px rgb(4 90 66 / 20%);
    border-radius: 5px;
    color: #1da0e4;
    font-size: 16px;
    border: 0;
    cursor: pointer;
}

.foot-head-btn:hover {
    background: #eee;
}

.foot-body {
    width: 100vw;
    min-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #3D3E4A;
    padding-top: 45px;
    padding-bottom: 20px;
}

.foot-body-top {
    width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.foot-phone {
    font-size: 28px;
    color: white;
}

.foot-qrcode {
    width: 110px;
    height: 110px;
    margin: 20px 0 10px;
}

.foot-work {
    font-size: 12px;
    color: #A2A5AC;
}

.foot-title {
    font-size: 15px;
    color: white;
    margin-bottom: 30px;
}

.foot-sub {
    font-size: 14px;
    color: #9E9FA5;
    margin-bottom: 10px;
}

.foot-sub>a {
    color: #9E9FA5;
    text-decoration: none;
}

.foot-body-bottom {
    font-size: 12px;
    color: #666B76;
    line-height: 24px;
    text-decoration: none;
}

.dialog-main {
    margin: auto !important;
    width: fit-content;
    height: fit-content;
}

.dialog-main .el-dialog {
    margin-top: 0 !important;
    width: 480px !important;
    border-radius: 15px;
    background: #fff url(../img/form-bg.png) no-repeat center top;
    background-size: 100% auto;
    overflow: hidden;
}

.dialog-title {
    text-align: center;
    font-size: 26px;
    color: #404040;
    letter-spacing: 3px;
}

.dialog-brief {
    letter-spacing: normal;
    font-size: 14px;
    display: block;
    margin-top: 10px;
    margin-bottom: 48px;
    text-align: center;
    color: #404040;
}

.dialog-input {
    display: block;
    margin: 0 auto;
    outline: none;
    width: 338px;
    height: 42px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(227, 227, 227, 1);
    background: none;
    margin-top: 23px;
    font-size: 14px;
    color: #666666;
}

.dialog-btn {
    text-align: center;
    display: block;
    width: 338px;
    margin: 0 auto;
    height: 46px;
    line-height: 46px;
    background: #1da0e4;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
    border-radius: 5px;
    -webkit-transition: 0.4s all linear;
    margin-top: 30px;
    margin-bottom: 20px;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
    color: #aaa;
}

.public-right {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 210px;
    z-index: 99;
}

.right-list {
    position: relative;
    width: 60px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #007aff;
    text-decoration: none;
    cursor: pointer;
}

.right-list:hover {
    background: #0069da;
}

.right-list:first-child {
    border-top-left-radius: 4px;
}

.right-list:last-child {
    border-bottom-left-radius: 4px;
}

.right-list-img {
    width: 26px;
    height: 26px;
    margin-bottom: 5px;
}

.right-list-title {
    font-size: 12px;
    color: white;
}

.right-list-animate {
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    right: -200px;
    background: white;
    box-shadow: 2px 2px 13px rgb(0 0 0 / 20%);
    z-index: -98;
    transition: all .7s;
}

.right-list-animate::after {
    content: "";
    position: absolute;
    top: 15px;
    right: -20px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid transparent;
    border-left: 10px solid #fff;
}

.right-list:hover .right-list-animate {
    right: 80px;
}

.right-animate-img {
    width: 120px;
    height: 120px;
}

.right-animate-tel {
    font-size: 16px;
    font-weight: bold;
    color: #007aff;
    padding: 10px 0;
    width: 140px;
    text-align: center;
}

.index-head {
    background: linear-gradient(#3e35e6, #007aff);
    /* background: #3e35e6 */
}

.index-banner-title {
    font-size: 135px;
    color: #ffc32e;
}

.index-banner-title1 {
    top: 63px;
    left: 376px;
    position: absolute;
    font-size: 114px;
    color: white;
}

.index-banner-title2 {
    top: 268px;
    left: 577px;
    position: absolute;
    font-size: 114px;
    color: white;
}

.index-banner-text {
    font-size: 33px;
    color: white;
}

.logo-banner {
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-banner-text {
    font-size: 33px;
    color: white;
    width: 1200px;
    height: 450px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.index-banner-btn {
    margin-top: 20px;
    width: 150px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    border-radius: 4px;
    background: #fff;
    color: #007aff;
    font-size: 16px;
    cursor: pointer;
    z-index: 1;
}

.index-banner-btn:hover {
    background: #eee;
}

.noData {
    padding: 50px 0;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.font-HY {
    font-family: HYShangWeiShouShuW
}