﻿/* 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: 30px;
  font-weight: 600;
  color: #fff;
}
.customSelectBox {
  display: flex;
  align-items: center;
  gap: 18px;
  position: sticky !important;
  top: 62px;
  background-color: #000;
  padding: 15px 0 36px 0;
    margin: 15px 0 15px 0;
}

@media screen and (min-width: 825px) and (max-width: 1366px) {
  .customSelectBox {
    top: 48px;
  }
}

@media screen and (max-width: 824px) {
  .customSelectBox {
    top: 48px;
    padding: 8px 0px;
  }
  
  .section-content-wrap{
    padding: 0 !important;
  }
  main{
    padding-top: 0 !important;
  }
}

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

@media screen and (min-width: 1024px) {
  .main {
    padding: 45px 80px 0;
    box-sizing: border-box;
  }

  .title {
    box-sizing: border-box;
    text-align: center;
  }
}
