﻿@charset "utf-8";
:root {
    --maxWidth: 1200px;
    --containerWidth: 1125px;
    --navBg: white;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Microsoft YaHei", Tahoma, Arial;
}

.floating-contact{
    position: fixed;
    bottom: 130px;
    right: 26px;
    font-size: 20px;
    background: linear-gradient(135deg, #aeb0ff, #4ab5b5);
    background: linear-gradient(135deg, #ffaeb1, #b54aa8);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
   
    z-index: 1000; 
    display: flex;
    align-items: center;
    transition: all 0.3s;
    animation:  shake 0.5s  infinite alternate;
}
.floating-contact p {
    margin: 10px;
}
.floating-contact  a {
    color: white;
    font-size: 16px;
}

@keyframes shake {
    0% { transform: translateY(0); }
    
    100% { transform: translateY(-10px) }
}

.floating-contact:hover {
    /* transition: all 0.3s;
    transform: translateY(-8px) ;
    animation: none;  */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
    animation-play-state: paused;
}


strong {
    color: #222;
}

strong b {
    color: #0b75f1;
}

dl,
dd,
dt {
    margin: 0;
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

.btn {
    width: 184px;
    height: 52px;
    display: inline-flex;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-align: center;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.btnMore {
    margin: 50px;
    padding: 0px 30px;
    height: 36px;
    border: 1px solid #0b75f1;
    color: #0b75f1;
    box-sizing: border-box;
    border-radius: 20px;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.topBox {
    position: fixed;
    width: 100%;
    box-shadow: 0 14px 24px -4px rgb(31 35 41 / 12%);
    background: white;
    z-index: 1000;
    background: var(--navBg);
}

.fixedHeight {
    height: 60px;
}

.top {
    height: 60px;
    margin: 0 48px;
    background: white;
    background: var(--navBg);
    display: flex;
    justify-content: space-between;
}

.top .main {
    display: flex;
}

.top .right {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* .top .right li:last-child {
    width: 0px;
} */
/* .top .right li:last-child div {
    color: #317ae1;
    line-height: 24px;
    margin-top: 10px;
    font-size: 20px;
 display: flex;
 justify-content: center;
 width: 140px;
 align-items: center;
 flex-direction: column;
}
.top .right li:last-child div a[tel] {
font-size: 14px;
color: #317ae1;
} */
.top .main .menu {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    margin: 0;
    padding: 0;
    height: 100%;
}

a.downloadLink,
a.login {
    color: #0b75f1;
    margin-right: 25px;
    white-space: nowrap;
}

#header .register {
    width: 134px;
    height: 60px;
    display: flex;
    background: #0b75f1;
    line-height: 16px;
    align-items: center;
    justify-content: center;
}

#header .register a,
#header .register a:link {
    color: white;
    height: 60px;
    line-height: 60px;
    width: 134px;
    text-align: center;
}

.menulink {
    padding: 0 10px;
    margin: 0 10px;
    position: relative;
    height: 100%;
    font-size: 16px;
    line-height: 16px;
    word-break: break-all;
    cursor: pointer;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.menulink:hover>span:after {
    opacity: 1;
}

.menulink:hover .menuSub,
.menuSub:hover {
    opacity: 1;
    visibility: visible;
    box-shadow: 0 14px 24px -4px rgb(31 35 41 / 12%);
    border-top: 1px solid #dee0e3;
}

svg {
    transition: 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.menulink:hover svg {
    transform: rotate(-180deg);
}

.menulink>span,
.menulink>a {
    white-space: nowrap;
}

.menuSub {
    display: flex;
    width: 100%;
    top: 60px;
    cursor: default;
    flex-direction: row;
    flex-wrap: nowrap;
    position: fixed;
    overflow: auto;
    left: 50%;
    padding: 0 20px;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #fff;
    background: var(--navBg);
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    transition: all 0.2s ease-in-out;
}

.menulink>span:after {
    top: 58px;
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    left: 0;
    background: #3370ff;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.headerDropdown {
    width: 100%;
    padding: 0 120px;
    width: 1200px;
    width: var(--maxWidth);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.dropContainer {
    padding: 0 20px;
}

.dropContainer .item {
    width: 180px;
    height: 200px;
    margin: 25px 0px 40px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 6px;
    flex-direction: column;
}

.dropContainer .item:hover {
    background-color: #edf6ff;
    color: #2f65e1;
    cursor: pointer;
}

.dropContainer .item img {
    width: 120px;
    height: 120px;
}

.headerDropdown_section {
    padding-bottom: 28px;
    margin: 32px 30px 0 0;
    opacity: 1;
    transition: opacity 0.45s cubic-bezier(0, 0, 0.16, 0.96), transform 0.4s cubic-bezier(0, 0, 0.16, 0.96);
}

.headerDropdown_section-columnWrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
}

.headerDropdown_section-columnItem {
    position: relative;
    padding: 8px 0;
    margin-bottom: 12px;
    z-index: 2;
    font-weight: 400;
    font-size: 14px;
    color: #1f2329;
    line-height: 24px;
    min-width: 110px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.headerDropdown_section-columnItem:hover {
    transition: 0.2s linear;
    color: #3370ff;
}

.headerDropdown_section-columnItem:hover .headerDropdown_section-itemBg {
    background-color: rgb(240, 244, 255);
    position: absolute;
    border-radius: 3px;
    z-index: -1;
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    width: calc(100% + 32px);
    height: 100%;
    top: 0;
    left: -16px;
    transition: opacity 0.2s linear, transform 0.2s ease-out;
    pointer-events: none;
}

.logo {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin-right: 22px;
}

.logo img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

.logo h1 {
    min-width: 3em;
}

h1 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 600;
}

h3 {
    color: #646a73;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
    border-bottom: 1px solid #dee0e3;
    display: inline-flex;
    width: 100%;
    align-items: center;
    font-weight: 400;
}

li {
    list-style-type: none;
}

a {
    color: #222;
    text-decoration: none;
}

a:focus {
    outline: none;
}

header>nav {
    transition: all 0.2s ease-in-out;
}

.shadow {
    box-shadow: 0 3px 16px -2px rgba(0, 0, 0, 0.6);
}

#header {
    position: relative;
    width: 100%;
}

#header .container {
    height: 840px;
    background: #f1f6fd url("../img/bg1.png") no-repeat;
    background-position: top;
    width: 100%;
    background-size: 2560px 540px;
    /*color: white;*/
    overflow-x: auto;
}

#header .container .title {
    width: 374px;
    height: 45px;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 45px;
}

#header .slideBox dd {
    width: 375px;
    height: 60px;
    font-style: normal;
    font-weight: normal;
    margin-top: 20px;
    font-size: 16px;
    line-height: 24px;
}

#header .slideBox dt+dd {
    margin-top: 24px;
}

.center,
.slideBox {
    display: flex;
    height: 98%;
    justify-content: space-around;
    width: 1200px;
    z-index: 997;
    width: var(--maxWidth);
    align-items: center;
    /* overflow: hidden; */
}

.btnBox {
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: 20px;
    display: flex;
}

a.btnVideo {
    border: 1px solid #fff;
    color: #f0f4ff;
    margin-left: 12px;
}

a.btnTry {
    border: 1px solid #fff;
    background-color: #fff;
    color: #0b75f1;
}

.playBox img {
    border: 15px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    width: 552px;
    height: 296px;
}

.middle {
    height: 150px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    background-color: #f4f9ff;
}

.middle .box .item {
    min-width: 277px;
    width: 277px;
    height: 94px;
    background: #ffffff;
    border-radius: 7px;
    font-size: 14px;
    line-height: 20px;
    color: #234165;
    overflow: hidden;
    margin-right: 28px;
}

.middle .box {
    display: flex;
    overflow-x: auto;
}

.middle .box .item:first-child {
    margin-left: 28px;
}

.middle .box .item div {
    padding: 10px 8px 8px 8px;
    overflow: hidden;
}

a.detail {
    background: #cbe6ff;
    color: #2362ad;
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 9px;
}

.middle+div,
.screen2+div,
.screen4+div {
    display: flex;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.middle+div strong,
.screen2+div strong,
.screen4+div strong,
.footer .bg strong {
    width: auto;
    margin-bottom: 26px;
    font-weight: 600;
    font-size: 32px;
    line-height: 45px;
    color: #000000;
}

.desc {
    width: 662px;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    margin-bottom: 30px;
    color: rgba(0, 0, 0, 0.85);
    max-width: 100%;
}

.middle+div svg {
    font-size: 42px;
    margin-bottom: 8px;
}

.middle+div svg+div {
    white-space: nowrap;
}

.screen2+div .desc {
    width: 715px;
}

.desc+div {
    display: flex;
    justify-items: center;
    align-items: center;
    /* overflow-x: auto; */
    max-width: 100%;
}

.desc+div .item {
    display: flex;
    justify-items: center;
    flex-direction: column;
    align-items: center;
    margin-right: 70px;
}

.desc+div .item:last-child {
    margin-right: 0px;
}

.screen2 {
    position: relative;
}

.screen2 .container {
    height: 700px;
    color: white;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    background: url(../img/iPhone@2.png) no-repeat calc(50% + 79px) 125px, url(../img/iPad@2.png) no-repeat calc(50% + 520px) 7px, #4786ea url(../img/bg2.png) no-repeat;
    background-size: 238px 482px, 932px 699px, 100% 100%;
}

.screen2 .slideBox {
    position: relative;
}

.screen2 .btnBox a.btnTry {
    color: #fff;
    background: none;
    margin-top: 50px;
    border: none;
}

.screen2 .container .slideBox:before {
    height: 300px;
    width: 300px;
    position: absolute;
    bottom: 70px;
    left: -160px;
    z-index: -1;
    content: " ";
    background: radial-gradient(50% 50% at 50% 50%, rgb(255 255 255 / 55%) 0%, rgb(255 255 255 / 0%) 100%);
    background-position: center;
    background-size: 100% 100%;
}

.screen2 h2 {
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: 20px;
}

.screen2 .container .title {
    width: 374px;
    height: 45px;
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 26px;
}

.screen2 .rightBox {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.screen2 .rightBox1 {
    display: none;
}

.screen2 .subTitle {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    margin-top: 23px;
}

.screen2 .subTitle+dd {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    margin-top: 9px;
}

.screen3 {
    height: 670px;
}

.screen3 .tab {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    margin: 0 auto;
    padding: 0;
    max-width: 1200px;
    max-width: var(--maxWidth);
    align-items: baseline;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.screen3 svg {
    font-size: 85px;
}

.screen3 .itemBox {
    padding: 0 45px;
    max-width: 100%;
}

.screen3 .itemBox span {
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 42px;
    color: #000000;
    padding: 0 10px;
    white-space: nowrap;
    position: relative;
    height: 100%;
    word-break: break-all;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.screen3 .itemBox span:after {
    top: 50px;
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    left: 0px;
    background: #3370ff;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.screen3 .active span:after {
    opacity: 1;
}

.screen3 .active.itemBox span {
    color: #0b75f1;
}

.screen3 .active.itemBox .menuItem {
    visibility: visible;
    left: 0px;
}

.screen3 .bg {
    padding: 65px 70px;
    margin: 0 auto;
    height: 412px;
    min-width: 1060px;
    max-width: 1060px;
    flex-wrap: wrap;
    background: #f2f7ff;
    display: flex;
    border-radius: 20px;
}

.screen3 .menuItem {
    position: absolute;
    left: 100%;
    cursor: default;
    visibility: hidden;
    width: 100%;
    overflow-x: auto;
    top: 70px;
    display: flex;
    transition: all 0.3s ease-in-out;
}

.screen3 .menuItem .item {
    display: flex;
    flex-direction: column;
    flex: 0 0 33%;
}

.screen3 .sub {
    padding: 10px 10px 40px 50px;
    width: 277px;
}

.sub .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin: 8px 0px 10px;
}

.screen4>.flex {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
}

.screen4 {
    height: 570px;
    background: linear-gradient(180deg, #3da99c 0%, #f7f9ff 100%);
    flex-direction: column;
    padding: 0 20px;
}

.screen4 .item {
    min-width: 220px;
    width: 220px;
    height: 300px;
    margin-right: 80px;
    background: #ffffff;
}

.more {
    text-align: right;
    margin-top: 15px;
}

.more a {
    color: #2362ad;
}

.screen4 .item>div {
    padding: 15px;
    font-size: 16px;
    line-height: 24px;
}

.screen4 .item>div a {
    font-size: 14px;
}

.screen4+div {
    background: #f7f9ff;
}

.screen4 .btnMore {
    border: 1px solid #40ab9e;
    color: #40ab9e;
    margin: 50px 0px 0px;
}

.screen4 strong {
    width: auto;
    height: 45px;
    margin: 60px 0 40px;
    font-weight: 600;
    font-size: 32px;
    line-height: 45px;
    color: white;
}

.partner {
    width: 980px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
}

.partner img {
    overflow: hidden;
}

.partner .item {
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 5px 10px;
    width: 142px;
    height: 59px;
    margin-bottom: 20px;
}

.footer {
    height: 246px;
    display: flex;
    justify-content: center;
    background: #f7fafe;
}

.footer .bg {
    background: url(../img/bottom_bg.png) no-repeat;
    background-position: center;
    background-size: 100% 100%;
    height: 100%;
    width: 1200px;
    width: var(--maxWidth);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.footer .bg .btnTry {
    background: #0b75f1;
    border: 2px solid transparent;
    color: #ffffff;
    margin-right: 13px;
}

.footer .bg .btnAbout {
    border: 2px solid #0b75f1;
    color: #0b75f1;
}

.scrollx {
    overflow-x: auto;
    overflow-y: hidden;
}

.map {
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 80px 48px 20px
}

.map .qr {
    justify-content: flex-start;
    flex-direction: column;
    flex: 1;
}

.map.flex {
    justify-content: flex-start;
}

.map .qr .logo {
    margin-right: 40px;
    margin-bottom: 15px;
    justify-content: center;
}

.vertical {
    line-height: 20px;
    letter-spacing: 0.5em;
    text-indent: 0.4em;
    writing-mode: tb-rl;
}

.map .title {
    color: #51565d;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

.map ul {
    padding: 0;
    margin: 16px 0 0;
    display: table;
    list-style: none;
}

.map ul li {
    margin: 0;
    padding: 0;
    color: #1f2329;
    font-size: 14px;
    line-height: 30px;
    cursor: pointer;
    list-style: none;
}

.map ul li:hover {
    text-decoration: underline;
}

.map>section {
    min-height: 170px;
    min-width: 200px;
    flex: 0 0 17%;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flexCol {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.footBox {
    overflow-x: auto;
}

.foot {
    padding: 8px 48px;
    margin: 0 auto;
    font-size: 12px;
    line-height: 36px;
    color: #646a73;
    text-align: center;
}

.foot a {
    color: #646a73;
}

.foot a img {
    margin-right: 4px;
}

.foot span,
.foot>a {
    margin: 0 10px;
}

body>script+a,
ins[id='nb_icon_wrap']#nb_icon_wrap {
    display: none;
}

.ic {
    display: block;
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
}

.icon_tel {
    background-image: url("../img/svg/phone.svg");
}

.icon_kf {
    background-image: url("../img/svg/notification.svg");
}

.icon_dd {
    background-image: url("../img/svg/dingtalk.svg");
}

.icon_wx {
    background-image: url("../img/svg/weixin.svg");
}

ul.service {
    padding: 0;
    margin: 0;
    position: fixed;
    right: 0;
    bottom: 30%;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 12px 0px #9d9d9d;
    box-shadow: 0 4px 12px 0 rgb(0 0 0 / 16%);
    border-radius: 8px;
    background-color: #fff;
    z-index: 998;
}

ul.service .itemBox:hover {
    cursor: pointer;
    color: #fff;
    background: url("../img/svg/hover.svg");
}

ul.service .itemBox:hover .ic {
    filter: invert(100%);
}

ul.service .itemBox:hover>div:after {
    content: " ";
    display: block;
    position: absolute;
    right: -20px;
    border: 10px solid transparent;
    border-left-color: #fff;
}

.service .itemBox:first-child {
    border-radius: 8px 8px 0 0;
}

.service .itemBox:last-child {
    border-radius: 0 0 8px 8px;
}

ul.service .itemBox {
    flex: 1 1;
    flex-basis: 80px;
    width: 62px;
    height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

ul.service .itemBox>div {
    display: none;
    width: 0px;
    height: 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 120%;
    top: 50%;
    padding: 12px 0px;
    opacity: 0;
    color: transparent;
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px 0 rgb(0 0 0 / 15%);
    transition: width .1s linear;
    animation: fadeIn .1s linear both
}

ul.service .itemBox>div p {
    text-align: center;
    margin: 0;
    letter-spacing: -.2px;
    font-size: 16px;
    margin-bottom: 4px;
}

ul.service .itemBox>div a {
    color: transparent;
}

ul.service .itemBox>div .qr {
    width: 200px;
    height: 200px;
    display: none;
}

ul.service .itemBox:hover>div .qr {
    display: block;
}

ul.service .itemBox>div .wxqr {
    background: url("../img/qrcode.png") no-repeat;
    background-size: cover;
}

ul.service .itemBox>div .dd {
    background: url("../img/ddqrcode.png") no-repeat;
    background-size: cover;
}

ul.service .itemBox:hover>div {
    display: flex;
    width: 240px;
    height: auto;
    opacity: 1;
    color: rgba(0, 0, 0, .9);
}

ul.service .itemBox:hover>div a {
    font-size: 16px;
    letter-spacing: -.5px;
    color: #3676ff;
    font-weight: 700;
}

.animate {
    animation: showText 1s;
}

.loading {
    width: 100%;
    background-color: white;
}

.loadingBox {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.loading span {
    height: 15px;
    display: inline-block;
    width: 15px;
    margin-right: 5px;
    border-radius: 50%;
    background: #6292ff;
    animation: load 1.04s ease infinite;
}

.loading span:last-child {
    margin-right: 0px;
}

.loading span:nth-child(1) {
    animation-delay: 0.13s;
}

.loading span:nth-child(2) {
    animation-delay: 0.26s;
}

.loading span:nth-child(3) {
    animation-delay: 0.39s;
}

.loading span:nth-child(4) {
    animation-delay: 0.52s;
}

@keyframes load {
    0% {
        opacity: 1;
        -webkit-transform: scale(1.3);
    }
    100% {
        opacity: 0.2;
        -webkit-transform: scale(.3);
    }
}

@keyframes showText {
    from {
        font-size: 12px;
    }
    to {
        font-size: 16px;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

#topMenu,
#menuList,
.h5Container {
    display: none;
}

@media (min-width: 768px) and (max-width: 1200px) {
    html,
    body {
        min-width: 1250px;
    }
    .scrollx {
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    /*右侧浮窗*/
    ul.service .itemBox {
        flex-basis: 50px;
        width: 50px;
        height: auto;
    }
    /*先进企业的首选 客户案例*/
    .indexCaselist2 {
        margin: 30px 0px;
        display: block;
        width: auto;
    }
    .indexCaselist2 .item {
        min-width: 100%;
        width: 100%;
        margin: 0 0 10px 0;
        display: flex;
        height: auto;
    }
    .indexCaselist2 .item img {
        width: 50%;
        min-width: 50%;
        height: auto;
        object-fit: unset;
    }
    .indexCaselist2 .item>div {
        padding: 10px;
        font-size: 14px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .indexCaselist2 .item .more {
        margin-top: 0;
    }
    .indexCaselist2 .item .text {
        height: auto;
    }
    ul.service .itemBox .ic+span {
        display: none;
    }
    #header .container {
        height: 666px;
        /*background-image: url(../img/indexBg.png);*/
        background-repeat: no-repeat;
        background-position: bottom;
        background-color: #f1f6fd;
    }
    #header .container .title {
        margin-top: 30px;
        width: auto;
        height: auto;
        font-size: 28px;
        text-align: center;
    }
    .center,
    .slideBox {
        width: auto;
        flex-direction: column;
    }
    #header .slideBox dd {
        height: auto;
        margin: 20px 0;
        width: auto;
        padding: 0 15px;
    }
    .top {
        display: none;
    }
    #topMenu {
        padding: 0 15px;
        height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #line,
    #close {
        font-size: 26px;
        color: #222;
    }
    #menuList {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        height: 0;
        height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        background-color: #fff;
        color: #222;
        height: calc(100% - 60px);
    }
    .tree .icon {
        transform: rotate(-90deg);
    }
    /*顶部菜单*/
    .tree {
        margin: 0;
        padding: 0;
        background-color: #fff;
        overflow: hidden;
    }
    .tree li input {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        z-index: 2;
        height: 1em;
        width: 1em;
    }
    .tree li {
        position: relative;
        list-style: none;
    }
    /*下划线*/
    .tree li input:checked+label,
    .tree li {
        border-bottom: 1px solid #dee0e3;
    }
    .tree li li:last-child {
        border-bottom: none;
    }
    .tree li label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 50px;
        line-height: 50px;
        white-space: nowrap;
        flex-wrap: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-right: 1em;
    }
    .tree>li>label {
        padding: 0 1em;
    }
    .tree>li>ol>label,
    .tree>li.file {
        padding-left: 15px;
    }
    .tree input:checked+label .icon {
        transform: rotate(0deg);
    }
    /*清除所有展开的子菜单*/
    .tree li ol {
        display: none;
    }
    /*当input被选中时，给所有展开的子菜单设置样式*/
    .tree>li>input:checked~ol {
        display: block;
        padding-left: 2em;
        height: auto;
    }
    .tree>li>input:checked~ol input:checked~ol {
        display: block;
        height: auto;
        padding-left: 1em;
    }
    .tree input:checked~ol>li {
        height: auto;
    }
    /*设置a标签*/
    .tree li.file a {
        display: block;
        height: 50px;
        line-height: 50px;
        text-decoration: none;
    }
    .btnBox {
        justify-content: space-between;
    }
    .btn {
        width: 150px;
    }
    .playBox {
        padding: 15px;
    }
    .playBox img {
        display: block;
        max-width: calc(100% - 30px);
        height: auto;
    }
    .btn {
        height: auto;
        line-height: 42px;
    }
    .middle+div strong,
    .screen2+div strong,
    .screen4+div strong,
    .footer .bg strong {
        font-size: 26px;
    }
    .screen2 h2 {
        font-size: 18px;
    }
    .middle {
        width: auto;
        height: auto;
        padding: 15px;
    }
    .middle .box {
        flex-wrap: wrap;
    }
    .middle .box .item {
        width: auto;
        min-width: auto;
        height: auto;
        flex-basis: calc(50% - 7px);
        margin: 0;
    }
    .middle .box .item:nth-child(odd) {
        margin: 7px 7px 7px 0;
    }
    .middle .box .item:nth-child(even) {
        margin: 7px 0 7px 7px;
    }
    .h5Padding {
        padding: 30px 15px !important;
    }
    .screen2+div .desc {
        width: auto;
    }
    .desc+div {
        flex-wrap: wrap;
    }
    .desc+div .item {
        margin: 7px;
        flex-basis: calc(33.33% - 14px);
    }
    .desc+div .item:last-child {
        margin-right: 7px;
    }
    .screen2 .container {
        height: auto;
        background-image: url(../img/bg2.png);
        background-repeat: no-repeat;
        background-position: bottom;
        background-color: #3A64E4;
        background-size: cover;
    }
    .screen2 .container .title {
        width: auto;
        height: auto;
        font-size: 22px;
    }
    .screen2 .rightBox {
        display: none;
    }
    .screen3 {
        height: 840px;
    }
    .screen3 .tab {
        width: auto;
    }
    .screen3 .itemBox {
        padding: 0 20px;
    }
    .screen3 .itemBox span {
        font-size: 22px;
    }
    .screen3 .bg {
        padding: 0;
        height: auto;
        width: auto;
        min-width: auto;
        border-radius: 0;
    }
    .screen3 .menuItem .item {
        flex-basis: 50%;
        flex-direction: row;
    }
    .screen3 .sub {
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: auto;
        height: 220px;
    }
    .screen3 svg {
        font-size: 70px;
    }
    .screen4 {
        height: auto;
    }
    .screen4>.flex {
        overflow-x: hidden;
        flex-direction: column;
    }
    .screen4 .item {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .screen4 strong {
        font-size: 26px;
        margin: 40px 0;
    }
    .screen4+div {
        padding: 15px;
    }
    .partner {
        width: auto;
    }
    .map {
        display: none;
    }
    .h5Container {
        display: block;
        width: auto;
        padding: 0 15px;
    }
    .partner .item {
        margin-bottom: 10px;
    }
    #h5Footer {
        padding: 30px 0;
        border-bottom: 2px solid rgba(222, 224, 227, .5);
    }
    .h5Container label {
        position: relative;
        z-index: 20;
        display: block;
        color: #000;
        font-size: 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 50px;
        line-height: 50px;
    }
    .h5Container label .icon {
        transform: rotate(-90deg);
        transition: transform 0.3s ease-in-out;
    }
    ul,
    li {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    #h5Footer li {
        padding-left: 20px;
        font-size: 16px;
        height: 50px;
        line-height: 50px;
    }
    #h5Footer a {
        display: block;
        font-size: 16px;
        height: 50px;
        line-height: 50px;
    }
    .h5Container input {
        display: none;
    }
    #aboutList,
    #serviceList,
    #centerList,
    #lawList,
    #pingtaiList {
        height: 0;
        min-height: 0;
        z-index: 10;
        overflow: hidden;
        transition: min-height 0.3s ease-in-out;
    }
    .h5Container input:checked~#serviceList,
    .h5Container input:checked~#lawList {
        min-height: 150px;
    }
    .h5Container input:checked~#aboutList,
    .h5Container input:checked~#centerList {
        min-height: 200px
    }
    .h5Container input:checked~#aboutList,
    .h5Container input:checked~#serviceList,
    .h5Container input:checked~#centerList,
    .h5Container input:checked~#lawList {
        transition: min-height 0.3s ease-in-out;
    }
    .h5Container input:checked~label .icon {
        transform: rotate(0deg);
        transition: transform 0.3s ease-in-out;
    }
    div.foot {
        padding: 15px;
        display: flex;
        flex-direction: column;
        line-height: 22px;
    }
}

@media screen and (min-width: 1200px) {
    .topBox {
        background: white;
        background: var(--navBg);
        display: flex;
        height: 60px;
        box-shadow: 0 14px 24px -4px rgb(31 35 41 / 12%);
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .top {
        width: 1200px;
        width: var(--maxWidth);
        height: 60px;
        top: 0;
        margin: 0 48px;
        z-index: 1;
        background: white;
        background: var(--navBg);
        display: flex;
        justify-content: space-between;
    }
    .center {
        display: flex;
        height: 100%;
        align-items: center;
        width: auto;
        justify-content: center;
    }
    .slideBox {
        display: flex;
        height: 98%;
        justify-content: space-around;
        width: 1200px;
        width: var(--maxWidth);
        align-items: center;
    }
    .map {
        width: 1200px;
        width: var(--maxWidth);
    }
    .scrollx {
        display: flex;
        justify-content: center;
    }
}