body {
    --theme-color: #1eab5f;
    --banner-bg-mb: linear-gradient(0deg, #f3fdf8 0%, #f3fdf8 100%), #000;
    --theme-bg: url("../img/article-banner-tool/smc-bg.webp");
    --theme-bg-web: url("../img/article-banner-tool/smc-bg2.png");
    --theme-btn-bg: #2dc261;
    --article-tit-bg: #4eb578;
    --article-bg: #ecf8f1;
    --toggle-shadow: 0 4px 15px 0 rgba(78, 188, 112, 0.3);
  }
  .new-banner {
    position: relative;
  }
  .new-banner .banner-desktop {
    background: var(--theme-bg) no-repeat center center;
    background-size: cover;
    padding: 60px 0 40px;
  }
  .new-banner .banner-web {
    padding: 60px 0 40px;
    background: var(--theme-bg-web) no-repeat center center;
    background-size: cover;
    min-height: 360px;
  }
  .new-banner .banner-content {
    display: none;
  }
  .new-banner .banner-content.show-banner {
    display: block;
  }
  .new-banner .video-tool-top {
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }
  .new-banner .banner-btn-box {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: -30px;
  }
  .new-banner .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    width: max-content;
    padding: 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    background: #2da7db;
    transition: all 0.3s;
  }
  .new-banner .btn:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%), #2da7db;
  }
  .new-banner .toggle {
    position: absolute;
    z-index: 10;
    top: 40%;
    right: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: #fff;
    box-shadow: var(--toggle-shadow);
    width: max-content;
    margin: 0 auto;
    padding: 10px;
  }
  .new-banner .toggle .toggle-item {
    background: linear-gradient(0deg, var(--theme-color) 0%, var(--theme-color) 100%), #d9d9d9;
    color: #fff;
    width: 156px;
    text-align: center;
    border-radius: 4px;
    padding: 7px;
    opacity: 0.4;
    transition: all 0.3s;
    cursor: pointer;
  }
  .new-banner .toggle .toggle-item.action {
    background: var(--theme-color);
    opacity: 1;
  }
  .pc-style {
    display: block;
  }
  .mobile-style {
    display: none;
  }
  .banner-web_tit {
    position: relative;
    color: #000;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    width: fit-content;
    margin: 32px auto 0;
  }
  .banner-web_tit span {
    color: var(--theme-color);
  }
  .banner-web_desc {
    color: #191919;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 30px;
    line-height: 150%;
    /* 20.96px */
  }
  .banner-web_search {
    width: 752px;
    margin: 18px auto 24px;
  }
  .banner-web .search-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 4px;
    color: #191919;
    text-align: center;
    font-size: 14px;
    line-height: 131%;
    /* 18.34px */
    text-decoration: underline;
  }
  .banner-web .search-desc:hover span {
    transform: translateX(8px);
  }
  .banner-web .search-desc span {
    display: inline-block;
    transition: transform 0.3s;
  }
  .search-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 580px;
    margin: 0 auto;
    border: 1px solid var(--theme-color);
    border-radius: 8px;
    background-color: #fff;
    padding: 5px;
    margin: 20px auto;
  }
  .url {
    flex: 1;
    padding: 14px 20px;
    width: 100%;
    box-sizing: border-box;
    color: #525252;
    font-size: 14px;
    border: unset;
  }
  .url::placeholder {
    color: #cecece;
    font-size: 14px;
  }
  .url:focus-visible{
    outline: none;
  }
  .parse-input-btn {
    display: flex;
    align-items: center;
    padding: 10px 17px;
    column-gap: 8px;
    border-radius: 4px;
    background: var(--theme-btn-bg);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 131%;
    /* 20.96px */
    cursor: pointer;
    transition: transform 0.3s;
    border: unset;
  }
  .parse-input-btn:hover {
    background: var(--theme-color);
  }
  .banner-content {
    width: 100%;
  }
  .parse-loading {
    text-align: center;
  }
  .parse-loading img {
    width: 200px;
  }
  .parse-loading_tit {
    color: #191919;
    text-align: center;
    font-size: 18px;
    line-height: 180%;
    /* 32.4px */
  }
  .article .article_content .a_body .article-web img{
    margin-bottom: 0;
    margin-top: 0;
    border-radius: unset;
    border: unset;
    display: inline;
  }
  
  @media (max-width: 768px) {
    .parse-loading img {
      width: 74px;
    }
  }
  .patse-result {
    max-width: 752px;
    width: 100%;
    margin: 0 auto;
    padding-top: 42px;
  }
  .patse-result .result-item {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
  .patse-result .info {
    display: flex;
    column-gap: 20px;
    align-items: center;
  }
  .patse-result .info .name {
    color: var(--theme-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 131%;
    /* 23.58px */
  }
  .patse-result .info .artist {
    color: #535353;
    font-size: 14px;
    line-height: 131%;
    /* 18.34px */
    margin-top: 6px;
  }
  .patse-result .avatar {
    width: 80px;
    height: 80px;
    border: 1px solid #000;
  }
  .patse-result .download-btn {
    position: relative;
    border-radius: 68px;
    background: #1db954;
    color: #fff;
    font-size: 16px;
    line-height: 131%;
    /* 20.96px */
    height: max-content;
    cursor: pointer;
    display: flex;
    align-items: center;
    column-gap: 8px;
    transition: transform 0.3s;
  }
  .patse-result .download-btn .download-link {
    padding: 10px 14px;
  }
  .patse-result .download-btn:hover {
    transform: translateY(-8px);
  }
  .patse-result .download-btn::after {
    content: "";
    width: 74px;
    height: 54px;
    background: url("../img/article-banner-tool/down-icon.svg") no-repeat center center;
    background-size: contain;
    position: absolute;
    right: -36px;
    top: -40px;
  }
  .article-web {
    border-radius: 10px;
    background: var(--article-bg);
    padding-bottom: 40px;
    margin-top: 50px;
  }
  .article-web .article-web_tit {
    position: relative;
    border-radius: 10px 10px 0 0;
    text-align: center;
    background: var(--article-tit-bg);
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    padding: 20px 0 16px;
  }
  .article-web .article-web_tit::after {
    content: "/";
    margin-left: 10px;
  }
  .article-web .article-web_tit::before {
    content: "\\";
    margin-right: 10px;
  }
  .article-web .search-box {
    margin: 0 auto 0;
    max-width: 100%;
  }
  .article-web .article-web_con {
    position: relative;
    padding-top: 40px;
  }
  .article-web .article-web_con::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 15px solid var(--article-tit-bg);
  }
  .error-text {
    text-align: center;
    margin-bottom: 20px;
  }
  @media (max-width: 768px) {
    .pc-style {
      display: none;
    }
    .mobile-style {
      display: block;
    }
    .new-banner {
      padding: 40px 0;
      background: var(--banner-bg-mb);
      overflow: hidden;
    }
    .new-banner .banner-desktop {
      background: unset;
      padding: 0;
    }
    .new-banner .video-tool-top {
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      max-width: 110%;
    }
    .new-banner .toggle {
      position: unset;
      flex-direction: row;
      justify-content: center;
      gap: 10px;
      width: max-content;
      margin: 40px auto 0;
      padding: 8px;
    }
    .new-banner .toggle .toggle-item {
      width: 114px;
      font-size: 14px;
    }
    .banner-web_tit {
      font-size: 26px;
      margin: 0 auto;
    }
    .banner-web_tit::after {
      content: none;
    }
    .banner-web_desc {
      font-size: 14px;
      padding: 0;
    }
    .banner-web_search {
      width: 100%;
      margin: 22px auto;
    }
    .banner-web .search-desc {
      text-decoration: none;
    }
    .search-box {
      flex-direction: column;
      gap: 16px;
      border: none;
      width: 100%;
      background: transparent;
    }
    .parse-input-btn {
      width: 100%;
      justify-content: center;
    }
    .url {
      background: #fff;
      border: 1px solid var(--theme-color);
      border-radius: 5px;
    }
    .parse-loading_tit {
      font-size: 14px;
    }
    .patse-result {
      padding-top: 0;
    }
    .patse-result .result-item {
      flex-direction: column;
    }
    .patse-result .info {
      width: 100%;
      justify-content: center;
    }
    .patse-result .download-btn {
      width: 80%;
      margin-top: 10px;
      justify-content: center;
    }
    .patse-result .download-btn .info_btn {
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 10px;
    }
    .parse-info .parse-swiper {
      width: 100%;
    }
    .article-web {
      padding-bottom: 10px;
      margin-top: 20px;
    }
    .article-web .article-web_tit {
      font-size: 20px;
    }
    .article-web .article-web_tit::after,
    .article-web .article-web_tit::before {
      content: none;
    }
    .article-web .article-web_con {
      padding: 20px 10px 0;
    }
    .article-web .article-web_con::after {
      content: none;
    }
    .article-web .download-count-display {
      margin-bottom: 20px;
    }
    .article-web .result-item .avatar {
      width: 80px;
      height: 80px;
    }
    .article-web .result-item .info .name {
      font-size: 16px;
    }
    .article-web .result-item .info .artist {
      font-size: 10px;
      margin-top: 0;
    }
    .article-web .result-item .download-link {
      left: 95px;
      font-size: 12px;
      padding: 8px 45px;
      border-radius: 53px;
      width: 184px;
    }
  }
  .patse-result .avatar {
    width: 60px;
    height: 60px;
  }
  .patse-result .result-item {
    margin-bottom: 30px;
  }
  .patse-result .content-wrapper {
    display: flex;
    column-gap: 20px;
    align-items: center;
  }
  .patse-result .info {
    align-items: baseline;
    flex-direction: column;
  }
  .patse-result .download-link {
    width: 206px;
    justify-content: center;
    border-radius: 66px;
    position: relative;
    border-radius: 68px;
    background: #1db954;
    color: #fff;
    font-size: 16px;
    line-height: 131%;
    height: max-content;
    cursor: pointer;
    display: flex;
    align-items: center;
    column-gap: 8px;
    transition: transform 0.3s;
    padding: 10px 14px;
  }
  .patse-result .download-link:after {
    content: "";
    width: 74px;
    height: 54px;
    background: url("../img/article-banner-tool/down-icon.png") no-repeat center center;
    background-size: contain;
    position: absolute;
    right: -26px;
    top: -50px;
  }
  @media (max-width: 997px) {
    .patse-result .result-item {
      position: relative;
    }
    .patse-result .parse-loading {
      width: 160px;
    }
    .patse-result .download-link {
      position: absolute;
      left: 140px;
      bottom: 0;
      width: 190px;
      font-size: 16px;
      column-gap: 4px;
      padding: 8px 45px;
    }
    .patse-result .download-link:after {
      width: 54px;
      height: 40px;
      top: -31px;
    }
    .patse-result .content-wrapper {
      justify-content: flex-start;
      align-items: flex-start !important;
      gap: 17px !important;
      width: 100%;
    }
    .patse-result .download-count-display {
      justify-content: start;
      padding: 10px 0;
    }
    .patse-result .download-count-display span {
      font-size: 14px;
    }
    .patse-result .info .name {
      font-size: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .patse-result .info .artist {
      font-size: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .patse-result .content-wrapper {
      column-gap: 6px;
    }
    .patse-result .avatar {
      width: 120px;
      height: 120px;
    }
  }
  .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 {
    width: 90%;
    max-width: 466px;
    background: linear-gradient(180deg, #dceaff 0%, #fff 100%);
    border-radius: 8px;
    padding: 42px 64px;
    box-sizing: border-box;
    position: relative;
  }
  @media (max-width: 768px) {
    .download-modal {
      padding: 20px;
    }
  }
  .modal-close-btn {
    display: flex;
    justify-content: center;
    width: 20px;
    height: 20px;
    align-items: center;
    position: absolute;
    top: 16px;
    right: 16px;
    background: #cecece;
    border: none;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
  }
  .pop-modal-content {
    text-align: center;
  }
  .pop-modal-content p {
    margin-top: 8px;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 196%;
  }
  .pop-modal-content .modal-desc {
    color: #707070;
    font-size: 14px;
    line-height: 180%;
    font-weight: 400;
  }
  @media (max-width: 768px) {
    .pop-modal-content p {
      font-size: 18px;
    }
    .pop-modal-content .modal-desc {
      font-size: 13px;
    }
  }
  .modal-login-btn {
    padding: 14px;
    display: block;
    margin-top: 22px;
    border-radius: 5px;
    background: #408cff;
    color: #fff;
    font-size: 16px;
    line-height: 120%;
    text-decoration: none;
    transition: transform 0.3s;
  }
  .modal-login-btn:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #408cff;
  }
  .download-count-display {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 45px;
    padding: 10px 15px;
    border-bottom: 1px solid #d0d0d0;
    column-gap: 15px;
  }
  .download-percentage {
    color: #24a659;
    font-size: 16px;
    font-weight: 500;
  }
  @media (max-width: 997px) {
    .download-percentage {
      font-size: 14px;
    }
  }
  .download-link {
    padding: 8px 0;
    background: var(--theme-color);
    color: #fff;
    border: none;
    border-radius: 66px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 1;
  }
  .download-link:disabled {
    background: #ccc;
    cursor: not-allowed;
  }
  .download-link.loading {
    opacity: 0.4;
  }
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  .loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
  }
  .banner-btn-box {
    display: none;
  }
  .count-text {
    color: #707070;
    font-size: 16px;
  }
  .count-number {
    color: var(--theme-color);
    font-size: 16px;
  }
  .amc-page {
    --theme-color: #6133ea;
    --theme-bg: url("../img/article-banner-tool/amc-bg.webp");
    --theme-bg-web: url("../img/article-banner-tool/amc-bg2.webp");
    --theme-btn-bg: #7455f7;
    --article-tit-bg: #7455f7;
    --article-bg: #fbf8ff;
    --banner-bg-mb: linear-gradient(0deg, rgba(249, 246, 255, 0.74) 0%, rgba(249, 246, 255, 0.74) 100%),
      #fff;
    --toggle-shadow: 0 4px 15px 0 rgba(74, 50, 174, 0.22);
  }
  .ymc-page {
    --theme-color: #e5474b;
    --theme-bg: url("../img/article-banner-tool/ymc-bg.webp");
    --theme-bg-web: url("../img/article-banner-tool/ymc-bg2.webp");
    --theme-btn-bg: #e5474b;
    --article-tit-bg: #da5559;
    --article-bg: #fff4f4;
    --banner-bg-mb: linear-gradient(0deg, rgba(255, 244, 244, 0.96) 0%, rgba(255, 244, 244, 0.96) 100%),
      #fff;
    --toggle-shadow: 0 4px 15px 0 rgba(183, 37, 41, 0.22);
  }
  .ymc-page .toggle-item {
    background: #0d0d0d !important;
  }
  