@font-face {
  font-family: "MuktaBold";
  src: url(./fonts/Mukta-Bold.ttf);
}

@font-face {
  font-family: MuktaExtraBold;
  src: url(./fonts/Mukta-ExtraBold.ttf);
}

@font-face {
  font-family: MuktaExtraLight;
  src: url(./fonts/Mukta-ExtraLight.ttf);
}

@font-face {
  font-family: MuktaLight;
  src: url(./fonts/Mukta-Light.ttf);
}

@font-face {
  font-family: MuktaMedium;
  src: url(./fonts/Mukta-Medium.ttf);
}

@font-face {
  font-family: MuktaRegular;
  src: url(./fonts/Mukta-Regular.ttf);
}

@font-face {
  font-family: MuktaSemiBold;
  src: url(./fonts/Mukta-SemiBold.ttf);
}

@font-face {
  font-family: OpenSans;
  src: url(./fonts/OpenSans-Regular.ttf);
}

@font-face {
  font-family: Montserrat;
  src: url(./fonts/Montserrat-Black.ttf);
}

:root {
  --maxWidth: 1400px;
  --languageColor: white;
  --animationSetting: 0.3s ease;
  --headerHeight: 160px;
  --displayBoxB: block;
  --displayBoxNone: none;
  --displayBoxF: flex;
  --zIndex0: 0;
  --zIndex1: 1;
  --zIndex2: 10;
  --zIndex4: 1000;
  --zIndex5: 5000;
  /* 背景类 */
  --z-index-background: -1;
  --z-index-watermark: 0;
  /* 布局与内容层 */
  --z-index-layout: 100;
  --z-index-sidebar: 200;
  --z-index-navbar: 300;
  /* 浮动/悬浮类 UI 组件 */
  --z-index-dropdown: 400;
  --z-index-tooltip: 500;
  --z-index-toast: 600;
  --z-index-notification: 700;
  /* 导航增强层 */
  --z-index-navigation: 800;
  --z-index-floating-btn: 850;
  /* 模态与遮罩层 */
  --z-index-modal-mask: 900;
  --z-index-modal: 1000;
  --z-index-drawer: 1100;
  --z-index-popover: 1200;
  /* 全局覆盖层（最高优先级） */
  --z-index-loading: 1300;
  --z-index-alert: 1400;
  --z-index-tour: 1500;
  --z-index-debug: 1600;
  /* 特殊场景 */
  --z-index-topmost: 9999;
}
* {
  padding: 0;
  margin: 0;
}
*.displayNone {
  display: none !important;
}

a {
  text-decoration: none;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  box-sizing: border-box;
  height: 100vh;
  font-family: MuktaRegular, "Hiragino Sans GB", "Microsoft YaHei",
    "WenQuanYi Micro Hei", sans-serif;
}

.middle {
  width: 100%;
  box-sizing: border-box;
  min-height: calc(100% - var(--headerHeight));
  background-repeat: no-repeat;
}

.header-a-sign a {
  margin: 0 18.6px;
  font-family: "MuktaRegular";
  font-weight: 400;
  font-size: 1.125rem;
  color: #0a0a0a;
}
.header-a-sign #solutions {
  margin: 0 18.6px;
  font-family: "MuktaRegular";
  font-weight: 400;
  font-size: 1.125rem;
  color: #0a0a0a;
}
hr {
  position: relative;
  display: block;
  margin: 80px auto 30px;
  width: 90%;
  border: none;
  max-width: var(--maxWidth);
  height: 1px;
  background-color: #e1e1e1;
  opacity: 0.7;
  z-index: var(--z-index-background);
}

.side-right.open {
  display: inline-block;
  /* left: -100%; */
}

.side-right {
  position: fixed;
  left: 0;
  top: 0;
  box-sizing: border-box;
  width: 60vw;
  height: 100vh;
  overflow: hidden auto;
  background-color: #fff;
  display: none;
  padding: 20px;
  box-shadow: 1px 1px 13px 0 rgba(64, 68, 73, 0.2);
  z-index: var(--z-index-modal);
  transition: right var(--animationSetting);
  --languageColor: #130f35;
}

