/* ==============================
   在线工具比较区域
============================== */

.nb-online-comparison {
  padding: 90px 20px;
  background: #f7fafc;
}

.nb-comparison-heading {
  max-width: 820px;
  margin: 0 auto 45px;
  text-align: center;
}

.nb-comparison-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 18px;
  border-radius: 30px;
  background: #e7f8f3;
  color: #15936c;
  font-size: 14px;
  font-weight: 700;
}

.nb-comparison-heading h2 {
  margin: 0 0 18px;
  color: #252b31;
  font-size: 36px;
  line-height: 1.4;
}

.nb-comparison-heading p {
  margin: 0;
  color: #626c75;
  font-size: 17px;
  line-height: 1.9;
}

/* ==============================
   比较表格
============================== */

.nb-comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid #dde5e9;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(35, 65, 80, 0.08);
}

.nb-comparison-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  table-layout: fixed;
}

.nb-comparison-table th,
.nb-comparison-table td {
  padding: 19px 22px;
  border-bottom: 1px solid #e6ecef;
  line-height: 1.65;
  text-align: left;
  vertical-align: middle;
}

.nb-comparison-table thead th {
  background: #f2f5f7;
  color: #30363c;
  font-size: 16px;
  text-align: center;
}

.nb-comparison-table thead th:first-child {
  width: 22%;
}

.nb-comparison-table thead th:nth-child(2),
.nb-comparison-table thead th:nth-child(3) {
  width: 39%;
}

.nb-comparison-table tbody th {
  background: #fafcfd;
  color: #333a40;
  font-size: 15px;
  font-weight: 700;
}

.nb-comparison-table tbody td {
  color: #5d666e;
  font-size: 15px;
}

.nb-comparison-table tr:last-child th,
.nb-comparison-table tr:last-child td {
  border-bottom: 0;
}

/* NoteBurner强调列 */

.nb-comparison-table .nb-highlight-column {
  background: #effaf7;
  color: #263d36;
  font-weight: 600;
}

.nb-recommend-label {
  display: block;
  width: max-content;
  margin: 0 auto 7px;
  padding: 3px 12px;
  border-radius: 20px;
  background: #19a878;
  color: #fff;
  font-size: 11px;
  line-height: 1.5;
}

.nb-check-mark,
.nb-limited-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  margin-right: 7px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  vertical-align: middle;
}

.nb-check-mark {
  background: #19a878;
  color: #fff;
}

.nb-limited-mark {
  background: #eef1f3;
  color: #7c858c;
}

