
  .banner-wrap {
    max-width: 1512px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .banner-box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    text-align: center;
  }
  .banner-btn {
    display: inline-block;
    padding: 8px 10px;
    font-size: 18px;
    font-family: 'Merienda One', cursive;
    background: #ff7d00;
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .banner-btn:hover {
    background: #ffd700;
    color: #ff7d00;
    border-color: #ff7d00;
  }
  /* 手机适配 干净无 important */
  @media (max-width: 767px) {
    .banner-btn {
      padding: 1px 5px;
      font-size: 12px;
      border: 1px solid #ffd700;
    }
    .banner-box {
      bottom: 7px;
    }
  }