.side-right a {
  display: block;
  padding: 0 15px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #130f35;
}
.side-right .wap-logo-box {
  display: flex;
  justify-content: center;
}
.side-right .close-btn {
  text-align: left;
  padding-bottom: 20px;
  box-sizing: border-box;
  /* width: calc(100% - 60px); */
  margin: 0 auto;
}

.side-right .close-btn span {
  width: 30px;
  height: 30px;
  display: inline-block;
  position: relative;
  transform: rotate(45deg);
}

.side-right .close-btn span::after,
.side-right .close-btn span::before {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 2px;
  height: 4px;
  background: #ffba4b;
}

.side-right .close-btn span::before {
  transform: rotate(90deg);
}
/* footer */
#footer {
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: var(--zindex0);
  width: 90%;
  max-width: 1192px;
  padding-bottom: 2rem;
  padding-top: 4rem;
  text-align: left;
}

#footer .share {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

#footer .share .logo {
  width: 7.25rem;
}

#footer .share > div img {
  width: 2.5rem;
}

#footer .footer-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 1.25rem;
}

#footer .footer-jump > div {
  min-width: 150px;
  margin-bottom: 1rem;
}

#footer .footer-jump h4 {
  font-family: "MuktaMedium";
  font-weight: 500;
  font-size: 1.125rem;
  color: #0a0a0a;
  line-height: 1.75rem;
}

#footer .footer-jump a {
  display: block;
  margin-top: 1rem;
  font-family: "MuktaRegular";
  font-weight: 400;
  font-size: 1.125rem;
  color: #737373;
  line-height: 1.75rem;
  cursor: pointer;
}

#footer .footer-jump a:hover {
  color: #ff9500;
}

.footer .footer-jump .top_app_img {
  margin-top: 1rem;
}

.footer-jump .wap_show {
  display: none;
}

#footer .Privacy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
}

#footer .Privacy a {
  font-family: "MuktaMedium";
  font-weight: 500;
  font-size: 1.125rem;
  color: #0a0a0a;
  line-height: 1.75rem;
  cursor: pointer;
}

#footer .Privacy div {
  font-family: "MuktaRegular";
  font-weight: 400;
  font-size: 1rem;
  color: #525252;
  line-height: 1.625rem;
}

#footer .language-box {
  --languageColor: #fff;
  color: var(--languageColor);
  outline: 1px solid var(--languageColor);
  border-radius: 25%/100%;
  height: 40px;
  line-height: 40px;
  display: var(--displayBoxB);
}

/* #dialog-fixed */
#dialog-fixed {
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  top: 0;
  z-index: var(--z-index-modal);
}

#support-ticket {
  width: 90%;
  max-width: 680px;
  max-height: 647px;
  background-color: #fff;
  border-radius: 2px;
  padding: 30px 20px;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

#support-ticket .tantrueguan {
  position: absolute;
  text-align: right;
}

#support-ticket .tantrueguan .close {
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: rgba(255, 158, 0, 1);
  cursor: pointer;
  display: inline-block;
  position: relative;
}

#support-ticket .tantrueguan .close::after,
#support-ticket .tantrueguan .close::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: #fff;
  left: 50%;
  top: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%) rotate(45deg);
}

#support-ticket .tantrueguan .close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#support-ticket .taninput_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 24px;
  color: #425466;
}

#support-ticket .input-box {
  margin-bottom: 25px;
}

#support-ticket .input-box p {
  font-weight: 600;
  font-size: 16px;
  color: #0a2540;
  margin-bottom: 10px;
}

#support-ticket .input-box.rule p::before {
  content: "*";
  color: #f56c6c;
  margin-right: 4px;
}

#support-ticket .input-box input,
#support-ticket .input-box textarea {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  box-sizing: border-box;
  color: #606266;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  outline: 0;
  padding: 0 15px;
  -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
  font-family: MuktaRegular, "Hiragino Sans GB", "Microsoft YaHei",
    "WenQuanYi Micro Hei", "Helvetica Neue", Helvetica, Tahoma, sans-serif;
}

#support-ticket .input-box textarea {
  height: 148px;
}

