.scene-box {
    margin-bottom: calc(100vw * 100 / 1920);
  }
  .scene {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .scene-item {
    width: calc(100vw * 507 / 1920);
    height: calc(100vw * 560 / 1920);
    border-radius: 40px;
    border: 1px solid #495653;
    background: #171919;
    box-sizing: border-box;
    margin-top: calc(100vw * 40 / 1920);
  }
  .scene-item-content {
    width: calc(100vw * 411 / 1920);
    height: calc(100vw * 411 / 1920);
    position: relative;
    margin: calc(100vw * 36 / 1920) auto;
    border-radius: calc(100vw * 30 / 1920);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  }
  .scene-item-content img {
    display: block;
    width: 100%;
    height: 100%;
  }
  .scene-item-info {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: auto;
    color: #fff;
    height: fit-content;
    box-sizing: border-box;
    padding: 0 calc(100vw * 63 / 1920);
  }
  .scene-item-title {
    line-height: calc(100vw * 34 / 1920);
    color: #fff;
    text-align: center;
    font-family: 'Source Han Sans CN';
    font-size: calc(100vw * 30 / 1920);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 3px;
  }
  .scene-item-info p {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #fcfbff;
    margin: calc(100vw * 18 / 1920) auto calc(100vw * 30 / 1920);
  }
  .scene-item-desc {
    color: #fff;
    font-family: 'Source Han Sans CN';
    font-size: calc(100vw * 14 / 1920);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.4px;
    text-align: left;
  }

  .scene-item-btn {
    color: #fff;
    width: calc(100vw * 160 / 1920);
    text-align: center;
    font-size: calc(100vw * 14 / 1920);
    box-sizing: border-box;
    height: calc(100vw * 42 / 1920);
    border-radius: calc(100vw * 30 / 1920);
    margin: calc(100vw * 29 / 1920) auto 0;
    cursor: pointer;
    position: relative;
    z-index: 0;
  }
  .scene-item-btn div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #262929;
    border-radius: calc(100vw * 30 / 1920);
  }
  .scene-item-btn:hover div {
    background: #171919;
  }
  .scene-item-btn:hover::before {
    content: '';
    position: absolute;
    z-index: -1; /* 保持在父元素下方 */
    top: 0px;
    left: 0x;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(90deg, #0064b5 0%, #00b5d4 50%, #00be8b 100%);
    border-radius: calc(100vw * 30 / 1920);
    width: 100%;
    height: 100%;
  }