.home-btn-group {
    display: flex;
    justify-content: center;
    width: max-content;
    gap: 1.25vw;
  }
  @media screen and (max-width: 997px) {
    .home-btn-group {
      gap: 4.27vw;
      flex-direction: column;
      justify-content: center;
      margin: 0 auto;
    }
  }
  .btn {
    width: 16.15vw;
    height: 3.54vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 0.16vw;
    border-radius: 4.17vw;
    box-sizing: border-box;
    margin: 0 auto;
    color: #1D1D1F;
    font-size: 1.25vw;
    text-align: center;
    transition: all 0.3s;
    background: #fff;
    cursor: pointer;
    text-decoration: none;
  }
  .btn .btn-desc {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    max-height: 0;
    color: #FB3854;
    font-size: 0.83vw;
    overflow: hidden;
  }
  .btn.btn-down {
    position: relative;
    transition: all 0.3s;
    z-index: 3;
    overflow: hidden;
    background: linear-gradient(0deg, #1ED760 0%, #1ED760 100%), #FFF;
  }
  .btn:hover {
    background: linear-gradient(0deg, #41EC7E 0%, #41EC7E 100%), linear-gradient(0deg, #1ED760 0%, #1ED760 100%), #FFF;
  }
  @media screen and (max-width: 997px) {
    .btn {
      width: 66.67vw;
      height: 12.27vw;
      border-radius: 16vw;
      font-size: 4.8vw;
    }
    .btn.btn-down:hover .btn-desc {
      font-size: 3.2vw;
    }
  }
  .spotify-music-converter .container {
    max-width: 62.5vw;
    width: 62.5vw;
    padding: 0;
  }
  .spotify-music-converter .container::after,
  .spotify-music-converter .container::before {
    display: none;
  }
  @media screen and (max-width: 997px) {
    .spotify-music-converter .container {
      width: 100%;
      max-width: 100%;
      padding: 0 15px;
    }
  }
  .home-navigation {
    visibility: hidden;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
  }
  .home-navigation .container::after,
  .home-navigation .container::before {
    display: none;
  }
  .home-navigation.show {
    visibility: visible;
    max-height: 100%;
    opacity: 1;
  }
  .home-navigation .container {
    display: flex;
    padding: 0.73vw 0;
    justify-content: space-between;
    align-items: center;
    max-width: 62.5vw;
    width: 62.5vw;
    margin: 0 auto;
  }
  @media screen and (max-width: 997px) {
    .home-navigation .container {
      width: 100%;
      max-width: 100%;
      padding: 4vw 15px;
    }
  }
  .home-navigation .box {
    display: flex;
    align-items: center;
    column-gap: 0.94vw;
  }
  .home-navigation .nav-logo {
    font-size: 1.25vw;
  }
  @media screen and (max-width: 997px) {
    .home-navigation .nav-logo {
      font-size: 3.2vw;
    }
  }
  .home-navigation .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2.86vw;
    background: #1DB954;
    color: #fff;
    font-size: 0.94vw;
    width: 10.83vw;
    height: 2.19vw;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
  }
  .home-navigation .btn:hover {
    color: #DDF5E6;
  }
  .home-navigation .btn.btn-buy {
    background: linear-gradient(0deg, #FACB22 0%, #FACB22 100%), #FA243C;
    color: #000;
  }
  .home-navigation .btn.btn-buy:hover {
    background: linear-gradient(0deg, #E4B80E 0%, #E4B80E 100%), #FFF;
  }
  @media screen and (max-width: 997px) {
    .home-navigation .btn {
      width: 25.6vw;
      height: 7.47vw;
      border-radius: 5.33vw;
      font-size: 2.4vw;
      padding: 0 3.67vw;
    }
    .home-navigation .btn.btn-buy {
      width: 20.53vw;
    }
  }
  .home-navigation .btn-mac,
  .home-navigation .btn-win {
    display: none;
  }
  .home-navigation .btn-mac.show,
  .home-navigation .btn-win.show {
    display: block;
  }
  .banner {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 6.93vw 0 5.94vw;
    box-sizing: border-box;
    background: url('../../img/spotify-music-converter/banner-bg.webp') repeat center top;
    background-size: cover;
    color: #fff;
    transition: background-image 0.5s ease;
  }
  .banner.banner-web-bg {
    background-image: url('../../img/spotify-music-converter/banner-bg2.webp');
  }
  .banner .toggle {
    position: relative;
    z-index: 3;
    display: flex;
    margin: 0 0 3.13vw;
    border-radius: 1.979vw;
    width: 20.57vw;
    background: rgba(26, 26, 26, 0.26);
    padding: 0.26vw;
    gap: 0.52vw;
  }
  .banner .toggle_item {
    width: 50%;
    padding: 0.52vw 0;
    text-align: center;
    color: #1D1D1F;
    background: #365947;
    font-size: 0.73vw;
    font-weight: 500;
    cursor: pointer;
    border-radius: 1.979vw;
    transition: all 0.3s;
    color: #fff;
  }
  .banner .toggle_item.action {
    background-color: #fff;
    color: #1D1D1F;
  }
  .banner .banner-content {
    width: 100%;
    transition: height 0.5s ease;
  }
  .banner .desktop-left {
    position: relative;
    z-index: 3;
  }
  .banner .web-left {
    position: relative;
    z-index: 3;
  }
  .banner .banner-tips {
    display: flex;
    align-items: center;
    column-gap: 1.1vw;
    color: rgba(255, 255, 255, 0.89);
    font-size: 1.56vw;
    font-weight: 400;
    line-height: 1.3;
  }
  .banner .banner-tips h1 {
    font-size: inherit;
    font-weight: 400;
  }
  .banner .banner-tips img {
    width: 1.67vw;
    height: 1.67vw;
  }
  .banner .banner-tit {
    color: #fff;
    margin: 1.67vw 0;
    font-size: 3.65vw;
    font-weight: 600;
    line-height: 124%;
  }
  .banner .banner-desktop {
    width: 100%;
    visibility: hidden;
    max-height: 0;
    opacity: 0;
    height: auto;
    overflow: hidden;
    transition: opacity 0.5s ease, height 0.5s ease, visibility 0.5s ease;
  }
  .banner .banner-desktop.show-banner {
    visibility: visible;
    opacity: 1;
    max-height: 100%;
  }
  .banner .banner-desktop .btn-buy:hover {
    background: #DEFFEA;
  }
  .banner .banner-desc {
    color: #fff;
    font-size: 1.25vw;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.29vw;
  }
  .banner .banner-web {
    max-height: 0;
    width: 100%;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    height: auto;
    transition: opacity 0.5s ease, height 0.5s ease, visibility 0.5s ease;
  }
  .banner .banner-web.show-banner {
    visibility: visible;
    opacity: 1;
    max-height: 100%;
  }
  .banner .banner-usage {
    display: block;
    width: max-content;
    margin: 2.24vw 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.94vw;
    text-decoration: none;
  }
  .banner .banner-usage::after {
    content: '>>';
    display: inline-block;
    transition: transform 0.3s;
  }
  .banner .banner-usage:hover::after {
    transform: translateX(0.52vw);
  }
  .banner .btn-mac,
  .banner .btn-win {
    display: none;
  }
  .banner .btn-mac.show,
  .banner .btn-win.show {
    display: block;
  }
  .banner .banner-right-img {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    width: 48.44vw;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    height: auto;
  }
  .banner .banner-right-img.show {
    display: block;
    transform: translateY(0);
    animation: banner-right-img-show 1s ease;
  }
  @keyframes banner-right-img-show {
    0% {
      transform: translateY(-200px);
    }
    100% {
      transform: translateY(0);
    }
  }
  @media screen and (max-width: 997px) {
    .banner {
      padding: 12vw 0 0;
      background-size: cover;
      height: max-content;
      background-image: url('../../img/spotify-music-converter/banner-bg-mb.webp');
    }
    .banner.banner-web-bg {
      background-image: url('../../img/spotify-music-converter/banner-bg2-mb.webp');
      min-height: 200vw;
    }
    .banner .toggle {
      width: 85.33vw;
      padding: 0.53vw;
      border-radius: 10.13vw;
      gap: 2.13vw;
    }
    .banner .toggle_item {
      font-size: 3.2vw;
      padding: 2.13vw 0;
      border-radius: 10.13vw;
    }
    .banner .banner-content {
      display: block;
    }
    .banner .banner-desktop {
      flex-direction: column;
      padding: 0 4vw 0;
      text-align: center;
      height: 0;
    }
    .banner .banner-desktop.show-banner {
      height: auto;
      padding: 0 4vw 64vw;
    }
    .banner .desktop-left {
      width: 100%;
      padding: 0;
    }
    .banner .web-left {
      width: 100%;
      padding: 0;
    }
    .banner .banner-tips {
      justify-content: center;
      font-size: 4.8vw;
      margin-top: 6.93vw;
    }
    .banner .banner-tips img {
      width: 4.8vw;
      height: 4.8vw;
    }
    .banner .banner-tit {
      font-size: 11.2vw;
      text-align: center;
      margin: 6.4vw 0;
    }
    .banner .banner-desc {
      font-size: 4.8vw;
      text-align: center;
      margin-bottom: 6.4vw;
    }
    .banner .banner-usage {
      font-size: 3.2vw;
      margin: 5.87vw auto 0;
      text-align: center;
    }
    .banner .banner-web {
      height: 0;
    }
    .banner .banner-web.show-banner {
      height: auto;
    }
    .banner .banner-right-img {
      top: unset;
      bottom: 0;
      left: 0;
      animation: unset;
      width: 100%;
    }
    .banner .banner-right-img.show {
      transform: unset;
      animation: unset;
    }
  }
  .parse-container {
    margin-top: 3.13vw;
  }
  .parse-container .parse-input-container {
    display: flex;
    align-items: start;
    margin-top: 1.25vw;
    gap: 1.04vw;
  }
  .parse-container .btn-download.btn-disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
  .parse-container .btn-download.btn-disabled::before {
    display: none;
  }
  .parse-container .error-message {
    font-size: 0.73vw;
    color: #E5E5E5;
    line-height: 1.5;
    margin-top: 0.52vw;
  }
  .parse-container .error-message p {
    font-size: inherit;
  }
  .parse-container .error-message a {
    text-decoration: underline;
    color: inherit;
  }
  .parse-container .banner-web_search {
    margin: 0 auto 2.4vw;
  }
  .parse-container .banner-web_desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.04vw;
    display: flex;
    align-items: center;
  }
  .parse-container .banner-web_desc a {
    display: inline-block;
    width: 0.729vw;
    height: 0.729vw;
    line-height: 0.729vw;
    font-size: 0.625vw;
    text-align: center;
    background-color: #cacaca;
    color: #fff;
    border-radius: 50%;
  }
  .parse-container .url-container {
    flex: 1;
  }
  .parse-container .url {
    background: #2E3632;
    border-radius: 0.73vw;
    padding: 1.67vw;
    flex: 1;
    box-sizing: border-box;
    color: #fff;
    font-size: 1.04vw;
    width: 100%;
    border: 2px solid transparent;
    transition: border 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .parse-container .url:focus-visible{
    outline: unset;
  }
  .parse-container .url::placeholder {
    color: #AFAFAF;
    font-size: 1.04vw;
  }
  .parse-container .url:focus {
    border: 2px solid #fff;
  }
  .parse-container .url.error,
  .parse-container .url.has-value {
    border: 2px solid #A3A3A3;
  }
  .parse-container .search-desc {
    display: block;
    width: max-content;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1.25vw;
    font-size: 0.83vw;
    line-height: 131%;
    text-decoration: underline;
  }
  .parse-container .search-desc:hover span {
    transform: translateX(0.417vw);
  }
  .parse-container .search-desc span {
    display: inline-block;
    transition: transform 0.3s;
  }
  .parse-container .parse-input-btn {
    display: flex;
    align-items: center;
    padding: 1.56vw 2.34vw;
    column-gap: 0.417vw;
    border-radius: 0.208vw;
    background: #1ED760;
    color: #000;
    font-size: 1.25vw;
    font-weight: 500;
    line-height: 131%;
    border-radius: 0.73vw;
    cursor: pointer;
    width: 11.88vw;
    transition: transform 0.3s;
    border: none;
  }
  .parse-container .parse-input-btn img {
    width: 1.56vw;
    height: 1.56vw;
  }
  .parse-container .parse-input-btn:hover {
    background: #2DEA71;
  }
  .parse-container .parse-loading {
    text-align: center;
  }
  .parse-container .parse-loading img {
    width: 12.208vw;
  }
  .parse-container .parse-loading_tit {
    color: #fff;
    text-align: center;
    font-size: 1.15vw;
    line-height: 180%;
    margin-top: -2.3vw;
  }
  .parse-container .parse-info .parse-swiper {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 2.6vw;
  }
  .parse-container .parse-info .parse-swiper .swiper-slide {
    width: 100%;
    text-align: center;
  }
  .parse-container .parse-info .parse-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .parse-container .parse-info .slide-mb {
    display: none;
  }
  .parse-container .parse-info .swiper-pagination-bullet {
    background: rgba(97, 51, 234, 0.2);
    opacity: 1;
  }
  .parse-container .parse-info .swiper-pagination-bullet-active {
    background: #FB3854;
  }
  .parse-container .parse-info .swiper-button-prev,
  .parse-container .parse-info .swiper-button-next {
    width: 3.13vw;
    height: 3.13vw;
    border: 1px solid #A6A6A6;
    background: #4A4A4A;
    border-radius: 50%;
    top: 45%;
  }
  .parse-container .parse-info .swiper-button-prev::after,
  .parse-container .parse-info .swiper-button-next::after {
    font-size: 0.94vw;
    color: #fff;
    font-weight: 600;
  }
  .parse-container .parse-info .swiper-button-prev:hover,
  .parse-container .parse-info .swiper-button-next:hover {
    background: #FB3854;
  }
  .parse-container .parse-info .swiper-button-next {
    right: 1.25vw;
  }
  .parse-container .parse-info .swiper-button-prev {
    left: 1.25vw;
  }
  .parse-container .result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #B3B3B3;
    font-size: 0.63vw;
    margin-bottom: 0.52vw;
  }
  .parse-container .result-header .result-header-item {
    padding-left: 0.52vw;
  }
  .parse-container .result-header .result-header-item:not(:first-child) {
    border-left: 1px solid #434343;
  }
  .parse-container .name-item {
    width: 25%;
  }
  .parse-container .artist-item,
  .parse-container .album-item {
    width: 10%;
  }
  .parse-container .artist-item,
  .parse-container .album-item,
  .parse-container .time-item {
    padding-left: 0.52vw;
  }
  .parse-container .time-item {
    width: 5%;
  }
  .parse-container .download-item {
    width: 20%;
  }
  .parse-container .result-item {
    color: #727272;
    font-size: 0.73vw;
    border-radius: 0.52vw;
    background-color: #222222;
    margin-bottom: 1.04vw;
    padding: 0.47vw;
  }
  .parse-container .result-item:last-child {
    margin-bottom: 0;
  }
  .parse-container .slide-pc {
    cursor: pointer;
  }
  .parse-container .patse-result {
    width: 100%;
    margin: 0 auto;
  }
  .parse-container .patse-result .result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.521vw;
    color: #DDD;
  }
  .parse-container .patse-result .content-wrapper {
    display: flex;
    column-gap: 1.042vw;
    align-items: center;
  }
  .parse-container .patse-result .info {
    display: flex;
    column-gap: 0.63vw;
    align-items: center;
  }
  .parse-container .patse-result .info .desc {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
  .parse-container .patse-result .info .name {
    color: #FFF;
    font-size: 0.73vw;
    font-weight: 500;
    line-height: 131%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
  }
  .parse-container .patse-result .avatar {
    width: 2.81vw;
    height: 2.81vw;
    border-radius: 0.31vw;
  }
  .parse-container .download-item {
    text-align: right;
    display: flex;
    justify-content: flex-end;
  }
  .parse-container .download-link {
    border-radius: 3.542vw;
    padding: 0.63vw;
    width: 10.729vw;
    justify-content: center;
    border-radius: 0.42vw;
    position: relative;
    background: #fff;
    color: #000;
    font-size: 0.73vw;
    line-height: 131%;
    height: max-content;
    cursor: pointer;
    display: flex;
    align-items: center;
    column-gap: 0.417vw;
    transition: transform 0.3s;
    border: none;
    opacity: 1;
    text-decoration: none;
  }
  .parse-container .download-link:hover {
    background: #2DEA71;
  }
  .parse-container .download-link::before {
    content: '';
    width: 3.65vw;
    height: 1.25vw;
    background: url("../../img/spotify-music-converter/down-icon.png") no-repeat center center;
    background-size: contain;
    position: absolute;
    left: -36%;
  }
  .parse-container .download-link .download-icon {
    width: 0.94vw;
    height: 0.94vw;
  }
  .parse-container .download-link.btn-disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
  .parse-container .error-text {
    font-size: 0.83vw;
    color: #D51616;
    margin-top: 0.94vw;
  }
  .parse-container .error-text::before {
    content: "";
    width: 1.04vw;
    height: 1.04vw;
    background: url("../../img/spotify-music-converter/error.svg") no-repeat center center;
    background-size: contain;
    display: inline-block;
    vertical-align: baseline;
    margin-right: 0.21vw;
  }
  .parse-container .tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1.04vw;
    margin-bottom: 1.04vw;
    margin-top: 3.13vw;
    margin-bottom: 1.35vw;
  }
  .parse-container .tabs .tab-item {
    display: flex;
    justify-content: center;
    flex: 1;
    padding: 0.89vw 0;
    gap: 0.83vw;
    align-items: center;
    border-radius: 0.52vw;
    border: 1px solid #515151;
    background: #272727;
    font-size: 1.25vw;
    cursor: pointer;
    transition: all 0.3s;
  }
  .parse-container .tabs .tab-icon {
    width: 1.88vw;
    height: 1.88vw;
  }
  .parse-container .tabs .default-icon {
    display: block;
  }
  .parse-container .tabs .active-icon {
    display: none;
  }
  .parse-container .tabs .active {
    background: #FFF;
    color: #040404;
  }
  .parse-container .tabs .active .default-icon {
    display: none;
  }
  .parse-container .tabs .active .active-icon {
    display: block;
  }
  @media (max-width: 1800px) {
    .parse-container .slide-pc {
      width: 80%;
    }
  }
  @media (max-width: 997px) {
    .parse-container .error-message {
      font-size: 2.67vw;
      margin-top: 2.67vw;
    }
    .parse-container .tabs {
      gap: 2.67vw;
      margin-top: 8vw;
      margin-bottom: 4vw;
    }
    .parse-container .tabs .tab-item {
      font-size: 3.2vw;
      flex-direction: column;
      border-radius: 1.07vw;
    }
    .parse-container .tabs .tab-item img {
      width: 6.4vw;
      height: 6.4vw;
    }
    .parse-container .banner-web_search {
      width: 100%;
      margin: 5.867vw auto;
    }
    .parse-container .result-header {
      display: none;
    }
    .parse-container .search-desc {
      text-align: center;
      font-size: 3.2vw;
    }
    .parse-container .parse-input-container {
      flex-direction: column;
    }
    .parse-container .url-container {
      width: 100%;
    }
    .parse-container .url {
      font-size: 3.2vw;
      padding: 4.27vw;
      border-radius: 2.67vw;
      margin-top: 2.67vw;
    }
    .parse-container .url::placeholder {
      font-size: 3.2vw;
    }
    .parse-container .error-text {
      font-size: 2.67vw;
    }
    .parse-container .error-text::before {
      width: 2.67vw;
      height: 2.67vw;
      margin-right: 1.067vw;
    }
    .parse-container .parse-input-btn {
      justify-content: center;
      margin: 4.267vw auto;
      font-size: 3.73vw;
      width: 50.67vw;
      padding: 3.2vw 0;
      border-radius: 2.67vw;
      gap: 2.67vw;
    }
    .parse-container .parse-input-btn img {
      width: 5.87vw;
      height: 5.87vw;
    }
    .parse-container .parse-loading_tit {
      font-size: 3.733vw;
      margin-top: -11vw;
    }
    .parse-container .parse-loading img {
      width: 48vw;
    }
    .parse-container .banner-web_desc {
      font-size: 3.2vw;
    }
    .parse-container .patse-result {
      padding-top: 5.333vw;
    }
    .parse-container .patse-result .result-item {
      position: relative;
      flex-direction: column;
      padding: 1.87vw;
      margin-bottom: 2.67vw;
    }
    .parse-container .patse-result .album-item,
    .parse-container .patse-result .time-item {
      display: none;
    }
    .parse-container .patse-result .artist-item {
      position: absolute;
      left: 14.8vw;
      font-size: 3.2vw;
      top: 8.3vw;
      width: 22.4vw;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .parse-container .patse-result .download-item {
      width: 40%;
    }
    .parse-container .patse-result .name-item {
      width: 40%;
    }
    .parse-container .patse-result .info {
      align-items: start;
      gap: 2.13vw;
    }
    .parse-container .patse-result .info .name {
      font-size: 3.733vw;
    }
    .parse-container .patse-result .download-btn {
      margin-top: 2.667vw;
      justify-content: center;
    }
    .parse-container .patse-result .download-btn .info_btn {
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 2.667vw;
    }
    .parse-container .patse-result .content-wrapper {
      column-gap: 1.6vw;
    }
    .parse-container .patse-result .avatar {
      width: 10.667vw;
      height: 10.667vw;
      border-radius: 1.07vw;
    }
    .parse-container .patse-result .download-link {
      width: 40vw;
      font-size: 3.2vw;
      column-gap: 1.067vw;
      padding: 2.13vw;
      border-radius: 1.6vw;
    }
    .parse-container .patse-result .download-link img {
      display: none;
    }
    .parse-container .patse-result .download-link:before {
      width: 15.47vw;
      height: 5.33vw;
      left: -46%;
    }
    .parse-container .patse-result .result-item {
      flex-direction: row;
    }
    .parse-container .parse-info .slide-mb {
      display: block;
      margin: 0 auto;
    }
    .parse-container .parse-info .slide-pc,
    .parse-container .parse-info .swiper-button-prev,
    .parse-container .parse-info .swiper-button-next {
      display: none;
    }
    .parse-container .parse-info .parse-swiper {
      width: 100%;
      padding-bottom: 0;
    }
  }
  .image-zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: zoom-out;
  }
  .image-zoom-overlay.show {
    display: flex;
  }
  .image-zoom-container {
    width: 100vw;
    max-height: 100vh;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .image-zoom {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  @media (max-width: 997px) {
    .image-zoom {
      max-width: unset;
      max-height: 100vh;
    }
  }
  .hide {
    display: none;
  }
  .show {
    display: block;
  }
  .mobile-style {
    display: none;
  }
  @media (max-width: 997px) {
    .mobile-style {
      display: block;
    }
  }
  .pc-style {
    display: block;
  }
  @media (max-width: 997px) {
    .pc-style {
      display: none;
    }
  }
  .download-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }
  .download-modal-overlay.show {
    display: flex !important;
  }
  @media (max-width: 997px) {
    .download-modal-overlay .mobile-style {
      flex: 1;
    }
  }
  .limit-pop-body {
    padding: 1.67vw 3.13vw 2.4vw;
  }
  @media (max-width: 997px) {
    .limit-pop-body {
      padding: 5.33vw;
    }
  }
  .download-modal {
    position: absolute;
    width: 90%;
    max-width: 39.06vw;
    border-radius: 0.417vw;
    box-sizing: border-box;
    position: relative;
    border-radius: 1.56vw;
    overflow: hidden;
    background: #000;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
  }
  @media (max-width: 997px) {
    .download-modal {
      max-width: 90%;
    }
  }
  .modal-close-btn {
    display: flex;
    justify-content: center;
    width: 1.98vw;
    height: 1.98vw;
    align-items: center;
    position: absolute;
    top: 0.833vw;
    right: 0.833vw;
    background: #CECECE;
    border: none;
    color: #fff;
    border-radius: 50%;
    font-size: 0.938vw;
    cursor: pointer;
  }
  @media (max-width: 997px) {
    .modal-close-btn {
      width: 5.333vw;
      height: 5.333vw;
      top: 2.67vw;
      right: 2.67vw;
      font-size: 4.8vw;
    }
  }
  .pop-modal-content {
    text-align: center;
  }
  .pop-modal-content img {
    width: 100%;
    height: auto;
  }
  .pop-modal-content p {
    color: #FFF;
    font-size: 1.67vw;
    font-weight: 600;
    line-height: 196%;
  }
  .pop-modal-content p:nth-of-type(2) {
    color: #707070;
    font-size: 1.04vw;
    line-height: 180%;
    margin-top: 0;
    font-weight: 500;
  }
  @media (max-width: 997px) {
    .pop-modal-content p:nth-of-type(2) {
      font-size: 3.733vw;
    }
  }
  @media (max-width: 997px) {
    .pop-modal-content p {
      font-size: 4.8vw;
    }
  }
  .download-btn-group {
    display: flex;
    column-gap: 1.04vw;
    justify-content: center;
    margin-top: 1.46vw;
  }
  @media (max-width: 997px) {
    .download-btn-group {
      width: 100%;
    }
  }
  .modal-login-btn,
  .pop-link {
    display: flex;
    align-items: center;
    column-gap: 0.417vw;
    padding: 0.83vw 1.77vw;
    display: block;
    border-radius: 0.42vw;
    background: #2DEA71;
    width: max-content;
    color: #000;
    font-size: 0.94vw;
    line-height: 120%;
    text-decoration: none;
  }
  .modal-login-btn img,
  .pop-link img {
    width: 1.25vw;
    height: 1.25vw;
  }
  .modal-login-btn:hover,
  .pop-link:hover {
    background: #B6F6CD;
  }
  @media (max-width: 997px) {
    .modal-login-btn,
    .pop-link {
      width: 100%;
      padding: 3.733vw;
      margin-top: 4.8vw;
      border-radius: 1.333vw;
      font-size: 4.267vw;
      display: none;
    }
    .modal-login-btn.modal-login-btn,
    .pop-link.modal-login-btn {
      display: block;
    }
  }
  .download-count-display {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 1.042vw;
    padding: 0.521vw 0.781vw;
    border-bottom: 1px solid #434343;
    column-gap: 0.781vw;
  }
  @media (max-width: 997px) {
    .download-count-display {
      margin-bottom: 5vw;
      justify-content: flex-start;
      padding: 0;
      column-gap: 4vw;
      border-bottom: none;
    }
  }
  .download-status-text {
    color: #FFF;
    font-size: 0.833vw;
    line-height: 131%;
  }
  .download-status-text span {
    color: #1ED760;
  }
  @media (max-width: 997px) {
    .download-status-text {
      font-size: 3.2vw;
    }
  }
  .download-percentage {
    color: #1ED760;
    font-size: 1.25vw;
    font-weight: 600;
    line-height: 131%;
  }
  @media (max-width: 997px) {
    .download-percentage {
      font-size: 3.2vw;
    }
  }
  .limit-pop-img {
    width: 100%;
    height: auto;
  }
  .limit-pop-img.mobile-style {
    display: none;
  }
  @media (max-width: 997px) {
    .limit-pop-img.pc-style {
      display: none;
    }
    .limit-pop-img.mobile-style {
      display: block;
    }
  }
  .body-no-scroll {
    overflow: hidden;
  }
  .reveal-up {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
    transition: opacity 1s cubic-bezier(0.5, 0, 0, 1), transform 1s cubic-bezier(0.5, 0, 0, 1);
    will-change: transform, opacity;
  }
  .reveal-up.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  .reveal-up.delay-100 {
    transition-delay: 0.1s;
  }
  .reveal-up.delay-200 {
    transition-delay: 0.2s;
  }
  .section-title {
    text-align: center;
    font-size: 3.33vw;
    font-weight: 600;
    line-height: 1.35;
    color: #004338;
  }
  .section-title .highlight {
    color: transparent;
    background: linear-gradient(90deg, #1ED760 0%, #41EC7E 60%, #1ED760 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  @media screen and (max-width: 997px) {
    .section-title {
      font-size: 8.53vw;
      padding: 0 2vw;
    }
  }
  .content-title {
    color: #212626;
    font-size: 2.4vw;
    font-weight: 600;
    line-height: 1.3;
  }
  @media screen and (max-width: 997px) {
    .content-title {
      font-size: 7.47vw;
    }
  }
  .wrap1 {
    margin-top: 5.94vw;
  }
  .wrap1 .section-title {
    margin-bottom: 3.91vw;
  }
  .wrap1 .wrap-content {
    border-radius: 2.08vw;
  }
  .wrap1 .item1 {
    background: linear-gradient(99deg, #36DD7A 0%, #47D5C0 99.07%), linear-gradient(180deg, #068165 0%, #1EAF8E 100%), linear-gradient(180deg, #18BEAB 0%, #26B574 100%), linear-gradient(180deg, #28AEBE 0.17%, #51D9E2 101.51%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 4.84vw 0;
  }
  .wrap1 .item1 .content-title {
    margin-bottom: 1.56vw;
  }
  .wrap1 .item1 .content-desc {
    margin-bottom: 3.44vw;
    font-size: 1.04vw;
    color: #262626;
    line-height: 1.8;
  }
  .wrap1 .item1 .feature-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.92vw;
  }
  .wrap1 .item1 .feature-item-img {
    width: 5.21vw;
    height: 5.21vw;
    margin-bottom: 1.04vw;
  }
  .wrap1 .item1 .feature-item-title {
    color: #2B2B2B;
    font-size: 0.94vw;
    line-height: 1.3;
  }
  .wrap1 .item2 {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #161919;
    padding: 4.17vw 0 5.21vw 3.65vw;
    color: #fff;
    overflow: hidden;
    margin-top: 4.17vw;
  }
  .wrap1 .item2 .item-left {
    width: 28.56vw;
  }
  .wrap1 .item2 .item-right {
    width: 50%;
  }
  .wrap1 .item2 .content-title {
    margin-bottom: 1.04vw;
    background: linear-gradient(90deg, #0EE95B 0%, #13E9AD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #FFFFFF;
    font-size: 2.92vw;
  }
  .wrap1 .item2 .mini-title {
    font-size: 1.15vw;
    margin: 1.77vw 0;
  }
  .wrap1 .item2 .content-desc {
    font-size: 0.94vw;
    line-height: 1.8;
    margin-bottom: 1.04vw;
    font-weight: 400;
  }
  .wrap1 .item2 .item-right-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .wrap1 .item2 .b-img {
    width: 21.35vw;
    height: auto;
  }
  .wrap1 .item2 .s-img {
    width: 12.4vw;
    height: 12.4vw;
    object-fit: cover;
    display: block;
  }
  .wrap1 .item2 .scroll-swiper {
    width: 28.65vw;
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
  }
  .wrap1 .item2 .swiper-slide {
    width: 12.4vw;
    height: 12.4vw;
  }
  @media screen and (max-width: 997px) {
    .wrap1 {
      margin-top: 18.67vw;
    }
    .wrap1 .section-title {
      margin-bottom: 10.67vw;
    }
    .wrap1 .wrap-content {
      border-radius: 4.27vw;
    }
    .wrap1 .item1 {
      padding: 8vw 4vw;
    }
    .wrap1 .item1 .content-title {
      margin-bottom: 5.33vw;
    }
    .wrap1 .item1 .content-desc {
      text-align: left;
      font-size: 3.73vw;
      margin-bottom: 9.33vw;
    }
    .wrap1 .item1 .feature-box {
      gap: 9.87vw 0;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    .wrap1 .item1 .feature-item {
      width: 50%;
    }
    .wrap1 .item1 .feature-item-img {
      width: 18.67vw;
      height: 18.67vw;
      margin-bottom: 4.27vw;
    }
    .wrap1 .item1 .feature-item-title {
      font-size: 3.47vw;
      white-space: nowrap;
    }
    .wrap1 .item2 {
      padding: 8vw 4vw;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      margin-top: 10.67vw;
    }
    .wrap1 .item2 .content-title {
      font-size: 7.47vw;
      margin-bottom: 5.33vw;
    }
    .wrap1 .item2 .mini-title {
      font-size: 4.27vw;
      line-height: 1.8;
      margin: 3.73vw 0;
    }
    .wrap1 .item2 .content-desc {
      font-size: 3.73vw;
      margin-bottom: 6.67vw;
    }
    .wrap1 .item2 .item-left {
      width: 100%;
    }
    .wrap1 .item2 .item-right {
      width: 100%;
    }
    .wrap1 .item2 .b-img {
      width: 66.67vw;
      height: auto;
    }
    .wrap1 .item2 .s-img {
      width: 47.47vw;
      height: 47.47vw;
    }
    .wrap1 .item2 .swiper-slide {
      width: 47.47vw;
      height: 47.47vw;
    }
    .wrap1 .item2 .scroll-swiper {
      top: 76%;
      right: 3.2vw;
      width: 84.67vw;
    }
  }
  .wrap2 {
    margin-top: 9.9vw;
  }
  .wrap2 .section-title {
    margin-bottom: 1.25vw;
  }
  .wrap2 .wrap-content {
    display: flex;
    justify-content: space-between;
    gap: 1.04vw;
    margin-top: 3.39vw;
  }
  .wrap2 .item1 {
    background: linear-gradient(180deg, #FA5F68 4.33%, #FFAE85 102.76%);
  }
  .wrap2 .item1 img {
    width: 100%;
  }
  .wrap2 .item2 {
    background: linear-gradient(180deg, #4E4DD9 0.22%, #787DFB 99.64%);
  }
  .wrap2 .item2 img {
    display: block;
    width: 80%;
    height: auto;
    margin: 2.04vw auto 0;
  }
  .wrap2 .content-title {
    color: #fff;
    font-size: 1.67vw;
    margin-bottom: 1.46vw;
  }
  .wrap2 .item-top {
    padding: 3.13vw 2.6vw 2.4vw;
    color: #fff;
  }
  .wrap2 .content-desc {
    font-size: 1.04vw;
    line-height: 1.8;
    margin-bottom: 0.42vw;
    font-weight: 400;
    color: #EEE;
  }
  .wrap2 .wrap-content-item {
    border-radius: 1.04vw;
    width: 30.73vw;
    height: 34.9vw;
  }
  .wrap2 .wrap-content-item img {
    max-width: 100%;
  }
  @media screen and (max-width: 997px) {
    .wrap2 {
      margin-top: 18.67vw;
    }
    .wrap2 .section-title {
      margin-bottom: 5.33vw;
    }
    .wrap2 .wrap-content {
      flex-direction: column;
      gap: 8.53vw;
      margin-top: 6.4vw;
    }
    .wrap2 .wrap-content-item {
      width: 100%;
      height: 129.6vw;
      border-radius: 4.27vw;
    }
    .wrap2 .content-title {
      font-size: 7.47vw;
      margin-bottom: 4.27vw;
      padding-right: 2.67vw;
    }
    .wrap2 .content-desc {
      font-size: 3.73vw;
      margin-bottom: 1.33vw;
    }
    .wrap2 .item-top {
      padding: 8vw 4vw;
    }
    .wrap2 .item1 {
      overflow: hidden;
    }
    .wrap2 .item1 img {
      width: 115%;
      max-width: unset;
    }
    .wrap2 .item2 img {
      width: 90%;
    }
  }
  .wrap4 {
    margin-top: 10.67vw;
  }
  .wrap4 .step-swiper {
    width: 48.13vw;
    margin: 0 auto;
  }
  .wrap4 .section-title {
    margin-bottom: 1.25vw;
  }
  .wrap4 .section-desc {
    font-size: 1.46vw;
    color: #000;
    text-align: center;
    margin-bottom: 3.65vw;
  }
  .wrap4 .swiper-slide {
    position: relative;
  }
  .wrap4 .step-img {
    width: 100%;
  }
  .wrap4 .step-icon {
    position: absolute;
    z-index: 1;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s;
  }
  .wrap4 .step-icon:hover {
    transform: scale(1.05);
  }
  .wrap4 .step-icon img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
  }
  .wrap4 .step-icon::before,
  .wrap4 .step-icon::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
  }
  .wrap4 .step-icon::after {
    animation: stepRipple 2s infinite ease-out;
  }
  .wrap4 .step-icon::before {
    animation: stepRipple 2s infinite ease-out 1s;
  }
  .wrap4 .step1 {
    top: 4.79vw;
    left: 11.46vw;
    width: 8.02vw;
    height: 3.23vw;
  }
  .wrap4 .step1::before,
  .wrap4 .step1::after {
    border: 2px solid #2BD969;
    border-radius: 0.5vw;
  }
  .wrap4 .step2 {
    right: 2.5vw;
    bottom: 3.18vw;
    width: 3.91vw;
    height: 3.91vw;
  }
  .wrap4 .step2::before,
  .wrap4 .step2::after {
    border: 2px solid #D53692;
    border-radius: 50%;
  }
  .wrap4 .step2::before {
    animation: stepRippleCircle 2s infinite ease-out;
  }
  .wrap4 .step2::after {
    animation: stepRippleCircle 2s infinite ease-out 1s;
  }
  .wrap4 .step3 {
    top: 7.15vw;
    right: 7.42vw;
    width: 4.53vw;
    height: 1.51vw;
  }
  .wrap4 .step3::before,
  .wrap4 .step3::after {
    border: 2px solid #2098fb;
    border-radius: 0.21vw;
  }
  .wrap4 .step4 {
    bottom: 4.48vw;
    right: 14.79vw;
    width: 15.68vw;
    height: 4.01vw;
  }
  .wrap4 .step4 img {
    box-shadow: 0 3.287px 34.35px 0 rgba(36, 36, 36, 0.1);
  }
  .wrap4 .step4::before,
  .wrap4 .step4::after {
    border: 2px solid #1ED760;
    border-radius: 0.52vw;
  }
  .wrap4 .step-text {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 4.38vw;
    width: max-content;
    margin: 1.56vw auto;
  }
  .wrap4 .step-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #D4D4D4;
    z-index: -1;
  }
  .wrap4 .step-text-item {
    font-size: 1.04vw;
    color: #B0ACAC;
    text-align: center;
    border-radius: 3.91vw;
    background: #fff;
    border: 1px solid #D4D4D4;
    background: #FFF;
    font-weight: 600;
    cursor: pointer;
    padding: 0.52vw 1.67vw;
    transition: all 0.3s;
  }
  .wrap4 .step-text-item.active {
    border-color: #1DB954;
    color: #1DB954;
  }
  .wrap4 .step-text-link {
    display: block;
    width: max-content;
    margin: 3.49vw auto;
    font-size: 1.15vw;
    color: #fff;
    text-align: center;
    border-radius: 4.06vw;
    background: #1DB954;
    padding: 0.83vw 1.15vw;
    transition: all 0.3s;
  }
  .wrap4 .step-text-link:hover {
    color: #DDF5E6;
  }
  @media screen and (max-width: 997px) {
    .wrap4 {
      margin-top: 18.67vw;
    }
    .wrap4 .swiper {
      width: 100%;
      padding-bottom: 12.33vw;
    }
    .wrap4 .step-text {
      margin-top: -33.33vw;
      margin-bottom: 22.33vw;
    }
    .wrap4 .section-desc {
      font-size: 4vw;
      margin: 6.4vw 0;
    }
    .wrap4 .step-text-item {
      display: none;
      border: unset;
      padding: 0;
      text-align: center;
      font-size: 4.27vw;
      margin: 0 auto;
    }
    .wrap4 .step-text-item.active {
      display: block;
    }
    .wrap4 .swiper-button-box {
      display: flex;
      justify-content: center;
      align-items: center;
      column-gap: 4.8vw;
      margin-top: 5.33vw;
      margin-bottom: 12vw;
    }
    .wrap4 .step-button-prev {
      transform: rotate(180deg);
    }
    .wrap4 .step-button-prev,
    .wrap4 .step-button-next {
      width: 9.6vw;
      height: 9.6vw;
      background: url(../../img/spotify-music-converter/arrow.svg) no-repeat center center;
      background-size: contain;
      cursor: pointer;
    }
    .wrap4 .step1 {
      width: 37.87vw;
      height: 14.93vw;
      top: 17.6vw;
      left: 3.6vw;
    }
    .wrap4 .step1::before,
    .wrap4 .step1::after {
      border-radius: 1.33vw;
    }
    .wrap4 .step2 {
      width: 18.67vw;
      height: 18.67vw;
      right: 6.5vw;
      bottom: 6.18vw;
    }
    .wrap4 .step2::before,
    .wrap4 .step2::after {
      border-radius: 50%;
    }
    .wrap4 .step3 {
      width: 22.67vw;
      height: 7.73vw;
      top: 31.7vw;
      right: 24.92vw;
    }
    .wrap4 .step3::before,
    .wrap4 .step3::after {
      border-radius: 1.33vw;
    }
    .wrap4 .step4 {
      width: 68.53vw;
      height: 17.6vw;
      left: 50%;
      bottom: 19.73vw;
      transform: translateX(-50%);
    }
    .wrap4 .step4::before,
    .wrap4 .step4::after {
      border-radius: 2.13vw;
    }
    .wrap4 .step-text-link {
      font-size: 5.87vw;
      padding: 3.73vw 6.13vw;
      border-radius: 20.8vw;
      margin-top: 14.67vw;
    }
  }
  @keyframes stepRipple {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scaleX(1.5) scaleY(1.8);
      opacity: 0;
    }
  }
  @keyframes stepRippleCircle {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(1.5);
      opacity: 0;
    }
  }
  .wrap3 {
    background: linear-gradient(180deg, #DCFFE5 0%, #F3FFFC 87.78%);
    padding: 7.81vw 0 10.42vw;
    margin-top: 5.21vw;
  }
  .wrap3 .section-title {
    margin-bottom: 3.54vw;
  }
  .wrap3 .wrap3-swiper {
    overflow: visible;
  }
  .wrap3 .wrap3-swiper .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25vw 0.63vw;
  }
  .wrap3 .wrap3-swiper .swiper-slide {
    width: 20.31vw;
    height: 15.63vw;
  }
  .wrap3 .wrap3-swiper .swiper-pagination {
    display: none;
  }
  .wrap3 .wrap3-item {
    position: relative;
    border-radius: 0.94vw;
    padding: 1.56vw 1.2vw;
    transition: all 0.3s;
    z-index: 2;
    height: 100%;
  }
  .wrap3 .wrap3-item:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: 0.7vw;
    transition: all 0.3s;
    background: linear-gradient(130deg, #00C8CE, #6296E9, #7064FF, #A93FF4, #FA3C86, #FF2B32, #FF825F);
    opacity: 0;
    z-index: -1;
  }
  .wrap3 .wrap3-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: #fff;
    border: 2px solid transparent;
    z-index: -1;
    border-radius: 0.6vw;
  }
  .wrap3 .wrap3-item:hover:before {
    opacity: 1;
    z-index: -1;
  }
  .wrap3 .wrap3-icon {
    width: 3.13vw;
    height: 3.13vw;
    margin-bottom: 1.25vw;
    flex-shrink: 0;
  }
  .wrap3 .wrap3-item-title {
    font-size: 1.04vw;
    font-weight: 600;
    color: #1D1D1F;
    margin-bottom: 1.04vw;
    line-height: 1.4;
  }
  .wrap3 .wrap3-item-desc {
    font-size: 0.83vw;
    color: #3F3F3F;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 0.52vw;
  }
  .wrap3 .wrap3-item-desc:last-of-type {
    margin-bottom: 0;
  }
  @media screen and (max-width: 997px) {
    .wrap3 {
      padding: 13.33vw 0;
      margin-top: 18.67vw;
    }
    .wrap3 .section-title {
      margin-bottom: 6.4vw;
    }
    .wrap3 .wrap3-swiper {
      overflow: hidden;
      margin-top: 6.4vw;
      padding-bottom: 0;
      height: 180vw;
    }
    .wrap3 .wrap3-swiper .swiper-wrapper {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      height: 100%;
    }
    .wrap3 .wrap3-swiper .swiper-slide {
      height: 80vw;
      width: 100%;
      margin-bottom: 2.67vw;
      border-radius: 3.2vw;
    }
    .wrap3 .wrap3-swiper .swiper-slide:nth-child(2n) {
      margin-bottom: 0;
    }
    .wrap3 .wrap3-swiper .swiper-pagination {
      display: block;
    }
    .wrap3 .wrap3-swiper .swiper-pagination .swiper-pagination-bullet {
      width: 2.13vw;
      height: 2.13vw;
      background: #D9D9D9;
      opacity: 1;
      margin: 0 1.07vw;
    }
    .wrap3 .wrap3-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background: #1DB954;
    }
    .wrap3 .wrap3-item {
      padding: 6.67vw 5.33vw;
      border-radius: 3.2vw;
      margin: 0 auto;
      max-width: 100%;
      background: #fff;
      border: 1px solid rgba(29, 185, 84, 0.2);
      text-align: left;
      display: flex;
      flex-direction: column;
    }
    .wrap3 .wrap3-item:after {
      border-radius: 3.2vw;
      border-width: 1px;
      width: calc(100% - 4px);
      height: calc(100% - 4px);
    }
    .wrap3 .wrap3-item:before {
      border-radius: 3.4vw;
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: calc(100%);
      height: calc(100%);
      background: linear-gradient(130deg, #00C8CE, #6296E9, #7064FF, #A93FF4, #FA3C86, #FF2B32, #FF825F);
      z-index: -1;
    }
    .wrap3 .wrap3-icon {
      width: 16vw;
      height: 16vw;
      margin-bottom: 6.4vw;
    }
    .wrap3 .wrap3-item-title {
      font-size: 5.33vw;
      margin-bottom: 5.33vw;
      font-weight: 600;
      color: #1D1D1F;
      line-height: 1.4;
    }
    .wrap3 .wrap3-item-desc {
      font-size: 4.27vw;
      color: #1D1D1F;
      line-height: 1.6;
    }
  }
  .wrap5 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #212121;
    color: #fff;
    padding-top: 8.13vw;
    padding-bottom: 9.9vw;
  }
  .wrap5 .section-title {
    color: #fff;
    flex-shrink: 0;
  }
  .wrap5 .wrap5-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.02vw;
  }
  .wrap5 .arrow-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.35vw;
  }
  .wrap5 .wrap5-link {
    display: block;
    width: 18.23vw;
    line-height: 2.5vw;
    position: absolute;
    background-color: #fff;
    bottom: 1.6vw;
    font-size: 0.94vw;
    color: #000;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2.6vw;
    z-index: 1;
    transition: all 0.3s;
  }
  .wrap5 .wrap5-link:hover {
    background-color: #E9E9E9;
  }
  .wrap5 .arrow-img {
    width: 2.86vw;
    height: 2.86vw;
    border-radius: 50%;
    cursor: pointer;
    background: #cacaca8f;
  }
  .wrap5 .arrow-img:hover {
    background: #fff;
  }
  .wrap5 .arrow-img.next {
    transform: rotate(180deg);
  }
  .wrap5 .wrap5-box {
    width: 100%;
    height: 35.42vw;
    position: relative;
    left: calc((100% - 62.5vw) / 2);
    margin-bottom: 8.85vw;
  }
  .wrap5 .b-img-box {
    display: none;
    width: 21.51vw;
    height: 100%;
    position: absolute;
  }
  .wrap5 .b-img-box.active {
    display: block;
  }
  .wrap5 .b-img-text {
    width: 16.35vw;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: 2.6vw;
    font-size: 0.83vw;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 1.04vw;
  }
  .wrap5 .name {
    width: 16.35vw;
    position: absolute;
    display: flex;
    align-items: center;
    top: 21.3vw;
    left: 4.28vw;
    font-size: 1.15vw;
    font-weight: 600;
    color: #fff;
    max-width: 11.94vw;
    height: 2.2vw;
    line-height: 1.2;
  }
  .wrap5 .item3 .b-img-text,
  .wrap5 .item3 .name {
    color: #000;
  }
  .wrap5 .b-img {
    width: 21.51vw;
    height: auto;
  }
  .wrap5 .s-img {
    width: 18.75vw;
    height: 18.75vw;
    object-fit: cover;
    display: block;
  }
  .wrap5 .scroll-swiper {
    top: 23%;
    margin-left: 2.7vw;
    z-index: -1;
  }
  .wrap5 .swiper-slide {
    width: 18.75vw;
  }
  .wrap5 .section5-mini-title {
    font-size: 2.5vw;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3.13vw;
    margin-top: 6.25vw;
  }
  .wrap5 .section5-reviews-title {
    margin-top: 10.42vw;
  }
  .wrap5 .section5-reviews-container {
    padding: 0;
  }
  .wrap5 .section5-reviews {
    overflow: hidden;
    width: 100%;
  }
  .wrap5 .section5-reviews .section5-reviews-wrapper {
    display: flex;
    gap: 1.25vw;
    width: max-content;
    will-change: transform;
  }
  .wrap5 .section5-reviews .section5-review-slide {
    border-radius: 0.63vw;
    background: #F7F8FB;
    width: 20.83vw;
    padding: 1.67vw;
    height: 24.79vw;
    flex-shrink: 0;
  }
  .wrap5 .section5-reviews .review1 {
    background: linear-gradient(0deg, #DBF2DB 0%, #DBF2DB 100%), #FFF;
  }
  .wrap5 .section5-reviews .review2 {
    background: linear-gradient(0deg, rgba(214, 180, 239, 0.23) 0%, rgba(214, 180, 239, 0.23) 100%), #FFF;
  }
  .wrap5 .section5-reviews .review3 {
    background: #FBFBED;
  }
  .wrap5 .section5-reviews .review4 {
    background: #DCEFFA;
  }
  .wrap5 .section5-reviews .review5 {
    background: linear-gradient(0deg, #DBF2DB 0%, #DBF2DB 100%), #FFF;
  }
  .wrap5 .section5-reviews .review6 {
    background: linear-gradient(0deg, #FBFBED 0%, #FBFBED 100%), #FFF;
  }
  .wrap5 .section5-reviews .review-top-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.3vw;
  }
  .wrap5 .section5-reviews .review-top-logo img {
    height: 2.08vw;
  }
  .wrap5 .section5-reviews .left-title {
    display: block;
    font-size: 1.04vw;
    color: #061C3D;
  }
  .wrap5 .section5-reviews .review-top-text {
    color: #303133;
    line-height: 1.6;
    font-size: 0.94vw;
  }
  .wrap5 .section5-reviews .review-top-text p {
    font-size: inherit;
  }
  .wrap5 .section5-reviews .right-img {
    width: 4.17vw;
    height: 4.17vw;
  }
  .wrap5 .section5-reviews .review-bottom-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.52vw;
  }
  .wrap5 .section5-reviews .section5-review-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .wrap5 .section5-reviews .review-bottom {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0.52vw;
    font-size: 1.04vw;
  }
  .wrap5 .section5-reviews-buttons {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 1.04vw;
    margin-top: 2.08vw;
  }
  .wrap5 .section5-reviews-buttons .s-prev,
  .wrap5 .section5-reviews-buttons .s-next {
    width: 1.88vw;
    height: 1.88vw;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
  }
  .wrap5 .section5-reviews-buttons .s-prev:hover,
  .wrap5 .section5-reviews-buttons .s-next:hover {
    opacity: 0.7;
  }
  .wrap5 .section5-reviews-buttons .s-prev img,
  .wrap5 .section5-reviews-buttons .s-next img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .wrap5 .section5-reviews-buttons .s-prev {
    transform: rotate(180deg);
  }
  @media screen and (max-width: 997px) {
    .wrap5 {
      padding-top: 18.13vw;
      padding-bottom: 16vw;
    }
    .wrap5 .wrap5-box {
      width: 100%;
      max-width: 100%;
      left: 0;
      padding: 0 15px;
      height: 151.2vw;
      margin-bottom: 30px;
    }
    .wrap5 .b-img {
      width: 100%;
    }
    .wrap5 .b-img-box {
      width: calc(100% - 30px);
    }
    .wrap5 .b-img-text {
      font-size: 3.73vw;
      width: 70.93vw;
      top: 10.67vw;
    }
    .wrap5 .name {
      top: 90.47vw;
      left: 20.07vw;
      font-size: 4.8vw;
      max-width: 66.67vw;
      width: 66.67vw;
      height: 10.67vw;
    }
    .wrap5 .s-img {
      width: 47.47vw;
      height: 47.47vw;
    }
    .wrap5 .item2 {
      margin-top: 18.67vw;
    }
    .wrap5 .wrap5-link {
      width: 85%;
      line-height: 11.43vw;
      bottom: 6vw;
      border-radius: 8.53vw;
      font-size: 3.73vw;
    }
    .wrap5 .scroll-swiper {
      top: 0;
      right: 0;
      width: 80%;
    }
    .wrap5 .swiper-slide {
      width: 47.47vw;
      height: 47.47vw;
    }
    .wrap5 .arrow-box {
      justify-content: center;
      align-items: center;
      gap: 4.8vw;
      margin-top: 8.53vw;
    }
    .wrap5 .wrap5-title {
      justify-content: center;
      margin-bottom: 5.33vw;
    }
    .wrap5 .arrow-img {
      width: 9.6vw;
      height: 9.6vw;
    }
    .wrap5 .section5-mini-title {
      margin-top: 10.13vw;
      font-size: 8.53vw;
      text-align: center;
      margin-bottom: 10.67vw;
    }
    .wrap5 .section5-reviews-container {
      padding: 0 4vw;
    }
    .wrap5 .section5-reviews-title {
      margin-top: 21.33vw;
      margin-bottom: 0;
    }
    .wrap5 .section5-reviews {
      margin: 8vw 0 0;
      width: 100%;
      overflow: hidden;
    }
    .wrap5 .section5-reviews .section5-reviews-wrapper {
      display: flex;
      gap: 0;
    }
    .wrap5 .section5-reviews .section5-reviews-wrapper .section5-review-slide {
      flex: 0 0 auto;
      box-sizing: border-box;
    }
    .wrap5 .section5-reviews .review-top-logo {
      margin-bottom: 5.33vw;
    }
    .wrap5 .section5-reviews .review-top-logo img {
      height: 6.67vw;
    }
    .wrap5 .section5-reviews .right-img {
      width: 18.67vw;
      height: 18.67vw;
    }
    .wrap5 .section5-reviews .left-title {
      font-size: 4.27vw;
    }
    .wrap5 .section5-reviews .review-bottom {
      font-size: 4.53vw;
      gap: 2.67vw;
    }
    .wrap5 .section5-reviews .star-img {
      width: 25.87vw;
    }
    .wrap5 .section5-reviews .review-top-text {
      font-size: 3.73vw;
    }
    .wrap5 .section5-reviews .section5-reviews-wrapper .section5-review-slide {
      padding: 7.47vw 5.87vw 8.8vw;
      height: 114.13vw;
      border-radius: 3.2vw;
    }
    .wrap5 .section5-reviews-buttons {
      justify-content: center;
      gap: 2.67vw;
      margin-top: 5.33vw;
    }
    .wrap5 .section5-reviews-buttons .s-prev,
    .wrap5 .section5-reviews-buttons .s-next {
      width: 9.6vw;
      height: 9.6vw;
    }
  }
  .section6 {
    padding: 4.69vw 0 7.81vw;
    background: url(../../img/spotify-music-converter/section6.webp) no-repeat center center;
    background-size: cover;
  }
  .section6 .section-title {
    margin-bottom: 4.17vw;
  }
  .section6 .section6-content {
    max-width: 62.5vw;
    margin: 0 auto;
  }
  .section6 .faq-item {
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid #D2D2D7;
  }
  .section6 .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1.46vw 0;
    cursor: pointer;
    font-size: 1.04vw;
    font-weight: 600;
    color: #004338;
    transition: all 0.3s ease;
  }
  .section6 .faq-question span:first-child {
    flex: 1;
    line-height: 1.6;
  }
  .section6 .faq-question .faq-arrow {
    display: inline-block;
    width: 0.83vw;
    height: 0.83vw;
    transition: transform 0.3s ease;
    margin-left: 1.04vw;
    flex-shrink: 0;
    object-fit: contain;
  }
  .section6 .faq-item.active .faq-question .faq-arrow {
    transform: rotate(180deg);
  }
  .section6 .faq-answer {
    max-height: 0;
    width: calc(100% - 4vw);
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .section6 .faq-answer p {
    font-size: 0.94vw;
    line-height: 1.6;
    color: #454C5D;
  }
  .section6 a {
    color: #0069D9;
    text-decoration: underline;
  }
  .section6 .faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 0 1.46vw;
  }
  @media screen and (max-width: 997px) {
    .section6 {
      padding: 16vw 0;
    }
    .section6 .section-title {
      margin-bottom: 8vw;
    }
    .section6 .section6-content {
      max-width: 100%;
    }
    .section6 .faq-item {
      border-bottom: 1px solid #D2D2D7;
    }
    .section6 .faq-question {
      padding: 4.27vw 0;
      font-size: 4.8vw;
      color: #1D1D1F;
    }
    .section6 .faq-question .faq-arrow {
      width: 3.2vw;
      height: 3.2vw;
      margin-left: 2.67vw;
    }
    .section6 .faq-answer {
      width: calc(100% - 16vw);
    }
    .section6 .faq-answer p {
      font-size: 3.73vw;
      line-height: 1.6;
      color: #454C5D;
    }
    .section6 .faq-item.active .faq-answer {
      padding: 0 0 4.27vw;
    }
  }
  .section7 {
    padding: 6.25vw 0;
    background: #FBFBFD;
  }
  .section7 .section-title {
    margin-bottom: 0;
  }
  .section7 .section7-buttons {
    display: none;
  }
  .section7 .section7-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.97vw 0.78vw;
    width: 100%;
    margin-top: 3.646vw;
  }
  .section7 .section7-content-item {
    border-radius: 0.94vw;
    background: #FFF;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20vw;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .section7 .section7-content-item:hover .image-item {
    transform: scale(1.1);
  }
  .section7 .image-box {
    width: 100%;
    height: 11.35vw;
    border-radius: 0.313vw;
    overflow: hidden;
    cursor: pointer;
  }
  .section7 .image-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
  }
  .section7 .item-title {
    padding: 1.3vw;
  }
  .section7 .item-title .title-text {
    font-size: 1.042vw;
    font-weight: 700;
    color: #061C3D;
    line-height: 1.5;
    min-height: 2.92vw;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  @media screen and (max-width: 997px) {
    .section7 {
      padding: 16vw 0;
    }
    .section7 .section7-buttons {
      display: flex;
      justify-content: center;
      gap: 2.67vw;
      margin-top: 5.33vw;
    }
    .section7 .section7-buttons .s-prev,
    .section7 .section7-buttons .s-next {
      width: 9.6vw;
      height: 9.6vw;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.3s;
    }
    .section7 .section7-buttons .s-prev:hover,
    .section7 .section7-buttons .s-next:hover {
      opacity: 0.7;
    }
    .section7 .section7-buttons .s-prev img,
    .section7 .section7-buttons .s-next img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .section7 .section7-buttons .s-prev {
      transform: rotate(180deg);
    }
    .section7 .section7-swiper {
      overflow: hidden;
      position: relative;
    }
    .section7 .section7-content {
      gap: 0;
      margin-top: 8vw;
      justify-content: unset;
      flex-wrap: nowrap;
    }
    .section7 .section7-content-item {
      width: 100%;
    }
    .section7 .image-box {
      height: 48vw;
    }
    .section7 .item-title {
      padding: 5.33vw;
    }
    .section7 .item-title .title-text {
      font-size: 4.53vw;
      min-height: 15.67vw;
    }
    .section7 .section7-buttons .s-prev,
    .section7 .section7-buttons .s-next {
      width: 9.6vw;
      height: 9.6vw;
    }
  }
  .empower {
    padding: 7.81vw 0 6.25vw;
    background: linear-gradient(99deg, #1DB85C 0%, #2EC395 50.01%, #2AC6C2 99.07%);
    position: relative;
    overflow: hidden;
  }
  .empower .empower-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.51);
    border-radius: 1.04vw;
    overflow: hidden;
  }
  .empower .empower-left-col {
    flex: 1;
    max-width: 50%;
    padding: 3.13vw 5.21vw 3.13vw 2.6vw;
    background: #114936;
  }
  .empower .empower-left-col .banner-tips {
    display: flex;
    align-items: center;
    column-gap: 0.42vw;
    color: #fff;
    font-size: 1.04vw;
    margin-bottom: 1.56vw;
  }
  .empower .empower-left-col .banner-tips img {
    width: 1.15vw;
    height: 1.15vw;
  }
  .empower .empower-left-col .empower-title {
    font-size: 3.33vw;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.52vw;
  }
  .empower .empower-left-col .empower-title .title-part1 {
    color: #fff;
  }
  .empower .empower-left-col .empower-title .title-part2 {
    color: #1FE665;
  }
  .empower .empower-left-col .empower-tags {
    display: flex;
    gap: 0.52vw;
    margin-bottom: 3.65vw;
    flex-wrap: wrap;
  }
  .empower .empower-left-col .empower-tags .tag {
    padding: 0.52vw 1.04vw;
    border-radius: 0.21vw;
    background: #255B48;
    color: #fff;
    font-size: 0.83vw;
    font-weight: 500;
  }
  .empower .empower-left-col .empower-desc {
    font-size: 1.15vw;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 0.52vw;
  }
  .empower .empower-right-col {
    flex: 1;
    padding: 3.13vw 1.67vw;
    max-width: 50%;
    text-align: center;
  }
  .empower .empower-right-col .empower-pro-title {
    font-size: 1.46vw;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.52vw;
  }
  .empower .empower-right-col .empower-pro-subtitle {
    font-size: 0.94vw;
    color: #D3D3D3;
    margin-bottom: 1.56vw;
  }
  .empower .empower-right-col .empower-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.78vw;
    margin-bottom: 2.08vw;
  }
  .empower .empower-right-col .empower-features .feature-item {
    background: rgba(222, 222, 222, 0.15);
    border-radius: 0.31vw;
    padding: 1.04vw;
    text-align: left;
  }
  .empower .empower-right-col .empower-features .feature-item .feature-title {
    font-size: 0.94vw;
    font-weight: 700;
    color: #1FE665;
    margin-bottom: 0.63vw;
  }
  .empower .empower-right-col .empower-features .feature-item .feature-desc {
    font-size: 1.25vw;
    color: #fff;
    line-height: 1.4;
  }
  .empower .empower-right-col .empower-buttons .home-btn-group {
    display: flex;
    flex-direction: column;
    gap: 1.04vw;
    width: 100%;
  }
  .empower .empower-right-col .empower-buttons .btn-down {
    background: linear-gradient(0deg, #FECA02 0%, #FECA02 100%), #FFF;
    color: #1D1D1D;
    font-size: 1.15vw;
    width: 100%;
    padding: 1.04vw 2.08vw;
    border-radius: 4.17vw;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
  }
  .empower .empower-right-col .empower-buttons .btn-down:hover {
    background: linear-gradient(0deg, #E4B80E 0%, #E4B80E 100%), #FFF;
  }
  .empower .empower-right-col .empower-buttons .btn-buy {
    width: 100%;
    background: #fff;
    color: #1D1D1D;
    font-size: 1.15vw;
    padding: 1.04vw 2.08vw;
    border-radius: 4.17vw;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
  }
  .empower .empower-right-col .empower-buttons .btn-buy:hover {
    background: linear-gradient(0deg, #DEFFEA 0%, #DEFFEA 100%), #DEFFEA;
  }
  .empower .empower-right-col .empower-buttons .btn-mac,
  .empower .empower-right-col .empower-buttons .btn-win {
    display: none;
  }
  .empower .empower-right-col .empower-buttons .btn-mac.show,
  .empower .empower-right-col .empower-buttons .btn-win.show {
    display: block;
  }
  @media screen and (max-width: 997px) {
    .empower {
      padding: 13.33vw 0;
    }
    .empower .empower-content {
      flex-direction: column;
      border-radius: 5.33vw;
    }
    .empower .empower-left-col,
    .empower .empower-right-col {
      max-width: 100%;
      padding: 8vw;
    }
    .empower .empower-left-col .banner-tips {
      font-size: 4vw;
      margin-bottom: 4vw;
      gap: 1.33vw;
    }
    .empower .empower-left-col .banner-tips img {
      width: 4.8vw;
      height: 4.8vw;
    }
    .empower .empower-left-col .empower-title {
      font-size: 10.67vw;
      margin-bottom: 4vw;
    }
    .empower .empower-left-col .empower-tags {
      gap: 2vw;
      margin-bottom: 4vw;
    }
    .empower .empower-left-col .empower-tags .tag {
      padding: 1.33vw 2.67vw;
      border-radius: 4vw;
      font-size: 2.4vw;
    }
    .empower .empower-left-col .empower-desc {
      font-size: 3.73vw;
      line-height: 1.6;
    }
    .empower .empower-right-col {
      width: 100%;
    }
    .empower .empower-right-col .empower-pro-title {
      font-size: 4.27vw;
      margin-bottom: 1.33vw;
    }
    .empower .empower-right-col .empower-pro-subtitle {
      font-size: 3.2vw;
      margin-bottom: 4vw;
    }
    .empower .empower-right-col .empower-features {
      gap: 2vw;
      margin-bottom: 5.33vw;
    }
    .empower .empower-right-col .empower-features .feature-item {
      border-radius: 0.8vw;
      padding: 2.67vw;
    }
    .empower .empower-right-col .empower-features .feature-item .feature-title {
      font-size: 3.2vw;
      margin-bottom: 0.67vw;
    }
    .empower .empower-right-col .empower-features .feature-item .feature-desc {
      font-size: 2.4vw;
    }
    .empower .empower-right-col .empower-buttons .home-btn-group {
      gap: 2.67vw;
    }
    .empower .empower-right-col .empower-buttons .btn-down,
    .empower .empower-right-col .empower-buttons .btn-buy {
      font-size: 3.73vw;
      padding: 2.67vw 5.33vw;
      border-radius: 11.2vw;
      line-height: 1;
      height: 9.6vw;
    }
    .empower .empower-right-col .empower-buttons .btn-mac,
    .empower .empower-right-col .empower-buttons .btn-win {
      display: none;
    }
    .empower .empower-right-col .empower-buttons .btn-mac.show,
    .empower .empower-right-col .empower-buttons .btn-win.show {
      display: block;
    }
  }
  