@charset "UTF-8";
h1 {
  font-weight: 700;
  font-size: 52px;
  line-height: 60px;
  color: #fff;
}

:focus-visible {
  outline: none;
}

body {
  background: rgb(17, 17, 17);
}

.btn {
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  padding: 12px 32px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 98px;
  border: none;
  height: 48px;
}
.btn.btn-white {
  background: rgb(255, 255, 255);
  color: rgb(17, 17, 17);
}
.btn.btn-yellow {
  background: rgb(255, 238, 0);
  color: rgb(17, 17, 17);
}
.btn.btn-yellow:hover {
  color: rgb(17, 17, 17);
}

.btn-yeelow-hover-breathing:hover {
  animation: btn-yeelow-hover-breathing 1.5s linear infinite;
  text-decoration: none;
  border: 0;
}

.btn-white-hover-breathing:hover {
  animation: btn-white-hover-breathing 1.5s linear infinite;
  text-decoration: none;
  border: 0;
}

@keyframes btn-yeelow-hover-breathing {
  0% {
    box-shadow: 0 0 0 0 #fff126;
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 241, 38, 0.3);
  }
}
@keyframes btn-white-hover-breathing {
  0% {
    box-shadow: 0 0 0 0 rgb(255, 255, 255);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
  }
}
.hide-same-items-btn-icon-inner {
  transition: left 0.3s ease, background 0.3s ease;
}

.compare-content-table-row {
  transition: max-height 300ms ease, opacity 300ms ease, margin-top 300ms ease;
}
.compare-content-table-row.hidden {
  border: 0 !important;
}

.compare-content-table-body {
  transition: max-height 500ms cubic-bezier(0.4, 0, 0.2, 1), opacity 400ms ease, transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
}

