/* rem适配基础设置 */
html {
  font-size: 16px; /* 基准字体大小 */
  background: #000;
  color: #fff;
}
/* 根据屏幕宽度动态调整rem基准值 */
@media screen and (max-width: 768px) {
  html {
    font-size: calc(16px * (100vw / 768)); /* 动态调整字体大小 */
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: calc(16px * (100vw / 480));
  }
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow-y: auto;
}
a,a:link,a:visited,a:hover,a:active{
    text-decoration: none;
    color:inherit;
}
.title {
  font-size: 24px;
  font-weight: 500;
}
.customSelectBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

@media screen and (max-width: 824px) {
  .customSelectBox {
    padding: 0 16px;
  }

  .custom-select {
    position: static;
  }

  .custom-select__options {
    left: 16px;
    right: 16px;
  }

  .customSelectBox .custom-select__trigger {
    font-size: 12px;
  }

  .title {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .main {
    padding: 0 80px;
    box-sizing: border-box;
  }
  .title {
    padding: 18px 0;
    box-sizing: border-box;
    text-align: center;
    color: #BDBDBD;
  }
}

@media screen and (min-width: 1024px) {
  .main {
    padding: 62px 80px;
    box-sizing: border-box;
  }
  .title {
    padding:  36px 0;
    box-sizing: border-box;
    text-align: center;
    color: #BDBDBD;
  }
}