#support-ticket .input-box ::placeholder {
  color: #c0c4cc;
  font-family: MuktaRegular, "Hiragino Sans GB", "Microsoft YaHei",
    "WenQuanYi Micro Hei", "Helvetica Neue", Helvetica, Tahoma, sans-serif;
}

#support-ticket .submit-btn {
  padding: 10px 0;
  cursor: pointer;
  background: rgba(255, 158, 0, 1);
  border: 1px solid rgba(255, 158, 0, 1);
  border-radius: 4px;
  font-family: OpenSans;
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  text-align: center;
  font-style: normal;
  margin: 0 auto 20px auto;
  width: 50%;
}

.language-box {
  width: 140px;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  margin-right: 20px;
  cursor: pointer;
  --languageColor: #130f35;
  user-select: none;
  display: none !important;
}

.language-box .display-lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 15px;
  color: var(--languageColor);
}

.language-box .select-item {
  font-weight: 600;
  font-size: 16px;
  color: var(--languageColor);
}

.language-box .arrow {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-left: 1.6px solid var(--languageColor);
  border-top: 1.6px solid var(--languageColor);
  transform: rotate(45deg);
  zoom: 1.1;
  transition: all var(--animationSetting);
  transform-origin: 25% 75%;
}

.language-box.open .arrow {
  transform: rotate(225deg) translateY(3px);
}

.bottom-join-us {
  background: url(../img/footerbg.svg) no-repeat center center
    rgba(23, 23, 23, 1);
  background-size: auto 100%;
  padding: 90px 0;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.bottom-join-us h2 {
  width: 90%;
  font-family: "MuktaSemiBold";
  font-weight: 600;
  font-size: 54px;
  color: #ffffff;
  text-align: center;
  font-style: normal;
  margin-bottom: 45px;
}

.bottom-join-us p {
  width: 90%;
  font-family: "MuktaRegular";
  font-weight: 400;
  font-size: 38px;
  color: #ffffff;
  text-align: center;
  font-style: normal;
  margin-bottom: 80px;
}

.bottom-join-us .bottom-btn {
  width: 230px;
  height: 50px;
  background: linear-gradient(180deg, #ffb500 0%, #ff9e00 100%);
  box-shadow: 0px 3px 4px 0px rgba(255, 178, 59, 0.16);
  border-radius: 10px;
  font-family: "MuktaRegular";
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 0 20px;
}

.bottom-join-us .bottom-btn:hover {
  background: linear-gradient(180deg, #ff9c00 0%, #ffbb4b 100%);
}

/* --------------------  ↓-------------------- */
/* 20250821 */
#fixed-jump-icon {
  display: none;
}
#fixed-jump-icon > a {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 158, 0, 1);
  border-radius: 50%;
  position: fixed;
  right: 30px;
  bottom: 10%;
  z-index: var(--zindex0);
  background-repeat: no-repeat;
  background-size: 70% 70%;
  background-position: center;
  cursor: pointer;
}

#fixed-jump-icon > a > span {
  display: none;
  color: rgba(255, 158, 0, 1);
  position: absolute;
  left: 50%;
  font-weight: 400;
  font-size: 14px;
  transform: translate(-50%, 160%);
}

#fixed-jump-icon > a:hover span {
  display: inline-block;
}

/* -------------------- fixed-jump-icon ↑-------------------- */
.el-pagination.is-background .btn-next,
.el-pagination.is-background .btn-prev,
.el-pagination.is-background .el-pager li {
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.el-pagination.is-background .el-pager li:not(.disabled).active {
  background: #ffa51d;
}
.el-pagination.is-background .el-pager li:not(.disabled).active:hover {
  color: #fff;
}
.el-pagination.is-background .el-pager li:not(.disabled):hover {
  color: #ffa51d;
}
.loading {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 0;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.95);
}

.loading svg {
  height: 42px;
  width: 42px;
  animation: loading-rotate 2s linear infinite;
}

.loading circle {
  animation: loading-dash 1.5s ease-in-out infinite;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: #409eff;
  stroke-linecap: round;
}
.loading.show-loading {
  display: flex;
}
.loading.hide-loading {
  display: none;
}
/* ! not need now this class */
.select-lang {
  transform-origin: center top;
  overflow-y: auto;
  position: fixed;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  width: 100%;
  max-height: 250px;
  padding: 6px 0;
  transition: transform var(--animationSetting);
  transform: scaleY(0);
  top: 30px;
  /* ! not need now */
  z-index: var(--z-index-layout);
}