.btn-for-collapse svg {
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* 折叠状态类 */
.compare-content-table-body.collapsed {
  max-height: 0 !important;
  opacity: 0;
  transform: translateY(-8px);
}

/* 箭头旋转类 */
.btn-for-collapse.collapsed svg {
  transform: rotate(180deg);
}

/* Hide Same Items 开关状态 */
.hide-same-items-btn.active .hide-same-items-btn-icon-inner {
  left: 28px;
  background: #fff;
}

/* 隐藏相同内容的行 */
.compare-content-table-row.hidden {
  max-height: 0 !important;
  /* opacity: 0 !important; */
  overflow: hidden;
  margin-top: 0 !important;
}

.section-compare .hide-same-items-btn.active .hide-same-items-btn-icon {
  transition: background 0.2s ease, border-color 0.2s ease;
  background: rgba(255, 238, 0, 0.8);
  border-color: rgb(255, 238, 0);
}
.section-compare .hide-same-items-btn.active .hide-same-items-btn-icon .hide-same-items-btn-icon-inner {
  left: 28px;
}

.section-top .cyber-box,
.section-compare .cyber-box {
  position: absolute;
  inset: 0;
  left: 0;
  top: 0;
  z-index: -1;
}
.section-top .glow-border,
.section-compare .glow-border {
  position: relative;
  width: 100%;
  height: 43px;
  background: #111;
  border-radius: 20px;
  /* 底色固定淡白边 */
  border-image-source: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
  border-image-slice: 1;
}
.section-top .naw-wrap,
.section-compare .naw-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}
.section-top .cyber-box-wrap,
.section-compare .cyber-box-wrap {
  -webkit-filter: blur(2px);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 15.6635698198%, #fff 51.8293918919%, rgba(255, 255, 255, 0) 86.3351632883%);
  bottom: 23px;
  filter: blur(2px);
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(45deg);
  z-index: 0;
  animation: cyber-box-wrap-animation 4s linear infinite;
}
.section-top nav[data-active-index="1"] + .cyber-box-wrap,
.section-compare nav[data-active-index="1"] + .cyber-box-wrap {
  animation: cyber-box-wrap-animation-reverse 4s linear infinite;
}
@keyframes cyber-box-wrap-animation {
  0% {
    top: -150px;
    left: 0;
  }
  100% {
    top: 150;
    left: 100%;
  }
}
@keyframes cyber-box-wrap-animation-reverse {
  0% {
    top: -150px;
    left: -50%;
  }
  100% {
    top: 150;
    left: 50%;
  }
}
.section-top .naw-wrap,
.section-compare .naw-wrap {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.section-top nav,
.section-compare nav {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 10;
  position: relative;
}
.section-top nav::before,
.section-compare nav::before {
  content: "";
  width: calc(50% - 1px);
  height: 100%;
  border-radius: 12px 0 0 12px;
  position: absolute;
  top: 0;
  left: 1px;
  z-index: -1;
  border: 1px solid #fff;
}
.section-top nav[data-active-index="1"]::before,
.section-compare nav[data-active-index="1"]::before {
  left: auto;
  right: 1px;
  border-radius: 0 12px 12px 0;
}
.section-top .nav-tabs.v1,
.section-compare .nav-tabs.v1 {
  justify-content: start;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: -moz-fit-content;
  width: fit-content;
}
.section-top .nav-tabs.v1 .nav-link,
.section-compare .nav-tabs.v1 .nav-link {
  padding: 8px 24px;
  background: none;
  border: 0 !important;
  min-width: 180px;
  margin: 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: rgb(255, 255, 255);
  background: #000;
}
.section-top .nav-tabs.v1 .nav-link .save-des,
.section-compare .nav-tabs.v1 .nav-link .save-des {
  font-weight: 700;
  font-size: 14px;
  line-height: 25.2px;
  color: rgb(255, 178, 0);
  margin-left: 8px;
}
.section-top .nav-tabs.v1 .nav-link.active,
.section-compare .nav-tabs.v1 .nav-link.active {
  background: rgb(255, 255, 255);
  color: rgb(17, 17, 17);
}

.section-top {
  padding: 40px;
}
.section-top .des {
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  margin-top: 18px;
  color: #fff;
  margin-bottom: 0;
}
.section-top .price-list {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.section-top .price-list .price-item {
  padding: 40px 24px;
  width: calc(33.33% - 16px);
  background: rgb(31, 31, 31);
  border: 1px solid rgb(56, 56, 56);
  border-radius: 24px;
  overflow: hidden;
  overflow: hidden;
}
.section-top .price-list .price-item .price-item-header-title .title {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}
.section-top .price-list .price-item .price-item-header-title .price {
  color: #fff;
  font-weight: 700;
  font-size: 52px;
  line-height: 60px;
  margin: 12px 0 0;
}
.section-top .price-list .price-item .price-item-header-title .price span {
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
}
.section-top .price-list .price-item .price-item-header-title .add-des {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
  margin: 6px 0 0;
}
.section-top .price-list .price-item .btn-wrap {
  margin-top: 32px;
}
.section-top .price-list .price-item .btn-wrap .btn-white {
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  padding: 14px 24px;
  width: 100%;
  border-radius: 56px;
  background: rgb(255, 255, 255);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.section-top .price-list .price-item .btn-wrap .btn-yellow {
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  padding: 14px 24px;
  width: 100%;
  border-radius: 56px;
  background: rgb(255, 238, 0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.section-top .price-list .price-item .btn-wrap .btn-yellow:hover {
  color: #111;
}
.section-top .price-list .price-item .price-item-content ul {
  list-style: none;
  margin-top: 24px;
  margin-bottom: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.section-top .price-list .price-item .price-item-content ul li {
  position: relative;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}
.section-top .price-list .price-item .price-item-content ul li:not(:last-child) {
  margin-bottom: 8px;
}
.section-top .price-list .price-item .price-item-content ul li::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUgMTJMMTAgMTdMMjAgNyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
}
.section-top .price-list .price-item.price-item-active {
  border: 1px solid rgb(255, 238, 0);
  position: relative;
  z-index: 1;
}
.section-top .price-list .price-item.price-item-active::after {
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
  background: url("https://pixpretty-images.tenorshare.ai/purchase/price-item-bg.png?w=820&h=1186") no-repeat center center;
  background-size: cover;
  z-index: -1;
}
.section-top .price-list .price-item .popular {
  position: absolute;
  top: -2px;
  right: 0;
  padding: 8px 16px;
  border-radius: 0 16px 0 16px;
  overflow: hidden;
}
.section-top .price-list .price-item .popular::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(63.75deg, #ff6025 -6.37%, rgba(255, 255, 255, 0.22) 41.68%);
  border-radius: 0 16px 0 16px;
  z-index: -2;
}
.section-top .price-list .price-item .popular::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: rgb(17, 17, 17);
  border-radius: 0 14px 0 14px;
  z-index: -1;
}
.section-top .price-list .price-item .popular span {
  background: linear-gradient(270deg, #ff6025 0%, #ffd51b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  display: block;
  position: relative;
  z-index: 1;
}

.section-media {
  padding-bottom: 20px;
}
.section-media .media-wrap {
  align-items: center;
}
.section-media .media-wrap .media-item {
  display: flex;
  align-items: center;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
}
.section-media .media-wrap .media-item span {
  margin-left: 8px;
}
.section-media .media-wrap .media-item:not(:last-child) {
  margin-right: 120px;
}
.section-media .payment-line {
  margin: 20px auto 20px;
}
.section-media .payment-wrap .payment-item {
  margin: 0 35px 0;
  width: 60px;
}
.section-media .payment-wrap .payment-item img {
  max-width: 100%;
}

.section-compare {
  padding: 80px 0;
}
.section-compare h2 {
  color: #fff;
}
.section-compare .nav-tabs.v1 {
  flex-direction: column;
  justify-content: start;
}
.section-compare nav::before {
  content: none;
}
.section-compare .nav-tabs.v1 .nav-link {
  padding: 0;
  border: 0;
  color: #fff;
  background: none;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  margin-left: 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  transition: opacity 0.2s ease;
  color: rgba(255, 255, 255, 0.4);
}
.section-compare .nav-tabs.v1 .nav-link .nav-link-icon {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  margin-right: 8px;
  display: block;
}
.section-compare .nav-tabs.v1 .nav-link .nav-link-icon::after {
  content: "";
  width: 14px;
  height: 14px;
  background: rgb(217, 217, 217);
  top: 50%;
  left: 50%;
  border-radius: 50%;
  position: relative;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
  opacity: 0;
  display: block;
}
.section-compare .nav-tabs.v1 .nav-link .save-des {
  font-weight: 700;
  font-size: 14px;
  line-height: 25.2px;
  color: rgb(255, 178, 0);
  margin-left: 8px;
}
.section-compare .nav-tabs.v1 .nav-link.active {
  font-weight: 700;
  color: rgb(255, 255, 255);
  background: none;
}
.section-compare .nav-tabs.v1 .nav-link.active .nav-link-icon::after {
  opacity: 1;
}
.section-compare .nav-tabs.v1 .nav-link:nth-child(2) {
  margin-top: 18px;
}
.section-compare .nav-tabs.v1 {
  border: 0;
}
.section-compare .compare-top-wrap {
  margin-top: 80px;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgb(17, 17, 17);
}
.section-compare .compare-top-wrap nav {
  width: 328px;
}
.section-compare .compare-top-wrap .tab-content {
  flex-grow: 1;
  color: #fff;
}
.section-compare .compare-top-wrap .compare-top-wrap-item {
  width: calc(33.33% - 16px);
  background: rgb(31, 31, 31);
  border: 1px solid rgb(56, 56, 56);
  border-radius: 16px 16px 0 0;
  padding: 18px;
  position: relative;
}
.section-compare .compare-top-wrap .compare-top-wrap-item .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}
.section-compare .compare-top-wrap .compare-top-wrap-item .price {
  font-weight: 700;
  font-size: 52px;
  line-height: 60px;
  margin: 64px 0 0;
}
.section-compare .compare-top-wrap .compare-top-wrap-item .price span {
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
}
.section-compare .compare-top-wrap .compare-top-wrap-item .btn-wrap {
  margin-top: 12px;
}
.section-compare .compare-top-wrap .compare-top-wrap-item:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 238, 0, 0.06) 35.81%, rgba(255, 238, 0, 0.2) 100%);
  border: 1px solid rgb(255, 238, 0);
  position: relative;
}
.section-compare .compare-content-table-row:nth-child(1) .compare-content-table-content-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: calc(100% + 2px);
  height: 81px;
  transform: translateY(-100%);
  z-index: 10;
  border-left: 1px dashed rgb(50, 50, 50);
  border-right: 1px dashed rgb(50, 50, 50);
}
.section-compare .btn-for-collapse {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
  margin: 46px 0 10px;
  cursor: pointer;
}
.section-compare .btn-for-collapse p {
  margin: 0 0 2px 0;
}
.section-compare .btn-for-collapse svg {
  transition: transform 0.2s ease;
}
.section-compare .hide-same-items-btn {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: rgb(255, 255, 255);
  margin: 46px 0 10px;
  cursor: pointer;
}
.section-compare .hide-same-items-btn .hide-same-items-btn-icon {
  width: 50px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 41px;
  position: relative;
  margin-right: 8px;
}
.section-compare .hide-same-items-btn .hide-same-items-btn-icon-inner {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  display: block;
  position: relative;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
}
.section-compare .compare-content-table-row {
  color: #fff;
  display: flex;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  border-top: 1px solid rgb(56, 56, 56);
  border-collapse: collapse;
  transition: max-height 300ms ease-in-out;
}
.section-compare .compare-content-table-row.hidden {
  overflow: hidden;
}
.section-compare .compare-content-table-row p {
  margin: 0;
}
.section-compare .compare-content-table-row .compare-content-table-title {
  width: 328px;
  padding: 19px 24px 19px 0;
}
.section-compare .compare-content-table-row .compare-content-table-content {
  flex-grow: 1;
}
.section-compare .compare-content-table-row .compare-content-table-content .compare-content-table-content-item {
  width: calc(33.33% - 16px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  font-weight: 300;
  padding-left: 18px;
  background: rgb(26, 26, 26);
  border-left: 1px solid rgb(56, 56, 56);
  border-right: 1px solid rgb(56, 56, 56);
  border-top: 1px solid rgb(56, 56, 56);
  margin-top: -1px;
}
.section-compare .compare-content-table-row .compare-content-table-content .compare-content-table-content-item .des {
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
}
.section-compare .compare-content-table-row .compare-content-table-content .compare-content-table-content-item svg {
  display: block;
}
.section-compare .compare-content-table-row .compare-content-table-content .compare-content-table-content-item:nth-child(3) {
  position: relative;
  background: linear-gradient(0deg, rgba(255, 238, 0, 0.08), rgba(255, 238, 0, 0.08));
  border-color: rgba(255, 238, 0, 0.5);
}
.section-compare .compare-content-table-row .compare-content-table-content .compare-content-table-content-item:nth-child(3)::before {
  content: "";
  width: calc(100% + 2px);
  height: 1px;
  background: rgba(255, 238, 0, 0.5);
  position: absolute;
  bottom: -1px;
  left: -1px;
  z-index: 10;
}
.section-compare .compare-content-table-row:last-child {
  position: relative;
}
.section-compare .compare-content-table-row:last-child .compare-content-table-content-item {
  position: relative;
}
.section-compare .compare-content-table-row:last-child .compare-content-table-content-item:last-child::before {
  bottom: 0;
}
.section-compare .compare-content-table-row:first-child {
  border-top: 1px solid rgb(56, 56, 56);
}
.section-compare .compare-content-table-row .compare-content-table-content-item:last-child {
  border-top: 1px solid rgba(255, 238, 0, 0.5);
}
.section-compare .compare-content-table-row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 1;
  background: rgb(56, 56, 56);
}
.section-compare .compare-content-table-row.last-visible .compare-content-table-content-item:last-child::before {
  bottom: 0;
}
.section-compare .compare-content-table-wrap {
  transition: height 260ms ease;
}
.section-compare .compare-content-table-wrap .compare-content-table-body {
  height: auto;
  transition: height 260ms ease, opacity 220ms ease, transform 260ms ease;
  opacity: 1;
  transform: translateY(0);
  position: relative;
  z-index: 20;
}
.section-compare .compare-content-table-wrap[data-collapse=true] .compare-content-table-body {
  opacity: 0;
  transform: translateY(-8px);
}
.section-compare .compare-content-table-wrap[data-collapse=true] .btn-for-collapse svg {
  transform: rotate(180deg);
}
.section-compare .compare-content-table-wrap:last-child .compare-content-table-row:last-child .compare-content-table-content-item::after {
  content: none;
}

