body {
  font-family: "Noto Sans SC", sans-serif;
  font-size: 14px;
}

select {
  /* 重置边框 */
  border: none;

  /* 重置背景 */
  background: transparent;

  /* 重置内边距 */
  padding: 0;

  /* 重置外边距 */
  margin: 0;

  /* 重置字体样式 */
  font-family: Arial, sans-serif;
  font-size: 14px;

  /* 其他样式可以根据需要添加 */
  width: auto;
  max-width: 100%;
  color: #f5f5f5;
}

.swiper-height {
  width: 100%;
  height: 500px;

  /* height: calc(100 * var(--vh) - 60px); */
}

@media screen and (min-width: 640px) {
  .swiper-height {
    height: calc(100 * var(--vh) - 100px);
  }
}

.play {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.center-swiper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
