/* 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;
}
/* /topic/ 列表：PC + 移动端都只留封面，隐藏下方标题/播放量/标签
   （homeSectionContentItem 是共用组件，仅本页隐藏） */
.topiclist-body .item-texts {
  display: none;
}
/* 去文字后封面网格行列间距统一 10px（仅本页覆盖全局的 18px 30px） */
.topiclist-body .section-content {
  gap: 10px;
}
.customSelectBox {
  display: flex;
  align-items: center;
  gap: 18px;
  position: sticky !important;
  top: 62px;
  z-index: 900;
  background-color: #000;
  /* 上下对称 18px（黑条总高不变）让标题/下拉垂直居中；左右各 10px 内边距 */
  padding: 18px 10px;
}

@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;
  }
}
