.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translateZ(9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
}
[dir="ltr"] .Toastify__toast-container--top-left {
  left: 1em;
}
[dir="rtl"] .Toastify__toast-container--top-left {
  right: 1em;
}
.Toastify__toast-container--top-center {
  line-height: 1;
  top: var(--size-24);
  padding: var(--size-0) var(--size-24);
  width: auto;
}
[dir="ltr"] .Toastify__toast-container--top-center {
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
[dir="rtl"] .Toastify__toast-container--top-center {
  right: 50%;
  transform: translate3d(50%, 0, 0);
}
.Toastify__toast-container--top-right {
  top: 1em;
}
[dir="ltr"] .Toastify__toast-container--top-right {
  right: 1em;
}
[dir="rtl"] .Toastify__toast-container--top-right {
  left: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
}
[dir="ltr"] .Toastify__toast-container--bottom-left {
  left: 1em;
}
[dir="rtl"] .Toastify__toast-container--bottom-left {
  right: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
}
[dir="ltr"] .Toastify__toast-container--bottom-center {
  left: 50%;
  margin-left: -160px;
}
[dir="rtl"] .Toastify__toast-container--bottom-center {
  right: 50%;
  margin-right: -160px;
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
}
[dir="ltr"] .Toastify__toast-container--bottom-right {
  right: 1em;
}
[dir="rtl"] .Toastify__toast-container--bottom-right {
  left: 1em;
}
.Toastify__toast {
  background: var(--bds-gray-bg-float);
  color: var(--gray-09);
  position: relative;
  box-sizing: border-box;
  margin-bottom: var(--size-8);
  padding: var(--size-16);
  border-radius: var(--size-4);
  box-shadow: var(--bds-shadow-l2);
  display: flex;
  justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  cursor: pointer;
}
[dir="ltr"] .Toastify__toast {
  direction: ltr;
}
[dir="ltr"] .Toastify__toast--rtl,
[dir="rtl"] .Toastify__toast {
  direction: rtl;
}
[dir="rtl"] .Toastify__toast--rtl {
  direction: ltr;
}
.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1;
}
@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0;
  }
}
.Toastify__close-button {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}
.Toastify__close-button--default {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button:focus,
.Toastify__close-button:hover {
  opacity: 1;
}
@-webkit-keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: hsla(0, 0%, 100%, 0.7);
}
[dir="ltr"] .Toastify__progress-bar {
  left: 0;
  transform-origin: left;
}
[dir="rtl"] .Toastify__progress-bar {
  right: 0;
  transform-origin: right;
}
.Toastify__progress-bar--animated {
  -webkit-animation: Toastify__trackProgress linear 1 forwards;
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
[dir="ltr"] .Toastify__progress-bar--rtl {
  right: 0;
  left: auto;
  transform-origin: right;
}
[dir="rtl"] .Toastify__progress-bar--rtl {
  left: 0;
  right: auto;
  transform-origin: left;
}
[dir="ltr"] .Toastify__progress-bar--default {
  background: linear-gradient(
    90deg,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
}
[dir="rtl"] .Toastify__progress-bar--default {
  background: linear-gradient(
    270deg,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
}
@-webkit-keyframes Toastify__bounceInRight-ltr {
  0%,
  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;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@-webkit-keyframes Toastify__bounceInRight-rtl {
  0%,
  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;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceInRight-ltr {
  0%,
  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;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceInRight-rtl {
  0%,
  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;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@-webkit-keyframes Toastify__bounceOutRight-ltr {
  90% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@-webkit-keyframes Toastify__bounceOutRight-rtl {
  90% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceOutRight-ltr {
  90% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceOutRight-rtl {
  90% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@-webkit-keyframes Toastify__bounceInLeft-ltr {
  0%,
  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;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@-webkit-keyframes Toastify__bounceInLeft-rtl {
  0%,
  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;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceInLeft-ltr {
  0%,
  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;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceInLeft-rtl {
  0%,
  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;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@-webkit-keyframes Toastify__bounceOutLeft-ltr {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@-webkit-keyframes Toastify__bounceOutLeft-rtl {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceOutLeft-ltr {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceOutLeft-rtl {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@-webkit-keyframes Toastify__bounceInUp {
  0%,
  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;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes Toastify__bounceInUp {
  0%,
  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;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
@-webkit-keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@-webkit-keyframes Toastify__bounceInDown {
  0%,
  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;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceInDown {
  0%,
  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;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@-webkit-keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
[dir="ltr"] .Toastify__bounce-enter--bottom-left,
[dir="ltr"] .Toastify__bounce-enter--top-left {
  -webkit-animation-name: Toastify__bounceInLeft-ltr;
  animation-name: Toastify__bounceInLeft-ltr;
}
[dir="rtl"] .Toastify__bounce-enter--bottom-left,
[dir="rtl"] .Toastify__bounce-enter--top-left {
  -webkit-animation-name: Toastify__bounceInLeft-rtl;
  animation-name: Toastify__bounceInLeft-rtl;
}
[dir="ltr"] .Toastify__bounce-enter--bottom-right,
[dir="ltr"] .Toastify__bounce-enter--top-right {
  -webkit-animation-name: Toastify__bounceInRight-ltr;
  animation-name: Toastify__bounceInRight-ltr;
}
[dir="rtl"] .Toastify__bounce-enter--bottom-right,
[dir="rtl"] .Toastify__bounce-enter--top-right {
  -webkit-animation-name: Toastify__bounceInRight-rtl;
  animation-name: Toastify__bounceInRight-rtl;
}
.Toastify__bounce-enter--top-center {
  -webkit-animation-name: Toastify__bounceInDown;
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  -webkit-animation-name: Toastify__bounceInUp;
  animation-name: Toastify__bounceInUp;
}
[dir="ltr"] .Toastify__bounce-exit--bottom-left,
[dir="ltr"] .Toastify__bounce-exit--top-left {
  -webkit-animation-name: Toastify__bounceOutLeft-ltr;
  animation-name: Toastify__bounceOutLeft-ltr;
}
[dir="rtl"] .Toastify__bounce-exit--bottom-left,
[dir="rtl"] .Toastify__bounce-exit--top-left {
  -webkit-animation-name: Toastify__bounceOutLeft-rtl;
  animation-name: Toastify__bounceOutLeft-rtl;
}
[dir="ltr"] .Toastify__bounce-exit--bottom-right,
[dir="ltr"] .Toastify__bounce-exit--top-right {
  -webkit-animation-name: Toastify__bounceOutRight-ltr;
  animation-name: Toastify__bounceOutRight-ltr;
}
[dir="rtl"] .Toastify__bounce-exit--bottom-right,
[dir="rtl"] .Toastify__bounce-exit--top-right {
  -webkit-animation-name: Toastify__bounceOutRight-rtl;
  animation-name: Toastify__bounceOutRight-rtl;
}
.Toastify__bounce-exit--top-center {
  -webkit-animation-name: Toastify__bounceOutUp;
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  -webkit-animation-name: Toastify__bounceOutDown;
  animation-name: Toastify__bounceOutDown;
}
@-webkit-keyframes Toastify__zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes Toastify__zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes Toastify__zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  -webkit-animation-name: Toastify__zoomIn;
  animation-name: Toastify__zoomIn;
}
.Toastify__zoom-exit {
  -webkit-animation-name: Toastify__zoomOut;
  animation-name: Toastify__zoomOut;
}
@-webkit-keyframes Toastify__flipIn-ltr {
  0% {
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@-webkit-keyframes Toastify__flipIn-rtl {
  0% {
    transform: perspective(400px) rotate3d(-1, 0, 0, -90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(-1, 0, 0, 20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(-1, 0, 0, -10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(-1, 0, 0, 5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipIn-ltr {
  0% {
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipIn-rtl {
  0% {
    transform: perspective(400px) rotate3d(-1, 0, 0, -90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(-1, 0, 0, 20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(-1, 0, 0, -10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(-1, 0, 0, 5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@-webkit-keyframes Toastify__flipOut-ltr {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@-webkit-keyframes Toastify__flipOut-rtl {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(-1, 0, 0, 20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(-1, 0, 0, -90deg);
    opacity: 0;
  }
}
@keyframes Toastify__flipOut-ltr {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes Toastify__flipOut-rtl {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(-1, 0, 0, 20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(-1, 0, 0, -90deg);
    opacity: 0;
  }
}
[dir="ltr"] .Toastify__flip-enter {
  -webkit-animation-name: Toastify__flipIn-ltr;
  animation-name: Toastify__flipIn-ltr;
}
[dir="rtl"] .Toastify__flip-enter {
  -webkit-animation-name: Toastify__flipIn-rtl;
  animation-name: Toastify__flipIn-rtl;
}
[dir="ltr"] .Toastify__flip-exit {
  -webkit-animation-name: Toastify__flipOut-ltr;
  animation-name: Toastify__flipOut-ltr;
}
[dir="rtl"] .Toastify__flip-exit {
  -webkit-animation-name: Toastify__flipOut-rtl;
  animation-name: Toastify__flipOut-rtl;
}
@-webkit-keyframes Toastify__slideInRight-ltr {
  0% {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@-webkit-keyframes Toastify__slideInRight-rtl {
  0% {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes Toastify__slideInRight-ltr {
  0% {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes Toastify__slideInRight-rtl {
  0% {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@-webkit-keyframes Toastify__slideInLeft-ltr {
  0% {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@-webkit-keyframes Toastify__slideInLeft-rtl {
  0% {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes Toastify__slideInLeft-ltr {
  0% {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes Toastify__slideInLeft-rtl {
  0% {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@-webkit-keyframes Toastify__slideInUp {
  0% {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes Toastify__slideInUp {
  0% {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@-webkit-keyframes Toastify__slideInDown {
  0% {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes Toastify__slideInDown {
  0% {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@-webkit-keyframes Toastify__slideOutRight-ltr {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@-webkit-keyframes Toastify__slideOutRight-rtl {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutRight-ltr {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutRight-rtl {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@-webkit-keyframes Toastify__slideOutLeft-ltr {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@-webkit-keyframes Toastify__slideOutLeft-rtl {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft-ltr {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft-rtl {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@-webkit-keyframes Toastify__slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@-webkit-keyframes Toastify__slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
[dir="ltr"] .Toastify__slide-enter--bottom-left,
[dir="ltr"] .Toastify__slide-enter--top-left {
  -webkit-animation-name: Toastify__slideInLeft-ltr;
  animation-name: Toastify__slideInLeft-ltr;
}
[dir="rtl"] .Toastify__slide-enter--bottom-left,
[dir="rtl"] .Toastify__slide-enter--top-left {
  -webkit-animation-name: Toastify__slideInLeft-rtl;
  animation-name: Toastify__slideInLeft-rtl;
}
[dir="ltr"] .Toastify__slide-enter--bottom-right,
[dir="ltr"] .Toastify__slide-enter--top-right {
  -webkit-animation-name: Toastify__slideInRight-ltr;
  animation-name: Toastify__slideInRight-ltr;
}
[dir="rtl"] .Toastify__slide-enter--bottom-right,
[dir="rtl"] .Toastify__slide-enter--top-right {
  -webkit-animation-name: Toastify__slideInRight-rtl;
  animation-name: Toastify__slideInRight-rtl;
}
.Toastify__slide-enter--top-center {
  -webkit-animation-name: Toastify__slideInDown;
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  -webkit-animation-name: Toastify__slideInUp;
  animation-name: Toastify__slideInUp;
}
[dir="ltr"] .Toastify__slide-exit--bottom-left,
[dir="ltr"] .Toastify__slide-exit--top-left {
  -webkit-animation-name: Toastify__slideOutLeft-ltr;
  animation-name: Toastify__slideOutLeft-ltr;
}
[dir="rtl"] .Toastify__slide-exit--bottom-left,
[dir="rtl"] .Toastify__slide-exit--top-left {
  -webkit-animation-name: Toastify__slideOutLeft-rtl;
  animation-name: Toastify__slideOutLeft-rtl;
}
[dir="ltr"] .Toastify__slide-exit--bottom-right,
[dir="ltr"] .Toastify__slide-exit--top-right {
  -webkit-animation-name: Toastify__slideOutRight-ltr;
  animation-name: Toastify__slideOutRight-ltr;
}
[dir="rtl"] .Toastify__slide-exit--bottom-right,
[dir="rtl"] .Toastify__slide-exit--top-right {
  -webkit-animation-name: Toastify__slideOutRight-rtl;
  animation-name: Toastify__slideOutRight-rtl;
}
.Toastify__slide-exit--top-center {
  -webkit-animation-name: Toastify__slideOutUp;
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  -webkit-animation-name: Toastify__slideOutDown;
  animation-name: Toastify__slideOutDown;
}
.Toastify__toast-container--top-center .Toastify__toast-body {
  align-items: center;
  display: flex;
  font-size: var(--font-size-16);
}
.Toastify__toast-container--top-center .Toastify__toast-body:before {
  font-family: by-iconfont !important;
  font-size: var(--font-size-18);
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[dir="ltr"]
  .Toastify__toast-container--top-center
  .Toastify__toast-body:before {
  margin-right: var(--size-12);
}
[dir="rtl"]
  .Toastify__toast-container--top-center
  .Toastify__toast-body:before {
  margin-left: var(--size-12);
}
.Toastify__toast-container--top-center
  .Toastify__toast--error
  .Toastify__toast-body:before {
  color: var(--f-danger-01);
  content: "\e830";
}
.Toastify__toast-container--top-center
  .Toastify__toast--warning
  .Toastify__toast-body:before {
  color: var(--f-warning-01);
  content: "\e83b";
}
.Toastify__toast-container--top-center
  .Toastify__toast--success
  .Toastify__toast-body:before {
  color: var(--f-success-01);
  content: "\e83c";
}
.Toastify__toast-container--bottom-right {
  width: 336px;
}
.by-notify__title {
  align-items: center;
  display: flex;
  margin-bottom: var(--size-12);
}
[dir="ltr"] .by-notify__title .iconfont.icon {
  margin-right: var(--size-12);
}
[dir="rtl"] .by-notify__title .iconfont.icon {
  margin-left: var(--size-12);
}
.Toastify__toast-icon {
  display: none;
}
.pnl-display-col {
  display: flex;
  align-items: center;
  line-height: 14px;
  bottom: 8px;
}
.pnl-display-display {
  display: flex;
  flex-direction: column;
}
.pnl-display-share {
  width: 14px;
  height: 14px;
  cursor: pointer;
}
[dir="ltr"] .pnl-display-share {
  margin-left: 8px;
}
[dir="rtl"] .pnl-display-share {
  margin-right: 8px;
}
.pnl-display-share img {
  width: 14px;
}
.ct-newcomer-village-right {
  width: 480px;
  height: 600px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.ct-newcomer-village-right .ct-newcomer-village-right-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  display: flex;
  justify-content: space-between;
}
.ct-newcomer-village-right
  .ct-newcomer-village-right-title
  .ct-newcomer-village-close {
  color: #71757a;
  font-size: 20px;
  cursor: pointer;
}
.ct-newcomer-village-right .ct-newcomer-village-right-context {
  margin-top: 18px;
  position: relative;
  flex: 1 1;
}
.ct-newcomer-village-right
  .ct-newcomer-village-right-context
  .ct-newcomer-village-rules {
  position: absolute;
  top: 18px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  z-index: 10;
}
[dir="ltr"]
  .ct-newcomer-village-right
  .ct-newcomer-village-right-context
  .ct-newcomer-village-rules {
  right: 0;
}
[dir="rtl"]
  .ct-newcomer-village-right
  .ct-newcomer-village-right-context
  .ct-newcomer-village-rules {
  left: 0;
}
.ct-newcomer-village-right
  .ct-newcomer-village-right-context
  .ct-newcomer-village-rules
  .icon-question {
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  cursor: pointer;
  z-index: 2;
}
[dir="ltr"]
  .ct-newcomer-village-right
  .ct-newcomer-village-right-context
  .ct-newcomer-village-rules
  .icon-question {
  margin-left: 5px;
}
[dir="rtl"]
  .ct-newcomer-village-right
  .ct-newcomer-village-right-context
  .ct-newcomer-village-rules
  .icon-question {
  margin-right: 5px;
}
.ct-newcomer-village-right .ant-tabs .ant-tabs-tab {
  font-size: 16px;
}
.leader-profile__avatar-box {
  width: 104px;
  height: 104px;
  position: relative;
  margin: 0 auto 16px;
}
.leader-profile__avatar-img {
  border-radius: 50%;
  display: block;
  width: 100%;
  height: 100%;
}
.leader-profile__avatar-country {
  position: absolute;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  bottom: 0;
  font-weight: 500;
  font-size: 14px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  background-color: #fff;
  border-radius: 50%;
}
[dir="ltr"] .leader-profile__avatar-country {
  right: 0;
}
[dir="rtl"] .leader-profile__avatar-country {
  left: 0;
}
.leader-profile__nickname {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  text-align: center;
}
.ct-newcomer-village__ab-line {
  justify-content: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  margin-top: 8px;
}
.new-comer-task__progress-bar {
  width: 263px;
  margin: 48px auto 0;
  position: relative;
}
.new-comer-task__progress-bar .ant-progress-inner {
  padding: 4px 5px;
}
.new-comer-task__progress-bar-percent {
  width: 100%;
  height: 100%;
  font-weight: 600;
  font-size: 14px;
  color: #542a18;
  position: absolute;
  top: 0;
  justify-content: center;
}
[dir="ltr"] .new-comer-task__progress-bar-percent {
  left: 0;
}
[dir="rtl"] .new-comer-task__progress-bar-percent {
  right: 0;
}
.new-comer-task__mission-complete {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #471b11;
  opacity: 0.5;
  margin-top: 8px;
  text-align: center;
}
.leader-profile__socialBox {
  display: flex;
  padding: 12px 24px;
  justify-content: start;
  flex-direction: row;
  align-items: start;
  border-radius: 12px;
  border: 1px solid #f3f5f7;
  border: 1px solid var(--gray-bg-ele-line, var(--bds-gray-ele-line, #f3f5f7));
  background: hsla(0, 0%, 100%, 0.1);
  grid-gap: 12px;
  gap: 12px;
  margin: 54px 24px 0;
  cursor: pointer;
}
.leader-profile_socialBoxLeft > img {
  width: 24px;
  height: 24px;
}
.leader-profile_socialBoxRgiht {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.leader-profile_socialBoxRgiht > .title {
  color: #121214;
  color: var(--gray-tt-1-title, var(--bds-gray-t1-title, #121214));
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}
.leader-profile_socialBoxRgiht > .content {
  color: #81858c;
  color: var(--gray-tt-2, var(--bds-gray-t2, #81858c));
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.ct-overflow-logo-dialog .by-modal__container {
  width: 440px;
  border-radius: 16px;
}
.ct-overflow-logo-dialog .by-modal__container .by-dialog__body {
  padding: 0;
}
.ct-overflow-logo-dialog .ct-overflow-logo-dialog-inside {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 24px;
}
.ct-overflow-logo-dialog
  .ct-overflow-logo-dialog-inside
  .ct-overflow-dialog-logo {
  position: absolute;
  display: block;
}
.ct-overflow-logo-dialog
  .ct-overflow-logo-dialog-inside
  .ct-overflow-logo-dialog-title {
  margin-top: 64px;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.ct-overflow-logo-dialog
  .ct-overflow-logo-dialog-inside
  .ct-overflow-logo-dialog-subTitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-top: 16px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
.ct-overflow-logo-dialog
  .ct-overflow-logo-dialog-inside
  .ct-overflow-logo-dialog-btn {
  width: 392px;
  height: 48px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  border-radius: 8px;
  background: #f7a600;
  background: var(--bds-brand-700-normal, #f7a600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 24px;
}
.ct-overflow__mission-complete-img {
  width: 160px;
  top: -68px;
}
.ct-overflow__medal-complete-img {
  width: 164px;
  top: -77px;
}
.ct-task-list {
  overflow: scroll;
  width: 440px;
  height: 460px;
}
.ct-task-list .ct-task-list-item {
  width: 432px;
  padding: 24px;
  border: 1px solid #f3f5f7;
  border: 1px solid var(--bds-gray-ele-line, #f3f5f7);
  border-radius: 12px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ct-task-list .ct-task-list-item:not(:first-child) {
  margin-top: 16px;
}
.ct-task-list .ct-task-list-item .ct-task-list-item-left {
  display: flex;
  align-items: center;
}
[dir="ltr"] .ct-task-list .ct-task-list-item .ct-task-list-item-left {
  padding-right: 20px;
}
[dir="rtl"] .ct-task-list .ct-task-list-item .ct-task-list-item-left {
  padding-left: 20px;
}
.ct-task-list
  .ct-task-list-item
  .ct-task-list-item-left
  .ct-task-list-title-box {
  display: flex;
  flex-direction: column;
}
[dir="ltr"]
  .ct-task-list
  .ct-task-list-item
  .ct-task-list-item-left
  .ct-task-list-title-box {
  margin-left: 12px;
}
[dir="rtl"]
  .ct-task-list
  .ct-task-list-item
  .ct-task-list-item-left
  .ct-task-list-title-box {
  margin-right: 12px;
}
.ct-task-list
  .ct-task-list-item
  .ct-task-list-item-left
  .ct-task-list-title-box
  .ct-task-list-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.ct-task-list
  .ct-task-list-item
  .ct-task-list-item-left
  .ct-task-list-title-box
  .ct-task-list-sub-title {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  margin-top: 2px;
}
.ct-task-list
  .ct-task-list-item
  .ct-task-list-item-left
  .ct-task-list-item-left-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ct-task-list .ct-task-list-item .ct-task-list-item-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ct-task-list
  .ct-task-list-item
  .ct-task-list-item-right
  .ct-task-list-item-right-btn {
  height: 32px;
  width: 96px;
  border-radius: 4px;
  border-radius: var(--bds-border-radius-button, 4px);
  padding: 0 3px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  text-align: center;
}
.ct-task-list
  .ct-task-list-item
  .ct-task-list-item-right
  .ct-task-list-item-right-text {
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  margin-top: 2px;
}
.ct-task-list-item-right .ct-task-list-item__right-btn--MISSION_STATUS_FINISH {
  background: #f3f5f7;
  background: var(--bds-gray-ele-line, #f3f5f7);
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
  cursor: not-allowed;
}
.ct-task-list-item__right-btn--MISSION_STATUS_WAIT_CONFIRMED {
  background: #f7a600;
  background: var(--bds-brand-700-normal, #f7a600);
  border: 1px solid #f7a600;
  border: 1px solid var(--bds-brand-700-normal, #f7a600);
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.ct-task-list-item__right-btn--MISSION_STATUS_IN_PROCESS,
.ct-task-list-item__right-btn--MISSION_STATUS_NOT_START_UNSPECIFIED {
  border: 1px solid #f7a600;
  border: 1px solid var(--bds-brand-700-normal, #f7a600);
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
.ct-new__task-list--empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ct-task-item__icon-img {
  border-radius: 50%;
  display: block;
  width: 100%;
  height: 100%;
}
.ct-new__task-empty-title {
  font-size: 14px;
  line-height: 22px;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
  margin-top: 8px;
}
.ct-new__task-list-empty-img {
  width: 128px;
  height: 96px;
}
.ct-task-list_title {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
  margin-top: 24px;
}
[dir="ltr"] .ct-task-list_title {
  text-align: left;
}
[dir="rtl"] .ct-task-list_title {
  text-align: right;
}
.ct-task-list-detail {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
.ct-newcomer-village .by-modal__container {
  width: 856px;
  height: 600px;
}
.ct-newcomer-village .by-modal__container .by-dialog__body {
  padding: 0;
}
.ct-newcomer-village .ct-newcomer-village-inside {
  width: 856px;
  height: 600px;
  display: flex;
}
.ct-newcomer-village .ct-newcomer-village-left {
  width: 376px;
  height: 600px;
  overflow: hidden;
}
[dir="ltr"] .ct-newcomer-village .ct-newcomer-village-left {
  background: linear-gradient(111.39deg, #ffe1a3 21.86%, #ffcb66 59.16%);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
[dir="rtl"] .ct-newcomer-village .ct-newcomer-village-left {
  background: linear-gradient(-111.39deg, #ffe1a3 21.86%, #ffcb66 59.16%);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.ct-newcomer-village .ct-newcomer-village-left .ct-newcomer-village-left-top {
  height: 447px;
  width: 376px;
  position: relative;
}
.ct-newcomer-village
  .ct-newcomer-village-left
  .ct-newcomer-village-left-top
  .ct-newcomer-village-header-img {
  width: 376px;
  position: absolute;
  top: 0;
}
[dir="ltr"]
  .ct-newcomer-village
  .ct-newcomer-village-left
  .ct-newcomer-village-left-top
  .ct-newcomer-village-header-img {
  left: 0;
}
[dir="rtl"]
  .ct-newcomer-village
  .ct-newcomer-village-left
  .ct-newcomer-village-left-top
  .ct-newcomer-village-header-img {
  right: 0;
}
.ct-newcomer-village
  .ct-newcomer-village-left
  .ct-newcomer-village-left-bottom {
  width: 375px;
  height: 153px;
  background: hsla(0, 0%, 100%, 0.31);
  position: relative;
  padding: 16px 24px 26px;
}
.ct-newcomer-village
  .ct-newcomer-village-left
  .ct-newcomer-village-left-bottom
  .ct-newcomer-village-left-bottom-img {
  position: absolute;
  width: 96.56px;
  height: 103px;
  bottom: 0;
}
[dir="ltr"]
  .ct-newcomer-village
  .ct-newcomer-village-left
  .ct-newcomer-village-left-bottom
  .ct-newcomer-village-left-bottom-img {
  right: 11px;
}
[dir="rtl"]
  .ct-newcomer-village
  .ct-newcomer-village-left
  .ct-newcomer-village-left-bottom
  .ct-newcomer-village-left-bottom-img {
  left: 11px;
}
.ct-newcomer-village
  .ct-newcomer-village-left
  .ct-newcomer-village-left-bottom
  .ct-newcomer-village-left-bottom-text-box {
  width: 273px;
  height: 112px;
}
.ct-newcomer-village
  .ct-newcomer-village-left
  .ct-newcomer-village-left-bottom
  .ct-newcomer-village-left-bottom-text-box
  .ct-newcomer-village-left-bottom-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.ct-newcomer-village
  .ct-newcomer-village-left
  .ct-newcomer-village-left-bottom
  .ct-newcomer-village-left-bottom-text-box
  .ct-newcomer-village-left-bottom-subtitle {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  margin-top: 4px;
}
.ct-newcomer-village
  .ct-newcomer-village-left
  .ct-newcomer-village-left-bottom
  .ct-newcomer-village-left-bottom-text-box
  .ct-newcomer-village-left-bottom-btn {
  padding: 0 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  background: #f7a600;
  background: var(--bds-brand-700-normal, #f7a600);
  border-radius: 60px;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  margin-top: 16px;
  cursor: pointer;
}
.leader-profile__avatar-empty-top {
  height: 87px;
}
.copy-pro-visible-eye {
  font-size: 16px;
  height: 18px;
  cursor: pointer;
}
.ld-lt-hd__asset-visible {
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ld-lt-hd__asset-visible.copy-pro-visible-eye {
  font-size: 14px;
  height: 14px;
  line-height: 14px;
}
.leader-grade_level-icon {
  display: block;
}
.leader-grade_level-icon.leader-grade_level-icon--x-large {
  width: 40px;
  height: 40px;
}
.leader-grade_level-icon.leader-grade_level-icon--large {
  width: 24px;
  height: 24px;
}
.leader-grade_level-icon.leader-grade_level-icon--middle {
  width: 20px;
  height: 20px;
}
.leader-grade_level-icon.leader-grade_level-icon--mini {
  width: 18px;
  height: 18px;
}
.leader-grade_level-icon.leader-grade_level-icon--small {
  width: 14px;
  height: 14px;
}
.leader-grade__level-tp-wrap .ant-tooltip-inner {
  padding: 16px;
}
.leader-grade__level-tp-box {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.leader-grade__level-tp-exp {
  font-size: 16px;
  line-height: 24px;
}
.leader-grade__level-tp-cont {
  margin-top: 4px;
}
.leader-grade__level-tp-last-cont {
  font-weight: 400;
  margin-top: 4px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
.leader-grade__level-tp-jump {
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
[dir="ltr"] .leader-grade__level-tp-jump {
  margin-left: 4px;
}
[dir="rtl"] .leader-grade__level-tp-jump {
  margin-right: 4px;
}
.leader-grade__level-tp-time {
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
.leader-grade__level-tp-wrap.ant-tooltip {
  max-width: 288px;
}
.ct-third-app__strategy-name {
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  color: #fff;
  flex-shrink: 0;
}
[dir="ltr"] .ct-third-app__strategy-name {
  margin-left: 2px;
}
[dir="rtl"] .ct-third-app__strategy-name {
  margin-right: 2px;
}
.third-app__strategy-icon {
  width: 16px;
  height: 16px;
  display: block;
}
.third-app__strategy-cont {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.ld-third__profile-modal {
  flex-shrink: 0;
}
.ld-third__profile-modal .ct-third-app__strategy-name {
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  font-weight: 600;
}
[dir="ltr"] .ld-third__profile-modal .ct-third-app__strategy-name {
  padding: 0 4px 0 0;
}
[dir="rtl"] .ld-third__profile-modal .ct-third-app__strategy-name {
  padding: 0 0 0 4px;
}
.ld-third__ld-center-modal .ct-third-app__strategy-name {
  font-size: 12px;
  line-height: 18px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-weight: 600;
}
[dir="ltr"] .ld-third__ld-center-modal .ct-third-app__strategy-name {
  padding: 0 12px 0 4px;
}
[dir="rtl"] .ld-third__ld-center-modal .ct-third-app__strategy-name {
  padding: 0 4px 0 12px;
}
.ld-third__fol-set-dialog {
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  font-weight: 600;
}
.no-max-width.ant-tooltip {
  max-width: none;
}
.ct-game-icon__jump-title {
  color: #d6850d;
  color: var(--Brand-900-text, var(--bds-brand-900-text, #d6850d));
  font-weight: 400;
  cursor: pointer;
}
.ct-game-icon__jump-cont,
.ct-game-icon__jump-title {
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
}
.ct-game-icon__jump-cont {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-weight: 500;
}
.ct-game-icon__jump-box {
  display: flex;
  flex-direction: column;
  grid-gap: 4px;
  gap: 4px;
}
.ld-list-hd__no-login-desc {
  display: inline-flex;
  align-items: center;
  grid-gap: 24px;
  gap: 24px;
  color: #fff;
  color: var(--gray-tt-1-title, #fff);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}
.ld-list-hd__item-ver-line {
  width: 1px;
  background-color: #71757a;
  height: 28px;
}
.ld-list-hd__no-login-sub-desc {
  color: #adb1b8;
  color: var(
    --gray-tt-2,
    var(--bds-badge-sup-type-secondary-text-color, #adb1b8)
  );
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.pro-onboard__item-title--loading {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
[dir="ltr"] .pro-onboard__item-title--loading {
  -webkit-animation: ct-pro-loading-animation-ltr 1s ease-in-out infinite;
  animation: ct-pro-loading-animation-ltr 1s ease-in-out infinite;
}
[dir="rtl"] .pro-onboard__item-title--loading {
  -webkit-animation: ct-pro-loading-animation-rtl 1s ease-in-out infinite;
  animation: ct-pro-loading-animation-rtl 1s ease-in-out infinite;
}
@-webkit-keyframes ct-pro-loading-animation-ltr {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@-webkit-keyframes ct-pro-loading-animation-rtl {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-1turn);
  }
}
@keyframes ct-pro-loading-animation-ltr {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes ct-pro-loading-animation-rtl {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-1turn);
  }
}
.ld-lst-hd__opt-card {
  border-radius: 16px;
  background: #16171a;
  background: var(--gray-bg-bg-card, #16171a);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  max-width: 390px;
}
.ld-lst-hd__opt-card-icon {
  display: block;
  height: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
[dir="ltr"] .ld-lst-hd__opt-card-icon {
  right: -12px;
}
[dir="rtl"] .ld-lst-hd__opt-card-icon {
  left: -12px;
}
.ld-lst-hd__opt-card-tit {
  color: #fff;
  color: var(--gray-tt-1-title, #fff);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}
.ld-lst-hd__opt-card-desc {
  color: #71757a;
  color: var(--gray-tt-3, #71757a);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.ld-lst-hd__opt-card-left {
  flex: 1 1;
  position: relative;
  z-index: 10;
}
[dir="ltr"] .ld-lst-hd__opt-card-left {
  padding: 11px 56px 11px 24px;
}
[dir="rtl"] .ld-lst-hd__opt-card-left {
  padding: 11px 24px 11px 56px;
}
.ld-list-hd__icon-bg {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  cursor: pointer;
  color: transparent;
  -webkit-background-clip: text;
}
[dir="ltr"] .ld-list-hd__icon-bg {
  background-image: linear-gradient(
    90deg,
    #c69f58,
    #ffeecf 35%,
    #a56f2a 50%,
    #c69f58 90%
  );
}
[dir="rtl"] .ld-list-hd__icon-bg {
  background-image: linear-gradient(
    -90deg,
    #c69f58,
    #ffeecf 35%,
    #a56f2a 50%,
    #c69f58 90%
  );
}
.ld-lst-hd__opt-card:hover .ld-lst-hd____right-arrow {
  display: block;
}
.ld-lst-hd____right-arrow {
  display: none;
  width: 16px;
  height: 16px;
  -webkit-mask: url("right-arrow.958bb9fc.svg") no-repeat;
  mask: url("right-arrow.958bb9fc.svg") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
[dir="ltr"] .ld-lst-hd____right-arrow {
  margin-left: 4px;
  background: linear-gradient(
    90deg,
    #c69f58 17.77%,
    #e3c793 38.15%,
    #c49b5f 65.48%,
    #c69f58 88%
  );
}
[dir="rtl"] .ld-lst-hd____right-arrow {
  margin-right: 4px;
  background: linear-gradient(
    -90deg,
    #c69f58 17.77%,
    #e3c793 38.15%,
    #c49b5f 65.48%,
    #c69f58 88%
  );
}
.recommend-list-skeleton-list {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.rcs-module {
  width: 100%;
  background: #f3f5f7;
  background: var(--bds-gray-ele-line, #f3f5f7);
  background-size: 400% 100%;
}
[dir="ltr"] .rcs-module {
  background-position: 100% 50%;
  background-image: linear-gradient(
    90deg,
    #e9edf2 25%,
    #f3f5f7 37%,
    #e9edf2 63%
  );
  background-image: linear-gradient(
    90deg,
    var(--bds-gray-ele-border, #e9edf2) 25%,
    var(--bds-gray-ele-line, #f3f5f7) 37%,
    var(--bds-gray-ele-border, #e9edf2) 63%
  );
  -webkit-animation: skeleton-loading-ltr 1.4s ease infinite;
  animation: skeleton-loading-ltr 1.4s ease infinite;
}
[dir="rtl"] .rcs-module {
  background-position: 0 50%;
  background-image: linear-gradient(
    -90deg,
    #e9edf2 25%,
    #f3f5f7 37%,
    #e9edf2 63%
  );
  background-image: linear-gradient(
    -90deg,
    var(--bds-gray-ele-border, #e9edf2) 25%,
    var(--bds-gray-ele-line, #f3f5f7) 37%,
    var(--bds-gray-ele-border, #e9edf2) 63%
  );
  -webkit-animation: skeleton-loading-rtl 1.4s ease infinite;
  animation: skeleton-loading-rtl 1.4s ease infinite;
}
.recommend-card-classic-skeleton {
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
  gap: 16px;
  width: 100%;
  height: 279px;
  box-sizing: border-box;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
}
.recommend-card-classic-skeleton.recommend-card-skeleton--padding {
  padding: 32px 24px 0;
  width: 282px;
  height: 330px;
}
.recommend-card-classic-skeleton .rcs-t-l {
  width: 62px;
  height: 62px;
  padding: 24px;
  border-radius: 50%;
}
.recommend-card-skeleton {
  width: 320px;
  height: 360px;
  padding: 38px 24px 0;
  box-sizing: border-box;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
}
[dir="ltr"] .recommend-card-skeleton {
  margin-right: 24px;
}
[dir="rtl"] .recommend-card-skeleton {
  margin-left: 24px;
}
.recommend-card-skeleton.small {
  width: 282px;
  height: 318px;
}
.recommend-card-skeleton.small .rcs-t-l {
  width: 62px;
  height: 62px;
  padding: 24px;
  border-radius: 50%;
}
.recommend-card-skeleton.small-h {
  width: 282px;
  height: 241px;
}
.recommend-card-skeleton.small-h .rcs-t-l {
  width: 62px;
  height: 62px;
  padding: 24px;
  border-radius: 50%;
}
.recommend-card-skeleton.half {
  width: 168px;
  overflow: hidden;
}
[dir="ltr"] .recommend-card-skeleton.half {
  margin-right: 0;
}
[dir="rtl"] .recommend-card-skeleton.half {
  margin-left: 0;
}
.recommend-card-skeleton.half .rcs-t-l {
  min-width: 90px;
}
.recommend-card-skeleton .recommend-card-skeleton-t {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.recommend-card-skeleton .rcs-t-l {
  width: 90px;
  height: 90px;
  border-radius: 8px;
}
[dir="ltr"] .recommend-card-skeleton .rcs-t-l {
  margin-right: 10px;
}
[dir="rtl"] .recommend-card-skeleton .rcs-t-l {
  margin-left: 10px;
}
.recommend-card-skeleton .rcs-t-r-t {
  height: 28px;
  width: 90px;
  border-radius: 4px;
  margin-bottom: 4px;
}
.recommend-card-skeleton .rsc-b-1 {
  width: 100%;
  height: 48px;
  margin-bottom: 10px;
  border-radius: 4px;
}
.recommend-card-skeleton .rsc-b-2 {
  width: 187px;
  height: 22px;
  margin-bottom: 4px;
  border-radius: 4px;
}
.recommend-card-skeleton .rsc-b-3 {
  width: 150px;
  height: 22px;
  margin-bottom: 4px;
  border-radius: 4px;
}
.recommend-card-skeleton .rsc-b-4 {
  width: 100%;
  height: 22px;
  border-radius: 4px;
}
.recommend-title-skeleton {
  width: 400px;
  height: 60px;
  border-radius: 4px;
  margin: 32px 0 26px;
}
.follow-setting-dialog-skeleton {
  display: flex;
  height: 100%;
  align-items: stretch;
}
.follow-setting-dialog-skeleton .follow-setting-dialog-skeleton-left {
  width: 348px;
  padding: 12px 24px;
}
.follow-setting-dialog-skeleton .follow-setting-dialog-skeleton-t {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 0 48px;
}
.follow-setting-dialog-skeleton .fsd-t-l {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  border-radius: 120px;
}
.follow-setting-dialog-skeleton .fsd-t-1 {
  width: 100%;
  height: 40px;
}
.follow-setting-dialog-skeleton .fsd-t-2 {
  width: 100%;
  height: 30px;
  margin-top: 10px;
}
.follow-setting-dialog-skeleton .follow-setting-dialog-skeleton-b-t {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  gap: 20px;
}
.follow-setting-dialog-skeleton .fsd-b-1 {
  height: 48px;
  flex: 1 1;
}
.follow-setting-dialog-skeleton .fsd-b-2 {
  flex: 1 1;
  height: 48px;
  margin-top: 8px;
}
.follow-setting-dialog-skeleton .follow-setting-dialog-skeleton-right {
  flex: 1 1;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
}
.follow-setting-dialog-skeleton .fsdsr-0 {
  width: 80%;
  height: 48px;
}
.follow-setting-dialog-skeleton .fsdsr-1 {
  width: 100%;
  height: 48px;
}
.follow-setting-dialog-skeleton .fsdsr-2 {
  width: 20%;
  height: 24px;
}
.follow-setting-dialog-skeleton .fsdsr-3 {
  width: 40%;
  height: 24px;
}
.follow-setting-dialog-skeleton .fsdsr-4 {
  width: 80%;
  height: 48px;
}
.follow-setting-dialog-skeleton .fsdsr-5 {
  height: 48px;
  width: 100%;
}
.follow-setting-dialog-skeleton .fsdsr-6 {
  height: 80px;
  width: 100%;
}
.dark-skeleton-module {
  background: #1e2022 !important;
  background-size: 400% 100% !important;
}
[dir="ltr"] .dark-skeleton-module {
  background-position: 100% 50% !important;
  background-image: linear-gradient(
    90deg,
    rgba(64, 67, 71, 0.4) 25%,
    rgba(64, 67, 71, 0.2) 37%,
    rgba(64, 67, 71, 0.4) 63%
  ) !important;
}
[dir="rtl"] .dark-skeleton-module {
  background-position: 0 50% !important;
  background-image: linear-gradient(
    -90deg,
    rgba(64, 67, 71, 0.4) 25%,
    rgba(64, 67, 71, 0.2) 37%,
    rgba(64, 67, 71, 0.4) 63%
  ) !important;
}
.recommend-card-skeleton--dark {
  background: #16171a;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
}
.recommend-card-skeleton--dark .rcs-module {
  background: #1e2022 !important;
  background-size: 400% 100% !important;
}
[dir="ltr"] .recommend-card-skeleton--dark .rcs-module {
  background-position: 100% 50% !important;
  background-image: linear-gradient(
    90deg,
    rgba(64, 67, 71, 0.4) 25%,
    rgba(64, 67, 71, 0.2) 37%,
    rgba(64, 67, 71, 0.4) 63%
  ) !important;
}
[dir="rtl"] .recommend-card-skeleton--dark .rcs-module {
  background-position: 0 50% !important;
  background-image: linear-gradient(
    -90deg,
    rgba(64, 67, 71, 0.4) 25%,
    rgba(64, 67, 71, 0.2) 37%,
    rgba(64, 67, 71, 0.4) 63%
  ) !important;
}
.recommend-title-skeleton--dark {
  background: #16171a;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
}
.recommend-title-skeleton--dark .rcs-module {
  background: #1e2022 !important;
  background-size: 400% 100% !important;
}
[dir="ltr"] .recommend-title-skeleton--dark .rcs-module {
  background-position: 100% 50% !important;
  background-image: linear-gradient(
    90deg,
    rgba(64, 67, 71, 0.4) 25%,
    rgba(64, 67, 71, 0.2) 37%,
    rgba(64, 67, 71, 0.4) 63%
  ) !important;
}
[dir="rtl"] .recommend-title-skeleton--dark .rcs-module {
  background-position: 0 50% !important;
  background-image: linear-gradient(
    -90deg,
    rgba(64, 67, 71, 0.4) 25%,
    rgba(64, 67, 71, 0.2) 37%,
    rgba(64, 67, 71, 0.4) 63%
  ) !important;
}
.follow-setting-dialog-skeleton--dark .rcs-module {
  background: #1e2022 !important;
  background-size: 400% 100% !important;
}
[dir="ltr"] .follow-setting-dialog-skeleton--dark .rcs-module {
  background-position: 100% 50% !important;
  background-image: linear-gradient(
    90deg,
    rgba(64, 67, 71, 0.4) 25%,
    rgba(64, 67, 71, 0.2) 37%,
    rgba(64, 67, 71, 0.4) 63%
  ) !important;
}
[dir="rtl"] .follow-setting-dialog-skeleton--dark .rcs-module {
  background-position: 0 50% !important;
  background-image: linear-gradient(
    -90deg,
    rgba(64, 67, 71, 0.4) 25%,
    rgba(64, 67, 71, 0.2) 37%,
    rgba(64, 67, 71, 0.4) 63%
  ) !important;
}
.pro-recommend-skeleton {
  z-index: 15;
}
.pro-recommend-skeleton-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, auto);
  grid-gap: 24px;
  gap: 24px;
  width: 100%;
  padding: 16px 0;
}
.pro-recommend-skeleton-card {
  width: 100%;
  background: rgba(243, 245, 247, 0.12);
  border-radius: 16px;
  padding: 24px;
  height: 318px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(0, 0%, 77.6%, 0.1);
}
.pro-recommend-skeleton-card:after {
  content: "";
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
}
[dir="ltr"] .pro-recommend-skeleton-card:after {
  left: -150%;
  background: linear-gradient(
    90deg,
    transparent,
    hsla(0, 0%, 100%, 0.05),
    transparent
  );
  -webkit-animation: shimmer-ltr 3s ease-in-out infinite;
  animation: shimmer-ltr 3s ease-in-out infinite;
}
[dir="rtl"] .pro-recommend-skeleton-card:after {
  right: -150%;
  background: linear-gradient(
    -90deg,
    transparent,
    hsla(0, 0%, 100%, 0.05),
    transparent
  );
  -webkit-animation: shimmer-rtl 3s ease-in-out infinite;
  animation: shimmer-rtl 3s ease-in-out infinite;
}
.pro-recommend-skeleton-card-header {
  display: flex;
  align-items: center;
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 24px;
}
.pro-recommend-skeleton-card-header-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
}
[dir="ltr"] .pro-recommend-skeleton-card-header-avatar {
  background: linear-gradient(
    90deg,
    rgba(233, 237, 242, 0.08) 25%,
    rgba(243, 245, 247, 0.12) 37%,
    rgba(233, 237, 242, 0.08) 63%
  );
  background-position: 100% 50%;
  -webkit-animation: skeleton-loading-ltr 3s ease-in-out infinite;
  animation: skeleton-loading-ltr 3s ease-in-out infinite;
}
[dir="rtl"] .pro-recommend-skeleton-card-header-avatar {
  background: linear-gradient(
    -90deg,
    rgba(233, 237, 242, 0.08) 25%,
    rgba(243, 245, 247, 0.12) 37%,
    rgba(233, 237, 242, 0.08) 63%
  );
  background-position: 0 50%;
  -webkit-animation: skeleton-loading-rtl 3s ease-in-out infinite;
  animation: skeleton-loading-rtl 3s ease-in-out infinite;
}
[dir] .pro-recommend-skeleton-card-header-avatar {
  background-size: 400% 100%;
}
.pro-recommend-skeleton-card-header-content {
  flex: 1 1;
}
.pro-recommend-skeleton-card-header-content-title {
  width: 70%;
  height: 24px;
  margin-bottom: 8px;
  border-radius: 4px;
}
[dir="ltr"] .pro-recommend-skeleton-card-header-content-title {
  background: linear-gradient(
    90deg,
    rgba(233, 237, 242, 0.08) 25%,
    rgba(243, 245, 247, 0.12) 37%,
    rgba(233, 237, 242, 0.08) 63%
  );
  background-position: 100% 50%;
  -webkit-animation: skeleton-loading-ltr 3s ease-in-out infinite;
  animation: skeleton-loading-ltr 3s ease-in-out infinite;
}
[dir="rtl"] .pro-recommend-skeleton-card-header-content-title {
  background: linear-gradient(
    -90deg,
    rgba(233, 237, 242, 0.08) 25%,
    rgba(243, 245, 247, 0.12) 37%,
    rgba(233, 237, 242, 0.08) 63%
  );
  background-position: 0 50%;
  -webkit-animation: skeleton-loading-rtl 3s ease-in-out infinite;
  animation: skeleton-loading-rtl 3s ease-in-out infinite;
}
[dir] .pro-recommend-skeleton-card-header-content-title {
  background-size: 400% 100%;
}
.pro-recommend-skeleton-card-header-content-subtitle {
  width: 50%;
  height: 16px;
  border-radius: 4px;
}
[dir="ltr"] .pro-recommend-skeleton-card-header-content-subtitle {
  background: linear-gradient(
    90deg,
    rgba(233, 237, 242, 0.08) 25%,
    rgba(243, 245, 247, 0.12) 37%,
    rgba(233, 237, 242, 0.08) 63%
  );
  background-position: 100% 50%;
  -webkit-animation: skeleton-loading-ltr 3s ease-in-out infinite;
  animation: skeleton-loading-ltr 3s ease-in-out infinite;
}
[dir="rtl"] .pro-recommend-skeleton-card-header-content-subtitle {
  background: linear-gradient(
    -90deg,
    rgba(233, 237, 242, 0.08) 25%,
    rgba(243, 245, 247, 0.12) 37%,
    rgba(233, 237, 242, 0.08) 63%
  );
  background-position: 0 50%;
  -webkit-animation: skeleton-loading-rtl 3s ease-in-out infinite;
  animation: skeleton-loading-rtl 3s ease-in-out infinite;
}
[dir] .pro-recommend-skeleton-card-header-content-subtitle {
  background-size: 400% 100%;
}
.pro-recommend-skeleton-card-body {
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
  gap: 16px;
}
.pro-recommend-skeleton-card-body-row {
  height: 20px;
  border-radius: 4px;
}
[dir="ltr"] .pro-recommend-skeleton-card-body-row {
  background: linear-gradient(
    90deg,
    rgba(233, 237, 242, 0.08) 25%,
    rgba(243, 245, 247, 0.12) 37%,
    rgba(233, 237, 242, 0.08) 63%
  );
  background-position: 100% 50%;
  -webkit-animation: skeleton-loading-ltr 3s ease-in-out infinite;
  animation: skeleton-loading-ltr 3s ease-in-out infinite;
}
[dir="rtl"] .pro-recommend-skeleton-card-body-row {
  background: linear-gradient(
    -90deg,
    rgba(233, 237, 242, 0.08) 25%,
    rgba(243, 245, 247, 0.12) 37%,
    rgba(233, 237, 242, 0.08) 63%
  );
  background-position: 0 50%;
  -webkit-animation: skeleton-loading-rtl 3s ease-in-out infinite;
  animation: skeleton-loading-rtl 3s ease-in-out infinite;
}
[dir] .pro-recommend-skeleton-card-body-row {
  background-size: 400% 100%;
}
.pro-recommend-skeleton-card-body-row:first-child {
  width: 100%;
}
.pro-recommend-skeleton-card-body-row:nth-child(2) {
  width: 80%;
}
.pro-recommend-skeleton-card-body-row:nth-child(3) {
  width: 60%;
}
.pro-recommend-skeleton-card-footer {
  margin-top: auto;
  padding-top: 24px;
}
.pro-recommend-skeleton-card-footer-button {
  height: 48px;
  width: 100%;
  border-radius: 8px;
}
[dir="ltr"] .pro-recommend-skeleton-card-footer-button {
  background: linear-gradient(
    90deg,
    rgba(233, 237, 242, 0.08) 25%,
    rgba(243, 245, 247, 0.12) 37%,
    rgba(233, 237, 242, 0.08) 63%
  );
  background-position: 100% 50%;
  -webkit-animation: skeleton-loading-ltr 3s ease-in-out infinite;
  animation: skeleton-loading-ltr 3s ease-in-out infinite;
}
[dir="rtl"] .pro-recommend-skeleton-card-footer-button {
  background: linear-gradient(
    -90deg,
    rgba(233, 237, 242, 0.08) 25%,
    rgba(243, 245, 247, 0.12) 37%,
    rgba(233, 237, 242, 0.08) 63%
  );
  background-position: 0 50%;
  -webkit-animation: skeleton-loading-rtl 3s ease-in-out infinite;
  animation: skeleton-loading-rtl 3s ease-in-out infinite;
}
[dir] .pro-recommend-skeleton-card-footer-button {
  background-size: 400% 100%;
}
.pro-recommend-skeleton-title {
  height: 34px;
  width: 320px;
  border-radius: 4px;
  margin-bottom: 8px;
}
[dir="ltr"] .pro-recommend-skeleton-title {
  background: linear-gradient(
    90deg,
    rgba(233, 237, 242, 0.08) 25%,
    rgba(243, 245, 247, 0.12) 37%,
    rgba(233, 237, 242, 0.08) 63%
  );
  background-position: 100% 50%;
  -webkit-animation: skeleton-loading-ltr 3s ease-in-out infinite;
  animation: skeleton-loading-ltr 3s ease-in-out infinite;
}
[dir="rtl"] .pro-recommend-skeleton-title {
  background: linear-gradient(
    -90deg,
    rgba(233, 237, 242, 0.08) 25%,
    rgba(243, 245, 247, 0.12) 37%,
    rgba(233, 237, 242, 0.08) 63%
  );
  background-position: 0 50%;
  -webkit-animation: skeleton-loading-rtl 3s ease-in-out infinite;
  animation: skeleton-loading-rtl 3s ease-in-out infinite;
}
[dir] .pro-recommend-skeleton-title {
  background-size: 400% 100%;
}
.dark .pro-recommend-skeleton-card {
  background: rgba(22, 23, 26, 0.6);
  border: 1px solid hsla(0, 0%, 100%, 0.05);
}
[dir="ltr"] .dark .pro-recommend-skeleton-card:after {
  background: linear-gradient(
    90deg,
    transparent,
    hsla(0, 0%, 100%, 0.02),
    transparent
  );
}
[dir="rtl"] .dark .pro-recommend-skeleton-card:after {
  background: linear-gradient(
    -90deg,
    transparent,
    hsla(0, 0%, 100%, 0.02),
    transparent
  );
}
[dir="ltr"] .dark .skeleton-background {
  background: linear-gradient(
    90deg,
    rgba(64, 67, 71, 0.2) 25%,
    rgba(64, 67, 71, 0.1) 37%,
    rgba(64, 67, 71, 0.2) 63%
  );
}
[dir="rtl"] .dark .skeleton-background {
  background: linear-gradient(
    -90deg,
    rgba(64, 67, 71, 0.2) 25%,
    rgba(64, 67, 71, 0.1) 37%,
    rgba(64, 67, 71, 0.2) 63%
  );
}
[dir="ltr"] .dark .pro-recommend-skeleton-title {
  background: linear-gradient(
    90deg,
    rgba(64, 67, 71, 0.2) 25%,
    rgba(64, 67, 71, 0.1) 37%,
    rgba(64, 67, 71, 0.2) 63%
  );
}
[dir="rtl"] .dark .pro-recommend-skeleton-title {
  background: linear-gradient(
    -90deg,
    rgba(64, 67, 71, 0.2) 25%,
    rgba(64, 67, 71, 0.1) 37%,
    rgba(64, 67, 71, 0.2) 63%
  );
}
@-webkit-keyframes shimmer-ltr {
  0% {
    left: -150%;
    opacity: 0.3;
  }
  to {
    left: 150%;
    opacity: 0;
  }
}
@-webkit-keyframes shimmer-rtl {
  0% {
    right: -150%;
    opacity: 0.3;
  }
  to {
    right: 150%;
    opacity: 0;
  }
}
@keyframes shimmer-ltr {
  0% {
    left: -150%;
    opacity: 0.3;
  }
  to {
    left: 150%;
    opacity: 0;
  }
}
@keyframes shimmer-rtl {
  0% {
    right: -150%;
    opacity: 0.3;
  }
  to {
    right: 150%;
    opacity: 0;
  }
}
.recommend-card-classic-skeleton__line {
  width: 1px;
  height: 30px;
  margin: 0 24px;
  background: var(--bds-trans-hover);
}
.adv-slider__skeleton-box,
.index-opt__skeleton-box,
.index-opt__skeleton-list {
  display: flex;
  align-items: center;
}
.index-opt__skeleton-list {
  grid-gap: 16px;
  gap: 16px;
}
.index-opt__skeleton-list.index-ld__skeleton-list {
  grid-gap: 24px;
  gap: 24px;
}
.index-opt__skeleton-box {
  justify-content: space-between;
  width: 384px;
  height: 66px;
  padding: 16px 24px;
  border-radius: 16px;
}
.index-opt__skeleton-box.index-ld__skeleton-box {
  height: 80px;
  width: 586px;
}
.adv-slider__skeleton-box {
  padding: 26px 20px 18px;
  justify-content: space-between;
  width: 450px;
  height: 210px;
  border-radius: 16px;
}
.mt5-follow-setting-dialog-skeleton {
  width: 868px;
  height: 600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mt5-follow-setting-dialog-skeleton-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 20px;
  height: 100%;
  background-color: #000;
}
[dir="ltr"] .mt5-follow-setting-dialog-skeleton-left {
  border-radius: 16px 0 0 16px;
}
[dir="rtl"] .mt5-follow-setting-dialog-skeleton-left {
  border-radius: 0 16px 16px 0;
}
.mt5-follow-setting-dialog-skeleton-left .bg-base-bds-trans-hover {
  background-color: rgba(192, 210, 231, 0.12);
  -webkit-animation: none;
  animation: none;
}
.mt5-follow-setting-dialog-skeleton-right {
  background-color: #fff;
  height: 100%;
}
.mt5-follow-setting-dialog-skeleton-right .bg-base-bds-trans-hover {
  background-color: rgba(56, 68, 82, 0.06);
  -webkit-animation: none;
  animation: none;
}
.mt5-follow-setting-dialog-skeleton__right-top {
  padding: 24px 20px 0;
}
.mt5-follow-setting-dialog-skeleton__btn-bg {
  margin-top: 150px;
  padding: 8px 20px 0;
  border-top: 1px solid var(--bds-trans-hover);
}
.mt5-follow-setting-dialog-skeleton__divide-line {
  width: 1px;
  height: 40px;
  background-color: var(--bds-trans-hover);
}
.ct-be-ld-skeleton {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 8px;
  gap: 8px;
  flex-direction: column;
}
.header-coupon-card-title-balance,
.highlight-balance {
  color: #f7a600;
  color: var(--Brand-900-text, var(--bds-brand-700-normal, #f7a600));
  font-weight: 600;
}
.header-coupon-card-wrap {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  position: relative;
  height: 210px;
  border: 1px solid #f77700;
  border: 1px solid var(--Brand-700-normal, #f77700);
}
.header-coupon-card-wrap .copytrade-icon {
  cursor: pointer;
  font-size: 12px;
  height: 12px;
  line-height: 12px;
  color: #fff;
  color: var(--static_White, #fff);
}
[dir="ltr"] .header-coupon-card-wrap .copytrade-icon.icon-question {
  padding-left: 2px;
}
[dir="rtl"] .header-coupon-card-wrap .copytrade-icon.icon-question {
  padding-right: 2px;
}
.header-coupon-card-wrap .header-coupon-card-title-bg-box {
  padding: 26px 37px 10px;
  max-height: 130px;
}
.header-coupon-card-wrap .header-coupon-card-title-box {
  flex: 1 1;
  position: relative;
}
.header-coupon-card-wrap .header-coupon-card-title-box:before {
  content: "";
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 50%;
  position: absolute;
  bottom: -10px;
  border: 1px solid #f77700;
  border: 1px solid var(--Brand-700-normal, #f77700);
}
[dir="ltr"] .header-coupon-card-wrap .header-coupon-card-title-box:before {
  left: -10px;
}
[dir="rtl"] .header-coupon-card-wrap .header-coupon-card-title-box:before {
  right: -10px;
}
.header-coupon-card-wrap .header-coupon-card-title-box:after {
  content: "";
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 50%;
  position: absolute;
  bottom: -10px;
  border: 1px solid #f77700;
  border: 1px solid var(--Brand-700-normal, #f77700);
}
[dir="ltr"] .header-coupon-card-wrap .header-coupon-card-title-box:after {
  right: -10px;
}
[dir="rtl"] .header-coupon-card-wrap .header-coupon-card-title-box:after {
  left: -10px;
}
.header-coupon-card-wrap
  .header-coupon-card-title-box
  .header-coupon-card-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 41px;
  color: #fff;
  color: var(--static_White, #fff);
  letter-spacing: 0;
  display: block;
}
.header-coupon-card-wrap
  .header-coupon-card-title-box
  .header-coupon-card-title-name {
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.header-coupon-card-wrap
  .header-coupon-card-title-box
  .header-coupon-card-desc {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 4px;
  gap: 4px;
  color: #fff;
  color: var(--static_White, #fff);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.header-coupon-card-wrap
  .header-coupon-card-title-box
  .header-coupon-card-desc
  .desc-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.header-coupon-card-wrap .header-coupon-card-op-box {
  padding: 22px 37px 18px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;
  color: #fff;
  color: var(--static_White, #fff);
  position: relative;
}
[dir="ltr"] .header-coupon-card-wrap .header-coupon-card-op-box {
  text-align: left;
}
[dir="rtl"] .header-coupon-card-wrap .header-coupon-card-op-box {
  text-align: right;
}
.header-coupon-card-wrap .header-coupon-card-op-box:before {
  content: "";
  position: absolute;
  top: 0;
  height: 1px;
  width: 70%;
}
[dir="ltr"] .header-coupon-card-wrap .header-coupon-card-op-box:before {
  left: 15%;
  background: linear-gradient(90deg, transparent, #f77700 49%, transparent);
  background: linear-gradient(
    90deg,
    transparent,
    var(--Brand-700-normal, #f77700) 49%,
    transparent
  );
}
[dir="rtl"] .header-coupon-card-wrap .header-coupon-card-op-box:before {
  right: 15%;
  background: linear-gradient(-90deg, transparent, #f77700 49%, transparent);
  background: linear-gradient(
    -90deg,
    transparent,
    var(--Brand-700-normal, #f77700) 49%,
    transparent
  );
}
.header-coupon-card-wrap .header-coupon-card-op-box .header-coupon-card-op {
  display: flex;
  align-items: center;
  grid-gap: 4px;
  gap: 4px;
}
[dir="ltr"]
  .header-coupon-card-wrap
  .header-coupon-card-op-box
  .header-coupon-card-op {
  margin-right: 16px;
}
[dir="rtl"]
  .header-coupon-card-wrap
  .header-coupon-card-op-box
  .header-coupon-card-op {
  margin-left: 16px;
}
.header-coupon-card-wrap
  .header-coupon-card-op-box
  .header-coupon-card-op-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #adb1b8;
  color: var(
    --gray-tt-2,
    var(--bds-badge-sup-type-secondary-text-color, #adb1b8)
  );
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.header-coupon-card-wrap
  .header-coupon-card-op-box
  .header-coupon-card-claim-btn {
  min-width: 100px;
}
.header-coupon-card-wrap
  .header-coupon-card-op-box
  .header-coupon-card-claim-btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
[dir="ltr"]
  .header-coupon-card-wrap
  .header-coupon-card-op-box
  .header-coupon-card-claim-btn-content
  img {
  margin-right: 4px;
}
[dir="rtl"]
  .header-coupon-card-wrap
  .header-coupon-card-op-box
  .header-coupon-card-claim-btn-content
  img {
  margin-left: 4px;
}
.header-coupon-card-wrap .header-coupon-card-entry-center {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.old-loss-cover-card-wrap.header-coupon-card-wrap {
  border: 1px solid #c69f58;
  border: 1px solid var(--Brand-700-normal, #c69f58);
  background: radial-gradient(
    166.43% 166.43% at 50% 50%,
    rgba(198, 159, 88, 0.15) 0,
    #000 100%
  );
}
.old-loss-cover-card-wrap.header-coupon-card-wrap .header-coupon-card-entry {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  border: none;
  border-bottom: 1.5px solid #fff;
  border-bottom: 1.5px solid var(--static_White, #fff);
}
[dir="ltr"]
  .old-loss-cover-card-wrap.header-coupon-card-wrap
  .header-coupon-card-entry {
  border-radius: 0 12px;
  border-left: 1.5px solid #fff;
  border-left: 1.5px solid var(--static_White, #fff);
  background: linear-gradient(133deg, #ffd748 -1.87%, #c69f58 101.87%);
  background: var(
    --Gradient-Brand,
    linear-gradient(133deg, #ffd748 -1.87%, #c69f58 101.87%)
  );
}
[dir="rtl"]
  .old-loss-cover-card-wrap.header-coupon-card-wrap
  .header-coupon-card-entry {
  border-radius: 12px 0;
  border-right: 1.5px solid #fff;
  border-right: 1.5px solid var(--static_White, #fff);
  background: linear-gradient(-133deg, #ffd748 -1.87%, #c69f58 101.87%);
  background: var(
    --Gradient-Brand,
    linear-gradient(-133deg, #ffd748 -1.87%, #c69f58 101.87%)
  );
}
.old-loss-cover-card-wrap.header-coupon-card-wrap
  .header-coupon-card-title-box:after,
.old-loss-cover-card-wrap.header-coupon-card-wrap
  .header-coupon-card-title-box:before {
  background: #000;
  border: 1px solid #c69f58;
  border: 1px solid var(--Brand-700-normal, #c69f58);
}
.old-loss-cover-card-wrap.header-coupon-card-wrap
  .header-coupon-card-title-box
  .header-coupon-card-desc,
.old-loss-cover-card-wrap.header-coupon-card-wrap
  .header-coupon-card-title-box
  .header-coupon-card-title {
  color: #fff;
  color: var(--static_White, #fff);
  opacity: 1;
}
[dir="ltr"]
  .old-loss-cover-card-wrap.header-coupon-card-wrap
  .header-coupon-card-op-box:before {
  background: linear-gradient(90deg, transparent, #f7a600 49%, transparent);
  background: linear-gradient(
    90deg,
    transparent,
    var(--Brand-900-text, var(--bds-brand-700-normal, #f7a600)) 49%,
    transparent
  );
}
[dir="rtl"]
  .old-loss-cover-card-wrap.header-coupon-card-wrap
  .header-coupon-card-op-box:before {
  background: linear-gradient(-90deg, transparent, #f7a600 49%, transparent);
  background: linear-gradient(
    -90deg,
    transparent,
    var(--Brand-900-text, var(--bds-brand-700-normal, #f7a600)) 49%,
    transparent
  );
}
.old-loss-cover-card-wrap.header-coupon-card-wrap:after,
.old-loss-cover-card-wrap.header-coupon-card-wrap:before {
  border: 1px solid #f7a600;
  border: 1px solid var(--brand-900-text, var(--bds-brand-700-normal, #f7a600));
}
.new.header-coupon-card-wrap {
  background: radial-gradient(
    166.43% 166.43% at 50% -73.81%,
    #f77700 0,
    #000 100%
  );
  stroke-width: 1px;
  stroke: #f77700;
}
.old.header-coupon-card-wrap {
  background: rgba(247, 166, 0, 0.08);
  stroke-width: 1px;
  stroke: #c69f58;
  stroke: var(--VIP5, #c69f58);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  box-shadow: inset 0 2px 20px 0 rgba(247, 166, 0, 0.25);
}
.coupon-card__success-modal h2 {
  color: var(--bds-gray-t1-title);
}
.leader-list-header {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  min-height: 435px;
}
.leader-list-header.copypro {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 495px;
}
.leader-list-header.copymt5 {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 453px;
}
.leader-list__header-banner {
  position: absolute;
  top: 0;
  -o-object-fit: fill;
  object-fit: fill;
  -webkit-user-drag: none;
}
.leader-list-header__box {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
  gap: 8px;
  padding-bottom: 48px;
}
.leader-list-header__inner {
  flex: 1 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.leader-list-header__left {
  width: 780px;
  z-index: 10;
  min-height: 213px;
  color: #fff;
  color: var(--gray-tt-1-title, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.leader-list-header__left-title {
  color: #fff;
  color: var(--gray-tt-1-title, #fff);
  font-size: 48px;
  font-weight: 600;
  line-height: 62px;
}
.leader-list-header__left-title.leader-list-header__left-title--loading {
  width: auto;
}
.leader-list-header__ct-head-title {
  margin-top: 4px;
  color: #fff;
  color: var(--gray-tt-1-title, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.leader-list-header__ct-head-title.leader-list-header__left-title--loading {
  width: auto;
}
.leader-list-header__ct-head-tl {
  white-space: pre-line;
}
.copymt5 {
  font-size: 48px;
  font-weight: 300;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: transparent;
  -webkit-background-clip: text;
}
[dir="ltr"] .copymt5 {
  background-image: linear-gradient(
    270deg,
    #c69f58 -10.32%,
    #ffeecf 44.84%,
    #a56f2a 72.42%,
    #c69f58
  );
}
[dir="rtl"] .copymt5 {
  background-image: linear-gradient(
    -270deg,
    #c69f58 -10.32%,
    #ffeecf 44.84%,
    #a56f2a 72.42%,
    #c69f58
  );
}
.copypro {
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  height: 80px;
  line-height: 80px;
  -webkit-text-fill-color: transparent;
  width: 400px;
}
[dir="ltr"] .copypro {
  background: linear-gradient(
    90deg,
    #fed1ac 2.51%,
    #ff9c2e 20.31%,
    #c9690a 71.5%,
    #fed1ac 96.45%
  );
}
[dir="rtl"] .copypro {
  background: linear-gradient(
    -90deg,
    #fed1ac 2.51%,
    #ff9c2e 20.31%,
    #c9690a 71.5%,
    #fed1ac 96.45%
  );
}
[dir] .copypro {
  background-clip: text;
  -webkit-background-clip: text;
}
.copytrade:first-line {
  font-size: 48px;
  font-weight: 600;
  line-height: 62px;
}
.leader-list-header__pre-line {
  transform: translateY(-4px);
}
.leader-list-header__pre-line .leader-list-header__ct-head-tl:first-line {
  line-height: 70px;
}
.leader-list__bg-img {
  position: absolute;
  bottom: -550px;
  opacity: 0.4;
}
.trading__derivatives-account-update {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--bds-gray-ele-line);
  transition: 0.5s linear;
  overflow: hidden;
  grid-gap: 20px;
  gap: 20px;
  width: 1200px;
}
[dir="ltr"] .trading__derivatives-account-update .ant-btn {
  margin-left: 12px;
}
[dir="rtl"] .trading__derivatives-account-update .ant-btn {
  margin-right: 12px;
}
.trading__derivatives-account-update-dark {
  border-radius: 10px;
}
[dir="ltr"] .trading__derivatives-account-update-dark {
  background: linear-gradient(90deg, #101113, rgba(22, 23, 26, 0.4));
}
[dir="rtl"] .trading__derivatives-account-update-dark {
  background: linear-gradient(-90deg, #101113, rgba(22, 23, 26, 0.4));
}
.trading__derivatives-account-update-left {
  position: relative;
  min-height: 80px;
  display: flex;
  align-items: center;
  background: url("") no-repeat -112px 0;
  background-size: auto 100%;
}
[dir="ltr"] .trading__derivatives-account-update-left {
  padding-left: 24px;
}
[dir="rtl"] .trading__derivatives-account-update-left {
  padding-right: 24px;
}
.trading__derivatives-account-update-img {
  width: 48px;
  height: 48px;
}
[dir="ltr"] .trading__derivatives-account-update-img {
  margin-right: 16px;
}
[dir="rtl"] .trading__derivatives-account-update-img {
  margin-left: 16px;
}
.trading__derivatives-account-updating-img {
  width: 70px;
  height: 70px;
}
[dir="ltr"] .trading__derivatives-account-updating-img {
  margin-right: 20px;
}
[dir="rtl"] .trading__derivatives-account-updating-img {
  margin-left: 20px;
}
.trading__derivatives-account-update-title {
  color: var(--bds-gray-t1-title);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
.trading__derivatives-account-update-desc {
  margin-top: 4px;
  color: var(--bds-gray-t2);
  font-size: 12px;
  line-height: 20px;
}
.trading__derivatives-account-update-content_div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.uta_upgrade-detail-modal-item {
  display: flex;
  align-items: center;
  padding: 16px;
  background-color: #f9fafb;
  background-color: var(--bds-gray-ele-edge, #f9fafb);
}
.uta_upgrade-detail-modal-item .l-icon {
  align-self: flex-start;
}
[dir="ltr"] .uta_upgrade-detail-modal-item .l-icon {
  margin-right: 4px;
}
[dir="rtl"] .uta_upgrade-detail-modal-item .l-icon {
  margin-left: 4px;
}
.uta_upgrade-detail-modal-item .bit-design-iconfont {
  font-size: 24px;
  color: #000;
}
.uta_upgrade-detail-modal-item:hover .bit-design-iconfont {
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
.trading__derivatives-account-update-btns-wrap {
  min-height: 80px;
  display: flex;
  grid-gap: 12px;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
[dir="ltr"] .trading__derivatives-account-update-btns-wrap {
  padding: 0 24px 0 104px;
  background: url("") no-repeat 0 0;
}
[dir="rtl"] .trading__derivatives-account-update-btns-wrap {
  padding: 0 104px 0 24px;
  background: url("") no-repeat 100% 0;
}
.trading__derivatives-account-update-btns-wrap button {
  white-space: nowrap;
}
.trading__derivatives-account-update-bg1 {
  position: absolute;
  top: 0;
}
[dir="ltr"] .trading__derivatives-account-update-bg1 {
  left: 0;
}
[dir="rtl"] .trading__derivatives-account-update-bg1 {
  right: 0;
}
.trading__derivatives-account-update-bg2 {
  position: absolute;
  height: 100%;
}
[dir="ltr"] .trading__derivatives-account-update-bg2 {
  left: 0;
}
[dir="rtl"] .trading__derivatives-account-update-bg2 {
  right: 0;
}
.tdaccount__update-btns {
  min-width: 100px;
}
.uta_upgrade-detail-modal-item .tdaccount__update-desc-arrow {
  color: #000;
}
.uta_upgrade-detail-modal-item:hover .tdaccount__update-desc-arrow {
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
.tdaccount__update-desc-modal {
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
  gap: 16px;
}
.advance-multi-select__container-text {
  font-weight: 500;
}
.advance-multi-select__container {
  height: 32px;
  line-height: 32px;
  position: relative;
  cursor: pointer;
}
.advance-multi-select__container .ant-dropdown-trigger {
  display: flex;
  align-items: center;
}
.advance-multi-select {
  background: #fff;
  box-shadow: 0 2px 16px rgba(18, 18, 20, 0.1);
  border-radius: 4px;
}
.advance-select__wrap {
  padding: 4px 0;
  overflow-y: auto;
  overflow-y: overlay;
}
.advance-select__wrap .ant-checkbox-group {
  display: flex;
  flex-direction: column;
}
.advance-select__wrap .empty__container img {
  width: 100px;
  height: auto;
}
.advance-select__select-item {
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-weight: 500;
  font-size: 14px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.advance-select__select-item label span {
  display: inline-flex;
  align-items: center;
}
.advance-select__select-item.isChecked,
.advance-select__select-item.isChecked .trader-list__Select-level-name {
  color: var(--bds-brand-700-normal);
}
.advance-select__select-item.isChecked,
.advance-select__select-item:hover {
  background: var(--bds-trans-hover);
}
.advance-select__button-wrap {
  padding: 0 16px;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #f3f5f7;
  border-top: 1px solid var(--bds-gray-ele-line, #f3f5f7);
}
.advance-select__button-confirm,
.advance-select__button-reset {
  width: 100%;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: noWrap;
  cursor: pointer;
}
[dir="ltr"] .advance-select__button-reset {
  margin-right: 6px;
}
[dir="rtl"] .advance-select__button-reset {
  margin-left: 6px;
}
.advance-select__button-confirm {
  background: var(--bds-brand-700-normal);
  border: 1px solid var(--bds-brand-700-normal);
  color: var(--bds-gray-t1-title);
}
[dir="ltr"] .advance-select__button-confirm {
  margin-left: 6px;
}
[dir="rtl"] .advance-select__button-confirm {
  margin-right: 6px;
}
.advance-select__multiText {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: var(--bds-gray-t1-title);
}
span.advance-select__multiText-num {
  width: 14px;
  height: 14px;
  background: rgba(247, 166, 0, 0.16);
  display: inline-block;
  border-radius: 50%;
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  color: var(--bds-brand-700-normal);
}
[dir="ltr"] span.advance-select__multiText-num {
  margin-left: 4px;
}
[dir="rtl"] span.advance-select__multiText-num {
  margin-right: 4px;
}
.advance-multi-select__down-icon {
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
[dir="ltr"] .advance-multi-select__down-icon {
  margin-left: 4px;
}
[dir="rtl"] .advance-multi-select__down-icon {
  margin-right: 4px;
}
.advance-select__search-wrap {
  height: 48px;
  padding: 8px 16px;
  box-sizing: border-box;
}
.advance-select__search {
  height: 100%;
  line-height: 28px;
  background: #f3f5f7;
  background: var(--bds-gray-ele-line, #f3f5f7);
  border-radius: 4px;
  position: relative;
  border: 1px solid transparent;
}
.advance-select__search.isActive {
  border: 1px solid var(--bds-brand-700-normal);
}
.advance-select__search:before {
  content: "\e63f";
  font-family: copytrade-icon;
  position: absolute;
  top: 1px;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
[dir="ltr"] .advance-select__search:before {
  left: 6px;
}
[dir="rtl"] .advance-select__search:before {
  right: 6px;
}
.advance-select__search-input {
  width: 100%;
  height: 100%;
  line-height: 34px;
  background: transparent;
  border: none;
  outline: none;
}
[dir="ltr"] .advance-select__search-input {
  padding-left: 28px;
}
[dir="rtl"] .advance-select__search-input {
  padding-right: 28px;
}
.advance-select__search-input::-webkit-input-placeholder {
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.advance-multi-select__dark-container
  .advance-multi-select__container-text-inner {
  color: var(--bds-gray-t2);
}
.advance-multi-select__dark-container .advance-select__select-item {
  color: var(--bds-gray-t1-title);
}
div.advance-multi-select__dark-dropdown {
  background: var(--bds-gray-bg-float);
  border: 1px solid var(--bds-gray-ele-line);
  border-radius: 8px;
}
div.advance-multi-select__dark-dropdown .advance-select__search {
  background-color: var(--bds-gray-ele-edge);
}
div.advance-multi-select__dark-dropdown .advance-select__search input,
div.advance-multi-select__dark-dropdown .trader-list__Select-level-name {
  color: var(--bds-gray-t1-title);
}
div.advance-multi-select__dark-dropdown .ant-checkbox-inner {
  background-color: transparent;
  border: 1px solid var(--bds-gray-t2);
}
div.advance-multi-select__dark-dropdown .advance-select__select-item {
  color: var(--bds-gray-t1-title);
}
div.advance-multi-select__dark-dropdown .advance-select__select-item.isChecked,
div.advance-multi-select__dark-dropdown
  .advance-select__select-item.isChecked
  .trader-list__Select-level-name {
  color: var(--bds-brand-700-normal);
}
div.advance-multi-select__dark-dropdown .advance-select__select-item:hover {
  background: var(--bds-trans-hover);
}
div.advance-multi-select__dark-dropdown .advance-select__button-wrap {
  border-top: 1px solid var(--bds-gray-ele-border);
}
div.advance-multi-select__dark-dropdown .advance-select__search:before {
  background-color: transparent;
}
.advance-select__checkbox-bg {
  pointer-events: none;
}
.advance-select__multiText-active {
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
.ct-vip-benefit__tip-box .ant-tooltip-content .ant-tooltip-arrow-content {
  background: #404347;
  background: var(--gray-ele-ele-border, #404347);
}
.ct-vip-benefit__tip-box div.ant-tooltip-content .ant-tooltip-inner {
  background: #404347;
  background: var(--gray-ele-ele-border, #404347);
  color: #fff;
  color: var(--gray-tt-1-title, #fff);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.ct-vip-benefit-box {
  display: flex;
  align-items: center;
  background: #1e2023;
  background: var(--gray-ele-ele-edge, #1e2023);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.ct-vip-benefit__left-vip {
  -webkit-text-fill-color: transparent;
  padding: 0 4px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
[dir="ltr"] .ct-vip-benefit__left-vip {
  background: linear-gradient(90deg, #ffb05b, #ee8f32 43.92%, #ffa644 79.13%);
  background: var(
    --VIP_Default_Gold_Tag,
    linear-gradient(90deg, #ffb05b, #ee8f32 43.92%, #ffa644 79.13%)
  );
}
[dir="rtl"] .ct-vip-benefit__left-vip {
  background: linear-gradient(-90deg, #ffb05b, #ee8f32 43.92%, #ffa644 79.13%);
  background: var(
    --VIP_Default_Gold_Tag,
    linear-gradient(-90deg, #ffb05b, #ee8f32 43.92%, #ffa644 79.13%)
  );
}
[dir] .ct-vip-benefit__left-vip {
  background-clip: text;
  -webkit-background-clip: text;
}
.ct-vip-benefit__right-ben {
  display: flex;
  align-items: center;
  padding: 0 4px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
[dir="ltr"] .ct-vip-benefit__right-ben {
  background: linear-gradient(90deg, #ffb05b, #ee8f32 43.92%, #ffa644 79.13%);
  background: var(
    --VIP_Default_Gold_Tag,
    linear-gradient(90deg, #ffb05b, #ee8f32 43.92%, #ffa644 79.13%)
  );
}
[dir="rtl"] .ct-vip-benefit__right-ben {
  background: linear-gradient(-90deg, #ffb05b, #ee8f32 43.92%, #ffa644 79.13%);
  background: var(
    --VIP_Default_Gold_Tag,
    linear-gradient(-90deg, #ffb05b, #ee8f32 43.92%, #ffa644 79.13%)
  );
}
.ct-vip-benefit__tip-title {
  display: flex;
  flex-direction: column;
  grid-gap: 4px;
  gap: 4px;
}
.ct-vip-benefit__vip-only-label {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  height: 14px;
  padding: 0 4px;
  border-radius: 4px;
}
[dir="ltr"] .ct-vip-benefit__vip-only-label {
  background: linear-gradient(90deg, #ffb05b, #ee8f32 43.92%, #ffa644 79.13%);
  background: var(
    --VIP_Default_Gold_Tag,
    linear-gradient(90deg, #ffb05b, #ee8f32 43.92%, #ffa644 79.13%)
  );
}
[dir="rtl"] .ct-vip-benefit__vip-only-label {
  background: linear-gradient(-90deg, #ffb05b, #ee8f32 43.92%, #ffa644 79.13%);
  background: var(
    --VIP_Default_Gold_Tag,
    linear-gradient(-90deg, #ffb05b, #ee8f32 43.92%, #ffa644 79.13%)
  );
}
.outline-follow-btn-container button.moly-btn {
  width: 100%;
  display: flex;
  text-align: center;
  white-space: nowrap;
  transition: 0.3s linear;
}
.outline-follow-btn-container button.moly-btn.followed:hover,
.outline-follow-btn-container button.moly-btn:hover {
  color: var(--bds-static-black);
  border-color: transparent;
  background-color: var(--bds-brand-700-normal);
}
.outline-follow-btn-container button.moly-btn .outline-follow-btn__fire-icon {
  display: inline-block;
  width: 14px;
  height: 18px;
  background: url("") no-repeat;
  background-size: 100% 100%;
}
[dir="ltr"]
  .outline-follow-btn-container
  button.moly-btn
  .outline-follow-btn__fire-icon {
  margin-right: 6px;
}
[dir="rtl"]
  .outline-follow-btn-container
  button.moly-btn
  .outline-follow-btn__fire-icon {
  margin-left: 6px;
}
.outline-follow-btn-container button.moly-btn.followed,
.outline-follow-btn-container button.moly-btn.full,
.outline-follow-btn-container button.moly-btn.fullVip {
  background: var(--bds-gray-bg-card);
  border: 1px solid var(--bds-gray-t4-dis);
  color: var(--bds-gray-t1-title);
}
.outline-follow-btn-container button.moly-btn.full:hover,
.outline-follow-btn-container button.moly-btn.fullVip:hover {
  border: 1px solid transparent;
  color: var(--bds-static-black);
}
[dir="ltr"] .outline-follow-btn-container button.moly-btn.full:hover,
[dir="ltr"] .outline-follow-btn-container button.moly-btn.fullVip:hover {
  background: linear-gradient(90deg, #f90, #ff6a59);
}
[dir="rtl"] .outline-follow-btn-container button.moly-btn.full:hover,
[dir="rtl"] .outline-follow-btn-container button.moly-btn.fullVip:hover {
  background: linear-gradient(-90deg, #f90, #ff6a59);
}
.outline-follow-btn-container button.moly-btn .outline-follow-btn__normal {
  display: flex;
  align-items: baseline;
}
.outline-follow-btn-container button.moly-btn.locked,
.outline-follow-btn-container button.moly-btn.locked:hover {
  position: relative;
  background-color: transparent;
  border-color: var(--bds-brand-900-focus);
  color: var(--bds-brand-900-text);
}
.outline-follow-btn-container button.moly-btn.locked:before,
.outline-follow-btn-container button.moly-btn.locked:hover:before {
  content: "";
  width: 13px;
  height: 14px;
  background: url("") 50% no-repeat;
  background-size: 13px 14px;
  position: absolute;
  top: 50%;
}
[dir="ltr"] .outline-follow-btn-container button.moly-btn.locked:before,
[dir="ltr"] .outline-follow-btn-container button.moly-btn.locked:hover:before {
  left: 50%;
  transform: translate(-50%, -50%);
}
[dir="rtl"] .outline-follow-btn-container button.moly-btn.locked:before,
[dir="rtl"] .outline-follow-btn-container button.moly-btn.locked:hover:before {
  right: 50%;
  transform: translate(50%, -50%);
}
.outline-follow-btn-container button.moly-btn .outline-follow-btn__vip-hover {
  display: flex;
  flex-direction: column;
}
.ct-vip-fol-btn__full {
  display: flex;
  align-items: center;
  grid-gap: 8px;
  gap: 8px;
}
.leader-recommend-title__mt-sel-detail {
  color: #d6850d;
  color: var(--Brand-900-text, var(--bds-brand-900-text, #d6850d));
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.leader-recommend-title__mt-sel-detail .copytrade-icon-direction-right {
  font-size: 12px;
}
.copytrade-icon.leader-recommend-title__question-icon {
  font-size: 24px;
  cursor: pointer;
}
[dir="ltr"] .copytrade-icon.leader-recommend-title__question-icon {
  margin-left: 4px;
}
[dir="rtl"] .copytrade-icon.leader-recommend-title__question-icon {
  margin-right: 4px;
}
.leader-recommend-title__mt-sel-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 32px;
  padding: 0 12px;
  border-radius: 4px;
  cursor: pointer;
  color: var(--bds-static-black);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  grid-gap: 2px;
  gap: 2px;
  --border-width: 1px;
  --border-radius: 4px;
  --border-color: linear-gradient(
    90deg,
    #fed1ac 2.06%,
    #ff9c2e 16.67%,
    #c9690a 58.66%,
    #fed1ac 79.13%
  );
}
.leader-recommend-title__mt-sel-submit .leader-recommend-title__text {
  color: transparent;
  -webkit-background-clip: text;
}
[dir="ltr"]
  .leader-recommend-title__mt-sel-submit
  .leader-recommend-title__text {
  background-image: linear-gradient(
    90deg,
    #fed1ac 2.06%,
    #ff9c2e 16.67%,
    #c9690a 58.66%,
    #fed1ac 79.13%
  );
}
[dir="rtl"]
  .leader-recommend-title__mt-sel-submit
  .leader-recommend-title__text {
  background-image: linear-gradient(
    -90deg,
    #fed1ac 2.06%,
    #ff9c2e 16.67%,
    #c9690a 58.66%,
    #fed1ac 79.13%
  );
}
.leader-recommend-title__mt-sel-submit .leader-recommend-title__arrow {
  height: 14px;
  width: 14px;
}
.leader-recommend-title__mt-sel-submit:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: var(--border-width);
  border-radius: var(--border-radius);
  background: var(--border-color);
  --mask-bg: linear-gradient(red, red);
  --mask-clip: content-box, padding-box;
  -webkit-mask-image: var(--mask-bg), var(--mask-bg);
  -webkit-mask-clip: var(--mask-clip);
  -webkit-mask-composite: destination-out;
}
.ld-rmd-title__mt-sel-submit--loading {
  width: 12px;
  display: block;
}
.ld-tags__box {
  border-radius: 4px;
}
.ld-tag--size-normal {
  font-size: 12px;
  line-height: 16px;
  padding: 2px 4px;
}
.ld-tag--size-small {
  font-size: 10px;
  line-height: 16px;
  padding: 0 4px;
}
.ld-tag--negative {
  color: #9d5254;
  background: rgba(198, 109, 111, 0.16);
}
.ld-tag--neutral {
  color: #6c8bb8;
  background: rgba(92, 135, 199, 0.16);
}
.ld-tag--positive {
  color: #3ead5d;
  background: rgba(119, 186, 118, 0.14);
}
.ld-tag__tool-tip {
  padding: 12px 16px;
}
.ld-tag__tool-tip.ant-tooltip {
  max-width: 400px;
}
.ld-tag__hover-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  word-break: break-all;
}
.ld-tag__hover-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  margin-top: 2px;
  word-break: break-all;
}
.ld-tag__hover-right {
  flex-shrink: 0;
}
[dir="ltr"] .ld-tag__hover-right {
  margin-left: 38px;
}
[dir="rtl"] .ld-tag__hover-right {
  margin-right: 38px;
}
.ld-tag__hover-img {
  width: 24px;
  height: 24px;
  border-radius: 50px;
}
[dir="ltr"] .ld-tag__hover-img {
  margin-left: 4px;
}
[dir="rtl"] .ld-tag__hover-img {
  margin-right: 4px;
}
.ct-competing-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-competing__back-img,
.ct-competing__jb-img,
.ct-competing__label-img {
  display: block;
}
.ct-competing__back-img {
  width: 75%;
}
.ct-competing__jb-img {
  position: absolute;
  width: 70%;
  -webkit-animation: ct-competing-jb 3s ease-in-out infinite;
  animation: ct-competing-jb 3s ease-in-out infinite;
}
[dir="ltr"] .ct-competing__jb-img {
  left: 18%;
}
[dir="rtl"] .ct-competing__jb-img {
  right: 18%;
}
.ct-competing__label-img {
  position: absolute;
  width: 60%;
  bottom: 20%;
  display: none;
}
[dir="ltr"] .ct-competing__label-img {
  left: 20%;
}
[dir="rtl"] .ct-competing__label-img {
  right: 20%;
}
@-webkit-keyframes ct-competing-jb {
  0% {
    transform: scale(1);
  }
  11% {
    transform: scale(1.1);
  }
  22% {
    transform: scale(1);
  }
  33% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1.1);
  }
}
@keyframes ct-competing-jb {
  0% {
    transform: scale(1);
  }
  11% {
    transform: scale(1.1);
  }
  22% {
    transform: scale(1);
  }
  33% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1.1);
  }
}
.ct-game-data-tag-box {
  padding: 0 6px 1px;
  color: #fff;
  color: var(--static_White, var(--color-primary-white, #fff));
  font-size: 10px;
  line-height: 16px;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
}
[dir="ltr"] .ct-game-data-tag-box {
  border-radius: 6px 0;
  background: linear-gradient(90deg, #f90, #ff6a59);
  background: var(--Gradient-Reddish, linear-gradient(90deg, #f90, #ff6a59));
}
[dir="rtl"] .ct-game-data-tag-box {
  border-radius: 0 6px;
  background: linear-gradient(-90deg, #f90, #ff6a59);
  background: var(--Gradient-Reddish, linear-gradient(-90deg, #f90, #ff6a59));
}
.btn-glare-animate {
  position: relative;
  color: #fff;
}
.btn-glare-animate:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 200%;
  top: -20%;
  bottom: 0;
  background: hsla(0, 0%, 100%, 0.34901960784313724);
  box-shadow: 0 0 10px #fefefe;
}
[dir="ltr"] .btn-glare-animate:before {
  left: 0;
  -webkit-animation: streamer-ltr 4s ease-out infinite;
  animation: streamer-ltr 4s ease-out infinite;
  transform: rotate(30deg);
}
[dir="rtl"] .btn-glare-animate:before {
  right: 0;
  -webkit-animation: streamer-rtl 4s ease-out infinite;
  animation: streamer-rtl 4s ease-out infinite;
  transform: rotate(-30deg);
}
@-webkit-keyframes streamer-ltr {
  0% {
    left: 0;
  }
  40% {
    left: 120%;
  }
  to {
    left: 150%;
  }
}
@-webkit-keyframes streamer-rtl {
  0% {
    right: 0;
  }
  40% {
    right: 120%;
  }
  to {
    right: 150%;
  }
}
@keyframes streamer-ltr {
  0% {
    left: 0;
  }
  40% {
    left: 120%;
  }
  to {
    left: 150%;
  }
}
@keyframes streamer-rtl {
  0% {
    right: 0;
  }
  40% {
    right: 120%;
  }
  to {
    right: 150%;
  }
}
.mt-select-rc__voucher {
  height: 34px;
  border-radius: 32px;
  border: 1px solid #ffd748;
  border: 1px solid var(--Gradient-Brand, #ffd748);
  display: flex;
  align-items: center;
}
[dir="ltr"] .mt-select-rc__voucher {
  background: linear-gradient(
      137deg,
      #f7a701 -9.6%,
      #ffeba4 62.19%,
      #f7a600 97.75%
    ),
    #f7a600;
  background: linear-gradient(
      137deg,
      #f7a701 -9.6%,
      #ffeba4 62.19%,
      var(--bds-brand-700-normal, #f7a600) 97.75%
    ),
    var(--bds-brand-700-normal, #f7a600);
  padding: 6px 14px 6px 37px;
}
[dir="rtl"] .mt-select-rc__voucher {
  background: linear-gradient(
      -137deg,
      #f7a701 -9.6%,
      #ffeba4 62.19%,
      #f7a600 97.75%
    ),
    #f7a600;
  background: linear-gradient(
      -137deg,
      #f7a701 -9.6%,
      #ffeba4 62.19%,
      var(--bds-brand-700-normal, #f7a600) 97.75%
    ),
    var(--bds-brand-700-normal, #f7a600);
  padding: 6px 37px 6px 14px;
}
.mt-select-rc__icon-box {
  background-color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
[dir="ltr"] .mt-select-rc__icon-box {
  left: 0;
}
[dir="rtl"] .mt-select-rc__icon-box {
  right: 0;
}
.mt-select-rc__icon-circle {
  background-color: #ff9c2e;
  width: 26px;
  height: 26px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-select-rc__icon-circle-inner {
  font-size: 12px;
}
.mt-select-rc__content {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}
.follow-order__leader-container {
  width: 348px;
  position: relative;
  color: #fff;
}
[dir="ltr"] .follow-order__leader-container {
  background: linear-gradient(274.44deg, #090b1d, #020036 100.21%);
}
[dir="rtl"] .follow-order__leader-container {
  background: linear-gradient(-274.44deg, #090b1d, #020036 100.21%);
}
.follow-order__leader-bg-img {
  width: 100%;
  height: 150px;
  opacity: 0.6;
  background: url("") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
}
[dir="ltr"] .follow-order__leader-bg-img {
  left: 0;
}
[dir="rtl"] .follow-order__leader-bg-img {
  right: 0;
}
.follow-order__leader-info {
  padding: 80px 0 48px;
  text-align: center;
}
.follow-order__leader-info.follow-order__leader-info-recommend {
  padding: 120px 0 50px;
}
.follow-order__leader-avatar {
  width: 120px;
  height: 120px;
  position: relative;
  margin: 0 auto 16px;
}
.follow-order__leader-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.follow-order__leader-country {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  font-weight: 600;
  font-size: 16px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  position: absolute;
  bottom: 0;
}
[dir="ltr"] .follow-order__leader-country {
  right: 0;
}
[dir="rtl"] .follow-order__leader-country {
  left: 0;
}
.follow-order__leader-nickname {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.follow-order__leader-level {
  margin-top: 4px;
}
.follow-order__leader-level,
.follow-order__leader-level-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
[dir="ltr"] .follow-order__leader-level-wrap {
  margin-left: 4px;
}
[dir="rtl"] .follow-order__leader-level-wrap {
  margin-right: 4px;
}
.follow-order__leader-level-name {
  font-size: 12px;
  font-weight: 600;
}
[dir="ltr"] .follow-order__leader-level-name {
  margin-left: 4px;
}
[dir="rtl"] .follow-order__leader-level-name {
  margin-right: 4px;
}
.follow-order__leader-trade-info {
  width: 100%;
  display: flex;
}
.follow-order__trade-info-item {
  flex: 1 1;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.follow-order__trade-info-item:first-child:before,
.follow-order__trade-info-item:nth-child(2):before {
  content: "";
  height: 80%;
  width: 0.5px;
  background: #404347;
  position: absolute;
  top: 5px;
}
[dir="ltr"] .follow-order__trade-info-item:first-child:before,
[dir="ltr"] .follow-order__trade-info-item:nth-child(2):before {
  right: 0;
}
[dir="rtl"] .follow-order__trade-info-item:first-child:before,
[dir="rtl"] .follow-order__trade-info-item:nth-child(2):before {
  left: 0;
}
[dir="ltr"] .follow-order__trade-info-item:first-child {
  padding-left: 8px;
}
[dir="rtl"] .follow-order__trade-info-item:first-child {
  padding-right: 8px;
}
.follow-order__trade-info-item:nth-child(2) {
  padding: 0 8px;
}
[dir="ltr"] .follow-order__trade-info-item:nth-child(3) {
  padding-right: 12px;
}
[dir="rtl"] .follow-order__trade-info-item:nth-child(3) {
  padding-left: 12px;
}
.follow-order__trade-info-title {
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
  margin-bottom: 2px;
}
.follow-order__trade-info-value {
  display: flex;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
}
.follow-order__trade-info-value.follower-num .total-num {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
  position: relative;
  bottom: 0;
}
[dir="ltr"] .follow-order__trade-info-value.follower-num .total-num {
  left: 2px;
}
[dir="rtl"] .follow-order__trade-info-value.follower-num .total-num {
  right: 2px;
}
.follow-order__leader-assets-container {
  width: 100%;
  margin-top: 26px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}
.follow-order__leader-assets-item {
  width: 150px;
  padding: 10px 0;
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.follow-order__leader-assets-title {
  font-size: 12px;
  line-height: 18px;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
  margin: 0 0 6px;
}
.follow-order__leader-assets-title .copytrade-icon-profit-rate,
.follow-order__leader-assets-title .copytrade-icon-wallet {
  position: relative;
  top: 1px;
}
[dir="ltr"] .follow-order__leader-assets-title .copytrade-icon-profit-rate,
[dir="ltr"] .follow-order__leader-assets-title .copytrade-icon-wallet {
  margin-right: 4px;
}
[dir="rtl"] .follow-order__leader-assets-title .copytrade-icon-profit-rate,
[dir="rtl"] .follow-order__leader-assets-title .copytrade-icon-wallet {
  margin-left: 4px;
}
.follow-order__invite-tip-container {
  max-width: 280px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  position: absolute;
  top: 24px;
  z-index: 999;
}
[dir="ltr"] .follow-order__invite-tip-container {
  background: linear-gradient(
    90.31deg,
    rgba(80, 80, 129, 0.5) -1.14%,
    rgba(93, 91, 222, 0.5) 103.13%
  );
  border-radius: 0 20px 20px 0;
}
[dir="rtl"] .follow-order__invite-tip-container {
  background: linear-gradient(
    -90.31deg,
    rgba(80, 80, 129, 0.5) -1.14%,
    rgba(93, 91, 222, 0.5) 103.13%
  );
  border-radius: 20px 0 0 20px;
}
.follow-order__invite-tip-container .invite-recommended {
  font-weight: 400;
}
[dir="ltr"] .follow-order__invite-tip-container .invite-recommended {
  margin-left: 8px;
}
[dir="rtl"] .follow-order__invite-tip-container .invite-recommended {
  margin-right: 8px;
}
.follow-order__invite-tip-container .invite-desc {
  max-width: 220px;
  word-wrap: break-word;
}
.follow-order__invite-tip-container img {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  align-self: self-start;
}
[dir="ltr"] .follow-order__invite-tip-container img {
  margin-right: 6px;
}
[dir="rtl"] .follow-order__invite-tip-container img {
  margin-left: 6px;
}
.fol-od-pop__name-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.fol-od-pop__tag-box {
  padding: 0 20px;
  margin-top: 8px;
  overflow: hidden;
  height: 48px;
}
.fol-order-dialog__ld-mt-sel {
  position: absolute;
  top: 16px;
  z-index: 5;
}
[dir="ltr"] .fol-order-dialog__ld-mt-sel--left {
  left: 16px;
}
[dir="ltr"] .fol-order-dialog__ld-mt-sel--right,
[dir="rtl"] .fol-order-dialog__ld-mt-sel--left {
  right: 16px;
}
[dir="rtl"] .fol-order-dialog__ld-mt-sel--right {
  left: 16px;
}
.join-whiteList-sub-title {
  margin-bottom: 10px;
}
.join-whiteList-sub-title,
.join-whiteList-tips-item {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.join-whiteList-tips-item {
  margin-bottom: 4px;
  position: relative;
}
[dir="ltr"] .join-whiteList-tips-item {
  padding-left: 20px;
}
[dir="rtl"] .join-whiteList-tips-item {
  padding-right: 20px;
}
.join-whiteList-tips-item:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #81858c;
  background: var(--bds-gray-t2, #81858c);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
[dir="ltr"] .join-whiteList-tips-item:before {
  left: 0;
}
[dir="rtl"] .join-whiteList-tips-item:before {
  right: 0;
}
.follow-header__container {
  width: 100%;
  padding: 24px 20px 14px;
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
}
.follow-header__container .follow-header__container-close {
  font-size: 20px;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
  width: 22px;
  height: 22px;
  line-height: 22px;
  cursor: pointer;
  position: relative;
  top: 1px;
}
.follow-header__container .follow-header__container-close:hover {
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
.follow-header__container .advance-multi-select__container {
  height: auto;
  line-height: auto;
}
.follow-mode__container {
  margin-top: 4px;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
.follow-header__title {
  font-weight: 600;
  font-size: 18px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  overflow: hidden;
  white-space: nowrap;
}
[dir="ltr"] .follow-header__title {
  padding-right: 8px;
}
[dir="rtl"] .follow-header__title {
  padding-left: 8px;
}
.follow-header__nickname {
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.follow-header__enabled-sync {
  color: #d6850d;
  color: var(--bds-brand-900-text, #d6850d);
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}
.fol-od__at-sted-txt-normal {
  font-size: 12px;
  font-weight: 400;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.ft-set-account__action-btn {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #d6850d;
  color: var(--bds-brand-900-text, #d6850d);
  cursor: pointer;
  position: relative;
}
.ft-set-account__action-btn-right-bd:after {
  content: "";
  display: block;
  position: absolute;
  height: 12px;
  top: 3px;
}
[dir="ltr"] .ft-set-account__action-btn-right-bd:after {
  border-right: 1px solid #d5dae0;
  border-right: 1px solid var(--bds-gray-t4-dis, #d5dae0);
  right: 0;
}
[dir="rtl"] .ft-set-account__action-btn-right-bd:after {
  border-left: 1px solid #d5dae0;
  border-left: 1px solid var(--bds-gray-t4-dis, #d5dae0);
  left: 0;
}
.ft-set__accout-list-error-tip {
  font-size: 14px;
  line-height: 22px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  padding: 8px 12px;
  background-color: rgba(247, 166, 0, 0.12);
  border-radius: 8px;
  margin: 0 4px;
}
.ft-set__accout-list-icon.copytrade-icon {
  font-size: 14px;
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
[dir="ltr"] .ft-set__accout-list-icon.copytrade-icon {
  margin-right: 4px;
}
[dir="rtl"] .ft-set__accout-list-icon.copytrade-icon {
  margin-left: 4px;
}
.futures-setting-select-account-options
  .isChecked
  .follow-order__account-selector-assets {
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
.follow-order__account-selector-assets,
.invt-account-type__title {
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
[dir="ltr"] .invt-account-type__title {
  text-align: right;
}
[dir="rtl"] .invt-account-type__title {
  text-align: left;
}
[dir="ltr"] .cp-bs__down-icon {
  margin-left: 4px;
}
[dir="rtl"] .cp-bs__down-icon {
  margin-right: 4px;
}
.cp-bs__selected-tab {
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
.cp-bs__selected-tab.cp-bs__selected-tab--disabled {
  opacity: 0.35;
  cursor: auto;
}
.cp-bs__unselected {
  padding: 3px 4px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: #fff;
}
[dir="ltr"] .cp-bs__unselected {
  background: linear-gradient(90deg, #f90 33.33%, #ff6a59);
}
[dir="rtl"] .cp-bs__unselected {
  background: linear-gradient(-90deg, #f90 33.33%, #ff6a59);
}
.cp-bs__operate-plate.ant-dropdown {
  background: #fff;
  box-shadow: 0 2px 16px rgba(18, 18, 20, 0.1);
  border-radius: 8px;
  padding: 16px 16px 24px;
  width: 480px;
}
.cp-modify-investment.cp-bs__operate-plate.ant-dropdown {
  width: 416px;
}
.cp-bs__select-input {
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #d6850d;
  color: var(--bds-brand-900-text, #d6850d);
}
.cp-bs__total-bonus-box {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  margin-top: 8px;
}
.cp-bs__total-bonus-title {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.copytrade-icon-question.cp-bs-icon-question {
  font-size: 10px;
}
[dir="ltr"] .copytrade-icon-question.cp-bs-icon-question {
  margin-left: 5px;
}
[dir="rtl"] .copytrade-icon-question.cp-bs-icon-question {
  margin-right: 5px;
}
.cp-bs__bt-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cp-bs__bt-btns .by-button .by-button__content {
  font-weight: 600;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.setting-input-success-msg,
.setting-input-waring-msg {
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  display: flex;
  margin-top: 8px;
}
[dir="ltr"] .setting-input-success-msg p,
[dir="ltr"] .setting-input-waring-msg p {
  margin-left: 4px;
}
[dir="rtl"] .setting-input-success-msg p,
[dir="rtl"] .setting-input-waring-msg p {
  margin-right: 4px;
}
.setting-input-success-msg svg,
.setting-input-waring-msg svg {
  margin-top: 3px;
}
.setting-input-waring-msg {
  color: #d6850d;
  color: var(--brand-900-text, var(--bds-brand-900-text, #d6850d));
}
.setting-input-success-msg {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.ct-sub-side-bonus__tab {
  cursor: default;
}
.ct-sub-side-bonus__tab-content {
  padding: 3px 4px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: #fff;
}
[dir="ltr"] .ct-sub-side-bonus__tab-content {
  background: linear-gradient(90deg, #f90 33.33%, #ff6a59);
}
[dir="rtl"] .ct-sub-side-bonus__tab-content {
  background: linear-gradient(-90deg, #f90 33.33%, #ff6a59);
}
.ct-sub-side-bonus__down-icon {
  color: #d5dae0;
  color: var(--bds-gray-t4-dis, #d5dae0);
}
[dir="ltr"] .ct-sub-side-bonus__down-icon {
  margin-left: 4px;
}
[dir="rtl"] .ct-sub-side-bonus__down-icon {
  margin-right: 4px;
}
.ct-sub-side-bonus__using-disable .ct-sub-side-bonus__tab-content {
  background: #d5dae0;
  background: var(--gray-tt-4-dis, var(--bds-gray-t4-dis, #d5dae0));
}
.fol-set-dialog__invest-input {
  margin-top: 16px;
}
.fol-set-dialog__invest-input .futures-setting-title-right {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  display: flex;
  align-items: center;
}
.fol-set-dialog__invest-input .futures-setting-title-right .icon-question {
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  font-size: 14px;
  cursor: pointer;
  position: relative;
  top: 1px;
}
[dir="ltr"]
  .fol-set-dialog__invest-input
  .futures-setting-title-right
  .icon-question {
  margin-left: 4.6px;
}
[dir="rtl"]
  .fol-set-dialog__invest-input
  .futures-setting-title-right
  .icon-question {
  margin-right: 4.6px;
}
.fol-set-dialog__invest-input .futures-setting-title {
  font-size: 16px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  line-height: 24px;
  font-weight: 600;
}
.fol-set-dialog__invest-input
  .follow-dialog__account-list.futures-setting-select-account-options {
  width: 472px;
}
.ct-checkbox-box
  .ant-checkbox-checked.ant-checkbox-disabled
  .ant-checkbox-inner {
  background-color: #f7a600 59;
  background-color: var(--bds-brand-700-normal, #f7a600) 59;
}
.ct-checkbox-box
  .ant-checkbox-checked.ant-checkbox-disabled
  .ant-checkbox-inner,
.ct-checkbox-box
  .ant-checkbox-checked.ant-checkbox-disabled
  .ant-checkbox-inner
  :after {
  border-color: #f7a600 59 !important;
  border-bottom-color: var(--bds-brand-700-normal, #f7a600) !important;
  border-right-color: 59 !important;
  border-top-color: var(--bds-brand-700-normal, #f7a600) !important;
}
.ct-checkbox-box .ant-checkbox-checked .ant-checkbox-inner:after {
  border-color: #121214;
  border-color: var(--bds-gray-t1-title, #121214);
}
.fol-set-dialog__tools-choose {
  padding: 24px 0 16px;
}
.fol-set-dig__cb-box {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
}
.fol-set-dig__cb-box-item {
  display: flex;
  align-items: center;
  width: 50%;
}
.fol-set-dig__cb-box-item .ant-checkbox + span {
  padding-right: 4px;
}
.fol-set-dig__cb-box-item .icon-question {
  font-size: 14px;
}
.fol-set-dig__new-feature {
  font-size: 12px;
  zoom: 0.83;
  height: 14.4px;
  line-height: 14.4px;
  color: #fff;
  padding: 0 2.4px;
}
[dir="ltr"] .fol-set-dig__new-feature {
  margin-right: 4px;
  border-radius: 0 4.8px;
  background: linear-gradient(90deg, #ff7b42, #ff4740);
}
[dir="rtl"] .fol-set-dig__new-feature {
  margin-left: 4px;
  border-radius: 4.8px 0;
  background: linear-gradient(-90deg, #ff7b42, #ff4740);
}
.copy-stop-loss-tips-container {
  border: 1px solid #f3f5f7;
  border: 1px solid var(--bds-gray-ele-line, #f3f5f7);
  border-radius: 4px;
  padding: 8px;
  margin-top: 8px;
}
.copy-stop-loss-tips-container .copy-stop-loss-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  display: flex;
  align-items: center;
}
.copy-stop-loss-tips-container .copy-stop-loss-tips {
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
.copy-stop-loss-tips-container .copy-stop-loss-tips .copy-stop-loss-tips-text {
  display: inline;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
.copy-stop-loss-tips-container .copy-stop-loss-percent {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
[dir="ltr"] .copy-stop-loss-tips-container .copy-stop-loss-percent {
  margin-left: 16px;
}
[dir="rtl"] .copy-stop-loss-tips-container .copy-stop-loss-percent {
  margin-right: 16px;
}
.copy-stop-loss-tips-container .ant-select {
  margin-bottom: 2px;
}
.copy-stop-loss-tips-container .ant-select .ant-select-selector {
  border: none !important;
  box-shadow: none !important;
}
[dir="ltr"] .copy-stop-loss-tips-container .ant-select .ant-select-selector {
  padding: 0 6px 0 0;
}
[dir="rtl"] .copy-stop-loss-tips-container .ant-select .ant-select-selector {
  padding: 0 0 0 6px;
}
.copy-stop-loss-tips-container
  .ant-select
  .ant-select-selector
  .ant-select-selection-item {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
  height: 20px;
}
.copy-stop-loss-tips-container .ant-select .ant-select-arrow svg {
  width: 9px;
}
.copy-stop-loss-tips-container .by-slider {
  margin: 8px;
}
.copy-stop-loss-tips-container .copy-stop-loss-select {
  height: 20px;
}
.copy-stop-loss-tips-container .copy-stop-loss-select .ant-select-selector {
  height: 20px !important;
}
.future-set-foot__inv-val {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  max-width: 260px;
}
.future-set-foot__bonus-val {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.future-set-foot__bonus-go-use {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
[dir="ltr"] .future-ft_go-use-right-icon {
  transform: rotate(-90deg);
}
[dir="rtl"] .future-ft_go-use-right-icon {
  transform: rotate(90deg);
}
.futures-setting-footer {
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
  background-color: #fff;
}
.futures-setting-footer.align-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.futures-setting-footer .futures-setting-footer-tips {
  font-weight: 400;
  font-size: 12px;
  margin-top: 9px;
}
.futures-setting-footer .futures-setting-footer-check {
  display: flex;
  align-items: center;
  padding: 8px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 18px;
}
.futures-setting-footer .futures-setting-footer-protocol {
  font-size: 12px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  margin-top: 8px;
}
.futures-setting-footer .futures-setting-footer-protocol a {
  color: #f4a203;
  cursor: pointer;
}
.futures-setting-footer .futures-setting-footer-follow-link {
  font-size: 12px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  cursor: pointer;
  text-decoration: underline;
}
[dir="ltr"] .futures-setting-footer .futures-setting-footer-follow-link {
  margin-left: 4px;
}
[dir="rtl"] .futures-setting-footer .futures-setting-footer-follow-link {
  margin-right: 4px;
}
.futures-setting-footer .futures-setting-footer-follow-text {
  font-size: 12px;
}
.futures-setting-footer .futures-setting-footer-order-btn {
  display: block;
  width: 100%;
  font-size: 16px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  height: 48px;
  padding: 0;
  border-radius: 8px;
  margin-top: 0;
}
.futures-setting-footer .futures-setting-footer-order-btn .by-button__content {
  font-weight: 600;
}
.futures-setting-footer .futures-setting-footer-order-btn.is-white-list {
  padding-top: 6px;
}
.futures-setting-footer
  .futures-setting-footer-order-btn.future-set__with-bonus {
  width: 220px;
  margin-top: 0;
}
.futures-setting-footer .futures-setting-footer-symbol-btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  font-size: 16px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  height: 48px;
  padding: 0;
  border-radius: 8px;
}
.futures-setting-footer .futures-setting-footer-symbol-btn .by-button__content {
  font-weight: 600;
}
.futures-setting-footer .futures-setting-footer-symbol-btn.by-button--disabled {
  background: rgba(247, 166, 0, 0.35);
}
.futures-setting-footer
  .futures-setting-footer-symbol-btn.by-button--disabled
  .by-button__content {
  color: rgba(18, 18, 20, 0.35);
}
.futures-setting-footer .futures-setting-footer-symbol-btn .sure {
  position: relative;
}
[dir="ltr"] .futures-setting-footer .futures-setting-footer-symbol-btn .sure {
  margin-right: 8px;
}
[dir="rtl"] .futures-setting-footer .futures-setting-footer-symbol-btn .sure {
  margin-left: 8px;
}
.futures-setting-footer .futures-setting-footer-symbol-btn .sure:after {
  content: "";
  position: absolute;
  top: 20%;
  background-color: rgba(0, 0, 0, 0.5);
  height: 60%;
  width: 0.5px;
}
[dir="ltr"]
  .futures-setting-footer
  .futures-setting-footer-symbol-btn
  .sure:after {
  right: -8px;
}
[dir="rtl"]
  .futures-setting-footer
  .futures-setting-footer-symbol-btn
  .sure:after {
  left: -8px;
}
[dir="ltr"]
  .futures-setting-footer
  .futures-setting-footer-symbol-btn
  .sure
  + span {
  margin-left: 8px;
}
[dir="rtl"]
  .futures-setting-footer
  .futures-setting-footer-symbol-btn
  .sure
  + span {
  margin-right: 8px;
}
.coupon-card-invest-box {
  border-radius: 8px;
  background: rgba(247, 166, 0, 0.16);
  background: var(--brand-100-bg, rgba(247, 166, 0, 0.16));
  display: flex;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}
[dir="ltr"] .coupon-card-invest-box {
  padding: 8px 8px 8px 12px;
}
[dir="rtl"] .coupon-card-invest-box {
  padding: 8px 12px 8px 8px;
}
.coupon-card-invest-box svg {
  margin-top: -2px;
}
.coupon-card-invest-box .coupon-card-invest-content {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}
[dir="ltr"] .coupon-card-invest-box .coupon-card-invest-content {
  padding-left: 4px;
}
[dir="rtl"] .coupon-card-invest-box .coupon-card-invest-content {
  padding-right: 4px;
}
.coupon-card-invest-box .coupon-card-invest-title {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.coupon-card-invest-box .coupon-card-invest-tip {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.coupon-card-invest-box .coupon-card-invest-num {
  color: #d6850d;
  color: var(--brand-900-text, var(--bds-brand-900-text, #d6850d));
}
[dir="ltr"] .coupon-card-invest-box .coupon-card-max-award-amount {
  margin-left: 4px;
}
[dir="rtl"] .coupon-card-invest-box .coupon-card-max-award-amount {
  margin-right: 4px;
}
.coupon-card-invest-box .coupon-card-title-icon {
  width: 24px;
  height: 24px;
}
.coupon-card-invest-box .coupon-card-invest__claim-action {
  display: flex;
  justify-content: flex-start;
  margin-top: 4px;
}
.coupon-card-invest__claimed-card {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e9edf2;
  border: 1px solid var(--bds-gray-ele-border, #e9edf2);
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.coupon-card-invest__claimed-card .coupon-card-claimed-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.coupon-card-invest__claimed-card .coupon-card-claimed-left {
  display: flex;
  align-items: flex-start;
}
.coupon-card-invest__claimed-card .coupon-card-claimed-desc {
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.coupon-card-invest__claimed-card .coupon-card-invest__card-title {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
[dir="ltr"] .coupon-card-invest__claimed-card .coupon-card-invest__card-title {
  margin-left: 3px;
}
[dir="rtl"] .coupon-card-invest__claimed-card .coupon-card-invest__card-title {
  margin-right: 3px;
}
.coupon-card-invest__claim-tip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1;
  margin: 0 8px;
}
.coupon-card-invest__claim-btn {
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  cursor: pointer;
}
.coupon-card__sub-sidy {
  padding: 8px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  border-radius: 8px;
  background: rgba(247, 166, 0, 0.16);
  background: var(--Brand-100-bg, rgba(247, 166, 0, 0.16));
  display: flex;
}
.coupon-card__sub-sidy-icon {
  width: 24px;
  height: 24px;
  display: block;
}
[dir="ltr"] .coupon-card__sub-sidy-icon {
  margin-right: 8px;
}
[dir="rtl"] .coupon-card__sub-sidy-icon {
  margin-left: 8px;
}
[dir="ltr"] .futures-order-setting-dialog {
  direction: ltr;
}
[dir="rtl"] .futures-order-setting-dialog {
  direction: rtl;
}
.futures-order-setting-dialog .by-dialog {
  width: 868px;
  height: 600px;
  overflow: hidden;
  border-radius: 16px;
}
.futures-order-setting-dialog .by-dialog__head {
  padding: 0;
  height: 100px;
}
.futures-order-setting-dialog .by-dialog__body {
  padding: 0;
  height: 600px;
}
.futures-order-setting-dialog .futures-setting-title-box {
  display: flex;
  align-items: center;
}
.futures-order-setting-dialog .futures-setting-title {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-size: 16px;
  font-weight: 600;
}
.futures-order-setting-dialog .futures-setting-type-selector {
  width: 524px;
  padding: 4px 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  position: absolute;
  z-index: 2;
  background: #fff;
}
.futures-order-setting-dialog
  .futures-setting-type-selector
  .futures-setting-type-selector-item {
  padding: 8px 14px;
  align-items: center;
  cursor: no-drop;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  display: flex;
  justify-content: space-between;
}
.futures-order-setting-dialog
  .futures-setting-type-selector
  .futures-setting-type-selector-item
  .futures-setting-type-selector-comingSoon {
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  zoom: 0.8;
  padding: 2.5px 5px;
  border: 0.5px solid #adb1b8;
  border: 0.5px solid var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
  border-radius: 2px;
}
.futures-order-setting-dialog
  .futures-setting-type-selector
  .futures-setting-type-selector-item-selected {
  background: #f8f8f8;
  cursor: pointer;
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
.futures-order-setting-dialog .by-dialog__close {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
[dir="ltr"] .futures-order-setting-dialog .by-dialog__close {
  right: 28px;
}
[dir="rtl"] .futures-order-setting-dialog .by-dialog__close {
  left: 28px;
}
.futures-order-setting-dialog .by-dialog__foot {
  display: none;
}
.futures-order-setting-dialog .setting-dialog-header {
  height: 100px;
  display: flex;
  padding: 24px;
  box-sizing: border-box;
  align-items: center;
}
.futures-order-setting-dialog
  .setting-dialog-header
  .setting-dialog-header-background {
  display: flex;
  position: absolute;
  top: 0;
  width: 576px;
  height: 100px;
}
[dir="ltr"]
  .futures-order-setting-dialog
  .setting-dialog-header
  .setting-dialog-header-background {
  left: 0;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .setting-dialog-header
  .setting-dialog-header-background {
  right: 0;
}
.futures-order-setting-dialog .setting-dialog-header .setting-dialog-avatr-box {
  z-index: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.futures-order-setting-dialog
  .setting-dialog-header
  .setting-dialog__lf-region {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  bottom: 0;
  font-weight: 600;
  font-size: 12px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
}
[dir="ltr"]
  .futures-order-setting-dialog
  .setting-dialog-header
  .setting-dialog__lf-region {
  right: 0;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .setting-dialog-header
  .setting-dialog__lf-region {
  left: 0;
}
.futures-order-setting-dialog .setting-dialog-header .avatr {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-block;
  z-index: 1;
  -o-object-fit: cover;
  object-fit: cover;
}
.futures-order-setting-dialog .setting-dialog-header .text {
  line-height: normal;
  z-index: 1;
  max-width: 400px;
}
[dir="ltr"] .futures-order-setting-dialog .setting-dialog-header .text {
  margin-left: 16px;
}
[dir="rtl"] .futures-order-setting-dialog .setting-dialog-header .text {
  margin-right: 16px;
}
.futures-order-setting-dialog .setting-dialog-header .text .title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 400px;
}
.futures-order-setting-dialog .setting-dialog-header .text .assest {
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
  font-size: 14px;
  font-weight: 400;
  z-index: 1;
}
.futures-order-setting-dialog .desc-item .desc-item-title {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  margin-top: 32px;
}
.futures-order-setting-dialog .desc-item .desc-item-title.desc-item-title-less {
  margin-top: 32px;
  font-size: 16px;
}
.futures-order-setting-dialog
  .desc-item
  .desc-item-title.desc-item-title-error {
  color: #ef454a;
  color: var(--bds-red-700-normal, #ef454a);
}
.futures-order-setting-dialog
  .desc-item
  .desc-item-title.desc-item-title-advanced {
  width: 100%;
  font-size: 14px;
  cursor: pointer;
  min-width: 70px;
  margin-top: 0;
  padding-top: 14px;
  border-top: 1px solid #f3f5f7;
  border-top: 1px solid var(--bds-gray-ele-line, #f3f5f7);
  display: inline-block;
}
.futures-order-setting-dialog .desc-item .desc-item-title.desc-item-title-24 {
  margin-top: 24px;
}
[dir="ltr"]
  .futures-order-setting-dialog
  .desc-item
  .desc-item-title
  .desc-item-title-amount {
  margin-left: 8px;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .desc-item
  .desc-item-title
  .desc-item-title-amount {
  margin-right: 8px;
}
.futures-order-setting-dialog .desc-item .desc-item-title .icon-question {
  font-weight: 400;
}
.futures-order-setting-dialog
  .desc-item
  .futures-setting-leverage-type-selector {
  width: 100%;
  padding: 13px 16px;
  background: #f3f5f7;
  background: var(--bds-gray-ele-line, #f3f5f7);
  border-radius: 4px;
  display: flex;
  align-items: center;
  margin-top: 8px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
  justify-content: space-between;
}
.futures-order-setting-dialog
  .desc-item
  .futures-setting-leverage-type-selector.disabled {
  cursor: not-allowed;
}
.futures-order-setting-dialog
  .desc-item
  .futures-setting-leverage-type-selector.disabled
  .copytrade-icon {
  display: none;
}
.futures-order-setting-dialog
  .desc-item
  .futures-setting-leverage-type-selector.futures-setting-leverage-type-selector-error {
  border: 1px solid #ef454a;
  border: 1px solid var(--bds-red-700-normal, #ef454a);
}
.futures-order-setting-dialog
  .desc-item
  .futures-setting-leverage-type-selector
  .futures-setting-leverage-type-selector-arrow {
  font-size: 22px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
[dir="ltr"]
  .futures-order-setting-dialog
  .desc-item
  .futures-setting-leverage-type-selector
  .futures-setting-leverage-type-selector-arrow {
  transform: rotate(-90deg);
}
[dir="rtl"]
  .futures-order-setting-dialog
  .desc-item
  .futures-setting-leverage-type-selector
  .futures-setting-leverage-type-selector-arrow {
  transform: rotate(90deg);
}
.futures-order-setting-dialog .desc-item .by-slider {
  margin: 8px;
}
.futures-order-setting-dialog .desc-item .by-slider .by-slider-handle {
  border: var(--size-1) solid var(--bds-gray-ele-line, #f3f5f7);
}
.futures-order-setting-dialog
  .desc-item
  .by-slider.by-slider-disabled
  .by-slider-handle {
  background-color: #fff;
}
.futures-order-setting-dialog
  .desc-item
  .by-slider.by-slider-disabled
  .by-slider-track {
  background-color: var(--bds-brand-700-normal) !important;
}
.futures-order-setting-dialog .copytrade-icon-lock,
.futures-order-setting-dialog .copytrade-icon-thumbup {
  font-size: 16px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  font-weight: 400;
}
[dir="ltr"] .futures-order-setting-dialog .copytrade-icon-lock,
[dir="ltr"] .futures-order-setting-dialog .copytrade-icon-thumbup {
  margin-right: 4px;
}
[dir="rtl"] .futures-order-setting-dialog .copytrade-icon-lock,
[dir="rtl"] .futures-order-setting-dialog .copytrade-icon-thumbup {
  margin-left: 4px;
}
.futures-order-setting-dialog .icon-question {
  font-size: 14px;
  cursor: pointer;
  position: relative;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
[dir="ltr"] .futures-order-setting-dialog .icon-question {
  margin-left: 4px;
}
[dir="rtl"] .futures-order-setting-dialog .icon-question {
  margin-right: 4px;
}
.futures-order-setting-dialog .setting-dialog-body {
  width: 520px;
  padding-bottom: 0;
  position: relative;
}
.futures-order-setting-dialog .setting-dialog-body::-webkit-scrollbar {
  width: 8px;
  background: #fff;
}
.futures-order-setting-dialog .setting-dialog-body::-webkit-scrollbar-thumb {
  background-color: #d9d9d9;
  border-radius: 10px;
  outline-offset: -2px;
  outline: 2px solid #fff;
}
.futures-order-setting-dialog .futures-setting {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.futures-order-setting-dialog .futures-setting::-webkit-scrollbar-thumb {
  background-color: #d9d9d9;
  border-radius: 10px;
  outline-offset: -2px;
  outline: 2px solid #fff;
}
.futures-order-setting-dialog .futures-setting .futures-setting-principal {
  flex: 1 1;
  padding: 0 20px;
  overflow-y: auto !important;
  overflow-y: overlay !important;
  scroll-behavior: smooth;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .setting-input.by-input--outlined
  .by-input__container {
  border: 1px solid transparent;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .setting-input
  .by-input__container:focus-within {
  border-color: var(--brand-color-02);
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .setting-input
  .by-input__container {
  height: 48px;
  background: #f3f5f7;
  background: var(--bds-gray-ele-line, #f3f5f7);
  border-radius: 4px;
  margin-top: 8px;
  padding: 13px 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .setting-input
  .by-input__container
  input::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .setting-input
  .by-input__container
  input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .setting-input
  .by-input__container
  input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .setting-input
  .by-input__container
  .by-input__inner {
  font-weight: 500;
  font-size: 16px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .setting-input
  .by-input__container
  .by-input__inner::-moz-placeholder {
  font-size: 500;
  font-size: 14px;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .setting-input
  .by-input__container
  .by-input__inner:-ms-input-placeholder {
  font-size: 500;
  font-size: 14px;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .setting-input
  .by-input__container
  .by-input__inner::placeholder {
  font-size: 500;
  font-size: 14px;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .setting-input
  .by-input__container
  .by-input__right-icon {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-weight: 500;
  font-size: 16px;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .setting-input.setting-input-error
  .by-input__container {
  border: 1px solid #ef454a;
  border: 1px solid var(--bds-red-700-normal, #ef454a);
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .error-tip {
  color: #ef454a;
  color: var(--bds-red-700-normal, #ef454a);
  font-size: 12px;
  margin: 8px 0;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-desc {
  margin-top: 8px;
  margin-bottom: 8px;
  border-radius: 4px;
  overflow: hidden;
  padding: 8px;
  border: 0.5px solid #e9edf2;
  border: 0.5px solid var(--bds-gray-ele-border, #e9edf2);
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-desc
  .desc-item {
  display: flex;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  align-items: center;
  font-size: 12px;
  justify-content: space-between;
  line-height: 20px;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-desc
  .desc-item.desc-account {
  margin-bottom: 4px;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-desc
  .desc-item
  .copytrade-icon {
  width: 11px;
  height: 11px;
  cursor: pointer;
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-desc
  .desc-item
  .copytrade-icon {
  margin-left: 6px;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-desc
  .desc-item
  .copytrade-icon {
  margin-right: 6px;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-desc
  .desc-item
  .value {
  min-width: 130px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-desc
  .desc-item
  .value {
  text-align: right;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-desc
  .desc-item
  .value {
  text-align: left;
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-desc
  .desc-item
  .value
  span {
  margin-left: 3px;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-desc
  .desc-item
  .value
  span {
  margin-right: 3px;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-desc
  .desc-item
  .value
  .advance-multi-select__container {
  height: 20px;
  line-height: 20px;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-slider {
  margin-top: 12px;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-slider
  .slider-setting-label {
  display: flex;
  align-items: center;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-slider
  .slider-setting-label
  span {
  font-weight: 500;
  font-size: 12px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-slider
  .slider-setting-label
  span {
  margin-left: 7px;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-slider
  .slider-setting-label
  span {
  margin-right: 7px;
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-slider
  .slider-setting-label
  span:last-child {
  margin-left: 16px;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-slider
  .slider-setting-label
  span:last-child {
  margin-right: 16px;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-slider
  .by-slider {
  padding: 0;
  margin: 20px 0 12px;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-principal
  .futures-setting-principal-slider
  .slider-value-tips {
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  font-size: 12px;
  margin-top: 12px;
}
.futures-order-setting-dialog .futures-setting .slider-value-label {
  display: flex;
  justify-content: space-between;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  font-size: 10px;
  padding: 0 2px;
}
.futures-order-setting-dialog .futures-setting .futures-setting-symbol {
  margin-top: 16px;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbol
  .futures-setting-symbol-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbol
  .futures-setting-symbol-title
  > div:first-child {
  font-size: 12px;
  font-weight: 600;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbol
  .futures-setting-symbol-title
  .futures-setting-symbol-title-select {
  cursor: pointer;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbol
  .futures-setting-symbol-title
  .futures-setting-symbol-title-select.disabled {
  cursor: not-allowed;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbol
  .futures-setting-symbol-title
  .futures-setting-symbol-title-select.disabled
  .futures-setting-symbol-title-icon {
  display: none;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbol
  .futures-setting-symbol-title
  .futures-setting-symbol-title-select
  .futures-setting-symbol-title-icon {
  display: inline-block;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbol
  .futures-setting-symbol-title
  .futures-setting-symbol-title-select
  .futures-setting-symbol-title-icon {
  margin-left: 10px;
  transform: rotate(-90deg) scale(0.9);
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbol
  .futures-setting-symbol-title
  .futures-setting-symbol-title-select
  .futures-setting-symbol-title-icon {
  margin-right: 10px;
  transform: rotate(90deg) scale(0.9);
}
.futures-order-setting-dialog .futures-setting .futures-setting-symbols {
  height: 100%;
  padding: 16px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbols
  .futures-setting-symbols-headers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbols
  .futures-setting-symbols-headers
  .futures-setting-symbols-headers-icon {
  cursor: pointer;
  display: inline-block;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbols
  .futures-setting-symbols-headers
  .futures-setting-symbols-headers-icon {
  transform: rotate(90deg);
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbols
  .futures-setting-symbols-headers
  .futures-setting-symbols-headers-icon {
  transform: rotate(-90deg);
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbols
  .futures-setting-symbols-headers
  .futures-setting-symbols-headers-title {
  font-weight: 600;
  font-size: 14px;
  position: absolute;
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbols
  .futures-setting-symbols-headers
  .futures-setting-symbols-headers-title {
  left: 50%;
  transform: translate(-50%);
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbols
  .futures-setting-symbols-headers
  .futures-setting-symbols-headers-title {
  right: 50%;
  transform: translate(50%);
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbols
  .futures-setting-symbols-headers
  .futures-setting-symbols-headers-check {
  font-size: 12px;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbols
  .futures-setting-symbols-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  height: calc(100% - 140px);
  overflow-y: scroll;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbols
  .futures-setting-symbols-wrap
  .futures-setting-symbols-item {
  font-size: 12px;
  text-align: center;
  width: 108px;
  height: 28px;
  line-height: 28px;
  margin-left: 4px;
  margin-right: 4px;
  border-radius: 4px;
  font-weight: 500;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
  border: 1px solid #adb1b8;
  border: 1px solid var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
  cursor: pointer;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbols
  .futures-setting-symbols-wrap
  .futures-setting-symbols-item:nth-child(n + 5) {
  margin-top: 16px;
}
.futures-order-setting-dialog
  .futures-setting
  .futures-setting-symbols
  .futures-setting-symbols-wrap
  .futures-setting-symbols-item.futures-setting-symbols-item-active {
  color: #f4a203;
  border: 1px solid #f4a203;
}
.futures-order-setting-dialog .futures-setting-departLine {
  height: 0.5px;
  background: #e9edf2;
  background: var(--bds-gray-ele-border, #e9edf2);
  width: 100%;
  margin-top: 24px;
}
.futures-order-setting-dialog .futures-setting-Leverage {
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-Header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-Header
  .futures-setting-Leverage-Header-back {
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  font-size: 20px;
  cursor: pointer;
  position: absolute;
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-Header
  .futures-setting-Leverage-Header-back {
  transform: rotate(90deg);
  left: 0;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-Header
  .futures-setting-Leverage-Header-back {
  transform: rotate(-90deg);
  right: 0;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-Header
  .futures-setting-Leverage-title {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-selector {
  display: flex;
  margin-top: 29px;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-selector
  .futures-setting-Leverage-selector-item {
  width: 168px;
  min-height: 50px;
  line-height: 18px;
  border: 0.5px solid #81858c;
  border: 0.5px solid var(--bds-gray-t2, #81858c);
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  font-weight: 500;
  padding: 16px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-selector
  .futures-setting-Leverage-selector-item:not(:first-child) {
  margin-left: 12px;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-selector
  .futures-setting-Leverage-selector-item:not(:first-child) {
  margin-right: 12px;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-selector
  .futures-setting-Leverage-selector-item
  .ant-radio-inner {
  border-color: #81858c;
  border-color: var(--bds-gray-t2, #81858c);
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-selector
  .futures-setting-Leverage-selector-item.futures-setting-Leverage-selector-item-active {
  border: 0.5px solid #f7a600;
  border: 0.5px solid var(--bds-brand-700-normal, #f7a600);
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-selector
  .futures-setting-Leverage-selector-item.futures-setting-Leverage-selector-item-active
  .ant-radio-inner {
  border-color: #f7a600;
  border-color: var(--bds-brand-700-normal, #f7a600);
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-FollowLeader,
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-tips {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  margin-top: 16px;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-input {
  width: 100%;
  height: 48px;
  background: #f3f5f7;
  background: var(--bds-gray-ele-line, #f3f5f7);
  border-radius: 4px;
  margin-top: 24px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  display: flex;
  align-items: center;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-input
  .futures-setting-Leverage-input-inside {
  height: 48px;
  width: 55%;
  border: none;
  background: none;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-input
  .futures-setting-Leverage-input-inside
  .by-input__container {
  height: 48px;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-input
  .futures-setting-Leverage-input-inside
  .by-input__container
  .by-input__wrapper {
  margin: 0;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-input
  .futures-setting-Leverage-input-inside
  .by-input__container
  .by-input__inner {
  height: 48px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  padding: 0 6%;
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-input
  .futures-setting-Leverage-input-inside
  .by-input__container
  .by-input__inner {
  text-align: right;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-input
  .futures-setting-Leverage-input-inside
  .by-input__container
  .by-input__inner {
  text-align: left;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-input
  .futures-setting-Leverage-input-X {
  margin-top: 2px;
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-input
  .futures-setting-Leverage-input-X {
  margin-left: -3%;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-input
  .futures-setting-Leverage-input-X {
  margin-right: -3%;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-slider {
  margin-top: 27px;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-slider
  .by-slider {
  margin: 0 8px;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-slider
  .slider-value-label {
  margin-top: 11px;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table {
  margin-top: 16px;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-header {
  display: flex;
  background: #f5f7fa;
  background: var(--bds-gray-bg-page, #f5f7fa);
  align-items: center;
  padding: 13px 16px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-header
  .futures-setting-Leverage-table-header-first {
  width: 140px;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-header
  .futures-setting-Leverage-table-header-second {
  width: 148px;
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-header
  .futures-setting-Leverage-table-header-second {
  margin-left: 24px;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-header
  .futures-setting-Leverage-table-header-second {
  margin-right: 24px;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-header
  .futures-setting-Leverage-table-header-third {
  width: 160px;
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-header
  .futures-setting-Leverage-table-header-third {
  margin-left: 24px;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-header
  .futures-setting-Leverage-table-header-third {
  margin-right: 24px;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-body {
  padding-bottom: 24px;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-body
  .futures-setting-Leverage-table-body-item {
  padding: 8px 16px;
  border-bottom: 0.5px solid #e9edf2;
  border-bottom: 0.5px solid var(--bds-gray-ele-border, #e9edf2);
  display: flex;
  align-items: center;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-body
  .futures-setting-Leverage-table-symbol {
  width: 128px;
  flex-shrink: 0;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-body
  .futures-setting-Leverage-table-range {
  width: 148px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-body
  .futures-setting-Leverage-table-range {
  margin-left: 24px;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-body
  .futures-setting-Leverage-table-range {
  margin-right: 24px;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-body
  .futures-setting-Leverage-table-inputbox {
  width: 160px;
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-body
  .futures-setting-Leverage-table-inputbox {
  margin-left: 24px;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-body
  .futures-setting-Leverage-table-inputbox {
  margin-right: 24px;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-body
  .futures-setting-Leverage-table-inputbox
  .futures-setting-Leverage-table-input-bag {
  width: 160px;
  height: 32px;
  background: #f3f5f7;
  background: var(--bds-gray-ele-line, #f3f5f7);
  border-radius: 4px;
  position: relative;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-body
  .futures-setting-Leverage-table-inputbox
  .futures-setting-Leverage-table-input-bag
  .setting-input {
  width: 160px;
  height: 32px;
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-body
  .futures-setting-Leverage-table-inputbox
  .futures-setting-Leverage-table-input-bag
  .setting-input.setting-input-disabled
  .by-input__container {
  background-color: #f3f5f7;
  background-color: var(--bds-gray-ele-line, #f3f5f7);
}
.futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-body
  .futures-setting-Leverage-table-inputbox
  .futures-setting-Leverage-table-input-bag
  .futures-setting-Leverage-table-input-disable {
  position: absolute;
  top: 8.5px;
  cursor: not-allowed;
  color: #d5dae0;
  color: var(--bds-gray-t4-dis, #d5dae0);
}
[dir="ltr"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-body
  .futures-setting-Leverage-table-inputbox
  .futures-setting-Leverage-table-input-bag
  .futures-setting-Leverage-table-input-disable {
  left: 8px;
}
[dir="rtl"]
  .futures-order-setting-dialog
  .futures-setting-Leverage
  .futures-setting-Leverage-table
  .futures-setting-Leverage-table-body
  .futures-setting-Leverage-table-inputbox
  .futures-setting-Leverage-table-input-bag
  .futures-setting-Leverage-table-input-disable {
  right: 8px;
}
.futures-order-setting-dialog .setting-input-error .by-input__container {
  border: 1px solid #ef454a;
  border: 1px solid var(--bds-red-700-normal, #ef454a);
}
.futures-order-setting-dialog .futures-setting-arrow {
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  font-size: 14px;
}
[dir="ltr"] .futures-order-setting-dialog .futures-setting-arrow {
  margin-left: 5px;
}
[dir="rtl"] .futures-order-setting-dialog .futures-setting-arrow {
  margin-right: 5px;
}
[dir="ltr"] .futures-order-setting-dialog .futures-setting-arrow-open {
  transform: rotate(180deg);
}
[dir="rtl"] .futures-order-setting-dialog .futures-setting-arrow-open {
  transform: rotate(-180deg);
}
.futures-order-setting-dialog .futures-setting-transfor-icon {
  font-size: 13px;
  width: 13px;
  height: 13px;
  cursor: pointer;
}
.futures-order-setting-dialog .ant-spin {
  max-height: none !important;
}
.futures-order-setting-dialog .futures-setting-Leverage-scroll {
  height: 380px;
  margin-top: 12px;
  overflow-y: auto;
}
.futures-setting-Leverage-scroll::-webkit-scrollbar {
  width: 8px;
  height: auto;
  background: #fff;
  border-radius: 2px;
}
.futures-setting-Leverage-scroll::-webkit-scrollbar-thumb {
  background-color: #d9d9d9;
  height: 3px;
  border-radius: 10px;
  outline-offset: -2px;
  outline: 2px solid #fff;
}
.futures-setting-tooltip-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
}
.futures-setting-tooltip-title:not(:first-child) {
  margin-top: 8px;
}
.desc-item-title-tooltip-margin {
  margin-top: 12px;
}
.futures-setting-tooltip-context {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
.futures-setting-tooltip-context:not(:first-child) {
  margin-top: 4px;
}
.csl-warning .csl-warning-text {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin-top: 24px;
}
.csl-warning .csl-warning-cancel {
  width: 188px;
  height: 40px;
  background: #f7a600;
  background: var(--bds-brand-700-normal, #f7a600);
  border-radius: 4px;
  margin-top: 24px;
}
.csl-warning .csl-warning-cancel .by-button__content {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
}
.csl-warning .csl-warning-confirm {
  width: 188px;
  height: 40px;
  border: 1px solid #e9edf2;
  border: 1px solid var(--bds-gray-ele-border, #e9edf2);
  border-radius: 4px;
  margin-top: 24px;
}
[dir="ltr"] .csl-warning .csl-warning-confirm {
  margin-left: 12px;
}
[dir="rtl"] .csl-warning .csl-warning-confirm {
  margin-right: 12px;
}
.csl-warning .csl-warning-confirm .by-button__content {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
}
.follow-order__container {
  display: flex;
  height: 600px;
  width: 868px;
}
.futures-setting-footer-btn-container {
  display: flex;
  align-items: center;
  padding: 4px 0 24px;
}
.futures-setting-footer-btn-container .futures-setting-footer-prev-btn {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0;
  border-radius: 8px;
  width: 140px;
  line-height: 48px;
  text-align: center;
  border: 1px solid #d5dae0;
  border: 1px solid var(--bds-gray-t4-dis, #d5dae0);
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  margin-top: 0;
}
[dir="ltr"]
  .futures-setting-footer-btn-container
  .futures-setting-footer-prev-btn {
  margin-right: 8px;
}
[dir="rtl"]
  .futures-setting-footer-btn-container
  .futures-setting-footer-prev-btn {
  margin-left: 8px;
}
.futures-setting-footer-btn-container
  .futures-setting-footer-prev-btn
  .by-button__content {
  font-weight: 600;
}
.investment-warning__dialog {
  text-align: center;
}
.investment-warning__content {
  margin-top: 20px;
}
.investment-warning__confirm {
  margin-top: 30px;
  padding: 0 24px;
  height: 48px;
  line-height: 48px;
  background: #f7a600;
  background: var(--bds-brand-700-normal, #f7a600);
  border-radius: 8px;
}
.investment-warning__confirm .by-button__content {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-size: 16px;
  font-weight: 600;
}
.follow-white-list-tip {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.copy-stop-loss-select-icon {
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
[dir="ltr"] .copy-stop-loss-select-icon {
  transform: rotate(180deg);
  margin-right: -3px;
}
[dir="rtl"] .copy-stop-loss-select-icon {
  transform: rotate(-180deg);
  margin-left: -3px;
}
.future-set__margin-md-wrap {
  flex: 1 1;
  padding: 28px;
  overflow-y: auto;
}
.fmt-radio-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.fmt-radio-subtitle {
  font-weight: 500;
  margin-top: 4px;
  font-size: 12px;
  line-height: 18px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
.advanced-scroll-lock {
  overflow: hidden !important;
}
.fol-set-dig__futures-setting-title {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  position: relative;
  display: flex;
  align-items: center;
}
.follow-order__smartCopy-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.follow-order__smartCopy-container .futures-setting-principal {
  padding: 0 20px 20px !important;
}
.follow-order__smartCopy-container .smart-copy-checkbox {
  margin-top: 16px;
  line-height: 18px;
}
.follow-order__smartCopy-container .new-tag-img {
  height: 12px;
  position: relative;
  top: 1px;
}
[dir="ltr"] .follow-order__smartCopy-container .new-tag-img {
  margin-left: 4px;
}
[dir="rtl"] .follow-order__smartCopy-container .new-tag-img {
  margin-right: 4px;
}
.follow-order__smartCopy-container .copy-stop-loss-title-l {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}
.follow-order__smartCopy-container
  .copy-stop-loss-title-l
  .copy-stop-loss-title-img {
  position: relative;
  top: 1px;
}
.follow-order__smartCopy-container .copy-stop-loss-title-l .icon-question {
  font-weight: 400;
  position: relative;
  top: 1px;
}
.follow-order__smartCopy-container .setting-input-disabled .by-input__inner,
.follow-order__smartCopy-container
  .setting-input-disabled
  .by-input__right-icon {
  color: #adb1b8 !important;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8) !important;
}
.follow-order__smartCopy-container
  .setting-input-disabled
  .by-input__right-icon {
  font-size: 16px;
}
.futures-setting-select-account {
  align-items: normal !important;
}
.fol-od-st__copy-md {
  font-size: 16px;
  line-height: 24px;
}
.copy-fol-set__ad-set-content {
  margin-top: 14px;
}
.fol-set__ad-set-mode-select .ant-select .ant-select-selection-item {
  color: #d6850d;
  color: var(--bds-brand-900-text, #d6850d);
  font-weight: 600;
  font-size: 16px;
}
.fol-set__ad-set-mode-select
  .ant-select-single.ant-select-open
  .ant-select-selection-item,
.fol-set__ad-set-mode-select .copytrade-icon-arrowdown-solid {
  color: #d6850d;
  color: var(--bds-brand-900-text, #d6850d);
}
.fol-set__ad-set-mode-select
  .ant-select-disabled
  .copytrade-icon-arrowdown-solid {
  opacity: 0.35;
}
.fol-set__ad-bot-ext-tips {
  margin-top: 16px;
  font-size: 12px;
  line-height: 18px;
}
.futures-setting-footer-checkbox {
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
.copy-trade-md__smt-model {
  width: 14px;
  height: 14px;
}
[dir="ltr"] .copy-trade-md__smt-model {
  margin-left: 2px;
}
[dir="rtl"] .copy-trade-md__smt-model {
  margin-right: 2px;
}
.fol-od-dg__loss-cv-warning {
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 8px;
  background: rgba(247, 166, 0, 0.12);
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
[dir="ltr"] .fol-od-dg__loss-cv-warning {
  padding: 8px 8px 8px 12px;
}
[dir="rtl"] .fol-od-dg__loss-cv-warning {
  padding: 8px 12px 8px 8px;
}
.fol-od-dg__loss-cv-warning-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
[dir="ltr"] .fol-od-dg__loss-cv-warning-icon {
  margin-right: 8px;
}
[dir="rtl"] .fol-od-dg__loss-cv-warning-icon {
  margin-left: 8px;
}
.futures-order-setting-dialog-spin {
  height: 100%;
}
.ct-fol-set-dig__ts-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ct-fol-set-dig__ts-item {
  display: flex;
  align-items: center;
  grid-gap: 4px;
  gap: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.ct-fol-set-dig__ts-item-input.moly-input {
  border: none;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.fol-set-dig__rec-feature {
  height: 14px;
  color: #fff;
  padding: 0 2px;
  font-weight: 500;
  font-size: 10px;
  line-height: 14px;
}
[dir="ltr"] .fol-set-dig__rec-feature {
  border-radius: 0 4px;
  background: linear-gradient(90deg, #ff7b42, #ff4740);
}
[dir="rtl"] .fol-set-dig__rec-feature {
  border-radius: 4px 0;
  background: linear-gradient(-90deg, #ff7b42, #ff4740);
}
.ct-fol-set-dig__ts-box {
  margin-bottom: 12px;
}
.ct-fol-set-dig__ts-tooltip {
  display: flex;
  flex-direction: column;
  grid-gap: 4px;
  gap: 4px;
}
.ct-fol-set-dig__ts-icon-box {
  display: flex;
  align-items: center;
  grid-gap: 16px;
  gap: 16px;
  padding: 8px 16px;
  background: url("") no-repeat;
  background-size: contain;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
}
.ct-fol-set-dig__ts-icon-box,
.ct-fol-set-dig__ts-title {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.copytrade-modal__close-icon {
  font-size: 14px;
  font-weight: 600;
}
.copytrade-modal__wrap-bg .ant-modal-content {
  border-radius: 8px;
}
.copytrade-modal__wrap-bg .ant-modal-header {
  border: none;
  padding: 24px;
  border-radius: 8px 8px 0 0;
}
.copytrade-modal__wrap-bg .ant-modal-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.copytrade-modal__wrap-bg .ant-modal-body {
  padding: 0 24px 24px;
}
.copytrade-modal__wrap-bg .ant-modal-close-x {
  width: 24px;
  height: 24px;
  line-height: 24px;
  position: relative;
  top: 24px;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
[dir="ltr"] .copytrade-modal__wrap-bg .ant-modal-close-x {
  right: 24px;
}
[dir="rtl"] .copytrade-modal__wrap-bg .ant-modal-close-x {
  left: 24px;
}
.leader-grade_level-name-box {
  display: flex;
  align-items: center;
}
.leader-grade_level-name-box .leader-grade_level-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
[dir="ltr"] .leader-grade_level-name-box .leader-grade_level-name {
  margin-right: 4px;
}
[dir="rtl"] .leader-grade_level-name-box .leader-grade_level-name {
  margin-left: 4px;
}
.copyTrade-recommendCard {
  width: 320px;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 0.5px solid #f3f5f7;
  border: 0.5px solid var(--bds-gray-ele-line, #f3f5f7);
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.copyTrade-recommendCard:hover {
  box-shadow: 0 0 32px rgba(247, 166, 0, 0.3);
}
[dir="ltr"]
  .recommend-top-traders__card-overflow-Traders
  .copyTrade-recommendCard:not(:first-child) {
  margin-left: 24px;
}
[dir="rtl"]
  .recommend-top-traders__card-overflow-Traders
  .copyTrade-recommendCard:not(:first-child) {
  margin-right: 24px;
}
[dir="ltr"]
  .recommend-top-traders__card-overflow-other
  .copyTrade-recommendCard:not(:first-child) {
  margin-left: 24px;
}
[dir="rtl"]
  .recommend-top-traders__card-overflow-other
  .copyTrade-recommendCard:not(:first-child) {
  margin-right: 24px;
}
.copyTrade-recommendCard-top {
  height: 124px;
  border-radius: 8px 8px 0 0;
  position: relative;
}
.copyTrade-recommendCard-top-banner {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}
[dir="ltr"] .copyTrade-recommendCard-top-banner {
  left: 0;
}
[dir="rtl"] .copyTrade-recommendCard-top-banner {
  right: 0;
}
.copyTrade-recommendCard-top-tips {
  position: absolute;
  top: 0;
}
[dir="ltr"] .copyTrade-recommendCard-top-tips {
  right: 0;
}
[dir="rtl"] .copyTrade-recommendCard-top-tips {
  left: 0;
}
.copyTrade-recommendCard-top-tips {
  width: 88px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  z-index: 2;
}
[dir="ltr"] .copyTrade-recommendCard-top-tips {
  border-radius: 0 8px 0 24px;
}
[dir="rtl"] .copyTrade-recommendCard-top-tips {
  border-radius: 8px 0 24px 0;
}
.copyTrade-recommendCard-top-inf {
  display: flex;
}
.copyTrade-recommendCard-top-tips-0 {
  background: rgba(194, 137, 0, 0.3);
}
.copyTrade-recommendCard-top-tips-1 {
  background: #d2daea;
}
.copyTrade-recommendCard-top-tips-2 {
  background: #e6c29d;
}
.copyTrade-recommendCard-top-tips-others {
  background: #d5dae0;
  background: var(--bds-gray-t4-dis, #d5dae0);
}
.copyTrade-recommendCard-avatar-img {
  width: 80px;
  height: 80px;
  z-index: 9;
  overflow: hidden;
  margin-top: 40px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
[dir="ltr"] .copyTrade-recommendCard-avatar-img {
  margin-left: 20px;
}
[dir="rtl"] .copyTrade-recommendCard-avatar-img {
  margin-right: 20px;
}
.copyTrade-recommendCard-top-nameBox {
  margin-top: 54px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  max-width: 184px;
  z-index: 2;
}
[dir="ltr"] .copyTrade-recommendCard-top-nameBox {
  margin-left: 10px;
}
[dir="rtl"] .copyTrade-recommendCard-top-nameBox {
  margin-right: 10px;
}
.copyTrade-recommendCard-top-name {
  height: 28px;
  line-height: 28px;
  font-weight: 600;
  font-size: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.copyTrade-recommendCard-top-followers {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
  display: flex;
}
.copyTrade-recommendCard-top-followers-percent {
  display: flex;
}
[dir="ltr"] .copyTrade-recommendCard-top-followers-percent {
  margin-left: 3.5px;
}
[dir="rtl"] .copyTrade-recommendCard-top-followers-percent {
  margin-right: 3.5px;
}
.copyTrade-recommendCard-bottom {
  padding-bottom: 24px;
}
.copyTrade-recommendCard-detail {
  padding: 12px 24px 16px;
}
.copyTrade-recommendCard-title {
  display: flex;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  align-items: center;
}
.copyTrade-recommendCard-title:not(:first-child) {
  margin-top: 6px;
}
.copyTrade-recommendCard-value {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.copyTrade-recommendCard-value.share-decrease-text,
.copyTrade-recommendCard-value.share-grow-text {
  font-weight: 600;
}
.copyTrade-recommendCard-detail-item-title-wrap-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.copyTrade-recommendCard-title-inside {
  display: flex;
  align-items: center;
}
.copyTrade-recommendCard-detail-context-item {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  margin-top: 2px;
}
[dir="ltr"] .copyTrade-recommendCard-detail-context-item {
  text-align: right;
}
[dir="rtl"] .copyTrade-recommendCard-detail-context-item {
  text-align: left;
}
.copyTrade-recommendCard-detail-context-item.copyTrade-recommendCard-sevenday-context {
  margin-top: 11px;
}
.copyTrade-recommendCard-top-followers-up-icon {
  color: #20b26c;
  color: var(--bds-green-700-normal, #20b26c);
}
.copyTrade-recommendCard-top-followers-down-icon {
  color: #ef454a;
  color: var(--bds-red-700-normal, #ef454a);
}
[dir="ltr"] .copyTrade-recommendCard-top-followers-down-icon {
  transform: rotate(180deg);
}
[dir="rtl"] .copyTrade-recommendCard-top-followers-down-icon {
  transform: rotate(-180deg);
}
.copyTrade-recommendCard-detail-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 2px;
}
.copyTrade-recommendCard-title-text {
  font-size: 12px;
  line-height: 18px;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
.copyTrade-recommendCard-title-tips {
  padding: 0 4.2px;
  height: 14.4px;
  font-size: 12px;
  zoom: 0.83;
  border: 0.5px solid #adb1b8;
  border: 0.5px solid var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
[dir="ltr"] .copyTrade-recommendCard-title-tips {
  margin-left: 4px;
}
[dir="rtl"] .copyTrade-recommendCard-title-tips {
  margin-right: 4px;
}
.copyTrade-recommendCard-detail-item-title-wrap-value {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  margin-top: 6px;
  margin-bottom: 6px;
}
.copyTrade-recommendCard-traders
  .copyTrade-recommendCard-detail-item-title-wrap-value {
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  margin-top: 6px;
  margin-bottom: 8px;
}
.copyTrade-recommendCard-detail-line {
  width: 144px;
  height: 52px;
  margin-top: 4px;
}
.copyTrade-recommendCard-avatar-bg {
  position: absolute;
  top: -5px;
  width: 60px;
  height: 70px;
}
[dir="ltr"] .copyTrade-recommendCard-avatar-bg {
  right: 0;
}
[dir="rtl"] .copyTrade-recommendCard-avatar-bg {
  left: 0;
}
.copyTrade-recommendCard-avatar-box {
  position: relative;
}
.copyTrade-recommendCard-avatar-box .country-text {
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  background: #fff;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-weight: 600;
  font-size: 14px;
  position: absolute;
  bottom: 2px;
  z-index: 2;
  text-align: center;
}
[dir="ltr"] .copyTrade-recommendCard-avatar-box .country-text {
  right: 2px;
}
[dir="rtl"] .copyTrade-recommendCard-avatar-box .country-text {
  left: 2px;
}
.copyTrade-recommend-popup-card .copyTrade-recommendCard-top-inf {
  cursor: pointer;
}
.copyTrade-recommend-popup-card .copyTrade-recommend-card-footer {
  margin: 0 24px;
  display: flex;
  align-items: center;
  border-top: 1px solid #f3f5f7;
  border-top: 1px solid var(--bds-gray-ele-line, #f3f5f7);
}
.copyTrade-recommend-popup-card .copyTrade-recommend-card-footer .by-button {
  color: #d6850d;
  color: var(--brand-900-text, var(--bds-brand-900-text, #d6850d));
  text-align: center;
  margin: 0 13px;
  height: 50px;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  flex: 1 1;
}
[dir="ltr"]
  .copyTrade-recommend-popup-card
  .copyTrade-recommend-card-footer
  .by-button {
  border-left: 1px solid hsla(0, 0%, 96.5%, 0.6);
}
[dir="rtl"]
  .copyTrade-recommend-popup-card
  .copyTrade-recommend-card-footer
  .by-button {
  border-right: 1px solid hsla(0, 0%, 96.5%, 0.6);
}
[dir="ltr"]
  .copyTrade-recommend-popup-card
  .copyTrade-recommend-card-footer
  .by-button.copyTrade-recommend-footer-first {
  border-left: none;
}
[dir="rtl"]
  .copyTrade-recommend-popup-card
  .copyTrade-recommend-card-footer
  .by-button.copyTrade-recommend-footer-first {
  border-right: none;
}
@media screen and (max-width: 720px) {
  .copyTrade-recommendCard {
    width: 343px;
    margin-bottom: 20px;
  }
  .copyTrade-recommendCard:hover {
    box-shadow: none;
  }
  .copyTrade-recommendCard .copyTrade-recommendCard-top-nameBox {
    margin-top: 62px;
  }
  div.recommend-top-traders__card-overflow {
    width: 100%;
    flex-direction: column;
    padding-bottom: 0;
  }
  [dir="ltr"] div.recommend-top-traders__card-overflow {
    margin-left: 0;
  }
  [dir="rtl"] div.recommend-top-traders__card-overflow {
    margin-right: 0;
  }
  .recommend-top-traders__card-overflow .recommend-top-traders__card-box {
    flex-direction: column;
  }
  [dir="ltr"]
    .recommend-top-traders__card-overflow-Traders
    .copyTrade-recommendCard:not(:first-child) {
    margin-left: 0;
  }
  [dir="rtl"]
    .recommend-top-traders__card-overflow-Traders
    .copyTrade-recommendCard:not(:first-child) {
    margin-right: 0;
  }
  .copyTrade-recommendCard-avatar-img {
    width: 88px;
    height: 88px;
    margin-top: 40px;
  }
  [dir="ltr"] .copyTrade-recommendCard-avatar-img {
    margin-left: 20px;
  }
  [dir="rtl"] .copyTrade-recommendCard-avatar-img {
    margin-right: 20px;
  }
  .copyTrade-recommendCard-Followers .copyTrade-recommendCard-detail {
    padding: 12px 28px 16px;
  }
  .copyTrade-recommendCard-title-text {
    font-size: 14px;
  }
  div.copyTrade-recommendCard-Followers .copyTrade-recommendCard-detail-line {
    width: 170px;
    height: 70px;
  }
}
.copyTrade-recommendCard__mt-select {
  position: absolute;
  top: -17px;
}
[dir="ltr"] .copyTrade-recommendCard__mt-select {
  right: 0;
}
[dir="rtl"] .copyTrade-recommendCard__mt-select {
  left: 0;
}
.round-avatar {
  position: relative;
  display: inline-block;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  border-radius: 50%;
}
.round-avatar > img {
  vertical-align: middle;
  border: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.trader-user {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
[dir="ltr"] .trader-user__desc {
  margin-left: 12px;
}
[dir="rtl"] .trader-user__desc {
  margin-right: 12px;
}
.trader-user__isFollowed {
  width: 57px;
  height: 18px;
  display: inline-block;
  text-align: center;
  background: rgba(247, 166, 0, 0.1);
  border-radius: 4px;
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
  font-size: 12px;
  line-height: 18px;
}
[dir="ltr"] .trader-user__isFollowed {
  margin-left: 4px;
}
[dir="rtl"] .trader-user__isFollowed {
  margin-right: 4px;
}
.trader-user__nickname {
  max-width: 207px;
  height: 20px;
  overflow: hidden;
  color: var(--bds-gray-t1-title);
  font-weight: 600;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 20px;
}
.trade-user__country-code {
  font-size: 20px;
  height: 32px;
  width: 32px;
  font-weight: 600;
  transform: scale(0.5);
  border-radius: 50%;
  position: absolute;
  background-color: var(--bds-static-white);
  color: var(--bds-static-black);
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -8px;
}
[dir="ltr"] .trade-user__country-code {
  left: 24px;
}
[dir="rtl"] .trade-user__country-code {
  right: 24px;
}
.trader-user__slogan {
  height: 14px;
  margin-top: 3px;
  color: #999;
  line-height: 14px;
}
.trader-user__keyWord,
.trader-user__slogan {
  max-width: 520px;
  overflow: hidden;
  font-weight: 400;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.trader-user__keyWord {
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
  line-height: 18px;
  margin-top: 8px;
}
.trader-user__editBox {
  color: #999;
  display: inline-block;
  cursor: pointer;
}
[dir="ltr"] .trader-user__editBox {
  margin-left: 9px;
}
[dir="rtl"] .trader-user__editBox {
  margin-right: 9px;
}
.trader-user__edit {
  font-size: 10px;
}
.trader-user__editText {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
.trader-leader__tags-container {
  height: 18px;
  margin-top: 8px;
  overflow: hidden;
}
.trader-leader__tags-item {
  display: inline-block;
  max-width: 220px;
}
[dir="ltr"] .trader-leader__tags-item {
  margin-left: 8px;
}
[dir="rtl"] .trader-leader__tags-item {
  margin-right: 8px;
}
[dir="ltr"] .trader-leader__tags-item:first-child {
  margin-left: 0;
}
[dir="rtl"] .trader-leader__tags-item:first-child {
  margin-right: 0;
}
.trader-leader__game-tag {
  display: inline-block;
  vertical-align: top;
}
button.moly-btn.trader-follow-btn {
  text-align: center;
  white-space: nowrap;
  word-break: break-word;
  height: 32px;
  display: flex;
  white-space: normal;
  line-height: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s;
}
button.moly-btn.trader-follow-btn.followed:hover,
button.moly-btn.trader-follow-btn:hover {
  color: var(--bds-static-black);
  border-color: transparent;
  background-color: var(--bds-brand-700-normal);
}
button.moly-btn.trader-follow-btn .trader-follow-btn__fire-icon {
  display: inline-block;
  width: 14px;
  height: 18px;
  background: url("") no-repeat;
  background-size: 100% 100%;
}
[dir="ltr"] button.moly-btn.trader-follow-btn .trader-follow-btn__fire-icon {
  margin-right: 6px;
}
[dir="rtl"] button.moly-btn.trader-follow-btn .trader-follow-btn__fire-icon {
  margin-left: 6px;
}
button.moly-btn.trader-follow-btn.followed,
button.moly-btn.trader-follow-btn.full,
button.moly-btn.trader-follow-btn.fullVip {
  background: var(--bds-gray-bg-card);
  border: 1px solid var(--bds-gray-t4-dis);
  color: var(--bds-gray-t1-title);
}
button.moly-btn.trader-follow-btn.full:hover,
button.moly-btn.trader-follow-btn.fullVip:hover {
  border: 1px solid transparent;
  color: var(--bds-static-black);
}
[dir="ltr"] button.moly-btn.trader-follow-btn.full:hover,
[dir="ltr"] button.moly-btn.trader-follow-btn.fullVip:hover {
  background: linear-gradient(90deg, #f90, #ff6a59);
}
[dir="rtl"] button.moly-btn.trader-follow-btn.full:hover,
[dir="rtl"] button.moly-btn.trader-follow-btn.fullVip:hover {
  background: linear-gradient(-90deg, #f90, #ff6a59);
}
button.moly-btn.trader-follow-btn .trader-follow-btn__normal {
  display: flex;
  align-items: baseline;
}
button.moly-btn.trader-follow-btn.locked,
button.moly-btn.trader-follow-btn.locked:hover {
  position: relative;
  background-color: transparent;
  border-color: var(--bds-brand-900-focus);
  color: var(--bds-brand-900-text);
}
button.moly-btn.trader-follow-btn.locked:before,
button.moly-btn.trader-follow-btn.locked:hover:before {
  content: "";
  width: 13px;
  height: 14px;
  background: url("") 50% no-repeat;
  background-size: 13px 14px;
  position: absolute;
  top: 50%;
}
[dir="ltr"] button.moly-btn.trader-follow-btn.locked:before,
[dir="ltr"] button.moly-btn.trader-follow-btn.locked:hover:before {
  left: 50%;
  transform: translate(-50%, -50%);
}
[dir="rtl"] button.moly-btn.trader-follow-btn.locked:before,
[dir="rtl"] button.moly-btn.trader-follow-btn.locked:hover:before {
  right: 50%;
  transform: translate(50%, -50%);
}
button.moly-btn.trader-follow-btn .trader-follow-btn__vip-pass {
  font-weight: 400;
  font-size: 12px;
}
[dir="ltr"] button.moly-btn.trader-follow-btn .trader-follow-btn__vip-pass {
  margin-left: 4px;
}
[dir="rtl"] button.moly-btn.trader-follow-btn .trader-follow-btn__vip-pass {
  margin-right: 4px;
}
button.moly-btn.trader-follow-btn .trader-follow-btn__vip-hover {
  display: flex;
  grid-gap: 8px;
  gap: 8px;
}
button.moly-btn.trader-follow-btn-list {
  width: unset !important;
  min-width: 110px;
  height: 32px !important;
  padding: 0;
  height: 32px;
  font-weight: 600;
  font-size: 12px;
}
[dir="ltr"] button.moly-btn.trader-follow-btn-list {
  margin-left: 12px;
}
[dir="rtl"] button.moly-btn.trader-follow-btn-list {
  margin-right: 12px;
}
button.moly-btn.trader-follow-btn-list .trader-follow-btn__fire-icon {
  display: inline-block;
  width: 9px;
  height: 12px;
  background: url("") no-repeat;
  background-size: 100% 100%;
}
[dir="ltr"]
  button.moly-btn.trader-follow-btn-list
  .trader-follow-btn__fire-icon {
  margin-right: 4px;
}
[dir="rtl"]
  button.moly-btn.trader-follow-btn-list
  .trader-follow-btn__fire-icon {
  margin-left: 4px;
}
button.moly-btn.trader-follow-btn-list.full,
button.moly-btn.trader-follow-btn-list.view {
  height: 32px;
}
button.moly-btn.trader-follow-btn-list.trader-follow-lock {
  position: relative;
}
button.moly-btn.trader-follow-btn-list.trader-follow-lock:before {
  content: "";
  width: 13px;
  height: 14px;
  background: url("") 50% no-repeat;
  background-size: 13px 14px;
  position: absolute;
  top: 50%;
}
[dir="ltr"] button.moly-btn.trader-follow-btn-list.trader-follow-lock:before {
  left: 50%;
  transform: translate(-50%, -50%);
}
[dir="rtl"] button.moly-btn.trader-follow-btn-list.trader-follow-lock:before {
  right: 50%;
  transform: translate(50%, -50%);
}
button.moly-btn.trader-follow-btn-list .trader-follow-btn__vip-pass {
  font-weight: 400;
  margin-top: 2px;
  font-size: 10px;
  max-width: 106px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.trader-follow-btn-container {
  width: calc(100% - 48px);
  display: inline-block;
}
[dir="ltr"] .trader-follow-btn-container {
  margin-left: 24px;
}
[dir="rtl"] .trader-follow-btn-container {
  margin-right: 24px;
}
.trader-follow-btn-container .fullVip {
  width: 100%;
}
[dir="ltr"] .trader-follow-btn-container .fullVip {
  margin-left: 0;
}
[dir="rtl"] .trader-follow-btn-container .fullVip {
  margin-right: 0;
}
.trader-list__Item {
  padding: 12px 0;
  background-color: var(--bds-gray-bg-page);
  border-bottom: 1px solid var(--bds-gray-ele-line);
  color: var(--bds-gray-t1-title);
  cursor: pointer;
}
[dir="ltr"] .trader-list__Item:nth-child(3n + 3) {
  margin-right: 0;
}
[dir="rtl"] .trader-list__Item:nth-child(3n + 3) {
  margin-left: 0;
}
.trader-list__Item.card-trader {
  height: 212px;
}
.trader-list__Item.card-follower {
  height: 72px;
  width: 100%;
}
.trader-list__Item:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.trader-list__Item .trader-list__Item-stableScoreLevel {
  display: flex;
}
.trader-list__Item .trader-list__Item-line {
  flex: 1 1;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  overflow: hidden;
  word-wrap: break-word;
}
[dir="ltr"] .trader-list__Item .trader-list__Item-line {
  margin-right: 12px;
}
[dir="rtl"] .trader-list__Item .trader-list__Item-line {
  margin-left: 12px;
}
[dir="ltr"] .trader-list__Item .trader-list__Item-line:nth-child(7) {
  margin-right: 0;
}
[dir="rtl"] .trader-list__Item .trader-list__Item-line:nth-child(7) {
  margin-left: 0;
}
.trader-list__Item .trader-list__Item-line.trader-list__Item-line-green {
  color: #24ae64;
}
.trader-list__Item .trader-list__Item-line.trader-list__Item-line-leader {
  width: 160px;
}
[dir="ltr"] .trader-list__Item .trader-follow-btn {
  margin-left: 0;
}
[dir="rtl"] .trader-list__Item .trader-follow-btn {
  margin-right: 0;
}
.trader-list__Item .trader-list__Item-user {
  flex: 0 0 276px;
  margin: 0 12px;
}
.trader-list__Item .trader-list__Item-action {
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trader-list__Item .trader-list__Item-context {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.trader-list__Item .trader-list__Item-context .trader-list__list-btn {
  width: 90px;
  height: 36px;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  line-height: 36px;
  border-radius: 4px;
  text-align: center;
  white-space: nowrap;
}
[dir="ltr"]
  .trader-list__Item
  .trader-list__Item-context
  .trader-list__list-btn {
  margin-left: 16px;
}
[dir="rtl"]
  .trader-list__Item
  .trader-list__Item-context
  .trader-list__list-btn {
  margin-right: 16px;
}
.trader-list__Item
  .trader-list__Item-context
  .trader-list__list-btn
  .by-button__content {
  word-break: break-word;
  height: 36px;
  display: flex;
  white-space: normal;
  line-height: 1;
  align-items: center;
  justify-content: center;
  width: 80px;
}
.trader-list__Item
  .trader-list__Item-context
  .trader-list__list-btn.primary.by-button--contained.by-button--primary.by-button--disabled {
  color: #999;
  background-color: #dbdbdb;
}
.trader-list__Item .trader-list__Item-context .trader-list__list-btn.disabled {
  color: #999;
  background-color: #dbdbdb;
  cursor: not-allowed;
}
.trader-list__header {
  display: flex;
  min-height: 42px;
  background: var(--bds-gray-bg-area);
  font-size: 14px;
  line-height: 18px;
  color: var(--bds-gray-t2);
  align-items: center;
  padding: 12px 0;
  margin-top: 4px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
}
.trader-list__header .trader-list__header-name {
  flex: 0 0 276px;
  margin: 0 12px;
  overflow: hidden;
  word-wrap: break-word;
}
.trader-list__header .trader-list__header-name.trader-list__header-name-leader {
  width: 240px;
}
[dir="ltr"]
  .trader-list__header
  .trader-list__header-name.trader-list__header-name-leader {
  margin-right: 9.8px;
}
[dir="rtl"]
  .trader-list__header
  .trader-list__header-name.trader-list__header-name-leader {
  margin-left: 9.8px;
}
.trader-list__header .trader-list__header-line {
  flex: 1 1;
  overflow: hidden;
  word-wrap: break-word;
  display: flex;
  align-items: center;
}
[dir="ltr"] .trader-list__header .trader-list__header-line {
  margin-right: 12px;
}
[dir="rtl"] .trader-list__header .trader-list__header-line {
  margin-left: 12px;
}
[dir="ltr"] .trader-list__header .trader-list__header-line:nth-child(7) {
  margin-right: 0;
}
[dir="rtl"] .trader-list__header .trader-list__header-line:nth-child(7) {
  margin-left: 0;
}
.trader-list__header .trader-list__header-line.trader-list__header-line-leader {
  width: 160px;
}
.trader-list__header
  .trader-list__header-line.trader-list__header-line-leader-count {
  width: 130px;
  margin: 0 9.8px;
}
[dir="ltr"]
  .trader-list__header
  .trader-list__header-line.trader-list__header-line-leader-count {
  text-align: right;
}
[dir="rtl"]
  .trader-list__header
  .trader-list__header-line.trader-list__header-line-leader-count {
  text-align: left;
}
.trader-list__header .trader-list__header-setting {
  flex: 0 0 160px;
  justify-content: center;
  display: flex;
}
.trader-list__header .trader-list__header-line-fliter-box {
  display: flex;
  flex-direction: column;
  max-width: 13px;
}
[dir="ltr"] .trader-list__header .trader-list__header-line-fliter-box {
  margin-left: 3px;
}
[dir="rtl"] .trader-list__header .trader-list__header-line-fliter-box {
  margin-right: 3px;
}
.trader-list__header
  .trader-list__header-line-fliter-box
  .trader-list__header-line-fliter {
  color: #d5dae0;
  color: var(--bds-gray-t4-dis, #d5dae0);
  font-size: 13px;
}
.trader-list__header
  .trader-list__header-line-fliter-box
  .trader-list__header-line-fliter-down {
  margin-top: -3px;
}
.trader-list__header
  .trader-list__header-line-fliter-box
  .trader-list__header-line-fliter-active {
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
.trader-list__header .trader-list__header-pointer-box {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--bds-gray-t2);
  font-size: 12px;
}
.trader-list__header .trader-list__header-pointer-box-text {
  word-break: break-word;
}
.leader-center--user-avatar {
  height: var(--size-24);
  display: block;
}
[dir="ltr"] .leader-center--user-avatar {
  margin-right: var(--size-12);
}
[dir="rtl"] .leader-center--user-avatar {
  margin-left: var(--size-12);
}
.img-cover {
  -o-object-fit: cover;
  object-fit: cover;
}
.user-setting__review-status--in-progress {
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
.user-setting__review-status--reject {
  color: #ef454a;
  color: var(--bds-red-700-normal, #ef454a);
}
.user-setting__review-status--not-set {
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.font-weight-600 {
  font-weight: 600;
}
.font-weight-500 {
  font-weight: 500;
}
.align-center {
  display: flex;
  align-items: center;
}
.align-self-start {
  align-self: flex-start;
}
.justify-align-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.justify-spbt-align-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.display-none {
  display: none;
}
.full {
  width: 100%;
}
.height-full {
  height: 100%;
}
[dir="ltr"] .rotate90 {
  transform: rotate(90deg);
}
[dir="rtl"] .rotate90 {
  transform: rotate(-90deg);
}
.pointer {
  cursor: pointer;
}
.color-gray-T2 {
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
.color-gray-2 {
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.font-size-18 {
  font-size: 18px;
}
.no-shrink {
  flex-shrink: 0;
}
[dir="ltr"] .ml-4 {
  margin-left: 4px;
}
[dir="rtl"] .ml-4 {
  margin-right: 4px;
}
[dir="ltr"] .ml-12 {
  margin-left: 12px;
}
[dir="rtl"] .ml-12 {
  margin-right: 12px;
}
[dir="ltr"] .ml-16 {
  margin-left: 16px;
}
[dir="rtl"] .ml-16 {
  margin-right: 16px;
}
[dir="ltr"] .mr-4 {
  margin-right: 4px;
}
[dir="rtl"] .mr-4 {
  margin-left: 4px;
}
[dir="ltr"] .mgr-8 {
  margin-right: 8px;
}
[dir="rtl"] .mgr-8 {
  margin-left: 8px;
}
[dir="ltr"] .mr-10 {
  margin-right: 10px;
}
[dir="rtl"] .mr-10 {
  margin-left: 10px;
}
[dir="ltr"] .mr-24 {
  margin-right: 24px;
}
[dir="rtl"] .mr-24 {
  margin-left: 24px;
}
[dir="ltr"] .mr-36 {
  margin-right: 36px;
}
[dir="rtl"] .mr-36 {
  margin-left: 36px;
}
[dir="ltr"] .mr-32 {
  margin-right: 32px;
}
[dir="rtl"] .mr-32 {
  margin-left: 32px;
}
.mt-4 {
  margin-top: 4px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-12 {
  margin-top: 12px;
}
.mt-18 {
  margin-top: 18px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-16 {
  margin-bottom: 16px;
}
[dir="ltr"] .pl-12 {
  padding-left: 12px;
}
[dir="rtl"] .pl-12 {
  padding-right: 12px;
}
[dir="ltr"] .pl-16 {
  padding-left: 16px;
}
[dir="rtl"] .pl-16 {
  padding-right: 16px;
}
[dir="ltr"] .pr-8 {
  padding-right: 8px;
}
[dir="rtl"] .pr-8 {
  padding-left: 8px;
}
[dir="ltr"] .pl-4 {
  padding-left: 4px;
}
[dir="ltr"] .pr-4,
[dir="rtl"] .pl-4 {
  padding-right: 4px;
}
[dir="rtl"] .pr-4 {
  padding-left: 4px;
}
.pt-4 {
  padding-top: 4px;
}
.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.transition-transform-02 {
  transition: transform 0.2s linear;
}
[dir="ltr"] .rotate-180 {
  transform: rotate(180deg);
}
[dir="rtl"] .rotate-180 {
  transform: rotate(-180deg);
}
.break-word {
  word-break: break-word;
}
.break-all {
  word-break: break-all;
}
.ct-progress-message.ant-message-notice {
  max-width: 480px;
  margin: 0 auto;
}
[dir="ltr"] .ct-progress-message.ant-message-notice {
  text-align: left;
}
[dir="rtl"] .ct-progress-message.ant-message-notice {
  text-align: right;
}
.ct-progress-message .ant-message-info {
  display: flex;
}
.public-page-container {
  padding: 24px;
}
.fit-cover {
  -o-object-fit: cover;
  object-fit: cover;
}
.color-yellow-01 {
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
.color-gray-01 {
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
.table-avatar-font .leader-grade_level-name {
  font-size: 14px;
  line-height: 22px;
}
.table-avatar-font .ant-table-content td {
  vertical-align: middle;
}
.table-avatar-font-12 .leader-grade_level-name {
  font-size: 12px;
  line-height: 18px;
}
.table-avatar-font-12 .ant-table-content td {
  vertical-align: middle;
}
.selector-max-height--normal {
  max-height: 272px;
  overflow-y: auto;
  overflow-y: overlay;
}
.table-fixed-height-412 .ant-table-content {
  min-height: 412px;
}
.table-fixed-height-576 .ant-table-content {
  min-height: 576px;
}
tr td.ant-table-column-sort {
  background: none;
}
.color-brand {
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
.color-Buy {
  color: #24ae64;
}
.color-Sell {
  color: #e04040;
}
.text-under-dashed {
  -webkit-text-decoration: underline dashed #d6dae0;
  text-decoration: underline dashed #d6dae0;
}
.white-pre-line {
  white-space: pre-line !important;
}
.color-valid {
  color: #20b26c;
  color: var(--bds-green-700-normal, #20b26c);
}
.color-invalid {
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.color-disable {
  color: #d5dae0;
  color: var(--bds-gray-t4-dis, #d5dae0);
}
.color-t2-gray {
  color: #81858c;
  color: var(--bds-gray-t2, #81858c);
}
.not-allowed {
  cursor: not-allowed;
}
.user-select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.white-mask {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background: hsla(0, 0%, 100%, 0.9);
  z-index: 10;
}
.flex {
  display: flex;
}
.single-line {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.three-line {
  -webkit-line-clamp: 3;
}
.three-line,
.two-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
  word-wrap: break-word;
}
.two-line {
  -webkit-line-clamp: 2;
}
.ct-nowrap {
  white-space: nowrap;
}
.min-width-300 {
  min-width: 300px;
}
.ct-input-common .by-input__container {
  padding: 12px 8px;
  font-weight: 500;
  background: #f3f5f7;
  background: var(--bds-gray-ele-line, #f3f5f7);
  border-radius: 4px;
  border: 1px solid transparent;
}
.ct-input-common .by-input__container .by-input__inner {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.ct-input-common .by-input__container .by-input__inner::-moz-placeholder {
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.ct-input-common .by-input__container .by-input__inner:-ms-input-placeholder {
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.ct-input-common .by-input__container .by-input__inner::placeholder {
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.ct-input-common.ct-input-common-error.by-input .by-input__container {
  border: 1px solid #ef454a;
  border: 1px solid var(--bds-red-700-normal, #ef454a);
}
.ct-input-common-error-text {
  color: #ef454a;
  color: var(--bds-red-700-normal, #ef454a);
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  margin-top: 4px;
}
.text-center {
  text-align: center;
}
[dir="ltr"] .text-right {
  text-align: right;
}
[dir="rtl"] .text-right {
  text-align: left;
}
.z-index-90 {
  z-index: 90 !important;
}
.ant-message {
  z-index: 10003 !important;
}
.ant-message .ct-error-message .ant-message-notice-content {
  border-radius: 4px;
  padding: 16px;
  color: #121214;
}
.index-subtitle-skeleton {
  margin-top: 8px;
}
.index-subtitle-skeleton .skeleton-subtitle {
  margin-bottom: 24px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
.index-subtitle-skeleton__mt5,
.index-subtitle-skeleton__pro {
  width: 100%;
}
.index-subtitle-skeleton__mt5 .skeleton-bar,
.index-subtitle-skeleton__pro .skeleton-bar {
  width: 100px;
  height: 24px;
  margin-bottom: 16px;
}
.index-subtitle-skeleton__mt5 .skeleton-container,
.index-subtitle-skeleton__pro .skeleton-container {
  display: flex;
  flex-direction: column;
  background-color: #16171a;
  border-radius: 16px;
  padding: 12px 20px;
  box-sizing: border-box;
  width: 318px;
  height: 100px;
}
.index-subtitle-skeleton__mt5 .skeleton-container-row,
.index-subtitle-skeleton__pro .skeleton-container-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 12px;
  gap: 12px;
}
.ct-index-skeleton {
  min-height: 100vh;
  width: 100%;
  background-color: #000;
  padding-bottom: 80px;
  --bds-trans-hover: rgba(192, 210, 231, 0.12);
}
.ct-index-skeleton .animate-pulse {
  -webkit-animation: none;
  animation: none;
}
.ct-index-skeleton__main {
  width: 1200px;
  margin: 0 auto;
}
.ct-index-skeleton__main-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ct-index-skl__main-tb-left {
  display: flex;
  grid-gap: 32px;
  gap: 32px;
}
.ct-index-skl__main-list {
  grid-gap: 24px;
  gap: 24px;
}
.ct-index-skl__main-list-box {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px 15px;
  gap: 20px 15px;
  width: 1200px;
  margin: 16px 0 12px;
}
.ct-index-skl_ld-board {
  margin-top: 24px;
  padding-top: 24px;
}
.leader-profile-skeleton {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter;
}
.leader-profile-skeleton .leader-profile__info-img {
  position: absolute;
  top: 0;
  height: 248px;
}
[dir="ltr"] .leader-profile-skeleton .leader-profile__info-img {
  left: 0;
}
[dir="rtl"] .leader-profile-skeleton .leader-profile__info-img {
  right: 0;
}
@-webkit-keyframes skeleton-loading-ltr {
  0% {
    background-position: 100% 50%;
  }
  to {
    background-position: 0 50%;
  }
}
@-webkit-keyframes skeleton-loading-rtl {
  0% {
    background-position: 0 50%;
  }
  to {
    background-position: 100% 50%;
  }
}
@keyframes skeleton-loading-ltr {
  0% {
    background-position: 100% 50%;
  }
  to {
    background-position: 0 50%;
  }
}
@keyframes skeleton-loading-rtl {
  0% {
    background-position: 0 50%;
  }
  to {
    background-position: 100% 50%;
  }
}
.leader-profile-skeleton__header {
  width: 100%;
  height: 315px;
  padding: 0;
  border-bottom: 1px solid rgba(192, 210, 231, 0.12);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
[dir="ltr"] .leader-profile-skeleton__header {
  background: linear-gradient(274.44deg, #090b1d, #020036 100.21%) !important;
}
[dir="rtl"] .leader-profile-skeleton__header {
  background: linear-gradient(-274.44deg, #090b1d, #020036 100.21%) !important;
}
.leader-profile-skeleton__container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  box-sizing: border-box;
  background: transparent !important;
}
.leader-profile-skeleton__avatar-section {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.leader-profile-skeleton__avatar-wrapper {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  background: #222947;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-profile-skeleton__avatar-bg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(22, 23, 34, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-profile-skeleton__avatar-letter {
  font-size: 70px;
  font-weight: 700;
  color: #ffb21d;
  line-height: 1;
  font-family: sans-serif;
}
.leader-profile-skeleton__info {
  flex: 1 1;
}
[dir="ltr"] .leader-profile-skeleton__info {
  margin-left: 36px;
}
[dir="rtl"] .leader-profile-skeleton__info {
  margin-right: 36px;
}
.leader-profile-skeleton__title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.leader-profile-skeleton__stats {
  display: flex;
  align-items: center;
  margin-top: 12px;
}
.leader-profile-skeleton__stat-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.leader-profile-skeleton__stat-label {
  font-size: 14px;
  color: hsla(0, 0%, 100%, 0.5);
  margin-bottom: 8px;
}
.leader-profile-skeleton__stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.leader-profile-skeleton__stat-subtext {
  font-size: 16px;
  color: hsla(0, 0%, 100%, 0.5);
  font-weight: 400;
}
.leader-profile-skeleton__divider {
  width: 1px;
  height: 32px;
  background-color: rgba(192, 210, 231, 0.12);
  margin: 0 24px;
}
.leader-profile-skeleton__extra-info {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.leader-profile-skeleton__info-item {
  display: flex;
  align-items: center;
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 14px;
}
.leader-profile-skeleton__info-divider {
  width: 1px;
  height: 16px;
  background-color: rgba(192, 210, 231, 0.12);
  margin: 0 16px;
}
.leader-profile-skeleton__info-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #222947;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
[dir="ltr"] .leader-profile-skeleton__info-icon {
  margin-right: 6px;
}
[dir="rtl"] .leader-profile-skeleton__info-icon {
  margin-left: 6px;
}
.leader-profile-skeleton__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
[dir="ltr"] .leader-profile-skeleton__actions {
  margin-left: auto;
}
[dir="rtl"] .leader-profile-skeleton__actions {
  margin-right: auto;
}
.leader-profile-skeleton__action-buttons {
  display: flex;
  margin-bottom: 16px;
  grid-gap: 12px;
  gap: 12px;
}
.leader-profile-skeleton__share-btn,
.leader-profile-skeleton__subscribe-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.leader-profile-skeleton__share-btn:hover,
.leader-profile-skeleton__subscribe-btn:hover {
  background: #222947;
}
.leader-profile-skeleton__icon {
  font-size: 14px;
}
[dir="ltr"] .leader-profile-skeleton__icon {
  margin-right: 6px;
}
[dir="rtl"] .leader-profile-skeleton__icon {
  margin-left: 6px;
}
.leader-profile-skeleton__copy-btn {
  width: 140px;
  height: 48px;
  background: #ffb21d;
  color: #000;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 8px;
}
.leader-profile-skeleton__copy-btn:hover {
  background: #ffa903;
}
.leader-profile-skeleton__slots {
  font-size: 12px;
  color: hsla(0, 0%, 100%, 0.7);
  text-align: center;
}
.leader-profile-skeleton__content-wrapper {
  display: flex;
  padding: 32px 0;
  grid-gap: 24px;
  gap: 24px;
  background: #f5f7fa;
  background: var(--bds-gray-bg-page, #f5f7fa);
}
.leader-profile-skeleton__content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  grid-gap: 24px;
  gap: 24px;
  width: 100%;
}
.leader-profile-skeleton__performance-section {
  width: 360px;
  height: 650px;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.leader-profile-skeleton__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.leader-profile-skeleton__section-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}
.leader-profile-skeleton__days-selector {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
}
.leader-profile-skeleton__days-selector:after {
  content: "▼";
  font-size: 10px;
}
[dir="ltr"] .leader-profile-skeleton__days-selector:after {
  margin-left: 4px;
}
[dir="rtl"] .leader-profile-skeleton__days-selector:after {
  margin-right: 4px;
}
.leader-profile-skeleton__performance-metrics
  .leader-profile-skeleton__metric-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.leader-profile-skeleton__performance-metrics
  .leader-profile-skeleton__metric-row:last-child {
  margin-bottom: 0;
}
.leader-profile-skeleton__metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid hsla(0, 0%, 94.1%, 0.2);
}
.leader-profile-skeleton__metric-label {
  color: #666;
  font-size: 14px;
}
.leader-profile-skeleton__metric-value {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.leader-profile-skeleton__metric-footer {
  margin-top: 12px;
  color: #999;
  font-size: 12px;
}
[dir="ltr"] .leader-profile-skeleton__metric-footer {
  text-align: right;
}
[dir="rtl"] .leader-profile-skeleton__metric-footer {
  text-align: left;
}
.leader-profile-skeleton__data-section {
  flex: 1 1;
  min-width: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 24px;
}
.leader-profile-skeleton__main-tabs {
  display: flex;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(192, 210, 231, 0.12);
}
.leader-profile-skeleton__subtabs {
  display: flex;
  margin-bottom: 8px;
  margin-top: 16px;
}
.leader-profile-skeleton__info-text {
  color: #888;
  font-size: 12px;
  margin-bottom: 24px;
}
.leader-profile-skeleton__chart-section {
  margin-top: 24px;
}
.leader-profile-skeleton__chart-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.leader-profile-skeleton__chart {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  height: 300px;
}
.leader-profile-skeleton .moly-skeleton__ball,
.leader-profile-skeleton .moly-skeleton__bar {
  background: #222947;
  background-size: 400% 100%;
  border-radius: 4px;
}
[dir="ltr"] .leader-profile-skeleton .moly-skeleton__ball,
[dir="ltr"] .leader-profile-skeleton .moly-skeleton__bar {
  background-position: 100% 50%;
  background-image: linear-gradient(
    90deg,
    hsla(0, 0%, 100%, 0.15) 25%,
    hsla(0, 0%, 100%, 0.07) 37%,
    hsla(0, 0%, 100%, 0.15) 63%
  );
  -webkit-animation: skeleton-loading-ltr 1.4s ease infinite;
  animation: skeleton-loading-ltr 1.4s ease infinite;
}
[dir="rtl"] .leader-profile-skeleton .moly-skeleton__ball,
[dir="rtl"] .leader-profile-skeleton .moly-skeleton__bar {
  background-position: 0 50%;
  background-image: linear-gradient(
    -90deg,
    hsla(0, 0%, 100%, 0.15) 25%,
    hsla(0, 0%, 100%, 0.07) 37%,
    hsla(0, 0%, 100%, 0.15) 63%
  );
  -webkit-animation: skeleton-loading-rtl 1.4s ease infinite;
  animation: skeleton-loading-rtl 1.4s ease infinite;
}
.leader-profile-skeleton .moly-skeleton__ball {
  border-radius: 50%;
}
.leader-profile-skeleton__avatar-wrapper .moly-skeleton__ball {
  width: 100%;
  height: 100%;
  background: #222947;
  background-size: 400% 100%;
}
[dir="ltr"] .leader-profile-skeleton__avatar-wrapper .moly-skeleton__ball {
  background-position: 100% 50%;
  background-image: linear-gradient(
    90deg,
    hsla(0, 0%, 100%, 0.15) 25%,
    hsla(0, 0%, 100%, 0.07) 37%,
    hsla(0, 0%, 100%, 0.15) 63%
  );
}
[dir="rtl"] .leader-profile-skeleton__avatar-wrapper .moly-skeleton__ball {
  background-position: 0 50%;
  background-image: linear-gradient(
    -90deg,
    hsla(0, 0%, 100%, 0.15) 25%,
    hsla(0, 0%, 100%, 0.07) 37%,
    hsla(0, 0%, 100%, 0.15) 63%
  );
}
.leader-profile-skeleton__data-section .moly-skeleton__bar,
.leader-profile-skeleton__performance-section .moly-skeleton__bar {
  background: #f0f0f0;
  background-size: 400% 100%;
}
[dir="ltr"] .leader-profile-skeleton__data-section .moly-skeleton__bar,
[dir="ltr"] .leader-profile-skeleton__performance-section .moly-skeleton__bar {
  background-position: 100% 50%;
  background-image: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #f5f5f5 37%,
    #f0f0f0 63%
  );
}
[dir="rtl"] .leader-profile-skeleton__data-section .moly-skeleton__bar,
[dir="rtl"] .leader-profile-skeleton__performance-section .moly-skeleton__bar {
  background-position: 0 50%;
  background-image: linear-gradient(
    -90deg,
    #f0f0f0 25%,
    #f5f5f5 37%,
    #f0f0f0 63%
  );
}
.leader-detail-skeleton {
  display: flex;
  height: 315px;
  padding: 40px 0;
  background: transparent !important;
  position: relative;
  z-index: 2;
}
.ls-module {
  background: #222947 !important;
  position: relative;
  overflow: hidden;
  will-change: transform;
  border-radius: 4px;
}
.ls-module:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}
[dir="ltr"] .ls-module:after {
  right: 0;
  left: -150%;
  background: linear-gradient(
    90deg,
    hsla(0, 0%, 100%, 0),
    hsla(0, 0%, 100%, 0.06) 50%,
    hsla(0, 0%, 100%, 0)
  );
  transform: skewX(-20deg);
  -webkit-animation: skeletonShimmer-ltr 1.8s infinite;
  animation: skeletonShimmer-ltr 1.8s infinite;
}
[dir="rtl"] .ls-module:after {
  left: 0;
  right: -150%;
  background: linear-gradient(
    -90deg,
    hsla(0, 0%, 100%, 0),
    hsla(0, 0%, 100%, 0.06) 50%,
    hsla(0, 0%, 100%, 0)
  );
  transform: skewX(20deg);
  -webkit-animation: skeletonShimmer-rtl 1.8s infinite;
  animation: skeletonShimmer-rtl 1.8s infinite;
}
@-webkit-keyframes skeletonShimmer-ltr {
  0% {
    transform: translateX(0) skewX(-20deg);
  }
  to {
    transform: translateX(250%) skewX(-20deg);
  }
}
@-webkit-keyframes skeletonShimmer-rtl {
  0% {
    transform: translateX(0) skewX(20deg);
  }
  to {
    transform: translateX(-250%) skewX(20deg);
  }
}
@keyframes skeletonShimmer-ltr {
  0% {
    transform: translateX(0) skewX(-20deg);
  }
  to {
    transform: translateX(250%) skewX(-20deg);
  }
}
@keyframes skeletonShimmer-rtl {
  0% {
    transform: translateX(0) skewX(20deg);
  }
  to {
    transform: translateX(-250%) skewX(20deg);
  }
}
.leader-detail-skeleton-avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  flex-shrink: 0;
}
.leader-detail-skeleton-c {
  flex: 1 1;
}
[dir="ltr"] .leader-detail-skeleton-c {
  margin-left: 36px;
}
[dir="rtl"] .leader-detail-skeleton-c {
  margin-right: 36px;
}
.lds-c-name {
  width: 308px;
  height: 40px;
  margin-bottom: 28px;
  border-radius: 4px;
}
.lds-c-tags {
  display: flex;
}
.lds-c-tag {
  padding: 0 20px;
  position: relative;
}
.lds-c-tag-t {
  width: 72px;
  height: 22px;
  margin-bottom: 8px;
}
.lds-c-tag-b {
  width: 40px;
  height: 24px;
}
.lds-c-description-1 {
  width: 796px;
  height: 66px;
  border-radius: 4px;
  margin: 20px 0 12px;
}
.lds-c-description-2 {
  width: 584px;
  height: 22px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.lds-c-description-3 {
  width: 552px;
  height: 18px;
  border-radius: 4px;
}
.leader-detail-skeleton-r {
  flex-shrink: 0;
}
[dir="ltr"] .leader-detail-skeleton-r {
  margin-left: auto;
}
[dir="rtl"] .leader-detail-skeleton-r {
  margin-right: auto;
}
.lds-r-action {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.lds-r-action div {
  width: 76px;
  height: 22px;
  border-radius: 4px;
}
.lds-r-btn {
  width: 200px;
  height: 40px;
  border-radius: 4px;
  margin-top: 16px;
}
.moly-skeleton__bar {
  position: relative;
  background: #f0f0f0 !important;
  overflow: hidden;
  will-change: transform;
}
.moly-skeleton__bar:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}
[dir="ltr"] .moly-skeleton__bar:after {
  right: 0;
  left: -150%;
  background: linear-gradient(
    90deg,
    hsla(0, 0%, 100%, 0),
    hsla(0, 0%, 100%, 0.3) 50%,
    hsla(0, 0%, 100%, 0)
  );
  transform: skewX(-20deg);
  -webkit-animation: skeletonShimmer-ltr 1.8s infinite;
  animation: skeletonShimmer-ltr 1.8s infinite;
}
[dir="rtl"] .moly-skeleton__bar:after {
  left: 0;
  right: -150%;
  background: linear-gradient(
    -90deg,
    hsla(0, 0%, 100%, 0),
    hsla(0, 0%, 100%, 0.3) 50%,
    hsla(0, 0%, 100%, 0)
  );
  transform: skewX(20deg);
  -webkit-animation: skeletonShimmer-rtl 1.8s infinite;
  animation: skeletonShimmer-rtl 1.8s infinite;
}
.copytrade-icon {
  display: inline-block;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-baseline {
  display: flex;
  align-items: baseline;
}
.buy-color {
  color: #24ae64;
}
.sell-color {
  color: #e04040;
}
.primary-color {
  color: #f7a600;
}
.cursor-pointer {
  cursor: pointer;
}
.ft-500 {
  font-weight: 500;
}
.ft-600 {
  font-weight: 600;
}
.by-dialog__body {
  padding-top: 0;
}
.by-message-notice {
  height: auto !important;
}
.by-message__content {
  align-items: baseline;
}
.by-message__icon {
  position: relative;
  top: 2px;
}
.right-extra-container {
  display: flex;
  height: 32px;
}
.right-extra-container .by-input__container {
  height: 32px;
}
.right-extra-container .by-switch {
  height: 32px;
  background: transparent !important;
  border: none;
}
.right-extra-container .by-switch .by-switch__item {
  height: 32px !important;
  font-weight: 400;
  font-size: 12px !important;
  padding: 0 22px;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.right-extra-container .by-switch .by-switch__item:first-child {
  border: 1px solid #e9edf2;
  border: 1px solid var(--bds-gray-ele-border, #e9edf2);
}
[dir="ltr"] .right-extra-container .by-switch .by-switch__item:first-child {
  border-radius: 4px 0 0 4px;
}
[dir="rtl"] .right-extra-container .by-switch .by-switch__item:first-child {
  border-radius: 0 4px 4px 0;
}
.right-extra-container .by-switch .by-switch__item:last-child {
  border: 1px solid #e9edf2;
  border: 1px solid var(--bds-gray-ele-border, #e9edf2);
}
[dir="ltr"] .right-extra-container .by-switch .by-switch__item:last-child {
  border-radius: 0 4px 4px 0;
}
[dir="rtl"] .right-extra-container .by-switch .by-switch__item:last-child {
  border-radius: 4px 0 0 4px;
}
.right-extra-container .by-switch .by-switch__item--active:first-child {
  background: linear-gradient(
      0deg,
      hsla(0, 0%, 100%, 0.9),
      hsla(0, 0%, 100%, 0.9)
    ),
    #f7a600;
  background: linear-gradient(
      0deg,
      hsla(0, 0%, 100%, 0.9),
      hsla(0, 0%, 100%, 0.9)
    ),
    var(--bds-brand-700-normal, #f7a600);
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
  border: 1px solid #f7a600;
  border: 1px solid var(--bds-brand-700-normal, #f7a600);
}
[dir="ltr"]
  .right-extra-container
  .by-switch
  .by-switch__item--active:first-child {
  border-radius: 4px 0 0 4px;
}
[dir="rtl"]
  .right-extra-container
  .by-switch
  .by-switch__item--active:first-child {
  border-radius: 0 4px 4px 0;
}
.right-extra-container .by-switch .by-switch__item--active:last-child {
  background: linear-gradient(
      0deg,
      hsla(0, 0%, 100%, 0.9),
      hsla(0, 0%, 100%, 0.9)
    ),
    #f7a600;
  background: linear-gradient(
      0deg,
      hsla(0, 0%, 100%, 0.9),
      hsla(0, 0%, 100%, 0.9)
    ),
    var(--bds-brand-700-normal, #f7a600);
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
  border: 1px solid #f7a600;
  border: 1px solid var(--bds-brand-700-normal, #f7a600);
}
[dir="ltr"]
  .right-extra-container
  .by-switch
  .by-switch__item--active:last-child {
  border-radius: 0 4px 4px 0;
}
[dir="rtl"]
  .right-extra-container
  .by-switch
  .by-switch__item--active:last-child {
  border-radius: 4px 0 0 4px;
}
@font-face {
  font-family: copytrade-icon;
  src: url("iconfont.15aa509b.woff2") format("woff2"),
    url("iconfont.0a29aee7.woff") format("woff"),
    url("iconfont.82d04ae8.ttf") format("truetype"), url("") format("svg");
}
.copytrade-icon {
  font-family: copytrade-icon !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
.copytrade-icon-thumbup:before {
  content: "\e617";
}
.copytrade-icon-filter:before {
  content: "\e653";
}
.copytrade-icon-signal:before {
  content: "\e64a";
}
.copytrade-icon-strategy:before {
  content: "\e64b";
}
.copytrade-icon-social:before {
  content: "\e64c";
}
.copytrade-icon-sharing:before {
  content: "\e64d";
}
.copytrade-icon-location:before {
  content: "\e64e";
}
.copytrade-icon-whitelist:before {
  content: "\e64f";
}
.copytrade-icon-max:before {
  content: "\e651";
}
.copytrade-icon_copy:before {
  content: "\e641";
}
.copytrade-icon-links1:before {
  content: "\e602";
}
.copytrade-icon_fold:before {
  content: "\e671";
}
.copytrade-icon_setting_InProcess:before {
  content: "\e60a";
}
.copytrade-icon_setting_NotSetUp:before {
  content: "\e60b";
}
.copytrade-icon_setting_NotApproved:before {
  content: "\e60c";
}
.copytrade-icon_setting_refresh1:before {
  content: "\e60d";
}
.copytrade-icon-eyeon:before {
  content: "\e67c";
}
.copytrade-icon-eyeoff:before {
  content: "\e67d";
}
.copytrade-icon-starno:before {
  content: "\e68d";
}
.copytrade-icon-staryes:before {
  content: "\e68f";
}
.copytrade-icon-wallet:before {
  content: "\e601";
}
.copytrade-icon-true:before {
  content: "\e688";
}
.copytrade-icon-false:before {
  content: "\e687";
}
.copytrade-icon-share:before {
  content: "\e68c";
}
.copytrade-icon-arrowdown:before {
  content: "\e674";
}
.copytrade-icon-question:before {
  content: "\e670";
}
.copytrade-icon-news:before {
  content: "\e61a";
}
.copytrade-icon-transfor:before {
  content: "\e621";
}
.copytrade-icon-edit:before {
  content: "\e691";
}
.copytrade-icon-arrowdown-solid:before {
  content: "\e67e";
}
.copytrade-icon-edit-line:before {
  content: "\e604";
}
.copytrade-icon-search:before {
  content: "\e63f";
}
.copytrade-icon-circle-prompt:before {
  content: "\e681";
}
.copytrade-icon-search-with-add:before {
  content: "\e605";
}
.copytrade-icon-step-selected:before {
  content: "\e606";
}
.copytrade-icon-asset_history:before {
  content: "\e607";
}
.copytrade-icon-direction-right:before {
  content: "\e67b";
}
.copytrade-icon-profit-rate:before {
  content: "\e609";
}
.copytrade-icon-a-arrowup:before {
  content: "\e673";
}
.copytrade-icon-icon_followers:before {
  content: "\e686";
}
.copytrade-icon-aum:before {
  content: "\e652";
}
.copytrade-icon-thumb-up:before {
  content: "\e617";
}
.copytrade-icon-play:before {
  content: "\e615";
}
.copytrade-icon-lock:before {
  content: "\e614";
}
.by-button--contained.by-button--secondary {
  background-color: var(--bds-gray-ele-border);
  color: var(--bds-gray-t1-title);
}
button.by-button--outlined.by-button--primary:hover,
button.by-button--outlined.by-button--secondary:hover {
  border: 1px solid var(--bds-gray-t4-dis);
  color: var(--bds-gray-t2);
}
html {
  background: #fff;
}
body {
  padding: 0;
  font-family: Inter, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI,
    Roboto, Ubuntu, sans-serif !important;
}
body,
body p {
  margin: 0;
}
:root {
  --bds-font-family: "Inter", system-ui, BlinkMacSystemFont, -apple-system,
    "Segoe UI", Roboto, Ubuntu, sans-serif !important;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.by-modal,
:root .component-theme.theme-dark,
:root .component-theme.theme-light,
:root .container-theme .component-theme.theme-dark,
:root .container-theme .component-theme.theme-light,
:root .container-theme.theme-dark,
:root .container-theme.theme-light,
:root.theme-dark,
:root.theme-light,
:root header.header {
  --bds-brand-700-normal: #ff9c2e !important;
}
#__bybit_uniframe_header__ .header_ip-limited-outer-wrapper {
  background: #17181e !important;
}
::-webkit-scrollbar {
  height: 8px;
  width: 8px;
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #d9d9d9;
  border-radius: 10px;
  outline-offset: -1px;
  outline: 1px solid #fff;
}
.mgt-2 {
  margin-top: 2px;
}
[dir="ltr"] .mgl-2 {
  margin-left: 2px;
}
[dir="rtl"] .mgl-2 {
  margin-right: 2px;
}
.mgt-4 {
  margin-top: 4px;
}
[dir="ltr"] .mgl-4 {
  margin-left: 4px;
}
[dir="rtl"] .mgl-4 {
  margin-right: 4px;
}
.mgt-8 {
  margin-top: 8px;
}
[dir="ltr"] .mgl-8 {
  margin-left: 8px;
}
[dir="rtl"] .mgl-8 {
  margin-right: 8px;
}
.mgt-12 {
  margin-top: 12px;
}
[dir="ltr"] .mgl-12 {
  margin-left: 12px;
}
[dir="rtl"] .mgl-12 {
  margin-right: 12px;
}
.mgt-16 {
  margin-top: 16px;
}
[dir="ltr"] .mgl-16 {
  margin-left: 16px;
}
[dir="rtl"] .mgl-16 {
  margin-right: 16px;
}
.mgt-20 {
  margin-top: 20px;
}
[dir="ltr"] .mgl-20 {
  margin-left: 20px;
}
[dir="rtl"] .mgl-20 {
  margin-right: 20px;
}
.mgt-24 {
  margin-top: 24px;
}
[dir="ltr"] .mgl-24 {
  margin-left: 24px;
}
[dir="rtl"] .mgl-24 {
  margin-right: 24px;
}
.mgt-32 {
  margin-top: 32px;
}
[dir="ltr"] .mgl-32 {
  margin-left: 32px;
}
[dir="rtl"] .mgl-32 {
  margin-right: 32px;
}
.mgt-34 {
  margin-top: 34px;
}
[dir="ltr"] .mgl-34 {
  margin-left: 34px;
}
[dir="rtl"] .mgl-34 {
  margin-right: 34px;
}
.mgt-40 {
  margin-top: 40px;
}
[dir="ltr"] .mgl-40 {
  margin-left: 40px;
}
[dir="rtl"] .mgl-40 {
  margin-right: 40px;
}
.mgt-48 {
  margin-top: 48px;
}
[dir="ltr"] .mgl-48 {
  margin-left: 48px;
}
[dir="rtl"] .mgl-48 {
  margin-right: 48px;
}
.flex1 {
  flex: 1 1;
}
.flex2 {
  flex: 2 1;
}
.inline-boxed-selected {
  display: inline-block;
}
.share-grow-text {
  color: #24ae64;
}
.share-decrease-text {
  color: #ef454a;
  color: var(--bds-red-700-normal, #ef454a);
}
.single-line-ellipsis,
.single-line-ellipsis .inline-block {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.single-line-ellipsis .inline-block {
  width: auto;
  max-width: 100%;
  display: block;
}
.flex-align-center {
  display: flex;
  align-items: center;
}
.just-cont-center {
  justify-content: center;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-ali-ct-jut-sb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fund-ct-para__share-alert {
  margin-top: 24px;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
@-webkit-keyframes infiniteLoading-ltr {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@-webkit-keyframes infiniteLoading-rtl {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-1turn);
  }
}
@keyframes infiniteLoading-ltr {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes infiniteLoading-rtl {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-1turn);
  }
}
[dir="ltr"] .copytrade-icon-reverse {
  transform: rotate(180deg);
}
[dir="rtl"] .copytrade-icon-reverse {
  transform: rotate(-180deg);
}
.cp-default-empty {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.copy-trade-width-layout {
  margin: 0 auto;
  width: 70%;
  max-width: 1200px;
  min-width: 1200px;
}
.copy-pro-gray-back {
  background: #f5f7fa;
  background: var(--gray-bg-bg-page, var(--bds-gray-bg-page, #f5f7fa));
  min-height: calc(100vh - 96px);
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
[dir="ltr"]
  .moly-table-last-column-align-right.moly-table
  > thead
  tr
  > th:last-child {
  text-align: right;
}
[dir="rtl"]
  .moly-table-last-column-align-right.moly-table
  > thead
  tr
  > th:last-child {
  text-align: left;
}
[dir="ltr"]
  .moly-table-last-column-align-right.moly-table
  > tbody
  tr
  > td:last-child {
  text-align: right;
}
[dir="rtl"]
  .moly-table-last-column-align-right.moly-table
  > tbody
  tr
  > td:last-child {
  text-align: left;
}
.ct-hide {
  display: none;
}
.pop-over-max-len {
  max-width: 300px;
}
.setting-input-error-msg {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  margin-top: 4px;
}
.red-normal,
.setting-input-error-msg {
  color: #ef454a;
  color: var(--bds-red-700-normal, #ef454a);
}
.brand-normal {
  color: #f7a600;
  color: var(--bds-brand-700-normal, #f7a600);
}
.moly-empty {
  font-family: Inter, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI,
    Roboto, Ubuntu, sans-serif !important;
}
.moly-btn {
  border-radius: 4px !important;
  border-radius: var(--bds-border-radius-button, 4px) !important;
}
.moly-modal {
  font-family: Inter, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI,
    Roboto, Ubuntu, sans-serif !important;
}
.moly-modal > div {
  font-family: Inter !important;
}
.by-button {
  border-radius: 4px !important;
  border-radius: var(--bds-border-radius-button, 4px) !important;
}
.ant-table-wrapper {
  cursor: default;
}
.ant-table-wrapper th {
  vertical-align: top;
}
.ant-table-wrapper .ant-table-thead {
  padding: 0 0 4px;
  height: 16px;
  line-height: 16px;
}
[dir="ltr"] .ant-table-wrapper .ant-table-thead th:first-child {
  padding-left: 16px;
}
[dir="ltr"] .ant-table-wrapper .ant-table-thead th:last-child,
[dir="rtl"] .ant-table-wrapper .ant-table-thead th:first-child {
  padding-right: 16px;
}
[dir="rtl"] .ant-table-wrapper .ant-table-thead th:last-child {
  padding-left: 16px;
}
.ant-table-wrapper .ant-table-thead tr th {
  line-height: 16px;
  align-items: center;
  background: #f5f7fa;
  background: var(--bds-gray-bg-page, #f5f7fa);
  box-sizing: border-box;
  font-size: 12px;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
  font-weight: 400;
  padding: 14px 0;
}
.ant-table-wrapper .ant-table-thead .ant-table-cell {
  border-bottom: none;
}
.ant-table-wrapper .ant-table-thead .ant-table-cell:before {
  width: 0 !important;
}
[dir="ltr"] .ant-table-wrapper .ant-table-tbody .ant-table-cell:first-child {
  padding-left: 16px;
}
[dir="ltr"] .ant-table-wrapper .ant-table-tbody .ant-table-cell:last-child,
[dir="rtl"] .ant-table-wrapper .ant-table-tbody .ant-table-cell:first-child {
  padding-right: 16px;
}
[dir="rtl"] .ant-table-wrapper .ant-table-tbody .ant-table-cell:last-child {
  padding-left: 16px;
}
.ant-table-wrapper .ant-table-tbody .ant-table-cell {
  padding: 13px 0;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  border-bottom: 0.5px solid #e9edf2;
  border-bottom: 0.5px solid var(--bds-gray-ele-border, #e9edf2);
  vertical-align: middle;
}
.ant-table-wrapper .ant-table-tbody .ant-input-affix-wrapper {
  border-radius: 4px;
}
.ant-table-wrapper .ant-pagination {
  margin: 24px 0 !important;
}
.ant-table-wrapper .ant-table-placeholder > td {
  border-bottom: none !important;
}
.ant-table-wrapper .ant-table-pagination .ant-pagination-item {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
}
.ant-table-wrapper .ant-table-pagination .ant-pagination-item-active {
  background-color: #f7a600;
  background-color: var(--bds-brand-700-normal, #f7a600);
  border-color: #f7a600;
  border-color: var(--bds-brand-700-normal, #f7a600);
}
.ant-table-wrapper .ant-table-pagination .ant-pagination-item-active a {
  color: #121214;
  color: var(--bds-gray-t1-title, #121214);
  font-weight: 400;
}
.ant-tabs .ant-tabs-nav {
  margin-bottom: 0 !important;
}
[dir="ltr"] .ant-tabs .ant-tabs-tab + .ant-tabs-tab {
  margin-left: 32px;
}
[dir="rtl"] .ant-tabs .ant-tabs-tab + .ant-tabs-tab {
  margin-right: 32px;
}
.ant-tabs .ant-tabs-tab {
  padding: 14px 0;
  font-size: 14px;
  font-weight: 600;
  color: #adb1b8;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8);
}
.ant-tabs .ant-tabs-tab:not(.ant-tabs-tab-active) .ant-tabs-tab-btn:active,
.ant-tabs .ant-tabs-tab:not(.ant-tabs-tab-active) .ant-tabs-tab-btn:hover,
.ant-tabs .ant-tabs-tab:not(.ant-tabs-tab-active):active,
.ant-tabs .ant-tabs-tab:not(.ant-tabs-tab-active):hover {
  color: #adb1b8 !important;
  color: var(--bds-badge-sup-type-secondary-text-color, #adb1b8) !important;
}
.ant-tabs .ant-tabs-tab-active .ant-tabs-tab-btn {
  color: #121214 !important;
  color: var(--bds-gray-t1-title, #121214) !important;
  text-shadow: none;
  font-weight: 600;
}
.ant-tabs .ant-tabs-tab-active .ant-tabs-tab-btn.active {
  text-shadow: none;
  font-weight: 600;
}
.ant-tooltip-content .ant-tooltip-inner {
  background-color: var(--bds-gray-ele-border);
  border-radius: 4px;
  padding: 12px 20px;
  color: var(--bds-gray-t1-title);
  font-size: 12px;
  line-height: 18px;
  box-shadow: none;
}
.ant-tooltip-content .ant-tooltip-inner span {
  white-space: nowrap;
}
.ant-tooltip-content .ant-tooltip-arrow-content {
  width: 10px;
  height: 10px;
  background-color: #e9edf2;
  background-color: var(--bds-gray-ele-border, #e9edf2);
  box-shadow: none !important;
  --antd-arrow-background-color: none;
}
.ant-switch:focus:focus {
  box-shadow: none !important;
}
.ant-btn-primary[disabled],
.ant-btn-primary[disabled]:active,
.ant-btn-primary[disabled]:focus,
.ant-btn-primary[disabled]:hover {
  color: var(--bds-static-black) !important;
  background-color: var(--bds-brand-700-normal) !important;
  opacity: 0.35 !important;
}
.ant-btn-primary {
  text-shadow: none !important;
}
.ant-select-item.ant-select-item-option-disabled {
  color: #000;
  color: initial;
  opacity: 0.35;
}
.antd-v5-modal-container .ant-modal-header {
  border-bottom: none;
  padding: 0;
}
.antd-v5-modal-container .ant-modal-close-x {
  width: auto;
}
.antd-v5-modal-container .ant-modal-close {
  top: 24px;
}
[dir="ltr"] .antd-v5-modal-container .ant-modal-close {
  right: 26px;
}
[dir="rtl"] .antd-v5-modal-container .ant-modal-close {
  left: 26px;
}
.antd-v5-modal-container .ant-modal-body {
  padding: 0;
}
.antd-v5-radio-container .ant-radio-wrapper .ant-radio {
  align-self: baseline;
}
.ant-btn-primary:focus {
  color: #000 !important;
  color: initial !important;
  background: #f7a600 !important;
  background: var(--bds-brand-700-normal, #f7a600) !important;
}
.ct-bydialog-modal-container .by-modal__container {
  padding: 24px 32px;
  background-color: var(--bds-gray-bg-card);
  border-radius: 16px;
  box-shadow: var(--bds-shadow-l2);
}
.ct-bydialog-modal-container.by-modal .by-dialog .by-dialog__head {
  margin-bottom: 24px;
  background-color: var(--bds-gray-bg-card);
  font-size: var(--font-size-18);
  font-weight: 600;
  color: var(--bds-gray-t1-title);
  height: auto;
  line-height: 1.5;
  padding: 0;
}
.ct-bydialog-modal-container.by-modal .by-dialog .by-dialog__close {
  top: 4px;
  width: 14px;
  height: 14px;
  font-size: 14px;
}
[dir="ltr"] .ct-bydialog-modal-container.by-modal .by-dialog .by-dialog__close {
  right: 0;
}
[dir="rtl"] .ct-bydialog-modal-container.by-modal .by-dialog .by-dialog__close {
  left: 0;
}
.ct-bydialog-modal-container.by-modal .by-dialog .by-dialog__body {
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  padding: 0;
}
.ct-bydialog-modal-container.by-modal .by-dialog .by-dialog__foot {
  padding: 0;
}
.ct-bydialog-modal-container.by-modal .by-dialog .by-dialog__foot .by-button {
  margin-top: 24px;
}
.ct-bydialog-modal-container.by-modal .by-dialog .by-button--brand {
  border: none;
  color: var(--bds-static-black);
  background-color: var(--bds-brand-700-normal);
  box-shadow: none;
}
.ct-bydialog-modal-container.by-modal .by-dialog .by-button--brand:hover {
  color: var(--bds-static-black);
  background-color: var(--bds-brand-600-hover);
}
.ct-bydialog-modal-container.by-modal .by-dialog .by-button--secondary {
  border: 1px solid var(--bds-gray-t4-dis);
  color: var(--bds-gray-t1-title);
  background-color: transparent;
}
.ct-bydialog-modal-container.by-modal .by-dialog .by-button--secondary:hover {
  color: var(--bds-gray-t2);
  border: 1px solid var(--bds-gray-t4-dis);
}
.ct-bydialog-modal-container.by-modal .by-dialog .by-button {
  padding: 12px 24px;
  font-size: var(--bds-font-size-16);
  line-height: var(--bds-line-height-16);
  border-radius: var(--size-8);
  height: auto;
}
.ct-bydialog-modal-container.by-modal
  .by-dialog
  .by-button
  .by-button__content {
  font-weight: 600;
}
li.ant-pagination-next .ant-pagination-item-link,
li.ant-pagination-prev .ant-pagination-item-link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ant-message .ant-message-notice-content {
  border-radius: 8px;
  padding: 14px 16px;
}
.deposit_modal_contain .ant-modal-content .ant-modal-header {
  padding: 0;
  border-bottom: none;
}
.deposit_modal_contain .ant-modal-content .ant-modal-body {
  padding: 0;
}
.ant-select-dropdown:has(.deposit_chain_warn) {
  padding: 4px;
}
.by-input--outlined.by-input--readonly .by-input__container:hover {
  border: 1px solid var(--bds-gray-t4-dis) !important;
}