.section-top .nav-tabs.v1 .nav-link.active .save-des {
  transition: all 0.3s;
  color: rgb(255, 96, 37);
}

.section-8 {
  padding: 120px 0;
}
.section-8 .btn-learn-more {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  position: relative;
  border-radius: 24px;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 22px;
  display: inline-flex;
  align-items: center;
  color: rgba(17, 17, 17, 0.7);
  border: 2px solid rgb(188, 188, 181);
  background: transparent;
  transition: all 0.4s ease;
}
.section-8 .btn-learn-more svg {
  margin-left: 12px;
}
.section-8 .btn-learn-more:hover {
  border: 2px solid transparent; /* 透明边框显示渐变 */
  background-position: 100% 50%;
  text-decoration: none;
  color: rgba(17, 17, 17, 0.7);
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(270deg, #ff6025 0%, #ffd51b 100%) border-box;
  background-size: 200% 200%;
  background-position: 0% 50%;
  background-clip: padding-box, border-box;
}
.section-8 .btn-learn-more:active {
  box-shadow: -12px 0 24px 2px rgba(255, 213, 27, 0.3), 12px 0 24px 2px rgba(255, 96, 37, 0.3), -18px 0 36px 4px rgba(255, 213, 27, 0.2), 18px 0 36px 4px rgba(255, 96, 37, 0.2), 0 0 16px 1px rgba(255, 184, 73, 0.4);
}
.section-8 .rgt a:hover {
  color: rgb(33, 112, 229);
}
.section-8 .content-wrap .lft {
  width: 29%;
}
.section-8 .content-wrap .lft h2 {
  font-size: 96px;
  line-height: 1.2;
}
.section-8 .content-wrap .lft h2 + .des {
  margin-top: 12px;
}
.section-8 .content-wrap .rgt {
  width: 65%;
}
.section-8 .content-wrap .accordion.v1.v1-0-3 .accordion-item {
  border: none;
}
.section-8 .content-wrap .accordion.v1.v1-0-3 .accordion-item:not(:last-child) {
  border-bottom: 1px dashed rgba(17, 17, 17, 0.2);
}
.section-8 .content-wrap .accordion.v1 .accordion-button:not(.collapsed) {
  padding-bottom: 12px;
  color: #000000;
}
.section-8 .content-wrap .accordion.v1 .accordion-button:hover {
  color: #000000;
}
.section-8 .content-wrap .accordion.v1 .accordion-button {
  padding: 32px 12px 32px 0;
  transition: all 0.3s ease-in-out;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}
.section-8 .content-wrap .accordion.v1.v1-0-3 .collapsed::after {
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDEiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MSA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwLjU1IDguMzMzMDFMMjAuNTE5NSAzMS42NjYzIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik04LjgzMzAxIDIwSDMyLjE2NjMiIHN0cm9rZT0iIzMzMzMzMyIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}
.section-8 .content-wrap .accordion.v1.v1-0-3 .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDEiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MSA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMjUgMjBIMzIuNTgzMyIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
  background-size: 100% 100%;
  width: 40px;
  height: 40px;
}
.section-8 .content-wrap .accordion.v1 .accordion-body {
  color: rgba(17, 17, 17, 0.7);
}
.section-8 .content-wrap .accordion.v1 .accordion-body a {
  color: rgb(33, 112, 229);
}

