@import "iconfont/iconfont.css";
body,
html {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-size: 16px;
  color: #333333;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
i,
em {
  font-style: normal;
}
a {
  text-decoration: none;
  color: #23292e;
  transition: all 0.3s ease;
  cursor: pointer;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
p {
  margin: 0;
  padding: 0;
}
.flex-left-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.flex-left-top {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.flex-right-top {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.flex-right-center {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.flex-center-top {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.flex-center-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-center-between {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.flex-between-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.text-justify {
  text-align: justify;
}
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.transition {
  transition: all 0.3s ease-in-out;
}
.shadow-1 {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.shadow-2 {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
}
.shadow-3 {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
}
.shadow-4 {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0 8px 0px;
}
.shadow-5 {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0 12px 0px;
}
.gradient-bg {
  border: 1px solid transparent;
  background-image: linear-gradient(to right, #3dacef, #74c169);
  background-color: #3dacef;
  color: #ffffff;
}
body {
  padding-top: 80px;
}
/*全局容器*/
.container {
  width: 100%;
}
.container .main {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.headerContainer {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}
.headerContainer.scrolled {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
}
.pageHeaderContainer {
  width: 100%;
  background: url('/css/imgs/index-bg.png') no-repeat top center;
}
.pageHeaderContainer .main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: 12rem;
}
.pageHeaderContainer .main h2 {
  font-size: 2rem;
}
.pageHeaderContainer .main span {
  font-size: 1.1rem;
  margin-top: 1.2rem;
  color: #666666;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.header .logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header .logo img {
  height: 50px;
}
.header .logo span {
  font-size: 1.3rem;
  font-weight: bold;
  margin-left: 0.5rem;
  color: #3dacef;
}
.header .navs {
  flex: 1;
  padding-left: 1rem;
}
.header .navs ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header .navs ul li {
  margin-left: 2.8rem;
  position: relative;
}
.header .navs ul li a {
  transition: all 0.3s ease-in-out;
}
.header .navs ul li a::after {
  transition: all 0.3s ease-in-out;
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: transparent;
  position: absolute;
  margin-top: 2px;
}
.header .navs ul li.this a {
  color: #ff7158;
}
.header .navs ul li.this a::after {
  background: #ff7158;
}
.header .navs ul li:hover a {
  color: #3dacef;
}
.header .navs ul li:hover a::after {
  background: #3dacef;
}
.header .user .logined {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header .user .logined .userInfo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header .user .logined .userInfo i {
  font-size: 1.4rem;
  margin-right: 0.3rem;
  color: #888888;
}
.header .user .logined .buts {
  margin-left: 1rem;
}
.header .user .logined .buts a:first-child {
  margin-right: 0.5rem;
}
.header .user .noLogin a:first-child {
  margin-right: 0.5rem;
}
.serviceFloat {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.serviceFloat ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
  flex-direction: column;
  width: 4.3rem;
  height: 5rem;
  background-color: #3dacef;
  margin-bottom: 2px;
  color: #ffffff;
  padding-left: 0.2rem;
  cursor: pointer;
}
.serviceFloat ul li:hover {
  filter: brightness(1.1);
}
.serviceFloat ul li:first-child {
  border-radius: 1rem 0 0 0;
}
.serviceFloat ul li:nth-child(3) {
  border-radius: 0 0 0 1rem;
}
.serviceFloat ul li i {
  font-size: 1.5rem;
}
.serviceFloat ul li span {
  font-size: 0.7rem;
}
.serviceFloat ul li.toTop {
  height: 5rem;
  background-color: #74c169;
  border-radius: 1rem 0 0 1rem;
  margin-top: 1rem;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.serviceFloat .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
  height: calc(15rem + 2px * 2);
  width: 13rem;
  background-color: #ffffff;
  margin-right: 0.8rem;
  border-radius: 1rem;
}
.serviceFloat .content.wechatQrcode .qrImg {
  margin-bottom: 0.5rem;
}
.serviceFloat .content.wechatQrcode .qrImg img {
  width: 9.5rem;
  height: 9.5rem;
}
.serviceFloat .content.wechatQrcode span {
  font-size: 1rem;
}
.serviceFloat .content.phone .text {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.serviceFloat .content.phone i {
  font-size: 5rem;
  color: #3dacef;
  margin-bottom: 1rem;
  line-height: 5rem;
}
.serviceFloat .content.phone .phoneNum {
  font-size: 1.3rem;
  margin-top: 0.5rem;
}
.footerContainer {
  background-color: #333333;
}
.footer {
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8rem;
}
.footer .logo img {
  height: 3rem;
  margin-left: 1rem;
}
.footer .text {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 4rem;
  font-size: 0.8rem;
  margin-left: 2rem;
  padding-left: 2rem;
  border-left: 1px solid #666666;
  line-height: 2;
}
.footer .text a {
  color: #ffffff;
}
.footer .icon ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.footer .icon ul i {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #888888;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.3rem;
  color: #888888;
  margin-right: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.footer .icon ul i:hover {
  border-color: #ff7158;
  color: #ff7158;
}
.but {
  display: inline-block;
  background: #3dacef;
  border: 1px solid transparent;
  height: 2.3rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  line-height: 2.3rem;
}
.but i {
  margin-right: 5px;
  font-size: 16px;
}
.but:hover {
  filter: brightness(1.1);
}
.but.gradient {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
  border: 1px solid transparent;
  background-image: linear-gradient(to right, #3dacef, #74c169);
  background-color: #3dacef;
  color: #ffffff;
}
.but.border {
  border-color: #3dacef;
  background-color: #ffffff;
  color: #3dacef;
}
.but.border:hover {
  background-color: #ccdfeb;
}
.but.sm {
  height: 1.8rem;
  padding: 0 1rem;
  font-size: 12px;
  line-height: 1.9rem;
}
.but.color-main-2 {
  background-color: #74c169;
}
.but.color-main-3 {
  background-color: #ff7158;
}
.but.lastIcon i {
  margin-right: 0;
  font-size: 14px;
}
.but.disabled {
  cursor: default;
  background-color: #cccccc;
  color: #fafafa;
}
.but.disabled:hover {
  filter: none;
}
.pageDiv {
  max-width: 1200px;
  padding: 20px 0;
  margin: auto;
}
.pageDiv .page {
  display: table;
  margin: auto;
}
.pageDiv .page a {
  padding: 6px 15px;
  background: #eeeeee;
  margin-right: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.pageDiv .page a:hover {
  background: #dddddd;
}
.pageDiv .page a.current {
  background: #3dacef;
  color: #ffffff;
  cursor: default;
}
.pageDiv .page a:last-child {
  margin-right: 0;
}
.pageDiv .page .info {
  color: #aaaaaa;
  margin-left: 30px;
}
.page404 {
  background: #ffffff;
  display: flex;
}
.page404 .main {
  width: 1200px;
  margin: 30px auto 0 auto;
  background: #f7f7f7;
  border-radius: 10px;
  height: 500px;
  text-align: center;
}
.page404 .main img {
  margin-top: 50px;
}
.page404 .main h3 {
  font-size: 18px;
}
.page404 .main a.button {
  background: #16b777;
  border: 0;
  height: 40px;
  line-height: 38px;
  margin: 30px auto;
  border-radius: 15px;
  color: #ffffff;
  font-size: 16px;
  padding: 5px 20px;
  cursor: pointer;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.page404 .main a.button i {
  margin-right: 3px;
}
.page404 .main a.button.login {
  border: 1px solid #ffffff;
}
.page404 .main a.button.login:hover {
  background: #74c169;
  border-color: #74c169;
  color: #ffffff;
}
.lineTable {
  width: 100%;
}
.lineTable tr th,
.lineTable tr td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid #eeeeee;
}
.lineTable tr th:first-child,
.lineTable tr td:first-child {
  padding-left: 1.5rem;
}
.lineTable tr th {
  background-color: #f7f7f7;
  border-top: 1px solid #eeeeee;
}
.lineTable tr:hover td {
  background-color: #fafafa;
}
.listNoTip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.listNoTip i {
  font-size: 4rem;
  color: #c2c2c2;
  margin: 1rem 0;
}
.listNoTip span {
  font-size: 1rem;
  color: #aaaaaa;
  margin-bottom: 1rem;
}
.pageForm.winForm {
  margin-top: 0.5rem;
}
.pageForm .line,
.pageForm .inline {
  margin-top: 1rem;
}
.pageForm .line .title,
.pageForm .inline .title {
  margin-bottom: 0.5rem;
}
.pageForm .line .input,
.pageForm .inline .input {
  width: 20rem;
}
.pageForm .line:first-child,
.pageForm .inline:first-child {
  margin-top: 0;
}
.pageForm .inline {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.pageForm .inline .item {
  margin-right: 3rem;
}
.pageForm .smsCode {
  position: relative;
}
.pageForm .smsCode input {
  width: 20rem;
  height: 38px;
  line-height: 1.3;
  border: 1px solid #eee;
  border-radius: 5px;
  padding-left: 10px;
  font-size: 14px;
  box-sizing: border-box;
}
.pageForm .smsCode span {
  display: inline-block;
  background: #3dacef;
  border: 1px solid transparent;
  height: 2.3rem;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  line-height: 2.3rem;
  height: 1.8rem;
  padding: 0 1rem;
  font-size: 12px;
  line-height: 1.9rem;
  background: #74c169;
  position: absolute;
  right: 4px;
  top: 4px;
}
.pageForm .smsCode span i {
  margin-right: 5px;
  font-size: 16px;
}
.pageForm .smsCode span:hover {
  filter: brightness(1.1);
}
.pageForm .smsCode span.gradient {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
  border: 1px solid transparent;
  background-image: linear-gradient(to right, #3dacef, #74c169);
  background-color: #3dacef;
  color: #ffffff;
}
.pageForm .smsCode span.border {
  border-color: #3dacef;
  background-color: #ffffff;
  color: #3dacef;
}
.pageForm .smsCode span.border:hover {
  background-color: #ccdfeb;
}
.pageForm .smsCode span.sm {
  height: 1.8rem;
  padding: 0 1rem;
  font-size: 12px;
  line-height: 1.9rem;
}
.pageForm .smsCode span.color-main-2 {
  background-color: #74c169;
}
.pageForm .smsCode span.color-main-3 {
  background-color: #ff7158;
}
.pageForm .smsCode span.lastIcon i {
  margin-right: 0;
  font-size: 14px;
}
.pageForm .smsCode span.disabled {
  cursor: default;
  background-color: #cccccc;
  color: #fafafa;
}
.pageForm .smsCode span.disabled:hover {
  filter: none;
}
.pageForm .buts {
  margin-top: 1rem;
}
.pageForm .buts .but {
  margin-right: 0.5rem;
  margin-left: 0;
}
.pageForm .buts .but:last-child {
  margin-right: 0;
}
.pageForm .buts.right {
  text-align: right;
}
.listTable {
  border-left: 0;
  border-right: 0!important;
}
.listTable.layui-table-view:after {
  display: none;
}
.listTable table {
  width: 100%;
}
.listTable table tr th {
  background-color: #f7f7f7;
  padding-top: 5px!important;
  padding-bottom: 5px!important;
}
.listTable table tr th,
.listTable table tr td {
  border-left: 0;
  border-right: 0;
  padding-top: 5px!important;
  padding-bottom: 5px!important;
}
.butLoader {
  display: inline-block;
  margin-left: 5px;
  width: 20px;
  height: 12px;
  aspect-ratio: 1;
  --c: no-repeat linear-gradient(#fff 0 0);
  --w: 15%;
  background: var(--c) 0% 50%, var(--c) 50% 50%, var(--c) 100% 50%;
  background-size: var(--w) 100%;
  animation: butLoaderFrames 1s infinite linear;
}
@keyframes butLoaderFrames {
  0% {
    background-size: var(--w) 100%, var(--w) 100%, var(--w) 100%;
  }
  33% {
    background-size: var(--w) 10%, var(--w) 100%, var(--w) 100%;
  }
  50% {
    background-size: var(--w) 100%, var(--w) 10%, var(--w) 100%;
  }
  66% {
    background-size: var(--w) 100%, var(--w) 100%, var(--w) 10%;
  }
  100% {
    background-size: var(--w) 100%, var(--w) 100%, var(--w) 100%;
  }
}
/* 浮窗 */
.layui-layer {
  border-radius: 10px;
}
.layui-layer-title {
  color: #29343d !important;
  padding-left: 20px !important;
  border: 0 !important;
  border-radius: 10px 10px 0 0 !important;
  font-size: 16px;
}
.layui-layer-admin i[close] {
  color: #a1a1a1 !important;
  font-size: 18px;
  top: 15px !important;
  right: 15px !important;
  border-radius: 8px;
  display: flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
}
.layui-layer-admin i[close]:hover {
  background-color: #efeff0 !important;
}
.layui-layer-page .layui-layer-content,
.layui-layer-dialog .layui-layer-content {
  padding: 0 20px !important;
  padding-top: 0 !important;
}
.layui-layer-prompt .layui-layer-content {
  padding: 20px !important;
  padding-top: 10px !important;
  border-radius: 10px;
}
.layui-layer.layui-layer-msg .layui-layer-content,
.layui-layer.layui-layer-tips .layui-layer-content {
  padding: 16px !important;
  border-radius: 10px;
}
.layui-layer.layui-layer-tips .layui-layer-content {
  background-color: #3dacef !important;
}
.layui-layer-tips i.layui-layer-TipsL,
.layui-layer-tips i.layui-layer-TipsR {
  border-bottom-color: #3dacef !important;
}
.layui-layer.layui-layer-msg .layui-layer-content.layui-layer-padding,
.layui-layer-dialog .layui-layer-content.layui-layer-padding {
  padding: 18px 18px 18px 58px !important;
}
.layui-layer-msg {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.layui-layer-btn {
  padding: 0 20px 20px 20px !important;
  border-top: 0 !important;
  background-color: transparent !important;
}
.layui-layer-btn a {
  border-radius: 6px !important;
}
.layui-layer-btn-c {
  padding: 15px !important;
}
/* 表单 */
.layui-input,
.layui-select,
.layui-textarea,
.layui-layer-prompt .layui-layer-input,
.layui-form-select dl {
  border-radius: 5px !important;
  font-size: 14px !important;
}
.layui-input-inline input[type=file] {
  border-radius: 5px !important;
  border: 1px solid #eeeeee;
  padding: 5px 7px;
}
.layui-form-select dl dd {
  margin: 0 10px 3px 10px;
  border-radius: 8px;
}
.layui-form-select dl dd:last-child {
  margin-bottom: 0;
}
.layui-form-select dl dd.layui-this {
  background-color: #ecf1fd;
  color: #3dacef;
}
.layui-input:focus,
.layui-textarea:focus {
  border-color: #3dacef !important;
}
.layui-btn {
  border-radius: 8px !important;
  background-color: #3dacef;
}
.layui-btn-warm,
.layui-btn-orange {
  background-color: #ffb800 !important;
}
.layui-btn-danger,
.layui-btn-red {
  background-color: #ff5722 !important;
}
.layui-btn-primary {
  border-color: #d2d2d2 !important;
  background: 0 0 !important;
  color: #5f5f5f !important;
}
.layui-btn-xs {
  height: 26px;
  line-height: 25px;
  padding: 0 8px;
}
.layui-btn-xs i {
  font-size: 16px !important;
}
.layui-btn-xs.layui-btn .layui-icon {
  padding: 0 !important;
}
.layui-laydate .layui-this,
.layui-laydate .layui-this > div {
  background-color: #3dacef !important;
}
.layui-form-checked[lay-skin=primary] > i,
.layui-form-onswitch {
  border-color: #3dacef !important;
  background-color: #3dacef !important;
}
.layui-form-checkbox[lay-skin=primary]:hover > i {
  border-color: #3dacef !important;
}
.layui-timeline-axis,
.layui-form-radio:hover > *,
.layui-form-radioed,
.layui-form-radioed > i {
  color: #3dacef !important;
}
.layui-elem-quote {
  border-left-color: #3dacef !important;
}
.firstScreenContainer {
  background: url('/css/imgs/index-bg.png') no-repeat top center;
}
.firstScreen {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.firstScreen .info {
  width: 48%;
  margin-left: 3%;
}
.firstScreen .info .title {
  font-size: 3rem;
  font-weight: bold;
  color: #ff7158;
}
.firstScreen .info .title em {
  color: #74c169;
}
.firstScreen .info .subTtitle {
  margin-top: 1.5rem;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.7;
}
.firstScreen .info .subTtitle em {
  display: inline-block;
  color: #3dacef;
}
.firstScreen .info .desc {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #666666;
  line-height: 1.5;
}
.firstScreen .info .buts {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
}
.firstScreen .info .buts a:first-child {
  margin-right: 1rem;
}
.firstScreen .image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.firstScreen .image img {
  width: 536px;
  height: 427px;
  margin: 4rem 0;
}
.blockItem .title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 12rem;
}
.blockItem .title h3 {
  font-size: 2.2rem;
}
.blockItem .title h4 {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #666666;
}
.secondScreen .bolcks ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
}
.secondScreen .bolcks ul li {
  width: 23%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0 8px 0px;
  border-radius: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem 1.5rem 2rem 1.5rem;
  box-sizing: border-box;
  border-top: 0.2rem solid #3dacef;
  transition: all 0.3s ease-in-out;
  cursor: default;
}
.secondScreen .bolcks ul li strong {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.secondScreen .bolcks ul li strong i {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  background-image: linear-gradient(to right, #3dacef, #74c169);
  background-color: #3dacef;
  color: #ffffff;
  border-radius: 50%;
  height: 4rem;
  width: 4rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: normal;
}
.secondScreen .bolcks ul li span {
  line-height: 1.5;
}
.secondScreen .bolcks ul li:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0 12px 0px;
  background-color: #f6f8fa;
  transform: translateY(-0.5rem);
}
.thirdScreenContainer {
  background-color: #fafafa;
  margin-top: 2rem;
  padding-bottom: 3rem;
}
.thirdScreen .bolcks ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
}
.thirdScreen .bolcks ul li {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0 8px 0px;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  width: 23%;
  border-radius: 0 2rem 0 2rem;
  border-top: 0.2rem solid #74c169;
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  box-sizing: border-box;
  cursor: default;
}
.thirdScreen .bolcks ul li strong {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.thirdScreen .bolcks ul li span {
  line-height: 1.5;
}
.thirdScreen .bolcks ul li em {
  display: block;
  text-align: center;
}
.thirdScreen .bolcks ul li em img {
  width: 100%;
  margin-top: 1rem;
}
.thirdScreen .bolcks ul li:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0 12px 0px;
  background-color: #f5fff4;
  transform: translateY(-0.5rem);
}
.thirdScreen .more {
  text-align: center;
  color: #666666;
  margin-top: 1rem;
}
.page-Pricing-index .pageHeaderContainer .main {
  justify-content: flex-start;
  height: 28rem;
}
.page-Pricing-index .pageHeaderContainer .main h2 {
  font-size: 3rem;
  margin: 5rem 0 1rem 0;
}
.page-Pricing-index .pageHeaderContainer .main h2 em {
  color: #ff7158;
}
.page-Pricing-index .pageHeaderContainer .main span {
  font-size: 1.2rem;
}
.page-Pricing-index .versions {
  display: flex;
  margin-top: -10rem;
  margin-bottom: 5rem;
  justify-content: space-between;
}
.page-Pricing-index .versions .item {
  width: 23%;
  background-color: #f6f8fa;
  border-radius: 0.5rem;
  cursor: default;
}
.page-Pricing-index .versions .item .header {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem 0.5rem 0 0;
  flex-direction: column;
  background: #3dacef;
  box-sizing: border-box;
  height: 13rem;
}
.page-Pricing-index .versions .item .header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.page-Pricing-index .versions .item .header .desc {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 1rem;
  color: #e0eff8;
}
.page-Pricing-index .versions .item .header .price {
  font-size: 1rem;
  color: #ffe200;
}
.page-Pricing-index .versions .item .header button {
  display: inline-block;
  background: #3dacef;
  border: 1px solid transparent;
  height: 2.3rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  line-height: 2.3rem;
  background-color: #ffffff;
  color: #3dacef;
  margin-top: 1rem;
}
.page-Pricing-index .versions .item .header button i {
  margin-right: 5px;
  font-size: 16px;
}
.page-Pricing-index .versions .item .header button:hover {
  filter: brightness(1.1);
}
.page-Pricing-index .versions .item .header button.gradient {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
  border: 1px solid transparent;
  background-image: linear-gradient(to right, #3dacef, #74c169);
  background-color: #3dacef;
  color: #ffffff;
}
.page-Pricing-index .versions .item .header button.border {
  border-color: #3dacef;
  background-color: #ffffff;
  color: #3dacef;
}
.page-Pricing-index .versions .item .header button.border:hover {
  background-color: #ccdfeb;
}
.page-Pricing-index .versions .item .header button.sm {
  height: 1.8rem;
  padding: 0 1rem;
  font-size: 12px;
  line-height: 1.9rem;
}
.page-Pricing-index .versions .item .header button.color-main-2 {
  background-color: #74c169;
}
.page-Pricing-index .versions .item .header button.color-main-3 {
  background-color: #ff7158;
}
.page-Pricing-index .versions .item .header button.lastIcon i {
  margin-right: 0;
  font-size: 14px;
}
.page-Pricing-index .versions .item .header button.disabled {
  cursor: default;
  background-color: #cccccc;
  color: #fafafa;
}
.page-Pricing-index .versions .item .header button.disabled:hover {
  filter: none;
}
.page-Pricing-index .versions .item ul {
  box-sizing: border-box;
  padding: 1.5em;
}
.page-Pricing-index .versions .item ul li {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0.5rem;
  border-bottom: #e2e2e2 1px dashed;
}
.page-Pricing-index .versions .item ul li:hover {
  background-color: #e6f4fd;
}
.page-Pricing-index .versions .item ul li .icon-yes {
  color: #74c169;
}
.page-Pricing-index .versions .item ul li .icon-no {
  color: #ff7158;
}
.page-Pricing-index .versions .item ul li .attr {
  color: #3dacef;
}
.page-Pricing-index .process {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 5rem;
}
.page-Pricing-index .process h2 {
  font-size: 2rem;
  margin-bottom: 4rem;
}
.page-Pricing-index .process ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-Pricing-index .process ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 16rem;
}
.page-Pricing-index .process ul li i {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3dacef;
  color: #ffffff;
  font-size: 3rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  margin-bottom: 2rem;
}
.page-Pricing-index .process ul li strong {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  font-weight: normal;
}
.page-Pricing-index .process ul li span {
  color: #666666;
  font-size: 1rem;
}
.page-Pricing-index .process ul em {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c2c2c2;
  margin-bottom: 5rem;
  padding: 0rem 2rem;
}
.page-User-login .container,
.page-User-reg .container {
  background: url('/css/imgs/index-bg.png') no-repeat top center;
}
.page-User-login .main,
.page-User-reg .main {
  display: flex;
  align-items: center;
}
.page-User-login .main .cover img,
.page-User-reg .main .cover img {
  width: 45rem;
}
.page-User-login .main .loginBox,
.page-User-reg .main .loginBox {
  background: #ffffff;
  width: 23rem;
  height: auto;
  display: table;
  border-radius: 0.8rem;
  padding: 2rem;
  margin: 2rem 4rem;
}
.page-User-login .main .loginBox h1,
.page-User-reg .main .loginBox h1 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.page-User-login .main .loginBox .type,
.page-User-reg .main .loginBox .type {
  margin-bottom: 1.5rem;
}
.page-User-login .main .loginBox .type ul,
.page-User-reg .main .loginBox .type ul {
  display: flex;
}
.page-User-login .main .loginBox .type ul li,
.page-User-reg .main .loginBox .type ul li {
  font-weight: bold;
  margin-right: 1.5rem;
  padding-bottom: 0.3rem;
  cursor: pointer;
}
.page-User-login .main .loginBox .type ul li.this,
.page-User-reg .main .loginBox .type ul li.this {
  border-bottom: 3px solid #3dacef;
  color: #3dacef;
}
.page-User-login .main .loginBox li,
.page-User-reg .main .loginBox li {
  position: relative;
}
.page-User-login .main .loginBox li input,
.page-User-reg .main .loginBox li input {
  width: 100%;
  height: 3rem;
  border: 1px solid #eeeeee;
  border-radius: 0.3rem;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
  box-sizing: border-box;
  font-size: 1rem;
}
.page-User-login .main .loginBox li input::-webkit-input-placeholder,
.page-User-reg .main .loginBox li input::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 0.9rem;
}
.page-User-login .main .loginBox li button,
.page-User-reg .main .loginBox li button {
  display: inline-block;
  background: #3dacef;
  border: 1px solid transparent;
  height: 2.3rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  line-height: 2.3rem;
  width: 100%;
  height: 3rem;
}
.page-User-login .main .loginBox li button i,
.page-User-reg .main .loginBox li button i {
  margin-right: 5px;
  font-size: 16px;
}
.page-User-login .main .loginBox li button:hover,
.page-User-reg .main .loginBox li button:hover {
  filter: brightness(1.1);
}
.page-User-login .main .loginBox li button.gradient,
.page-User-reg .main .loginBox li button.gradient {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
  border: 1px solid transparent;
  background-image: linear-gradient(to right, #3dacef, #74c169);
  background-color: #3dacef;
  color: #ffffff;
}
.page-User-login .main .loginBox li button.border,
.page-User-reg .main .loginBox li button.border {
  border-color: #3dacef;
  background-color: #ffffff;
  color: #3dacef;
}
.page-User-login .main .loginBox li button.border:hover,
.page-User-reg .main .loginBox li button.border:hover {
  background-color: #ccdfeb;
}
.page-User-login .main .loginBox li button.sm,
.page-User-reg .main .loginBox li button.sm {
  height: 1.8rem;
  padding: 0 1rem;
  font-size: 12px;
  line-height: 1.9rem;
}
.page-User-login .main .loginBox li button.color-main-2,
.page-User-reg .main .loginBox li button.color-main-2 {
  background-color: #74c169;
}
.page-User-login .main .loginBox li button.color-main-3,
.page-User-reg .main .loginBox li button.color-main-3 {
  background-color: #ff7158;
}
.page-User-login .main .loginBox li button.lastIcon i,
.page-User-reg .main .loginBox li button.lastIcon i {
  margin-right: 0;
  font-size: 14px;
}
.page-User-login .main .loginBox li button.disabled,
.page-User-reg .main .loginBox li button.disabled {
  cursor: default;
  background-color: #cccccc;
  color: #fafafa;
}
.page-User-login .main .loginBox li button.disabled:hover,
.page-User-reg .main .loginBox li button.disabled:hover {
  filter: none;
}
.page-User-login .main .loginBox li a,
.page-User-reg .main .loginBox li a {
  display: table;
  margin: auto;
  margin-top: 1.5rem;
}
.page-User-login .main .loginBox li .sendCode,
.page-User-reg .main .loginBox li .sendCode {
  display: inline-block;
  background: #3dacef;
  border: 1px solid transparent;
  height: 2.3rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  line-height: 2.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0.4rem;
  top: 0.32rem;
  height: 2.2rem;
  font-size: 14px;
  background-color: #74c169;
  width: 5.5rem;
}
.page-User-login .main .loginBox li .sendCode i,
.page-User-reg .main .loginBox li .sendCode i {
  margin-right: 5px;
  font-size: 16px;
}
.page-User-login .main .loginBox li .sendCode:hover,
.page-User-reg .main .loginBox li .sendCode:hover {
  filter: brightness(1.1);
}
.page-User-login .main .loginBox li .sendCode.gradient,
.page-User-reg .main .loginBox li .sendCode.gradient {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
  border: 1px solid transparent;
  background-image: linear-gradient(to right, #3dacef, #74c169);
  background-color: #3dacef;
  color: #ffffff;
}
.page-User-login .main .loginBox li .sendCode.border,
.page-User-reg .main .loginBox li .sendCode.border {
  border-color: #3dacef;
  background-color: #ffffff;
  color: #3dacef;
}
.page-User-login .main .loginBox li .sendCode.border:hover,
.page-User-reg .main .loginBox li .sendCode.border:hover {
  background-color: #ccdfeb;
}
.page-User-login .main .loginBox li .sendCode.sm,
.page-User-reg .main .loginBox li .sendCode.sm {
  height: 1.8rem;
  padding: 0 1rem;
  font-size: 12px;
  line-height: 1.9rem;
}
.page-User-login .main .loginBox li .sendCode.color-main-2,
.page-User-reg .main .loginBox li .sendCode.color-main-2 {
  background-color: #74c169;
}
.page-User-login .main .loginBox li .sendCode.color-main-3,
.page-User-reg .main .loginBox li .sendCode.color-main-3 {
  background-color: #ff7158;
}
.page-User-login .main .loginBox li .sendCode.lastIcon i,
.page-User-reg .main .loginBox li .sendCode.lastIcon i {
  margin-right: 0;
  font-size: 14px;
}
.page-User-login .main .loginBox li .sendCode.disabled,
.page-User-reg .main .loginBox li .sendCode.disabled {
  cursor: default;
  background-color: #cccccc;
  color: #fafafa;
}
.page-User-login .main .loginBox li .sendCode.disabled:hover,
.page-User-reg .main .loginBox li .sendCode.disabled:hover {
  filter: none;
}
.page-About-index .about {
  padding: 3rem;
  margin: 2rem auto;
  border-radius: 1rem;
  background-color: #f7f7f7;
  box-sizing: border-box;
}
.page-About-index .about img {
  float: left;
  margin-right: 4rem;
}
.page-About-index .about p {
  margin-bottom: 1.2rem;
  line-height: 2;
}
.page-About-index .about p:last-child {
  margin-bottom: 0;
}
.page-About-index .about h3 {
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}
.page-About-index .about h4 {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}
.userPanelHeader .main {
  height: 8rem;
}
.userPanel .main {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  align-items: stretch;
  padding: 1rem 0;
}
.userPanel .menu {
  padding: 1rem 1rem;
  width: 12rem;
  background-color: #f7f7f7;
  border-radius: 10px;
  min-height: 580px;
}
.userPanel .menu h3 {
  padding: 0.3rem 0.7rem;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.userPanel .menu ul li {
  padding: 0.8rem 1rem;
  border-radius: 5px;
  margin-bottom: 0.5rem;
}
.userPanel .menu ul li a {
  display: block;
}
.userPanel .menu ul li i {
  margin-right: 0.5rem;
  color: #666666;
}
.userPanel .menu ul li.this {
  font-weight: bold;
  background-color: #e6f4fd;
}
.userPanel .menu ul li.this span,
.userPanel .menu ul li.this i {
  color: #3dacef;
}
.userPanel .body {
  flex: 1;
  margin-left: 1rem;
  border-radius: 10px;
  padding: 1rem;
}
.userPanel .body .bodyTitle {
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 0.5rem;
}
.userPanel .body .bodyTitle .buts {
  float: right;
  margin-top: -0.2rem;
}
.userPanel .body .subMenu {
  margin: 1rem 0;
}
.userPanel .body .subMenu ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.userPanel .body .subMenu ul li {
  display: block;
  padding: 0.5rem 1.5rem;
  background-color: #eeeeee;
  border-radius: 0.5rem;
  margin-right: 0.5rem;
  font-size: 0.95rem;
}
.userPanel .body .subMenu ul li:last-child {
  margin-right: 0;
}
.userPanel .body .subMenu ul li.this {
  background-color: #3dacef;
  color: #ffffff;
}
.userPanel .body .iconMenu {
  margin: 1rem 0;
}
.userPanel .body .iconMenu ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.userPanel .body .iconMenu ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-right: 1rem;
  background-color: #f7f7f7;
  border-radius: 0.5rem;
  width: 7rem;
  height: 7rem;
  cursor: pointer;
  font-size: 0.9rem;
}
.userPanel .body .iconMenu ul li:hover {
  background-color: #fafafa;
  color: #3dacef;
}
.userPanel .body .iconMenu ul li i {
  font-size: 2rem;
}
.appList .listTable {
  border-top: 0!important;
}
.layui-layer-btn .layui-layer-btn0 {
  background-color: #3dacef !important;
}
/* 手机端样式：屏幕宽度小于等于 768px */
@media (min-width: 600px) {
  .inMobile {
    display: none!important;
  }
}
@media (max-width: 600px) {
  .inPc {
    display: none!important;
  }
  body {
    padding-top: 3.5rem;
  }
  .header {
    width: 100%;
    height: 3.5rem;
  }
  .header .logo {
    margin-left: 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .header .logo img {
    height: 2.3rem;
  }
  .header .logo span {
    font-size: 1.2rem;
    flex: 1;
  }
  .header .logo .menuBut {
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header .logo .menuBut i {
    font-size: 1.3rem;
    margin-right: 0.3rem;
  }
  .header .navsMask {
    transition: all 0.3s ease-in-out;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100vw;
    height: 100vh;
    z-index: 9996;
    left: -100vw;
    top: 0;
    opacity: 0;
  }
  .header .navsMask.show {
    opacity: 1;
    left: 0;
  }
  .header .navs {
    transition: all 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0 12px 0px;
    position: absolute;
    background: #ffffff;
    top: 0;
    right: -50vw;
    z-index: 9998;
    width: 50vw;
    height: 100vh;
    padding-left: 0;
  }
  .header .navs.show {
    opacity: 1;
    right: 0;
  }
  .header .navs ul {
    flex-direction: column;
  }
  .header .navs ul li {
    color: #dddddd;
    font-size: 1.2rem;
    margin: 0.8rem 0;
    padding: 0;
  }
  .header .navs ul li:hover {
    background: #fafafa;
  }
  .header .navs ul .menuLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.5rem;
    width: 90%;
    border-bottom: solid 1px #f7f7f7;
    margin-bottom: 1rem;
  }
  .header .navs ul .menuLogo img {
    height: 2rem;
  }
  .header .navs ul .phone {
    position: absolute;
    bottom: 0;
    background-color: #f7f7f7;
    width: 100%;
    padding: 1rem 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .header .navs ul .phone .title {
    display: block;
  }
  .header .navs ul .phone .phoneNum {
    display: block;
    padding-top: 0;
  }
  .header .navs ul .phone .phoneNum em {
    font-style: italic;
    font-weight: bold;
    font-size: 1.5rem;
    color: #ff7158;
  }
  .footer {
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6.5rem;
  }
  .footer .logo img {
    height: 2.2rem;
    margin-left: 1rem;
  }
  .footer .text {
    flex: auto;
    margin-left: 1rem;
    padding-left: 1rem;
    line-height: 1.8;
  }
  .body-Index-index .firstScreen {
    flex-direction: column;
  }
  .body-Index-index .firstScreen .image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .body-Index-index .firstScreen .image img {
    width: 80vw;
    height: 64vw;
    margin: 2rem 1rem 1rem 0;
  }
  .body-Index-index .firstScreen .info {
    width: 90%;
    margin-left: 1rem;
  }
  .body-Index-index .firstScreen .info .title {
    font-size: 2rem;
  }
  .body-Index-index .firstScreen .info .subTtitle {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .body-Index-index .firstScreen .info .desc {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  .body-Index-index .firstScreen .info .buts {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .body-Index-index .firstScreen .info .buts a:first-child {
    margin-right: 1rem;
  }
  .body-Index-index .blockItem .title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 7rem;
  }
  .body-Index-index .blockItem .title h3 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
  .body-Index-index .blockItem .title h4 {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
  .body-Index-index .secondScreen .bolcks ul {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 1rem;
  }
  .body-Index-index .secondScreen .bolcks ul li {
    width: 48%;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0 8px 0px;
    border-radius: 0.5rem;
    margin: 1rem 0 0 0;
    padding: 1rem;
  }
  .body-Index-index .secondScreen .bolcks ul li strong {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .body-Index-index .secondScreen .bolcks ul li span {
    line-height: 1.5;
    font-size: 0.85rem;
  }
  .body-Index-index .secondScreen .bolcks ul li:hover {
    transform: none;
  }
  .body-Index-index .thirdScreen .bolcks ul {
    padding: 0 1rem;
  }
  .body-Index-index .thirdScreen .bolcks ul li {
    width: 48%;
    margin: 1rem 0 0 0;
    padding: 1rem;
  }
  .body-Index-index .thirdScreen .bolcks ul li strong {
    font-size: 1.1rem;
  }
  .body-Index-index .thirdScreen .bolcks ul li span {
    font-size: 0.9rem;
  }
  .body-Index-index .thirdScreen .bolcks ul li:hover {
    transform: none;
  }
  .body-Index-index .thirdScreen .more {
    margin: 2rem 2rem  0 2rem;
    font-size: 0.9rem;
  }
  .pageHeaderContainer .main {
    width: 90%;
    height: 9rem;
  }
  .pageHeaderContainer .main h2 {
    font-size: 1.5rem;
  }
  .pageHeaderContainer .main span {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
  .page-About-index .about {
    padding: 1rem 1rem;
    margin: 0;
    background-color: #ffffff;
    box-sizing: border-box;
  }
  .page-About-index .about img {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 1rem;
  }
  .page-About-index .about p {
    margin-bottom: 1.2rem;
    line-height: 2;
  }
  .page-About-index .about p:last-child {
    margin-bottom: 0;
  }
  .page-About-index .about h3 {
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
  }
  .page-About-index .about h4 {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
  }
  .page-Pricing-index .pageHeaderContainer .main {
    height: 10rem;
  }
  .page-Pricing-index .pageHeaderContainer .main h2 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0 0;
  }
  .page-Pricing-index .pageHeaderContainer .main span {
    font-size: 1rem;
    text-align: center;
    line-height: 1.8;
  }
  .page-Pricing-index .versionNavs ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 1rem 0 1rem;
    justify-content: space-between;
  }
  .page-Pricing-index .versionNavs ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eeeeee;
    width: 23%;
    height: 2.5rem;
    border-radius: 0.5rem;
  }
  .page-Pricing-index .versionNavs ul li.this {
    background-color: #ff7158;
    color: #ffffff;
  }
  .page-Pricing-index .versions {
    margin-top: 0;
    margin-bottom: 2rem;
    flex-direction: column;
  }
  .page-Pricing-index .versions .item {
    background: #ffffff;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    margin-top: 1rem;
    display: none;
  }
  .page-Pricing-index .versions .item.show {
    display: block;
  }
  .page-Pricing-index .versions .item .header {
    height: 13rem;
  }
  .page-Pricing-index .versions .item .header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .page-Pricing-index .versions .item .header .desc {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .page-Pricing-index .versions .item .header .price {
    font-size: 1.3rem;
    color: #ffe200;
  }
  .page-Pricing-index .versions .item .header button {
    margin-top: 0.8rem;
  }
  .page-Pricing-index .versions .item ul {
    box-sizing: border-box;
    padding: 1em;
    background: #f7f7f7;
    border-radius: 0 0 0.5rem 0.5rem;
  }
  .page-Pricing-index .versions .item ul li {
    font-size: 14px;
    padding: 1rem 0rem;
  }
  .page-Pricing-index .process {
    display: none;
  }
}
