/*box sizing*/
/*圆角*/
/*渐变*/
/*
 * 阴影
 * @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
  .box-shadow(@shadow);
 */
/*Placeholder text
 *input{
 *     .placeholder(red)
 * }
 * */
/*S base*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.2s ease-out 0s;
}
html,
body {
  position: relative;
  width: 100%;
  min-width: 1200px;
  overflow-x: hidden;
}
body {
  font-size: 16px;
  margin: 0;
  color: #333;
  font-family: 'Microsoft YaHei', Arial, Helvetica, sans-serif;
  background: #fff;
}
::selection {
  background: #33cc99;
  color: #fff;
}
::-moz-selection {
  background: #33cc99;
  color: #fff;
}
input,
textarea,
select {
  border: none;
  font-family: 'Microsoft YaHei', Arial, Helvetica, sans-serif;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
  opacity: 1;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
  opacity: 1;
}
input:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
input::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
textarea:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
input[type=text],
textarea,
select {
  -webkit-appearance: none;
}
textarea:disabled,
input:disabled {
  background-color: #f7f7f7 !important;
}
img {
  border: 0 none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 0;
  margin-top: 0;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 18px;
}
button {
  border: 0;
  background-color: transparent;
  padding: 0;
}
.clearfix::after,
.clearfix::before {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}
.clear {
  clear: both;
}
.hide {
  display: none;
}
.middle {
  vertical-align: middle !important;
}
a {
  color: #333;
  text-decoration: none;
}
ul,
ol,
dl {
  list-style: none;
  padding: 0;
  margin: 0;
}
em,
i {
  font-style: normal;
}
b {
  font-weight: normal;
}
p,
dd {
  margin: 0;
}
table {
  width: 100%;
  border-collapse: collapse;
}
input,
select {
  background: none;
}
.bg_gray {
  background: #f8f8f8;
}
.bg_main {
  background: #33cc99 !important;
}
.bg_fff {
  background: #fff !important;
}
.c_main {
  color: #33cc99 !important;
}
.c_fff {
  color: #fff !important;
}
.c_333 {
  color: #333 !important;
}
.c_666 {
  color: #666 !important;
}
.c_888 {
  color: #888 !important;
}
.c_999 {
  color: #999 !important;
}
.pointer {
  cursor: pointer;
}
.bold {
  font-weight: bold;
}
.inline_block {
  display: inline-block;
}
.word_break {
  word-break: break-all;
}
.border {
  border: 1px solid #bfbfbf;
}
.border_t {
  border-top: 1px solid #bfbfbf;
}
.border_b {
  border-bottom: 1px solid #bfbfbf;
}
.border_l {
  border-left: 1px solid #bfbfbf;
}
.border_r {
  border-right: 1px solid #bfbfbf;
}
.border-n {
  border: none !important;
}
.pos_rel {
  position: relative;
}
.pos_abs {
  position: absolute;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.ellipsis_clip {
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ellipsis_clip3 {
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.hidden {
  overflow: hidden;
}
.text_left {
  text-align: left !important;
}
.text_center {
  text-align: center !important;
}
.text_right {
  text-align: right !important;
}
.pull_left {
  float: left;
}
.pull_right {
  float: right;
}
input[type="search"]::-webkit-search-cancel-button {
  display: none;
}
.main_container {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
.table {
  display: table;
}
.table_cell {
  display: table-cell;
}
.f12 {
  font-size: 12/1px !important;
}
.f14 {
  font-size: 14/1px !important;
}
.f16 {
  font-size: 16/1px !important;
}
.f18 {
  font-size: 18/1px !important;
}
.f38 {
  font-size: 38/1px !important;
}
.f48 {
  font-size: 48/1px !important;
}
.pt0 {
  padding-top: 0/1px !important;
}
.pb0 {
  padding-bottom: 0/1px !important;
}
.pl0 {
  padding-left: 0/1px !important;
}
.pr0 {
  padding-right: 0/1px !important;
}
.plr0 {
  padding-left: 0/1px !important;
  padding-right: 0/1px !important;
}
.ptb0 {
  padding-top: 0/1px !important;
  padding-bottom: 0/1px !important;
}
.pad0 {
  padding: 0/1px !important;
}
/*margin*/
.m0 {
  margin: 0 !important;
}
.mt30 {
  margin-top: 30/1px !important;
}
.mt50 {
  margin-top: 50/1px !important;
}
.mt140 {
  margin-top: 140/1px !important;
}
.mb10 {
  margin-bottom: 10/1px !important;
}
.mb20 {
  margin-bottom: 20/1px !important;
}
.ml30 {
  margin-left: 30/1px !important;
}
.ml160 {
  margin-left: 160/1px !important;
}
.mr30 {
  margin-right: 30/1px !important;
}
.mtb15 {
  margin-top: 15/1px !important;
  margin-bottom: 15/1px !important;
}
.mlr0 {
  margin-left: 0/1px !important;
  margin-right: 0/1px !important;
}
/*S头部*/
.header_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 62px;
  line-height: 62px;
  background: rgba(0, 0, 0, 0.8);
}
.nav_logo {
  width: 270px;
  height: 49px;
  margin-top: 6px;
}
.nav_list li {
  float: left;
}
.nav_list a {
  display: block;
  font-size: 16px;
  color: #fff;
  padding: 0 20px;
}
/*E头部*/
/*S底部*/
.footer_box {
  height: 280px;
  color: #fefefe;
  padding: 50px 0 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background: #222222;
}
.footer_logo {
  width: 378px;
}
.footer_no {
  height: 60px;
  line-height: 60px;
  font-size: 12px;
  background: #1c1c1c;
}
.footer_no a {
  display: block;
  color: #525252;
  text-align: center;
}
.logo_img {
  width: 314px;
  height: 54px;
}
.footer_code {
  width: 79px;
  height: 79px;
  margin: 40px 0 0 67px;
}
.footer_input {
  width: 239px;
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 30px 0 0 30px;
  background: #fff;
}
.footer_btn {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 0 30px 30px 0;
  background: #fac506;
}
.footer_btn img {
  width: 18px;
  height: 10px;
}
.footer_nav {
  width: 222px;
  padding-left: 26px;
  margin-top: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.footer_nav a {
  display: block;
  font-size: 14px;
  color: #fefefe;
  padding-bottom: 10px;
}
.footer_phone {
  width: 280px;
  margin-top: 20px;
  margin-left: 40px;
}
/*E底部*/
/*Stab切换*/
.tab_list {
  height: 77px;
  line-height: 77px;
  text-align: center;
  background: #313131;
}
.tab_list ul {
  padding: 0 128px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.tab_list li {
  display: inline-block;
  color: #fff;
  padding: 0 30px;
  cursor: pointer;
}
.tab_list li.active {
  color: #33cc99;
}
/*Etab切换*/
/*S产品服务*/
.banner_box {
  width: 100%;
  height: 420px;
}
.product_banner {
  background: url(../img/product_banner.jpg) no-repeat center top;
}
.inInformtin_banner {
  background: url('../img/wallhaven.png') no-repeat center top;
}
.infoMain {
  height: auto;
  width: 1200px;
  margin: auto;
  background-color: #fff;
}
.infoMain .info_item {
  padding: 36px 32px;
  display: flex;
  justify-content: start;
}
.infoMain .info_item img {
  width: 320px;
  height: 220px;
  margin-right: 32px;
}
.infoMain .info_item .title {
  width: 700px;
  font-size: 26px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.infoMain .info_item .title .time {
  font-size: 20px !important;
}
.infoMain .info_item .sub_title {
  font-size: 20px;
  margin-top: 28px;
}
.infoMain .info_item .resource {
  margin-top: 50px;
}
.infoMain .info_item .payBtn {
  width: 166px;
  height: 32px;
  background: #0BBD91;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  line-height: 32px;
  margin-top: 20px;
  cursor: pointer;
}
.main_con {
  padding: 100px 0;
  background: #f7f7f7 url(../img/con_bg.png) no-repeat center bottom;
}
.title_text {
  font-size: 18px;
  line-height: 28px;
  margin: 40px 0 108px;
}
.product_item {
  float: left;
  width: 33.33%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
.product_pay {
  margin-top: 140px;
}
.product_img {
  display: inline-block;
  width: 302px;
  height: 532px;
}
.system_box {
  width: 840px;
  margin: 0 auto 210px;
}
.system_box:last-child {
  margin-bottom: 0;
}
.system_left {
  width: 474px;
}
.system_left .product_icon {
  width: 96px;
  height: 106px;
  margin-top: 80px;
}
.system_right {
  width: 302px;
}
.system_right .product_icon {
  width: 103px;
  height: 94px;
  margin-top: 80px;
}
.product_text {
  margin-top: 60px;
  padding: 100px 0 0 74px;
  background: url(../img/product_text.png) no-repeat;
}
.product_box {
  margin-bottom: 160px;
}
.product_box:last-child {
  margin-bottom: 0;
}
.share_img {
  width: 1153px;
  height: 861px;
}
.operate_img {
  width: 1193px;
  height: 582px;
}
/*E产品服务*/
/*S了解我们*/
.about_box {
  margin-top: 60px;
  padding: 100px 0;
  background: url(../img/about_us.png) no-repeat;
}
.about_banner {
  background: url(../img/about_us.jpg) no-repeat center top;
}
.about_title {
  display: inline-block;
  font-size: 38px;
  padding: 40px 94px 22px 0;
  background: url(../img/product_text.png) no-repeat right top;
  background-size: auto 93px;
}
.about_text {
  width: 575px;
  line-height: 30px;
  padding: 40px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 3px 0 10px #e0e6e7;
  box-shadow: 3px 0 10px #e0e6e7;
  background: url(../img/about_text.jpg) repeat-x;
}
.contact_img {
  width: 520px;
  height: 312px;
}
.contact_icon {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: -moz-linear-gradient(top, #50e099 0%, #3fbba0 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #50e099), color-stop(100%, #3fbba0));
  background: -webkit-linear-gradient(top, #50e099 0%, #3fbba0 100%);
  background: -o-linear-gradient(top, #50e099 0%, #3fbba0 100%);
  background: -ms-linear-gradient(top, #50e099 0%, #3fbba0 100%);
  background: linear-gradient(to bottom, #50e099 0%, #3fbba0 100%);
}
.contact_title {
  padding: 7px 0 0 60px;
  margin-bottom: 38px;
}
.contact_text h4 {
  font-size: 22px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #bfbfbf;
}
.contact_text p {
  font-size: 18px;
  line-height: 1.4;
}
.contact_map {
  width: 742px;
  height: 440px;
  -webkit-box-shadow: 0 0 32px #d9e6ea;
  box-shadow: 0 0 32px #d9e6ea;
}
/*E了解我们*/
/*S首页*/
.index_banner {
  width: 100%;
  height: 100%;
  background: url(../img/index_banner.jpg) no-repeat center;
  background-size: 100% 100%;
  z-index: 1;
}
.server_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 157px;
  color: #fff;
  padding-top: 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  background: url(../img/index_bg.jpg) repeat-x;
}
.server_icon {
  position: absolute;
  bottom: -38px;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-width: 20px 15px;
  border-style: solid;
  border-color: #32DD97 transparent transparent;
}
/*S第四屏*/
.four_img {
  margin-top: 120px;
}
/*E第四屏*/
/*S第五屏*/
.index_box {
  position: relative;
  z-index: -1;
}
.index_box:first-child {
  background: url(../img/index_one.png) no-repeat center bottom;
}
.index_box:nth-child(2) {
  background: url(../img/index_two.png) no-repeat center bottom;
}
.index_box:nth-child(3) {
  background: url(../img/index_three1.png) no-repeat left bottom, url(../img/index_three2.png) no-repeat right bottom;
}
.index_box:nth-child(4) {
  background: url(../img/index_four1.png) no-repeat left top, url(../img/index_four2.png) no-repeat right bottom;
}
.index_box:nth-child(5) {
  background: url(../img/index_five1.png) no-repeat left bottom, url(../img/index_five2.png) no-repeat right top;
}
.page_box {
  position: absolute;
  top: 50%;
  margin-top: -250px;
  width: 100%;
}
.page_title {
  font-size: 38px;
  color: #666;
  margin: 30px 0;
}
.page_text {
  font-size: 20px;
  color: #666;
  line-height: 30px;
}
.page_con {
  position: relative;
  padding: 10px 0 0 120px;
}
.page_no {
  font-size: 146px;
  color: #666;
  line-height: 1;
}
.page_small {
  font-size: 18px;
  color: #666;
  line-height: 1;
}
.page_icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 155px;
  height: 155px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 19px 24px #d7d6df;
  box-shadow: 0 19px 24px #d7d6df;
  z-index: -1;
}
.page_icon.page_yellow {
  background: -moz-linear-gradient(left, #fed402 0%, #f9ae16 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #fed402), color-stop(100%, #f9ae16));
  background: -webkit-linear-gradient(left, #fed402 0%, #f9ae16 100%);
  background: -o-linear-gradient(left, #fed402 0%, #f9ae16 100%);
  background: -ms-linear-gradient(left, #fed402 0%, #f9ae16 100%);
  background: linear-gradient(to right, #fed402 0%, #f9ae16 100%);
}
.page_icon.page_green {
  background: -moz-linear-gradient(left, #30d18c 0%, #32bb8f 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #30d18c), color-stop(100%, #32bb8f));
  background: -webkit-linear-gradient(left, #30d18c 0%, #32bb8f 100%);
  background: -o-linear-gradient(left, #30d18c 0%, #32bb8f 100%);
  background: -ms-linear-gradient(left, #30d18c 0%, #32bb8f 100%);
  background: linear-gradient(to right, #30d18c 0%, #32bb8f 100%);
}
.page_btn {
  display: block;
  width: 210px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  -webkit-box-shadow: 0 16px 28px #d7d6df;
  box-shadow: 0 16px 28px #d7d6df;
  margin-top: 20px;
  background: #6f55eb;
}
.five_img {
  width: 629px;
  height: 469px;
  margin-top: 40px;
}
.hei100 {
  height: 100%;
}
/*E第五屏*/
/*S合作伙伴*/
.footer_index {
  position: relative;
  display: table;
  width: 100%;
  padding-bottom: 340px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background: url(../img/partner_bg.jpg) no-repeat center top;
}
.index_footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.partner_box {
  display: table-cell;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
  text-align: center;
}
.partner_list {
  margin-top: 86px;
}
.partner_item {
  float: left;
  margin-right: 40px;
}
.partner_item:last-child {
  margin-right: 0;
}
.partner_item img {
  width: 204px;
  height: 78px;
}
/*E合作伙伴*/
/*S右侧悬浮*/
.right_fixed {
  position: fixed;
  right: 0;
  bottom: 0;
}
.right_fixed a {
  display: block;
}
/*E右侧悬浮*/
/*S漂浮效果*/
.animation_left {
  -webkit-transform: translate3d(-3000px, 0, 0);
  transform: translate3d(-3000px, 0, 0);
}
.animation_right {
  -webkit-transform: translate3d(3000px, 0, 0);
  transform: translate3d(3000px, 0, 0);
}
.index_box.animation .animation_left {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.index_box.animation .animation_right {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*E漂浮效果*/
/*E首页*/
.login {
  cursor: pointer;
}
.register {
  cursor: pointer;
}
.loginBox {
  width: 280px;
  height: 300px;
  background-color: #fff;
  position: absolute;
  right: 280px;
  top: 100px;
  z-index: 100;
  padding: 20px 10px;
  border-radius: 10px;
  display: none;
}
.loginBox .closeLogin {
  font-size: 20px;
  position: absolute;
  right: 14px;
  top: -8px;
  cursor: pointer;
}
.loginBox .form_item {
  padding: 0px 10px;
  border-radius: 5px;
}
.loginBox button {
  width: 100%;
  background-color: #409EFF;
  margin: auto;
  height: 32px;
  color: #fff;
  border-radius: 4px;
}
.regBox {
  width: 280px;
  background-color: #fff;
  position: absolute;
  right: 280px;
  top: 100px;
  z-index: 100;
  padding: 20px 10px;
  border-radius: 10px;
  display: none;
}
.regBox .closeReg {
  font-size: 20px;
  position: absolute;
  right: 14px;
  top: -8px;
  cursor: pointer;
}
.regBox .form_item {
  padding: 0px 10px;
  border-radius: 5px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.regBox button {
  width: 100%;
  background-color: #409EFF;
  margin: auto;
  height: 32px;
  margin-top: 5px;
  color: #fff;
  border-radius: 4px;
}