@media (max-width: 1600px) {
  h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
  }
  .section-top .des {
    font-size: 16px;
  }
  .section-top .price-list .price-item .price-item-header-title .title {
    font-size: 20px;
    line-height: 28px;
  }
  .section-top .price-list .price-item .price-item-header-title .price {
    font-size: 40px;
    line-height: 48px;
  }
  .section-top .price-list .price-item .price-item-header-title .price span {
    font-size: 16px;
  }
  .section-top .price-list .price-item .price-item-content ul li,
  .section-top .price-list .price-item .price-item-header-title .add-des {
    font-size: 14px;
    line-height: 140%;
  }
  .section-top .price-list .price-item .price-item-content ul li::before {
    width: 20px;
    height: 20px;
  }
  .section-media .media-wrap .media-item:not(:last-child) {
    font-size: 16px;
  }
  .section-compare .nav-tabs.v1 .nav-link {
    font-size: 16px;
    line-height: 140%;
  }
  .section-compare .nav-tabs.v1 .nav-link .save-des {
    font-size: 12px;
    line-height: 22.4px;
  }
  .section-compare .compare-top-wrap .compare-top-wrap-item .title {
    font-size: 20px;
    line-height: 28px;
  }
  .section-compare .compare-top-wrap .compare-top-wrap-item .price {
    font-size: 40px;
    line-height: 48px;
  }
  .section-compare .compare-top-wrap .compare-top-wrap-item .price span {
    font-size: 16px;
  }
  .section-compare .btn-for-collapse,
  .section-compare .compare-content-table-row {
    font-size: 14px;
  }
  .section-8 {
    padding-bottom: 52px;
  }
  .section-8 .btn-learn-more {
    font-size: 14px;
  }
  .section-8 .content-wrap .lft h2 {
    font-weight: 700;
    font-size: 72px;
    line-height: 120%;
  }
  .section-8 .content-wrap .lft h2 + .des {
    font-weight: 300;
    font-size: 14px;
    margin-top: 12px;
  }
  .section-8 .content-wrap .accordion.v1 .accordion-button {
    font-size: 20px;
    line-height: 28px;
    padding: 28px 12px 28px 0;
  }
}
@media screen and (max-width: 1280px) {
  .section-compare .compare-top-wrap .compare-top-wrap-item .price {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
  }
}
@media screen and (max-width: 992px) {
  .btn {
    height: 50px;
  }
  .section-top .nav-tabs.v1 {
    min-width: unset;
    width: 100%;
  }
  .section-top .nav-tabs.v1 .nav-link,
  .section-compare .nav-tabs.v1 .nav-link {
    min-width: unset;
    width: 50%;
    font-size: 16px;
    padding: 8px 12px;
  }
  .section-top .nav-tabs.v1 .nav-link .save-des {
    font-size: 12px;
  }
  .section-top .naw-wrap {
    width: 100%;
  }
  .section-top .naw-wrap nav {
    width: 100%;
  }
  .section-top {
    padding: 32px 0 0;
  }
  h1 {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }
  h2 {
    font-size: 24px;
    line-height: 32px;
    margin: 0;
  }
  .section-top .des {
    font-size: 16px;
    line-height: 140%;
    text-align: center;
  }
  .section-top .price-list {
    flex-direction: column-reverse;
  }
  .section-top .price-list .price-item {
    width: 100%;
    padding-bottom: 26px;
  }
  .section-top .price-list .price-item:not(:first-child) {
    margin-bottom: 28px;
  }
  .section-media {
    padding-bottom: 32px;
  }
  .section-media .media-wrap .media-item:not(:last-child) {
    margin-right: 0;
  }
  .section-media .media-wrap .media-item {
    flex-direction: column;
    width: 33.33%;
    text-align: center;
  }
  .section-media .media-wrap .media-item span {
    margin-left: 0;
    margin-top: 8px;
  }
  .section-media .payment-wrap .payment-item {
    margin: 12px 9px 0;
  }
  .section-compare .compare-top-wrap {
    margin-top: 0;
    margin-top: 28px;
    padding-top: 20px;
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgb(17, 17, 17);
  }
  .section-compare .nav-tabs.v1 {
    justify-content: start;
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: -moz-fit-content;
    width: fit-content;
  }
  .section-compare .nav-tabs.v1 .nav-link {
    background: none;
    border: 0;
    margin: 0;
    font-weight: 300;
    line-height: 140%;
    color: rgb(255, 255, 255);
    min-width: -moz-max-content;
    min-width: max-content;
    width: 50%;
    font-size: 16px;
    padding: 8px 12px;
  }
  .section-compare .nav-tabs.v1 .nav-link .save-des {
    font-weight: 700;
    font-size: 12px;
    color: rgb(255, 178, 0);
    margin-left: 8px;
  }
  .section-compare .nav-tabs.v1 .nav-link.active {
    background: rgb(255, 255, 255);
    color: rgb(17, 17, 17);
  }
  .section-compare .nav-tabs.v1 {
    flex-direction: row;
    width: 100%;
  }
  .section-compare .nav-tabs.v1 .nav-link {
    margin: 0;
    width: 50%;
    font-size: 16px;
    justify-content: center;
  }
  .section-compare .compare-top-wrap nav {
    width: 100%;
  }
  .section-compare .nav-tabs.v1 .nav-link:nth-child(2) {
    margin-top: 0;
  }
  .section-compare .compare-top-wrap .compare-top-wrap-item .price {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
  }
  .section-compare .compare-top-wrap .compare-top-wrap-item .price {
    margin: 8px 0 0;
  }
  .section-compare .compare-top-wrap .compare-top-wrap-item .price span {
    font-size: 12px;
  }
  .section-compare .btn {
    height: 36px;
    font-size: 14px;
    line-height: 140%;
  }
  .section-compare .compare-top-wrap .compare-top-wrap-item {
    padding: 12px;
  }
  .section-compare .compare-top-wrap .compare-top-wrap-item .title {
    font-size: 14px;
    line-height: 22px;
  }
  .section-compare .compare-top-wrap .compare-top-wrap-item {
    width: calc(33.33% - 5px);
  }
  .section-compare .compare-top-wrap .compare-top-wrap-item::after {
    content: none;
  }
  .section-compare .compare-top-wrap .compare-top-wrap-item {
    border-bottom: 1px solid rgb(56, 56, 56);
    border-radius: 16px;
  }
  .section-compare .compare-top-wrap .compare-top-wrap-item .btn-wrap {
    margin-top: 6px;
  }
  .section-compare .compare-content-table-row {
    flex-direction: column;
    transition: max-height 300ms ease, opacity 300ms ease;
  }
  .compare-content-table-mask-mb {
    position: absolute;
    top: 24px;
    right: 0;
    width: calc(33.33% - 5px);
    height: calc(100% - 25px);
    border: 1px solid rgba(255, 238, 0, 0.5);
    border-radius: 20px;
    background: linear-gradient(0deg, rgba(255, 238, 0, 0.08), rgba(255, 238, 0, 0.08));
  }
  .section-compare .compare-content-table-row:nth-child(1) {
    border-top: 0;
  }
  .section-compare .compare-content-table-row .compare-content-table-content .compare-content-table-content-item {
    width: calc(33.33% - 5px);
    padding-left: 0;
    align-items: center;
    text-align: center;
    border: 0;
    background: none;
    padding-bottom: 12px;
  }
  .section-compare .compare-content-table-row .compare-content-table-content .compare-content-table-content-item:nth-child(3) {
    border: 0;
    background: none;
  }
  .section-compare .compare-content-table-row .compare-content-table-content .compare-content-table-content-item:nth-child(3)::before {
    content: none;
  }
  .section-compare .compare-content-table-row:last-child .compare-content-table-content-item::after {
    content: none;
  }
  .section-compare .btn-for-collapse {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin: 0;
  }
  .section-compare .compare-content-table-row p:nth-child(2) {
    color: rgba(255, 255, 255, 0.7);
  }
  .section-compare .compare-content-table-row .compare-content-table-title {
    padding: 8px 8px 10px;
    color: rgba(255, 255, 255, 0.7);
  }
  .section-compare .compare-content-table-wrap {
    margin-top: 24px;
    transition: height 260ms ease;
  }
  .section-compare .nav-tabs.v1 .nav-link {
    background: #000;
  }
  .section-compare .nav-tabs.v1 nav::before {
    content: "";
  }
  .section-8.section-block {
    padding-bottom: 44px;
  }
  .section-8 .content-wrap .lft {
    width: 100%;
  }
  .section-8 .content-wrap .rgt {
    width: 100%;
    margin-top: 44px;
  }
  .section-8 h2 {
    font-size: 64px;
  }
  .section-8 h2 + .des {
    font-size: 16px;
    margin-top: 8px;
  }
  .section-8 .content-wrap .accordion.v1 .accordion-button {
    font-size: 16px;
    line-height: 24px;
    padding: 20px 12px 20px 0;
  }
  .section-8 .content-wrap .accordion.v1.v1-0-3 .collapsed::after,
  .section-8 .content-wrap .accordion.v1.v1-0-3 .accordion-button:not(.collapsed)::after {
    width: 24px;
    height: 24px;
  }
  .section-8 .content-wrap .accordion.v1.v1-0-3 .accordion-button::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjAzIDVMMTIuMDExNyAxOSIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNSAxMkgxOSIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
  }
  .section-8 .content-wrap .accordion.v1.v1-0-3 .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuMjUgMTJIMTkuMjUiIHN0cm9rZT0iIzMzMzMzMyIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
  }
  .section-top .nav-tabs.v1 .nav-link,
  .section-compare .nav-tabs.v1 .nav-link {
    width: 50%;
    min-width: unset;
  }
  .section-top .naw-wrap,
  .section-compare .naw-wrap {
    width: 318px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-compare .compare-content-table-row:nth-child(1) .compare-content-table-content-item::after {
    content: none;
  }
  .section-compare .compare-content-table-row .compare-content-table-title {
    max-width: 100%;
  }
}
.hide-same-items-btn-icon-inner {
  transition: left 0.3s ease, background 0.3s ease;
}

.compare-content-table-row {
  transition: max-height 300ms ease, opacity 300ms ease, margin-top 300ms ease;
}

.compare-content-table-body {
  transition: max-height 500ms cubic-bezier(0.4, 0, 0.2, 1), opacity 400ms ease, transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
}

.btn-for-collapse svg {
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* 折叠状态类 */
.compare-content-table-body.collapsed {
  max-height: 0 !important;
  opacity: 0;
  transform: translateY(-8px);
}

/* 箭头旋转类 */
.btn-for-collapse.collapsed svg {
  transform: rotate(180deg);
}

/* Hide Same Items 开关状态 */
.hide-same-items-btn.active .hide-same-items-btn-icon-inner {
  left: 28px;
  background: #fff;
}

/* 隐藏相同内容的行 */
.compare-content-table-row.hidden {
  max-height: 0 !important;
  /* opacity: 0 !important; */
  overflow: hidden;
  margin-top: 0 !important;
}

.section-compare .hide-same-items-btn.active .hide-same-items-btn-icon {
  transition: background 0.2s ease, border-color 0.2s ease;
  background: rgba(255, 238, 0, 0.8);
  border-color: rgb(255, 238, 0);
}/*# sourceMappingURL=purchase.css.map */