.select-lang.open {
  transform: scaleY(1);
}

.select-lang .item.select,
.select-lang .item:hover {
  background-color: #fff6e6;
}

.select-lang .item {
  text-align: left;
  color: #130f35;
  font-size: 17px;
  color: #130f35;
  font-size: 17px;
  height: 34px;
  line-height: 34px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 20px;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
}

/* ------------------------------------------ #fiex-big-img ------------------------------------------*/

#fiex-big-img {
  width: 80%;
  height: 80%;
  max-width: 1200px;
}

#fiex-big-img img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

/* ------------------------------------------ #fiex-big-img ------------------------------------------*

/* ------------------------------------------ advert-dialog-box ↓ ------------------------------------------ */
#advert-dialog-box.displayNone {
  transform: translateY(150%);
}

#advert-dialog-box {
  position: relative;
  width: 74%;
  max-width: 700px;
  background-color: #fff;
  transform: translateY(0%);
  transition: transform 1s ease;
  background: linear-gradient(21deg, #5f3bf3 0%, #f3bae7 100%);
  border-radius: 20px;
  box-sizing: border-box;
  padding: 2% 3%;
  will-change: transform;
  --titleFSize: 18px;
  --imgWidth: 30px;
  --marginBtm: 20px;
  --iconWidth: 60px;
}

#advert-dialog-box .dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "OPPOSans-Bold";
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  font-size: var(--titleFSize);
  height: 40px;
  margin-bottom: var(--marginBtm);
}

#advert-dialog-box .dialog-header span {
  position: relative;
  left: calc(var(--titleFSize) * -1);
}

#advert-dialog-box .dialog-header .icon_g {
  height: calc(var(--titleFSize) * 2);
  position: relative;
  left: -10px;
}

#advert-dialog-box .dialog-header .close-btn {
  height: 22px;
  cursor: pointer;
}

#advert-dialog-box .dialog-title {
  background-image: url(../img/adver_dialog_bagImg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "HarmonyOS Sans-Bold";
  font-weight: bold;
  font-size: calc(var(--titleFSize) * 1.3);
  color: #ffffff;
  position: relative;
  aspect-ratio: 600 / 91;
  max-width: 100%;
  margin-bottom: var(--marginBtm);
  text-align: center;
}

#advert-dialog-box .dialog-title-span {
  width: 100%;
}

#advert-dialog-box .dialog-title span {
  display: inline-block;
  position: relative;
}

#advert-dialog-box .dialog-title div span:nth-child(1) {
  transform: rotate(-3deg);
  top: -3px;
}

#advert-dialog-box .dialog-title div span:nth-child(2) {
  transform: rotate(-1deg);
  top: -5px;
}

#advert-dialog-box .dialog-title div span:nth-child(3) {
  color: #ffc300;
  transform: rotate(3deg);
  top: -4px;
  cursor: pointer;
}

#advert-dialog-box .dialog-title div span:nth-child(4) {
  transform: rotate(5deg);
}

#advert-dialog-box .dialog-body {
  border-radius: 8px;
  background-color: #fff;
  padding: 2% 4%;
  box-sizing: border-box;
  text-align: left;
  margin-bottom: var(--marginBtm);
}

#advert-dialog-box .active-user {
  font-family: "HarmonyOS Sans-Bold";
  font-weight: bold;
  font-size: calc(var(--titleFSize) * 1.2);
  color: #3a0ba9;
  margin-bottom: var(--marginBtm);
}

#advert-dialog-box .active-user img {
  height: calc(var(--titleFSize) * 2);
  margin-right: 5px;
  transform: translateY(25%);
}

#advert-dialog-box .countries {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  z-index: var(--zIndex1);
}

#advert-dialog-box .countries .country {
  margin: 0 5px;
  box-shadow: 0px 2px 6px 0px rgba(47, 9, 202, 0.2);
  border-radius: 4px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: calc(var(--titleFSize) * 0.85);
  border: 1px solid #d1c4ff;
  width: 92px;
  height: 43px;
  margin-top: 10px;
  position: relative;
}

