/**
 * testing cdn font
 *
 * @format
 */
@import url('//at.alicdn.com/t/c/font_4889994_57rpp5qifqd.css');
@font-face {
  font-family: 'Inter';
  src: url('../../fonts/Inter-Light.ttf');
  font-weight: 300;
}
@font-face {
  font-family: 'Inter';
  src: url('../../fonts/Inter-Regular.ttf');
  font-weight: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('../../fonts/Inter-Medium.ttf');
  font-weight: 500;
}
@font-face {
  font-family: 'Inter';
  src: url('../../fonts/Inter-SemiBold.ttf');
  font-weight: 600;
}
@font-face {
  font-family: 'Inter';
  src: url('../../fonts/Inter-Bold.ttf');
  font-weight: 700;
}
body,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
fieldset,
legend,
input,
textarea,
select {
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
  -webkit-text-size-adjust: 100%;
  font-family: 'Inter';
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
em {
  font-style: normal;
}
li {
  list-style: none;
}
img {
  border: 0;
  vertical-align: middle;
}
table {
  border-spacing: 0;
}
p {
  word-wrap: break-word;
}
div,
section,
li {
  box-sizing: border-box;
}
input,
textarea {
  outline: none;
  border: none;
  resize: none;
}
button {
  border: none;
}
img:not([src]):not([srcset]) {
  visibility: hidden;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.pc-style {
  display: block;
}
.mb-style {
  display: none;
}
.android-style {
  display: none;
}
.flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
* {
  font-family: 'Inter';
  font-style: normal;
}
header {
  height: 70px;
}
header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-size: 24px;
  font-weight: 600;
  line-height: 2.9;
  letter-spacing: -1.4px;
}
header .header-link {
  margin-left: 74px;
  color: #061c3d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
header .header-link:hover {
  color: #8320fd;
}
header .header-login {
  margin-left: 50px;
  padding: 6px 16px;
  border-radius: 8px;
  border: 1px solid rgba(129, 33, 254, 0.28);
  background: #fff;
  color: #8c42ff;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
}
header .header-login:hover {
  border: 1px solid rgba(129, 33, 254, 0.28);
  background: rgba(220, 193, 255, 0.15);
}
header .header-mobile {
  display: none;
}
footer {
  padding: 34px 0 0;
  background: #000;
}
footer .footer-cont {
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.21);
}
footer .footer-cont .footer-left {
  flex: 0 0 402px;
}
footer .footer-cont .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 2.9;
  letter-spacing: -1.4px;
}
footer .footer-cont .footer-desc {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  /* 175% */
}
footer .footer-cont .footer-right {
  display: flex;
  gap: 150px;
  margin-top: 70px;
}
footer .footer-cont .footer-col {
  display: flex;
  flex-direction: column;
}
footer .footer-cont .footer-link {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 2.6;
  /* 262.5% */
}
footer .footer-cont .footer-link:hover {
  color: #8200db;
}
footer .footer-reserved {
  color: rgba(255, 255, 255, 0.59);
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 4.4;
  /* 437.5% */
}
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 996px) {
  header .header-link {
    margin-left: 40px;
  }
  header .header-login {
    margin-left: 40px;
  }
}
@media (max-width: 768px) {
  .mb-style {
    display: block;
  }
  .pc-style {
    display: none;
  }
  header {
    height: 54px;
  }
  header .header-mobile {
    display: flex;
    align-items: center;
  }
  header .header-right {
    overflow-y: auto;
    position: fixed;
    top: 54px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  header .header-right.active {
    transform: translateX(0);
  }
  header .header-right .header-link {
    display: block;
    margin-left: 0;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  header .header-login {
    display: none;
  }
  header .header-mobile-login {
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid rgba(129, 33, 254, 0.28);
    background: #fff;
    color: #8c42ff;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
  }
  header .header-left {
    font-size: 18px;
  }
  header .header-left img {
    width: 24px;
    height: 24px;
  }
  header .header-menu-toggle {
    display: block;
    background: none;
    border: none;
    padding: 10px;
    margin-left: 10px;
    cursor: pointer;
  }
  header .header-menu-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    margin: 6px 0;
    transition: 0.3s;
  }
  header .header-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  header .header-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  header .header-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  footer {
    padding: 16px 0 0;
  }
  footer .footer-cont {
    flex-direction: column;
  }
  footer .footer-cont .footer-left {
    flex: auto;
  }
  footer .footer-cont .footer-desc {
    font-size: 14px;
    margin-top: 0;
  }
  footer .footer-cont .footer-right {
    margin-top: 16px;
    gap: 0;
    flex-direction: column;
  }
  footer .footer-reserved {
    font-size: 14px;
  }
}