.nb-comparison-note {
  margin: 14px 4px 0;
  color: #7b848b;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

/* ==============================
   底部下载区域
============================== */

.nb-comparison-download {
  padding-top: 48px;
  text-align: center;
}

.nb-comparison-download h3 {
  margin: 0 0 10px;
  color: #252b31;
  font-size: 26px;
  line-height: 1.5;
}

.nb-download-description {
  margin: 0 0 25px;
  color: #68727a;
  font-size: 15px;
}

.nb-download-buttons {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

.nb-download-item {
  width: 330px;
  text-align: center;
}

.nb-download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 12px 25px;
  border-radius: 36px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 9px 22px rgba(30, 140, 160, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nb-download-button:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(30, 140, 160, 0.3);
}

.nb-download-button img {
  flex: 0 0 auto;
  width: 31px;
  height: auto;
  margin-right: 13px;
  object-fit: contain;
}

.nb-windows-button {
  background: linear-gradient(135deg, #25b789, #18a16f);
}

.nb-mac-button {
  background: linear-gradient(135deg, #36b9dc, #279ace);
}

.nb-download-button-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.nb-download-button-text strong {
  font-size: 16px;
  line-height: 1.5;
}

.nb-download-button-text small {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.92;
}

.nb-download-tip {
  margin-top: 10px;
  color: #6f797f;
  font-size: 12px;
}

/* ==============================
   移动端
============================== */

@media (max-width: 768px) {
  .nb-online-comparison {
    padding: 60px 15px;
  }

  .nb-comparison-heading {
    margin-bottom: 32px;
  }

  .nb-comparison-heading h2 {
    font-size: 27px;
  }

  .nb-comparison-heading p {
    font-size: 15px;
    text-align: left;
  }

  .nb-comparison-table th,
  .nb-comparison-table td {
    padding: 15px 16px;
  }

  .nb-comparison-note {
    text-align: left;
  }

  .nb-comparison-download {
    padding-top: 38px;
  }

  .nb-comparison-download h3 {
    font-size: 22px;
  }

  .nb-download-buttons {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .nb-download-item {
    width: 100%;
    max-width: 350px;
  }

  .nb-download-button {
    width: 100%;
  }
}
/* ==============================
   购买转化板块
============================== */

.nb-buy-section {
  padding: 90px 20px;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(69, 190, 166, 0.14),
      transparent 32%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(73, 174, 221, 0.13),
      transparent 32%
    ),
    #f4faf9;
}

/* 标题 */

.nb-buy-heading {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.nb-buy-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 18px;
  border-radius: 22px;
  background: #fff0e5;
  color: #ed7024;
  font-size: 14px;
  font-weight: 700;
}

.nb-buy-heading h2 {
  margin: 0 0 17px;
  color: #252b31;
  font-size: 36px;
  line-height: 1.45;
}

.nb-buy-heading p {
  margin: 0;
  color: #657078;
  font-size: 16px;
  line-height: 1.9;
}

/* 购买卡片 */

.nb-buy-card {
  box-sizing: border-box;
  max-width: 980px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid #dce7e5;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(30, 75, 75, 0.12);
}

/* 价格 */

.nb-buy-price {
  padding-bottom: 27px;
  border-bottom: 1px solid #e4ebea;
  text-align: center;
}

.nb-buy-plan {
  display: block;
  margin-bottom: 9px;
  color: #168e69;
  font-size: 15px;
  font-weight: 700;
}

.nb-buy-original-price {
  margin-bottom: 5px;
  color: #80898f;
  font-size: 13px;
}

.nb-buy-original-price del {
  margin-left: 5px;
}

.nb-buy-sale-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #252b31;
}

.nb-buy-sale-price strong {
  font-size: 48px;
  line-height: 1.15;
}

.nb-buy-sale-price span {
  margin-left: 6px;
  font-size: 17px;
  font-weight: 700;
}

.nb-buy-price-detail {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
  font-size: 13px;
}

.nb-buy-price-detail span:first-child {
  color: #68737a;
}

.nb-buy-price-detail span:last-child {
  color: #ed7024;
  font-weight: 700;
}

/* 购买权益 */

.nb-buy-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 30px;
  max-width: 760px;
  margin: 27px auto 31px !important;
  padding: 0 !important;
  list-style: none !important;
}

.nb-buy-benefits li {
  display: flex;
  align-items: flex-start;
  margin: 0 !important;
  padding: 0 !important;
  color: #3f484e;
  font-size: 14px;
  line-height: 1.65;
  list-style: none !important;
}

.nb-buy-benefits li::before,
.nb-buy-benefits li::after {
  display: none !important;
  content: none !important;
}

.nb-buy-check {
  display: inline-flex;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin: 1px 9px 0 0;
  border-radius: 50%;
  background: #1bae7d;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

/* 购买操作 */

.nb-buy-action {
  text-align: center;
}

.nb-buy-select-title {
  margin: 0 0 17px;
  color: #41494f;
  font-size: 15px;
  font-weight: 700;
}

.nb-buy-buttons {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.nb-buy-button {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: 315px;
  min-height: 70px;
  padding: 13px 24px;
  border-radius: 36px;
  background: linear-gradient(135deg, #ff9c36, #f27827);
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 9px 22px rgba(239, 119, 39, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nb-buy-button:hover {
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(239, 119, 39, 0.34);
}

.nb-buy-button img {
  display: block;
  flex: 0 0 auto;
  width: 29px;
  height: auto;
  margin-right: 12px;
}

.nb-buy-button-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.nb-buy-button-text strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}

.nb-buy-button-text small {
  margin-top: 2px;
  color: #fff;
  font-size: 11px;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0.92;
}

/* 购买保障 */

.nb-buy-assurance {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 16px;
  color: #6b757b;
  font-size: 12px;
}

.nb-buy-note {
  margin: 14px auto 0;
  color: #788188;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

/* ==============================
   平板
============================== */

@media (max-width: 850px) {
  .nb-buy-card {
    padding: 36px 28px;
  }

  .nb-buy-buttons {
    gap: 15px;
  }

  .nb-buy-button {
    flex: 1;
    max-width: 315px;
  }
}

/* ==============================
   移动端
============================== */

@media (max-width: 680px) {
  .nb-buy-section {
    padding: 65px 15px;
  }

  .nb-buy-heading {
    margin-bottom: 30px;
  }

  .nb-buy-heading h2 {
    font-size: 27px;
  }

  .nb-buy-heading p {
    font-size: 15px;
    text-align: left;
  }

  .nb-buy-card {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .nb-buy-sale-price strong {
    font-size: 41px;
  }

  .nb-buy-price-detail {
    flex-direction: column;
    gap: 4px;
  }

  .nb-buy-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px !important;
  }

  .nb-buy-buttons {
    flex-direction: column;
    align-items: center;
  }

  .nb-buy-button {
    width: 100%;
    max-width: 340px;
  }

  .nb-buy-assurance {
    flex-direction: column;
    gap: 5px;
  }
}
/* ==============================
   Music One 横向推荐框
============================== */

.nb-music-one-banner-section {
  padding: 55px 20px;
  background: #fff;
}

.nb-music-one-banner {
  position: relative;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  width: 100%;
  max-width: 1100px;
  min-height: 205px;
  margin: 0 auto;
  padding: 34px 48px;
  border-radius: 28px;
  background: linear-gradient(
    110deg,
    #079bea 0%,
    #2377f3 52%,
    #484cfa 100%
  );
  color: #fff;
  box-shadow: 0 16px 34px rgba(32, 103, 220, 0.2);
}

/* 右上角标签 */

.nb-music-one-badge {
  position: absolute;
  top: -15px;
  right: 48px;
  z-index: 2;
  padding: 7px 18px;
  border-radius: 20px;
  background: #ff8a00;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow: 0 5px 12px rgba(220, 100, 0, 0.2);
}

/* 左侧内容 */

.nb-music-one-main {
  flex: 1 1 auto;
  min-width: 0;
}

.nb-music-one-main h2 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 25px;
  line-height: 1.4;
}

.nb-music-one-main > p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7;
}

/* 平台长图 */

.nb-music-one-logo-strip {
  width: 100%;
  max-width: 590px;
}

.nb-music-one-logo-strip img {
  display: block;
  width: 100%;
  max-width: 590px;
  height: auto !important;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: contain;
}

/* 右侧 */

.nb-music-one-action {
  flex: 0 0 315px;
  text-align: center;
}

.nb-music-one-action > strong {
  display: block;
  margin-bottom: 17px;
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}

/* 详情按钮 */

.nb-music-one-button {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 12px 23px;
  border-radius: 29px;
  background: #fff;
  color: #f17920;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(20, 55, 140, 0.18);
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nb-music-one-button > span {
  margin-left: 9px;
  transition: transform 0.2s ease;
}

.nb-music-one-button:hover {
  color: #e96b13;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(20, 55, 140, 0.26);
}

.nb-music-one-button:hover > span {
  transform: translateX(4px);
}

/* ==============================
   平板
============================== */

@media (max-width: 900px) {
  .nb-music-one-banner {
    gap: 30px;
    padding: 32px 34px;
  }

  .nb-music-one-action {
    flex-basis: 270px;
  }

  .nb-music-one-logo-strip,
  .nb-music-one-logo-strip img {
    max-width: 500px;
  }
}

/* ==============================
   移动端
============================== */

@media (max-width: 700px) {
  .nb-music-one-banner-section {
    padding: 45px 15px;
  }

  .nb-music-one-banner {
    display: block;
    min-height: 0;
    padding: 36px 23px 25px;
    border-radius: 22px;
  }

  .nb-music-one-badge {
    top: -13px;
    right: 20px;
    padding: 6px 14px;
    font-size: 12px;
  }

  .nb-music-one-main h2 {
    font-size: 23px;
  }

  .nb-music-one-main > p {
    margin-bottom: 19px;
    font-size: 13px;
  }

  .nb-music-one-logo-strip,
  .nb-music-one-logo-strip img {
    width: 100%;
    max-width: 100%;
  }

  .nb-music-one-action {
    width: 100%;
    margin-top: 25px;
  }

  .nb-music-one-action > strong {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .nb-music-one-button {
    width: 100%;
    min-height: 53px;
    font-size: 14px;
  }
}