#advert-dialog-box .countries .country .flag_img:hover {
  height: 70%;
}

#advert-dialog-box .countries .country .flag_img {
  height: 60%;
  transition: height 0.2s ease;
  position: relative;
  transform-origin: center center;
  border: 1px solid #d8d8d8;
  border-radius: 100%;
}

#advert-dialog-box .countries .country.KR img:first-child,
#advert-dialog-box .countries .country.JP img:first-child {
  border: 1px solid #d8d8d8;
  border-radius: 100%;
}

#advert-dialog-box .countries .country span {
  margin: 0 3px;
  position: relative;
  top: 2px;
}

#advert-dialog-box .map {
  position: relative;
  width: 100%;
  margin-top: -8%;
  z-index: var(--zIndex0);
}

#advert-dialog-box .map .map_icon {
  width: 100%;
  user-select: none;
  aspect-ratio: 538 / 177;
}

#advert-dialog-box .marks_icon {
  position: absolute;
  transform: translate(-50%, -100%);
  --zoom: 1;
}

#advert-dialog-box .marks_icon:nth-child(1) {
  left: 13%;
  top: 71%;
  zoom: calc(var(--zoom) * 1.2);
}

#advert-dialog-box .marks_icon:nth-child(2) {
  left: 29%;
  top: 79%;
  zoom: calc(var(--zoom) * 1.4);
}

#advert-dialog-box .marks_icon:nth-child(3) {
  left: 46%;
  top: 60%;
}

#advert-dialog-box .marks_icon:nth-child(4) {
  left: 57%;
  top: 88%;
  zoom: calc(var(--zoom) * 1.2);
}

#advert-dialog-box .marks_icon:nth-child(5) {
  left: 73%;
  top: 66%;
  zoom: calc(var(--zoom) * 1.4);
}

#advert-dialog-box .marks_icon:nth-child(6) {
  left: 90%;
  top: 57%;
}

#advert-dialog-box .dialog-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-bottom: var(--marginBtm);
}

#advert-dialog-box .dialog-btn .join-now,
#advert-dialog-box .dialog-btn .est-reve {
  background: #1e1f31;
  border-radius: 15px;
  width: 46%;
  font-family: "HK Grotesk-SemiBold";
  font-weight: 600;
  font-size: calc(var(--titleFSize) * 0.8);
  color: #ffffff;
  padding: 2% 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

#advert-dialog-box .dialog-btn .est-reve {
  color: #7141e3;
  background: #ffffff;
}

#advert-dialog-box .dialog-btn img {
  width: calc(var(--titleFSize) * 1.2);
}

#advert-dialog-box .dialog-tips {
  font-family: "HK Grotesk-Regular";
  font-weight: 400;
  font-size: calc(var(--titleFSize) * 0.8);
  color: #ffffff;
  text-align: left;
  display: flex;
}

#advert-dialog-box .dialog-tips span:nth-child(1) {
  position: relative;
  left: 0;
  color: #ff9d00;
  margin-right: 5px;
}

#advert-dialog-box .moeny_img {
  position: absolute;
  width: var(--iconWidth);
  transform: translate(-50%, -50%);
}

#advert-dialog-box .img_1 {
  left: 0;
  top: 50%;
}

#advert-dialog-box .img_2 {
  top: -10%;
  left: 70%;
  width: calc(var(--iconWidth) * 0.8);
}

#advert-dialog-box .img_3 {
  top: 20%;
  left: 100%;
  width: calc(var(--iconWidth) * 1.1);
}

#advert-dialog-box .img_4 {
  top: 0%;
  left: 40%;
  width: calc(var(--iconWidth) * 1.4);
}

/* ------------------------------------------ advert-dialog-box ↑ ------------------------------------------ */

/* ********************************************************* */
#advert-header {
  width: 100%;
  height: 60px;
  cursor: pointer;
  background: url(../img/pc.png) center center / auto 100% no-repeat,
    linear-gradient(21deg, rgb(96, 60, 244) 0%, rgb(239, 187, 244) 100%);
  box-sizing: border-box;
  display: block;
  position: relative;
  margin-bottom: 15px;
}

