body,
html {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
.clear_float::after {
  /*只需要给浮动元素的父容器添加上这个类就可以了: clear_float*/
  display: block;
  /*把::after设置成块级元素*/
  content: '';
  /*想让伪类起作用, 必须添加这个属性*/
  clear: both;
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.flex-w-1 {
  flex: 1;
  width: 0;
}
.flex-h-1 {
  flex: 1;
  height: 0;
}
.flex-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  flex-direction: column;
}
.flex-x-end {
  display: flex;
  justify-content: flex-end;
}
.flex-x-start {
  display: flex;
  justify-content: flex-start;
}
.flex-x-sb {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
.flex-x-sa {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
}
.flex-x-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-y-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.flex-y-end {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -ms-grid-row-align: flex-end;
  align-items: flex-end;
}
.flex-wrap {
  flex-wrap: wrap;
}
/* 文本溢出隐藏开始 */
.text-more {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
}
.text-more-1 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.text-more-2 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.text-more-3 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
/* 文本溢出隐藏结束 */
/* 文本大小开始 */
.font-12 {
  font-size: 12px;
}
.font-14 {
  font-size: 14px;
}
.font-16 {
  font-size: 16px;
}
.font-18 {
  font-size: 18px;
}
.font-20 {
  font-size: 20px;
}
.font-22 {
  font-size: 22px;
}
.font-24 {
  font-size: 24px;
}
.font-w-700 {
  font-weight: 700;
}
.font-center {
  text-align: center;
}
.m-r-10 {
  margin-right: 10px;
}
.m-r-20 {
  margin-right: 20px;
}
.layout2 {
  max-width: 80rem;
  min-width: 16rem;
  margin: 0 auto;
}
.header-box {
  height: 82px;
  background: #fff;
}
.header-box header {
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 999;
  transform: translateX(-50%);
  width: 100%;
  background: #fff;
  height: 82px;
  font-size: 16px;
  font-weight: 500;
  /*white-space: nowrap;*/
}
.header-box header .left {
  height: 100%;
}
.header-box header .left > img {
  margin: 0 2rem 0 2.625rem;
  width: 9.6rem;
  cursor: pointer;
}
.header-box header .left .head-tabs {
  display: flex;
  align-items: center;
}
.header-box header .left .head-tabs .tab {
  color: #2962ef;
  cursor: pointer;
  font-weight: bold;
  padding-left: 32px;
  padding-right: 32px;
}
.header-box header .left .head-tabs .check {
  color: #333;
}
.header-box header .right {
  position: relative;
  margin-right: 40px;
}
.header-box header .right .yuyan {
  position: relative;
}
.header-box header .right .yuyan .yuyan-popup {
  position: absolute;
  right: 0;
  top: 120%;
  max-height: 72vh;
  background: #fff;
  padding: 10px;
  overflow-y: auto;
  border-radius: 5px;
  text-align: center;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #ebeef5;
  border-radius: 4px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
.header-box header .right .yuyan .yuyan-popup > div {
  padding: 0 10px;
  line-height: 30px;
  color: #464646;
}
.header-box header .right .yuyan-icon {
  width: 32px;
  height: 32px;
  transition: all 0.1s ease; /* 添加过渡效果 */
}
.header-box header .right .yuyan-icon:active {
  transform: scale(0.9); /* 缩小按钮的大小 */
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8); /* 减小阴影的深度 */
}
.header-box header .right .lian {
  cursor: pointer;
  color: white;
  background: #2962ef;
  border-color: #2962ef;
  margin-right: 20px;
  line-height: 22px;
  padding: 8px;
  box-sizing: content-box;
  border-radius: 5px;
  font-weight: 700;
  transition: all 0.1s ease; /* 添加过渡效果 */
}
.header-box header .right .lian:active {
    transform: scale(0.9); /* 缩小按钮的大小 */
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5); /* 减小阴影的深度 */
}
.page-one {
  height: 43.75rem;
  width: 100%;
  background: url('../assets/images/home-one.jpg') no-repeat;
  background-size: 100% 100%;
}
.page-one > div {
  text-align: center;
}
.page-one > div > div:nth-child(1) {
  font-weight: bold;
  margin: auto;
  max-width: 48rem;
  font-size: 2.815rem;
  text-align: center;
  line-height: 1.25;
}
.page-one > div > div:nth-child(2) {
  padding-top: 4rem;
  font-size: 1.2rem;
  opacity: 0.5;
  color: #183185;
}
.page-one > div > div:nth-child(3) {
  margin: 0 auto;
  margin-top: 3rem;
  width: 17rem;
  height: 3.125rem;
  font-size: 1.1rem;
  border-radius: 5rem;
  color: white;
  background: linear-gradient(90deg, #2d2ce5, #6bb1ff);
  transition: all 0.1s ease; /* 添加过渡效果 */
}
.page-one > div > div:nth-child(3):active {
    transform: scale(0.9); /* 缩小按钮的大小 */
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5); /* 减小阴影的深度 */
}
.page-two .item {
  height: 30rem;
  margin-top: 4rem;
  margin-left: 2%;
  width: 40%;
  float: left;
  background-color: #f3f3f4;
  border-radius: 1rem;
  padding: 4rem 2rem 2.5rem;
  font-size: 1.1rem;
  line-height: 1.4;
}
.page-two .item:nth-child(1) > div:nth-child(1) {
  margin: 0 0 2rem;
  font-size: 3rem;
  line-height: 1.25;
  font-weight: 700;
}
.page-two .item:nth-child(1) > div:nth-child(2) {
  color: #737379;
  font-weight: 500;
  margin-bottom: 2rem;
}
.page-two .item:nth-child(1) .body_two_box1_logo {
  float: left;
  flex: 0 0 auto;
  width: 4rem;
  height: 4rem;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  margin: 1rem;
  box-shadow: 0.25rem 0.5rem 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-two .item:nth-child(1) .body_two_box1_logo > img {
  width: 3rem;
  height: 3rem;
}
.page-two .item:nth-child(2) {
  margin-left: 4%;
  float: left;
  color: #737379;
  font-weight: 500;
  margin-bottom: 2rem;
}
.page-two .item:nth-child(2) .title,
.page-two .item:nth-child(2) .title2 {
  color: initial;
  margin: 0 0 2rem;
  font-size: 3rem;
  line-height: 1.25;
  font-weight: 700;
}
.page-two .item:nth-child(2) .title2 {
  margin: 1rem 0 0;
}
.body_three {
  background-image: url(../assets/images/team-bg.c16f8d1f.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: auto 100%;
  overflow: auto;
  margin: auto;
  width: 100%;
}
.body_three .body_three_title {
  width: 100%;
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
  margin-top: 5rem;
}
.body_three .body_three_title2 {
  width: 100%;
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.25rem;
  font-weight: 400;
  opacity: 0.5;
}
.body_three .body_three_box {
  -webkit-tap-highlight-color: transparent;
  font-size: 1rem;
  font-family: inherit;
  float: left;
  margin-top: 5rem;
  width: 29%;
  margin-left: 3%;
  background-color: transparent;
  min-height: 17rem;
}
.body_three .body_three_box > img {
  -webkit-tap-highlight-color: transparent;
  font-size: 1rem;
  font-family: inherit;
  display: block;
  max-width: 10rem;
  border-radius: 5rem;
  margin: auto;
}
.body_three .body_three_box .body_three_box_text_1 {
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.body_three .body_three_box .body_three_box_text_2 {
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
  margin-top: 0.5rem;
  font-size: 1.1rem;
  text-align: center;
  color: #8b98c2;
}
.body_foot {
  -webkit-tap-highlight-color: transparent;
  font-size: 1rem;
  font-family: inherit;
  margin-top: 4rem;
  width: 100%;
}
.body_foot .body_foot_title {
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
  padding-top: 2rem;
  width: 100%;
  font-size: 1.1rem;
  color: #9b97b3;
  font-weight: bold;
  text-align: center;
  margin-top: 5rem;
}
.body_foot .footImg {
  min-width: 9.375rem;
  margin-bottom: 4rem;
  margin-left: 4%;
  width: 15%;
  height: 3rem;
  float: left;
}
.body_foot .footImg > img {
  -webkit-tap-highlight-color: transparent;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  object-fit: cover;
}
.body_foot .body_end {
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
  line-height: 5rem;
  text-align: center;
  color: white;
  font-size: 0.8rem;
  height: 5rem;
  width: 100%;
  left: 0;
  bottom: 0;
  background: url(../assets/images/foot-bg.e302a637.png) no-repeat;
  background-size: 100% 100%;
  z-index: 2;
}
.web3modal-modal-card {
  -webkit-tap-highlight-color: transparent;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', miui, 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
  text-align: center;
  box-sizing: border-box !important;
  position: relative;
  background-color: #ffffff;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: grid;
  min-width: fit-content;
  overflow: auto;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  border-radius: 2rem !important;
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
  max-height: 70% !important;
  max-width: 20rem !important;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)) !important;
}
.web3modal-modal-card .sc-eCImPb {
  -webkit-tap-highlight-color: transparent;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', miui, 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
  text-align: center;
  visibility: visible;
  pointer-events: auto;
  width: 100%;
  padding: 8px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  border-radius: 0px;
  box-sizing: border-box !important;
  border: solid white !important;
}
.web3modal-modal-card .sc-eCImPb .sc-hKwDye {
  -webkit-tap-highlight-color: transparent;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', miui, 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
  text-align: center;
  visibility: visible;
  pointer-events: auto;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out 0s;
  width: 100%;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px 0;
  box-sizing: border-box !important;
}
.web3modal-modal-card .sc-eCImPb .sc-hKwDye:hover {
  background: rgba(220, 220, 220, 0.3);
}
.web3modal-modal-card .sc-eCImPb .sc-hKwDye .sc-bdvvtL {
  -webkit-tap-highlight-color: transparent;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', miui, 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
  text-align: center;
  visibility: visible;
  pointer-events: auto;
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: flex;
  border-radius: 50%;
  overflow: visible;
  box-shadow: none;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  box-sizing: border-box !important;
}
.web3modal-modal-card .sc-eCImPb .sc-hKwDye .sc-bdvvtL img {
  -webkit-tap-highlight-color: transparent;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', miui, 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
  text-align: center;
  visibility: visible;
  pointer-events: auto;
  cursor: pointer;
  box-sizing: border-box !important;
  width: 100%;
  height: 100%;
}
.web3modal-modal-card .sc-eCImPb .sc-hKwDye .sc-gsDKAQ {
  -webkit-tap-highlight-color: transparent;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', miui, 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
  text-align: center;
  visibility: visible;
  pointer-events: auto;
  cursor: pointer;
  width: 100%;
  margin-top: 0.5em;
  box-sizing: border-box !important;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  color: #1834a9 !important;
  word-break: break-word !important;
}
.web3modal-modal-card .sc-eCImPb .sc-hKwDye .sc-dkPtRN {
  -webkit-tap-highlight-color: transparent;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', miui, 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
  text-align: center;
  visibility: visible;
  pointer-events: auto;
  cursor: pointer;
  width: 100%;
  margin: 0.333em 0px;
  color: #a9a9bc;
  box-sizing: border-box !important;
  font-size: 0rem !important;
  height: 0rem !important;
}
@media screen and (max-width: 768px) {
  .head-tabs .tab {
    font-size: 0.9rem;
    color: #2962ef;
    font-weight: bold;
    text-align: center;
    max-width: 20rem;
    height: 2.5rem;
    /*line-height: 2.5rem; 先注释行间距*/
    word-wrap: break-word; /* 允许在单词内换行 */
  }
  .head-tabs .check {
    color: #333;
  }
  .header-box {
    height: 82px;
    background: #fff;
    box-shadow: 0rem 0rem 0.51rem #999999;
  }
  .header-box .logodiv {
    max-width: 9.5rem;
    min-width: 8rem;
    margin-left: 3.3%;
  }
  .header-box .lian {
    cursor: pointer;
    color: white;
    background: #2962ef;
    border-color: #2962ef;
    margin-right: 0.4rem;
    line-height: 1.375rem;
    padding: 0.5rem;
    box-sizing: content-box;
    border-radius: 0.3125rem;
    font-weight: 700;
    transition: all 0.1s ease; /* 添加过渡效果 */
    }
  .header-box .lian:active {
    transform: scale(0.9); /* 缩小按钮的大小 */
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5); /* 减小阴影的深度 */
  }
  .header-box .menu-bt {
    cursor: pointer;
    margin-right: 0.4rem;
    transition: all 0.1s ease; /* 添加过渡效果 */
  }
  .header-box .menu-bt:active {
    transform: scale(0.9); /* 缩小按钮的大小 */
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5); /* 减小阴影的深度 */
  }
  .header-box .yuyan {
    position: relative;
    margin-right: 0.4rem;
    transition: all 0.1s ease; /* 添加过渡效果 */
  }
  .header-box .yuyan:active {
    transform: scale(0.9); /* 缩小按钮的大小 */
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5); /* 减小阴影的深度 */
  }
  .header-box .yuyan .yuyan-icon {
    width: 2rem;
    height: 2rem;
  }
  .header-box .yuyan .yuyan-popup {
    position: absolute;
    right: 0;
    top: 120%;
    max-height: 72vh;
    background: #fff;
    padding: 10px;
    overflow-y: auto;
    border-radius: 5px;
    text-align: center;
    white-space: nowrap;
    background-color: #fff;
    border: 1px solid #ebeef5;
    border-radius: 4px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  }
  .header-box .yuyan .yuyan-popup > div {
    padding: 0 10px;
    line-height: 30px;
    color: #464646;
  }
  .page-one {
    height: 31.25rem;
    width: 100%;
    background: url('../assets/images/home-one.jpg') no-repeat;
    background-size: 100% 100%;
  }
  .page-one > div {
    text-align: center;
  }
  .page-one > div > div:nth-child(1) {
    font-weight: bold;
    margin: auto;
    max-width: 48rem;
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.25;
  }
  .page-one > div > div:nth-child(2) {
    width: 96%;
    margin-left: 2%;
    padding-top: 2rem;
    text-align: center;
    max-width: 60rem;
    font-size: 1.1rem;
    opacity: 0.5;
    color: #183185;
  }
  .page-one > div > div:nth-child(3) {
    margin: 0 auto;
    margin-top: 3rem;
    width: 17rem;
    height: 3.125rem;
    font-size: 1.1rem;
    border-radius: 5rem;
    color: white;
    background: linear-gradient(90deg, #2d2ce5, #6bb1ff);
    transition: all 0.1s ease; /* 添加过渡效果 */
  }
  .page-one > div > div:nth-child(3):active {
    transform: scale(0.9); /* 缩小按钮的大小 */
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5); /* 减小阴影的深度 */
  }
  .page-two .item {
    height: initial;
    margin-top: 4rem;
    margin-left: 2%;
    width: 90%;
    float: left;
    background-color: #f3f3f4;
    border-radius: 1rem;
    padding: 1.5rem 3%;
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .page-two .item:nth-child(1) > div:nth-child(1) {
    margin: 0 0 2rem;
    font-size: 1.7rem;
    line-height: 1.25;
    font-weight: 700;
  }
  .page-two .item:nth-child(1) > div:nth-child(2) {
    color: #737379;
    font-weight: 500;
    margin-bottom: 2rem;
  }
  .page-two .item:nth-child(1) .body_two_box1_logo {
    float: left;
    flex: 0 0 auto;
    width: 4rem;
    height: 4rem;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
    margin: 1rem;
    box-shadow: 0.25rem 0.5rem 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page-two .item:nth-child(1) .body_two_box1_logo > img {
    width: 3rem;
    height: 3rem;
  }
  .page-two .item:nth-child(2) {
    padding: 1.5rem 3%;
    margin-top: 2rem;
    width: 90%;
    float: left;
    margin-left: 2%;
    background-color: #f3f3f4;
    border-radius: 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #737379;
    font-weight: 500;
    margin-bottom: 2rem;
  }
  .page-two .item:nth-child(2) .title,
  .page-two .item:nth-child(2) .title2 {
    color: initial;
    margin: 0 0 2rem;
    font-size: 1.7rem;
    line-height: 1.25;
    font-weight: 700;
  }
  .page-two .item:nth-child(2) .title2 {
    margin: 1rem 0 0;
    font-size: 3rem;
  }
  .body_three {
    background-image: url(../assets/images/team-bg.c16f8d1f.svg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: auto 100%;
    overflow: auto;
    margin: auto;
    width: 100%;
  }
  .body_three .body_three_title {
    width: 100%;
    font-size: 3.4rem;
    font-weight: bold;
    text-align: center;
    margin-top: 5rem;
  }
  .body_three .body_three_title2 {
    width: 100%;
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.25rem;
    font-weight: 400;
    opacity: 0.5;
  }
  .body_three .body_three_box {
    margin-top: 2rem;
    width: 100%;
    background-color: transparent;
    min-height: 17rem;
  }
  .body_three .body_three_box > img {
    -webkit-tap-highlight-color: transparent;
    font-size: 1rem;
    font-family: inherit;
    display: block;
    max-width: 10rem;
    border-radius: 5rem;
    margin: auto;
  }
  .body_three .body_three_box .body_three_box_text_1 {
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
  }
  .body_three .body_three_box .body_three_box_text_2 {
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    text-align: center;
    color: #8b98c2;
  }
  .body_foot {
    -webkit-tap-highlight-color: transparent;
    font-size: 1rem;
    font-family: inherit;
    margin-top: 4rem;
    width: 100%;
  }
  .body_foot .body_foot_title {
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
    padding-top: 2rem;
    width: 100%;
    font-size: 1.1rem;
    color: #9b97b3;
    font-weight: bold;
    text-align: center;
    margin-top: 5rem;
  }
  .body_foot .footImg {
    min-width: 9.375rem;
    margin-bottom: 3rem;
    margin-left: 5.5%;
    width: 15%;
    height: 3rem;
    float: left;
  }
  .body_foot .footImg > img {
    -webkit-tap-highlight-color: transparent;
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
    object-fit: cover;
  }
  .body_foot .body_end {
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
    line-height: 5rem;
    text-align: center;
    color: white;
    font-size: 0.8rem;
    height: 5rem;
    width: 100%;
    left: 0;
    bottom: 0;
    background: url(../assets/images/foot-bg.e302a637.png) no-repeat;
    background-size: 100% 100%;
    z-index: 2;
  }
}



.loader {
	/*background: #7d00ff;
    background: radial-gradient(#222, #000); */
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.loader-inner {
    bottom: 0;
    height: 60px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}

.loader-line-wrap {
    animation: 
		spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite
	;
    box-sizing: border-box;
    height: 50px;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    transform-origin: 50% 100%;
    width: 100px;
}
.loader-line {
    border: 4px solid transparent;
    border-radius: 100%;
    box-sizing: border-box;
    height: 100px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}
.loader-line-wrap:nth-child(1) { animation-delay: -50ms; }
.loader-line-wrap:nth-child(2) { animation-delay: -100ms; }
.loader-line-wrap:nth-child(3) { animation-delay: -150ms; }
.loader-line-wrap:nth-child(4) { animation-delay: -200ms; }
.loader-line-wrap:nth-child(5) { animation-delay: -250ms; }

.loader-line-wrap:nth-child(1) .loader-line {
    border-color: hsl(0, 80%, 60%);
    height: 90px;
    width: 90px;
    top: 7px;
}
.loader-line-wrap:nth-child(2) .loader-line {
    border-color: hsl(60, 80%, 60%);
    height: 76px;
    width: 76px;
    top: 14px;
}
.loader-line-wrap:nth-child(3) .loader-line {
    border-color: hsl(120, 80%, 60%);
    height: 62px;
    width: 62px;
    top: 21px;
}
.loader-line-wrap:nth-child(4) .loader-line {
    border-color: hsl(180, 80%, 60%);
    height: 48px;
    width: 48px;
    top: 28px;
}
.loader-line-wrap:nth-child(5) .loader-line {
    border-color: hsl(240, 80%, 60%);
    height: 34px;
    width: 34px;
    top: 35px;
}

@keyframes spin {
    0%, 15% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}


.demo-table-expand {
    font-size: 0;
	margin-left: 10%;
}
.demo-table-expand label {
	width: auto;
	color: #99a9bf;
}
.demo-table-expand .el-form-item {
	margin-right: 0;
	margin-bottom: 0;
	width: 100%;
}

/* element 弹窗居中 */
.openinviterWsurl{
	display: flex;
   display: -ms-flex; /* 兼容IE */
   flex-direction: column;
   -ms-flex-direction: column; /* 兼容IE */
   margin:0 !important;
   position:absolute;
   top:50%;
   left:50%;
   transform:translate(-50%,-50%);
   max-height:calc(100% - 30px);
   max-width:calc(100% - 30px);
}
 
 
/* 幸运转盘 */
.dzpc{
	width:80%;margin: auto;
}
.dzpcc{
	width: 100%;
}
.dzpccs{
	width:10% !important;
}
.dzpccsr{
	width:100%;float:right;top: 10%;margin: 10px;
}
.dzpccsrb{
	display: block;
	margin: 10px;
	width: 80px;
}
.dzpccm{
	margin:auto;
}
.dzpccmv{
	text-align: center;position: relative;
}
.dzpccms{
	width:30% !important;
	margin-bottom: 10px;
}
.dzpccmsc{
	width: 80%;float:left;
	text-align: center;
	margin: auto;
	border: 2px solid #5a5750 !important;
	box-shadow: 6px 9px 3px 0px rgb(184 197 242), 0 0 6px rgb(97 125 242) !important; 
	margin-top: 10px;
	height: 500px;
}
.dzpccmscv{
	background-color: #f56c6c;
	font-weight: bold;
	margin-bottom: 10px;
}
.dzpccfd{
	width: 100%;
	border: 2px solid #5a5750;
	box-shadow: 6px 9px 3px 0px rgb(184 197 242), 0 0 6px rgb(97 125 242) !important;
}


@media screen and (max-width: 768px) {
    .mdzpc{
		text-align: center;
	}
	.mdzpcd{
		position: relative;
	}
	.mdzpcb{
		margin: 10px;
	}
	.mdzpcard{
		height: 200px;   	
		border: 2px solid #5a5750 !important;
		box-shadow: 6px 9px 3px 0px rgb(184 197 242), 0 0 6px rgb(97 125 242) !important; 
	}
	
	.mdzpccfd{
		width: 100%;
		border: 2px solid #5a5750;
		box-shadow: 6px 9px 3px 0px rgb(184 197 242), 0 0 6px rgb(97 125 242) !important;
		text-align: left;
	}
	.mdzpccmscv{
		background-color: #f56c6c;
		font-weight: bold;
		margin-bottom: 10px;
	}
}