#advert-header a {
  position: absolute;
  background-color: transparent;
  width: 139px;
  height: 45px;
  top: 50%;
  left: calc(50% + 389px);
  border-radius: 30px;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

/* ********************************************************* */
/*! not need now this message-box */
.messgae-box {
  position: fixed;
  left: 50%;
  top: 10%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  padding: 5px 25px;
  border-radius: 4px;
  z-index: var(--z-index-toast);
}

/* ************************************************************ */

.AnswerBox {
  width: 80%;
  margin: auto;
  max-width: 680px;
  background-color: #fff;
  padding: 30px 20px;
  box-sizing: border-box;
  padding-top: 10px;
}

.AnswerBox .close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 30px;
}

.AnswerBox .close div {
  display: block;
  width: 28px;
  height: 28px;
  cursor: pointer;
  position: relative;
  background-color: #ff9e00;
  border-radius: 100%;
}

.AnswerBox .close div::before,
.AnswerBox .close div::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 50%;
  background-color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.AnswerBox .close div::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.AnswerBox > ._title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 24px;
  color: #425466;
}

.AnswerBox > ._content {
  font-size: 14px;
  color: #425466;
  padding: 10px 0 60px 0;
  text-align: center;
  line-height: 30px;
  word-break: keep-all;
}

.AnswerBox > ._content a {
  color: RGBA(79, 129, 255, 1);
  text-decoration: none;
}

.AnswerBox > ._btn {
  padding: 10px 0;
  cursor: pointer;
  background: rgba(255, 158, 0, 1);
  border: 1px solid rgba(255, 158, 0, 1);
  border-radius: 4px;
  font-family: OpenSans;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  text-align: center;
  font-style: normal;
  margin: 0 auto 20px auto;
  width: 50%;
}

/* **************************** */
.messgae-box.success {
  background-color: #f0f9eb;
  border-color: #e1f3d8;
  color: #67c23a;
}

.messgae-box.error {
  color: #f56c6c;
  background-color: #fef0f0;
  border-color: #fde2e2;
}

@keyframes loading-rotate {
  100% {
    transform: rotate(1turn);
  }
}

@media screen and (max-width: 1024px) {
  #footer a {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --displayBoxB: none;
    --displayBoxNone: inline-block;
    --displayBoxF: none;
  }

  #advert-header {
    background: url(../img/small_move.png) no-repeat center center,
      linear-gradient(21deg, #603cf4 0%, #efbbf4 100%);
  }

  #advert-header a {
    left: calc(50% + 123px);
    width: 83px;
    height: 31px;
  }

  #fixed-jump-icon > a {
    zoom: 0.7;
  }

  #header .header-a-sign .htop_pc {
    display: none;
  }
  /* #header .header-a-sign .onan.btn {
    display: none;
  } */
  #header .left-a-sign {
    display: none;
  }
  .bottom-join-us {
    padding: 40px 0;
  }

  .bottom-join-us h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .bottom-join-us p {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .el-pagination.is-background .btn-next,
  .el-pagination.is-background .btn-prev,
  .el-pagination.is-background .el-pager li {
    font-size: 14px;
    width: 28px;
    height: 28px;
    line-height: 28px;
  }
}

@media screen and (max-width: 600px) {
  #advert-dialog-box {
    --titleFSize: 11px;
    --imgWidth: 20px;
    --marginBtm: 10px;
    --iconWidth: 40px;
  }

  #advert-dialog-box .marks_icon {
    --zoom: 0.7;
  }

  #advert-dialog-box .countries .country {
    width: 48px;
    height: 25px;
    padding: 0 5px;
  }
}

/* ---------------html---------------------- */
@media screen and (max-width: 1360px) {
  html {
    font-size: 13px;
  }
  .footer-jump .wap_show {
    display: block;
  }
  .footer-jump .web_show {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
}

@media screen and (max-width: 500px) {
  html {
    font-size: 9px;
  }
}

@media screen and (max-width: 400px) {
  html {
    font-size: 9.5px;
  }
}
