@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain; /* 保持比例缩放 */
}

.section-block {
  padding: 120px 0;
}

.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; /* 平滑过渡 */
}
.btn-learn-more svg {
  margin-left: 12px;
}
.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;
}
.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);
}

.btn-black.btn-in-white:hover {
  animation: btn-dark-hover-breathing 1.5s linear infinite;
}

.btn-dark-in-white:hover {
  animation: btn-dark-hover-breathing 1.5s linear infinite;
}

.btn-white-in-dark:hover {
  animation: btn-white-hover-breathing 1.5s linear infinite;
}

.btn-yellow-in-white:hover {
  animation: ani-btn-yellow-in-white 1.5s linear infinite;
}

@keyframes btn-dark-hover-breathing {
  0% {
    box-shadow: 0 0 0 0 rgb(17, 17, 17);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(17, 17, 17, 0.15);
  }
}
@keyframes ani-btn-yellow-in-white {
  0% {
    box-shadow: 0 0 0 0 rgb(255, 238, 0);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 238, 0, 0.3);
  }
}
@keyframes btn-white-hover-breathing {
  0% {
    box-shadow: 0 0 0 0 #ffffff;
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
  }
}
@keyframes btn-white-in-dark {
  0% {
    box-shadow: 0 0 0 0 #ffffff;
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
  }
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.section-about-us-top {
  padding: 80px 0;
  font-family: "Noto Serif", serif;
}
.section-about-us-top .item-row {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.section-about-us-top .item-row .item {
  display: block;
}
.section-about-us-top .item-row:nth-child(1) .item:first-child {
  flex: 1 1 35.7%;
}
.section-about-us-top .item-row:nth-child(1) .item:nth-child(2) p {
  font-weight: 700;
  font-size: 96px;
  line-height: 104px;
  margin-bottom: 0;
  color: #fff;
}
.section-about-us-top .item-row:nth-child(1) .item:nth-child(3) {
  flex: 1 1 32.1%;
}
.section-about-us-top .item-row:nth-child(1) .item:nth-child(4) {
  flex: 1 1 19.3%;
}
.section-about-us-top .item-row:nth-child(1) .item:not(:first-child) {
  margin-left: 37px;
}
.section-about-us-top .item-row:nth-child(2) .item:nth-child(1) {
  flex: 1 1 62.8%;
}
.section-about-us-top .item-row:nth-child(2) .item:nth-child(2) {
  flex: 1 1 61.2%;
  margin-left: 40px;
}
.section-about-us-top .item-row:nth-child(3) .item:nth-child(1) {
  flex-shrink: 1;
}
.section-about-us-top .item-row:nth-child(3) .item:nth-child(2) {
  margin-left: 32px;
  width: -moz-max-content;
  width: max-content;
  flex-shrink: 0;
}
.section-about-us-top .item-row:nth-child(3) .item:nth-child(2) p {
  font-weight: 700;
  font-size: 96px;
  line-height: 104px;
  margin-bottom: 0;
  color: #fff;
}
.section-about-us-top .item-row-wrapper .des {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  max-width: 84%;
  margin-bottom: 0;
  font-family: Geologica, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color emoji;
}

.section-2 {
  padding: 14px 20px;
  background-color: #e8e8df;
}
.section-2 .container-wrapper {
  margin: 0 auto;
  color: rgba(17, 17, 17, 0.7);
}
.section-2 .container-wrapper .cell {
  color: rgba(17, 17, 17, 0.7);
}
.section-2 .container-wrapper .cell .tit {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
}
.section-2 .container-wrapper .cell .des {
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
}

.section-5 {
  padding-bottom: 120px;
  padding-top: 0;
}
.section-5 h2 {
  font-weight: 700;
  font-size: 52px;
  line-height: 60px;
}
.section-5 h2 + .des {
  width: 100%;
  font-size: 18px;
}
.section-5 .section-5-wrapper .section-5-mask {
  width: 100%;
  height: 120px;
  position: sticky;
  background: #fff;
  top: 0;
  z-index: 10;
}
.section-5 .section-5-wrapper .lft {
  width: 34%;
  position: sticky;
  top: 120px;
  height: -moz-fit-content;
  height: fit-content;
}
.section-5 .section-5-wrapper .lft .btn-wrapper {
  margin-top: 64px;
}
.section-5 .section-5-wrapper .lft .guide-list {
  margin-top: 100px;
}
.section-5 .section-5-wrapper .lft .guide-list .guide-list-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #111111;
  opacity: 0.2;
  padding: 13px 20px;
  margin-bottom: 12px;
  border-left: 4px solid #fff;
}
.section-5 .section-5-wrapper .lft .guide-list .guide-list-item:hover {
  cursor: pointer;
}
.section-5 .section-5-wrapper .lft .guide-list .guide-list-item.active {
  opacity: 0.7;
  border-left: 4px solid rgba(17, 17, 17, 0.6980392157);
}
.section-5 .section-5-wrapper .lft .guide-list .guide-list-item:last-child {
  margin-bottom: 0;
}
.section-5 .section-5-wrapper .lft .guide-list::before {
  content: "";
  width: 4px;
  height: 100vh;
  position: absolute;
  left: 0;
  z-index: 0;
  background: rgb(232, 232, 233);
}
.section-5 .section-5-wrapper .rgt {
  width: 57.5%;
  color: #111111;
  position: relative;
  padding-top: 120px;
}
.section-5 .section-5-wrapper .rgt .rgt-item:not(:last-child) {
  margin-bottom: 200px;
}
.section-5 .section-5-wrapper .rgt .tit {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 0;
  margin-top: 20px;
}
.section-5 .section-5-wrapper .rgt .des {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  opacity: 0.7;
  margin-top: 7px;
}
.section-5 .section-5-wrapper .rgt::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background: #fff;
  position: fixed;
  top: 0;
}
.section-5.about-us {
  position: relative;
}
.section-5.about-us::after {
  content: "";
  width: 100%;
  height: 120px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.section-9 {
  background: url("https://pixpretty-images.tenorshare.ai/single-page/sec-9-support-center-bg.png") no-repeat center center;
  background-size: cover;
  padding-bottom: 20px;
}
.section-9 .content-wrap .card-stack-container {
  position: relative;
  perspective: 800px;
  height: 600px;
}
.section-9 .content-wrap .card-stack {
  width: 100%;
  height: 100%;
  position: relative;
}
.section-9 .content-wrap .card {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  opacity: 1;
  background: #fff;
  border-radius: 32px;
  max-width: 410px;
  transition: all 0.3s ease-in-out;
}
.section-9 .content-wrap .card .tit {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-top: 24px;
  margin-bottom: 0;
}
.section-9 .content-wrap .card .data {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: rgba(19, 21, 27, 0.7);
  margin: 10px 0;
}
.section-9 .content-wrap .card:hover {
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 4.7px 0px rgba(0, 0, 0, 0.1490196078);
  color: #111;
  text-decoration: none;
  cursor: pointer;
}
.section-9 .content-wrap .card:nth-child(2) {
  z-index: 2;
  transform: translate(-50%, -50%) scale(1) rotate(-4deg);
}
.section-9 .content-wrap .card:nth-child(3) {
  z-index: 3;
  transform: translate(-50%, -50%) scale(1) rotate(5deg);
}
.section-9 .content-wrap .card-stack.open .card {
  transition-delay: 0.1s;
}
.section-9 .content-wrap .card-stack.open .card:nth-child(1) {
  z-index: 1;
  animation: cardBounce1 1.2s cubic-bezier(0.77, -0.53, 0.25, 1.34) 0.1s forwards;
}
.section-9 .content-wrap .card-stack.open .card:nth-child(2) {
  z-index: 2;
  animation: cardBounce2 1.2s cubic-bezier(0.77, -0.53, 0.25, 1.34) 0.1s forwards;
}
.section-9 .content-wrap .card-stack.open .card:nth-child(3) {
  z-index: 3;
  animation: cardBounce3 1.2s cubic-bezier(0.77, -0.53, 0.25, 1.34) 0.1s forwards;
}
@keyframes cardBounce1 {
  0% {
    transform: translate(-50%, -50%) translateX(0) scale(1) rotate(0deg);
  }
  60% {
    transform: translate(-50%, -50%) translateX(-520px) scale(1.05) rotate(-8deg);
  }
  100% {
    transform: translate(-50%, -50%) translateX(-467px) scale(1) rotate(-6deg);
  }
}
@keyframes cardBounce2 {
  0% {
    transform: translate(-50%, -50%) translateX(0) scale(1) rotate(0deg);
  }
  60% {
    transform: translate(-50%, -50%) translateX(0) scale(1.1) rotate(2deg);
  }
  100% {
    transform: translate(-50%, -50%) translateX(0px) scale(1) rotate(0deg);
  }
}
@keyframes cardBounce3 {
  0% {
    transform: translate(-50%, -50%) translateX(0) scale(1) rotate(0deg);
  }
  60% {
    transform: translate(-50%, -50%) translateX(520px) scale(1.05) rotate(8deg);
  }
  100% {
    transform: translate(-50%, -50%) translateX(452px) scale(1) rotate(7deg);
  }
}
.section-9 .glow-card {
  position: relative;
  overflow: hidden;
}
.section-9 .glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; /* 边框厚度 */
  background: radial-gradient(circle var(--radius, 40px) at var(--x, 50%) var(--y, 50%), rgba(255, 96, 37, var(--o)) 0%, rgba(255, 213, 27, var(--o)) 60%, transparent 100%);
  /* mask 技术只保留边框 */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: var(--opacity, 0);
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.section-connect-us {
  background: url(https://pixpretty-images.tenorshare.ai/single-page/about-us-bg.png) no-repeat center center;
  background-size: cover;
  text-align: center;
  position: relative;
  z-index: 10;
}
.section-connect-us .content-wrapper {
  margin-top: 64px;
}
.section-connect-us .item {
  box-shadow: 0px 0px 37.8px 0px rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 24px;
  padding: 32px 64px;
  margin: 0 12px;
  width: 466px;
  max-width: 50%;
}
.section-connect-us .item .tit {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 0;
}
.section-connect-us .item .des {
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: rgba(17, 17, 17, 0.7);
  margin-top: 8px;
  margin-bottom: 0;
}
.section-connect-us .item .btn-wrapper {
  margin-top: 40px;
}
.section-connect-us .item .btn-wrapper .btn {
  height: 48px;
}

.top-banner-part {
  background: url(https://pixpretty-images.tenorshare.ai/single-page/classification-tp-bg.png) no-repeat center center;
  background-size: cover;
  padding: 64px 0;
}
.top-banner-part h1 {
  font-size: 52px;
  line-height: 60px;
}
.top-banner-part #search-form {
  width: -moz-fit-content;
  width: fit-content;
  margin: 32px auto 0;
  position: relative;
  width: 100%;
  max-width: 812px;
}
.top-banner-part #search-text {
  height: 64px;
  padding: 6px 40px;
  border: 2px solid rgba(17, 17, 17, 0.2);
  border-radius: 64px;
  width: 100%;
}
.top-banner-part #search-btn {
  border: none;
  background: none;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
}
.top-banner-part .popular-search-wrapper {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.top-banner-part .popular-search-wrapper span {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: rgb(0, 0, 0);
  margin-right: 16px;
  display: inline-block;
}
.top-banner-part .popular-search-wrapper .link-item {
  margin-left: 16px;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  padding: 8px 32px;
  border-radius: 24px;
  display: inline-block;
  color: rgb(17, 17, 17);
  background: rgb(255, 255, 255);
  transition: all 0.3s ease-in-out;
}
.top-banner-part .popular-search-wrapper .link-item:hover {
  text-decoration: none;
  background: rgba(17, 17, 17, 0.4);
  color: rgb(255, 255, 255);
}
.top-banner-part .dec-icon-wrapper {
  position: absolute;
}
.top-banner-part .dec-icon-wrapper.dec-icon-wrapper-1 {
  top: 100px;
  left: calc(50% - 620px);
}
.top-banner-part .dec-icon-wrapper.dec-icon-wrapper-2 {
  top: 90px;
  left: calc(50% + 500px);
}

.top-banner-part.support-center {
  padding: 64px 0;
}

.support-center-faq .tit {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: rgba(17, 17, 17, 0.7);
  margin-bottom: 24px;
}
.support-center-faq nav {
  min-width: 256px;
  margin-right: 90px;
}
.support-center-faq .tab-content {
  flex-grow: 1;
}
.support-center-faq .nav-tabs.v1 {
  border: 0;
}
.support-center-faq .nav-tabs.v1 .nav-link {
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: rgba(17, 17, 17, 0.7);
  padding: 8px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin: 0;
}
.support-center-faq .nav-tabs.v1 .nav-link:not(:first-child) {
  margin-top: 8px;
}
.support-center-faq .nav-tabs.v1 .nav-link.active {
  background: rgba(17, 17, 17, 0.15);
}
.support-center-faq .nav-tabs.v1 .nav-link:hover {
  background: rgba(17, 17, 17, 0.15);
}
.support-center-faq .accordion.v1.v1-0-3 .accordion-item {
  background: rgba(17, 17, 17, 0.04);
  border: none;
  border-radius: 12px;
}
.support-center-faq .accordion.v1.v1-0-3 .accordion-item:not(:first-child) {
  margin-top: 16px;
}
.support-center-faq .accordion.v1 .accordion-button {
  padding: 24px 24px 16px 24px;
  transition: padding 0.4s ease-in-out;
}
.support-center-faq .accordion.v1 .accordion-button.collapsed {
  padding: 24px;
}
.support-center-faq .accordion-button:not(.collapsed) {
  color: #111;
}
.support-center-faq .accordion.v1 .accordion-button:hover {
  color: #111;
}
.support-center-faq .accordion-button::after {
  width: 32px;
  height: 32px;
}
.support-center-faq .accordion.v1.v1-0-3 .collapsed::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC42Ij4KPHBhdGggZD0iTTggMTJMMTYgMjBMMjQgMTIiIHN0cm9rZT0iIzExMTExMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9nPgo8L3N2Zz4K");
  transform: rotate(180deg);
}
.support-center-faq .accordion.v1.v1-0-3 .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC42Ij4KPHBhdGggZD0iTTggMTJMMTYgMjBMMjQgMTIiIHN0cm9rZT0iIzExMTExMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9nPgo8L3N2Zz4K");
  transform: rotate(0deg);
}
.support-center-faq .accordion.v1 .accordion-button {
  font-size: 20px;
  line-height: 28px;
}
.support-center-faq .accordion.v1 .accordion-body {
  padding: 0 24px 24px 24px;
  color: rgba(17, 17, 17, 0.7);
}
.support-center-faq .accordion.v1 .accordion-body p {
  margin-bottom: 0;
}
.support-center-faq .accordion.v1 .accordion-body a {
  text-decoration: underline;
  color: rgb(33, 112, 229);
}

.support-center-more-tools h2 {
  text-align: center;
  max-width: 676px;
  margin: 0 auto;
}
.support-center-more-tools .content-wrap {
  margin-top: 48px;
}
.support-center-more-tools .item {
  padding: 16px 8px;
  background: rgb(42, 42, 42);
  border-radius: 24px;
  color: #fff;
  width: calc(25% - 18px);
  position: relative;
}
.support-center-more-tools .item img {
  width: 60px;
}
.support-center-more-tools .item .sec-tit {
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  margin: 0;
}
.support-center-more-tools .item .tit {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}
.support-center-more-tools .item .item-des {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 12px;
  font-family: Geologica;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
}
.support-center-more-tools .item:hover {
  text-decoration: none;
}
.support-center-more-tools .item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: radial-gradient(circle var(--radius, 40px) at var(--x, 50%) var(--y, 50%), rgba(135, 135, 135, var(--o)) 0%, rgba(135, 135, 135, var(--o)) 30%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: var(--opacity, 0);
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.other-terms {
  background: url(https://pixpretty-images.tenorshare.ai/single-page/other-terms-bg.png) center center;
}
.other-terms .content-wrap {
  padding: 64px;
  border-radius: 24px;
  background: rgb(255, 255, 255);
}
.other-terms h1 {
  font-weight: 700;
  font-size: 52px;
  line-height: 60px;
}
.other-terms h1 + p {
  margin: 64px 0;
}
.other-terms p {
  color: rgba(17, 17, 17, 0.7);
  margin: 0;
}
.other-terms h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  margin-top: 56px;
}
.other-terms h2 + p {
  margin: 8px 0 0;
}
.other-terms h2 + h3 {
  margin: 24px 0 0;
}
.other-terms h3 {
  margin-top: 40px;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: rgba(17, 17, 17, 0.7);
}
.other-terms h3 + p {
  margin: 12px 0 0;
}
.other-terms ul {
  margin: 0;
}
.other-terms ul li {
  color: rgba(17, 17, 17, 0.7);
}
.other-terms a {
  color: rgb(33, 112, 229);
  text-decoration: underline;
}

.section-404 {
  text-align: center;
  background: url("https://pixpretty-images.tenorshare.ai/single-page/404-bg.png") no-repeat center center;
  background-color: rgb(231, 231, 222);
  background-size: cover;
  padding: 120px 0;
}
.section-404 h1 {
  font-family: Noto Serif;
  font-weight: 700;
  font-size: 260px;
  line-height: 268px;
  text-align: center;
}
.section-404 p {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  margin-top: 20px;
}
.section-404 .btn-learn-more {
  margin-top: 40px;
}

.section-banner-bottom {
  background: url(https://pixpretty-images.tenorshare.ai/single-page/banner-bottom-bg.png) no-repeat center center;
  background-size: cover;
  background-color: #000;
  position: relative;
  z-index: 10;
}
.section-banner-bottom h2 {
  font-weight: 700;
  font-family: Noto Serif;
  font-size: 78px;
  line-height: 1.1;
  color: rgb(255, 255, 255);
  white-space: nowrap;
}
.section-banner-bottom .des {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 140%;
  margin: 16px auto 0;
  margin-bottom: 0;
  max-width: 870px;
}
.section-banner-bottom .btn-wrap {
  margin-top: 64px;
}

@media screen and (max-width: 1600px) {
  .section-block {
    padding: 64px 0;
  }
  .section-about-us-top {
    padding: 64px 0;
  }
  .top-banner-part .dec-icon-wrapper.dec-icon-wrapper-1 {
    top: 95px;
    left: calc(50% - 524px);
  }
  .top-banner-part .dec-icon-wrapper.dec-icon-wrapper-1 img {
    width: 67%;
  }
  .top-banner-part .dec-icon-wrapper.dec-icon-wrapper-2 {
    top: 90px;
    left: calc(50% + 439px);
  }
  .top-banner-part .dec-icon-wrapper.dec-icon-wrapper-2 img {
    width: 80%;
  }
  .section-about-us-top .item-row:nth-child(1) .item:nth-child(2) p,
  .section-about-us-top .item-row:nth-child(3) .item:nth-child(2) p {
    font-size: 90px;
    line-height: 98px;
  }
  .section-about-us-top .item-row-wrapper .des {
    font-size: 16px;
  }
  .section-about-us-top .item-row {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .section-2 {
    padding: 8px 12px;
  }
  .section-2 .container-wrapper .cell:nth-child(1) {
    padding-left: 0;
  }
  .section-2 .container-wrapper .cell:nth-child(4) {
    padding-right: 0;
  }
  .section-2 .container-wrapper .cell .tit {
    font-size: 32px;
    line-height: 40px;
  }
  .section-2 .container-wrapper .cell .des {
    font-size: 14px;
  }
  .section-5 h2 {
    font-size: 40px;
    line-height: 48px;
  }
  .section-5 h2 + .des {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    color: rgba(17, 17, 17, 0.7);
    margin-top: 16px;
  }
  .section-5 .section-5-wrapper .lft {
    min-width: 435px;
    margin-right: 24px;
  }
  .section-5 .section-5-wrapper .lft .btn-wrapper {
    margin-top: 40px;
  }
  .section-5 .section-5-wrapper .section-5-mask {
    height: 80px;
  }
  .section-5 .section-5-wrapper .lft .guide-list {
    margin-top: 74px;
  }
  .section-5 .section-5-wrapper .lft .guide-list .guide-list-item {
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    padding: 10px 20px;
  }
  .section-5 .section-5-wrapper .rgt .tit {
    margin-top: 24px;
    font-size: 20px;
    line-height: 28px;
  }
  .section-5 .section-5-wrapper .rgt .rgt-item:not(:last-child) {
    margin-bottom: 140px;
  }
  .section-5.about-us::after {
    height: 64px;
  }
  .section-connect-us {
    padding: 64px 0;
  }
  .section-connect-us .content-wrapper {
    margin-top: 48px;
  }
  .section-connect-us .item {
    width: 492px;
    padding: 24px 64px;
  }
  .section-connect-us .item .tit {
    font-size: 20px;
    line-height: 28px;
    margin-top: 16px;
  }
  .section-connect-us .item .des {
    font-size: 16px;
    margin-top: 6px;
  }
  .section-connect-us .item .btn-wrapper {
    margin-top: 32px;
  }
  .top-banner-part {
    padding: 80px 0;
  }
  .top-banner-part h1 {
    font-size: 40px;
    line-height: 48px;
  }
  .top-banner-part #search-form {
    margin-top: 32px;
  }
  .top-banner-part #search-form svg {
    height: 40px;
    width: 66px;
  }
  .top-banner-part #search-text {
    height: 52px;
  }
  .top-banner-part .popular-search-wrapper .link-item {
    font-size: 16px;
    line-height: 140%;
    margin-top: 24px;
  }
  .top-banner-part .popular-search-wrapper span {
    margin-top: 24px;
  }
  .top-banner-part .popular-search-wrapper {
    margin-top: 16px;
  }
  .section-9 {
    padding-bottom: 16px;
  }
  .section-9 h2 {
    max-width: 640px;
    margin: 0 auto;
  }
  .section-9 .content-wrap .card {
    max-width: 390px;
  }
  .section-9 .content-wrap .card-stack-container {
    height: 500px;
  }
  @keyframes cardBounce1 {
    0% {
      transform: translate(-50%, -50%) translateX(0) scale(1) rotate(0deg);
    }
    60% {
      transform: translate(-50%, -59%) translateX(-495px) scale(1.05) rotate(-8deg);
    }
    100% {
      transform: translate(-50%, -65%) translateX(-443px) scale(1) rotate(-6deg);
    }
  }
  @keyframes cardBounce2 {
    0% {
      transform: translate(-50%, -50%) translateX(0) scale(1) rotate(0deg);
    }
    60% {
      transform: translate(-50%, -51%) translateX(0) scale(1.1) rotate(2deg);
    }
    100% {
      transform: translate(-50%, -53%) translateX(0px) scale(1) rotate(0deg);
    }
  }
  @keyframes cardBounce3 {
    0% {
      transform: translate(-50%, -50%) translateX(0) scale(1) rotate(0deg);
    }
    60% {
      transform: translate(-50%, -61%) translateX(490px) scale(1.05) rotate(8deg);
    }
    100% {
      transform: translate(-50%, -65%) translateX(439px) scale(1) rotate(6deg);
    }
  }
  .support-center-faq .tit {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
  }
  .support-center-more-tools .item .sec-tit {
    font-size: 16px;
    line-height: 140%;
  }
  .support-center-more-tools .item .tit {
    font-size: 20px;
    line-height: 28px;
  }
  .support-center-more-tools .item .item-des {
    font-size: 16px;
  }
  .other-terms .content-wrap {
    padding: 48px;
  }
  .other-terms h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
  }
  .other-terms h1 + p {
    margin: 48px 0;
  }
  .other-terms p {
    font-size: 16px;
  }
  .other-terms h2 {
    font-size: 24px;
    line-height: 32px;
    margin-top: 48px;
  }
  .other-terms h3 {
    font-size: 20px;
    line-height: 28px;
    margin-top: 24px;
  }
  .section-404 h1 {
    font-size: 180px;
    line-height: 188px;
    text-align: center;
  }
  .section-404 p {
    font-size: 16px;
    line-height: 24px;
  }
  .section-banner-bottom h2 {
    font-weight: 600;
    font-size: 52px;
    line-height: 1.1;
    text-align: center;
  }
  .section-banner-bottom .des {
    font-size: 16px;
    line-height: 140%;
    max-width: 820px;
  }
  .section-banner-bottom .btn-wrap {
    margin-top: 48px;
  }
}
@media screen and (max-width: 991px) {
  .section-block {
    padding: 48px 0;
  }
  .top-banner-part .dec-icon-wrapper.dec-icon-wrapper-1 {
    top: 94px;
    left: 37px;
  }
  .top-banner-part .dec-icon-wrapper.dec-icon-wrapper-1 img {
    width: 39%;
  }
  .top-banner-part .dec-icon-wrapper.dec-icon-wrapper-2 {
    top: 16px;
    right: -47px;
    left: auto;
  }
  .top-banner-part .dec-icon-wrapper.dec-icon-wrapper-2 img {
    width: 42%;
  }
  .section-about-us-top {
    padding: 48px 0;
  }
  .section-connect-us .item .tit {
    font-size: 20px;
    line-height: 28px;
  }
  .section-connect-us .item .des {
    font-size: 16px;
  }
  .section-connect-us .item {
    max-width: 100%;
    width: 100%;
    margin: 24px 0 0 0;
  }
  .section-about-us-top .item-row-wrapper .des {
    font-size: 14px;
    max-width: 100%;
  }
  .section-about-us-top .item-row:nth-child(1) .item:nth-child(2) p,
  .section-about-us-top .item-row:nth-child(3) .item:nth-child(2) p {
    font-size: 34px;
    line-height: 44px;
  }
  .section-about-us-top .item-row:nth-child(1) .item:not(:first-child) {
    margin-left: 11px;
  }
  .section-about-us-top .item-row:nth-child(2) .item:nth-child(1) {
    flex: 1 0 61%;
  }
  .section-about-us-top .item-row:nth-child(1) .item:nth-child(3),
  .section-about-us-top .item-row:nth-child(1) .item:not(:first-child) {
    flex: 1 1 23%;
  }
  .section-about-us-top .item-row:nth-child(2) .item:nth-child(2) {
    margin-left: 12px;
    flex: unset;
  }
  .section-about-us-top .item-row:nth-child(3) .item:nth-child(2) {
    margin-left: 4px;
  }
  .section-about-us-top .item-row {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .section-2 {
    padding: 8px 0;
  }
  .section-2 .container-wrapper {
    width: 100%;
    max-width: unset;
    margin: 0 auto;
  }
  .section-2 .container-wrapper .cell {
    padding: 0 4px;
  }
  .section-2 .container-wrapper .cell:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .section-2 .container-wrapper .cell .des {
    font-size: 12px;
  }
  .section-5 {
    padding: 64px 0;
  }
  .section-5 h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
  }
  .section-5 h2 + .des {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    margin-top: 12px;
    margin-bottom: 0;
  }
  .section-5-mask {
    display: none;
  }
  .section-5 .section-5-wrapper .lft {
    max-width: 100%;
    min-width: unset;
    width: 100%;
    top: 0;
    position: relative;
  }
  .section-5 .section-5-wrapper .lft .swiper-slide {
    width: -moz-fit-content;
    width: fit-content;
  }
  .section-5 .section-5-wrapper .lft .guide-list,
  .section-5 .section-5-wrapper .lft .btn-wrapper {
    display: none;
  }
  .section-5 .section-5-wrapper .rgt {
    width: 100%;
    padding-top: 40px;
  }
  .section-5 .section-5-wrapper .rgt .rgt-item:not(:last-child) {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  }
  .section-5 .section-5-wrapper .rgt .tit {
    font-size: 16px;
    line-height: 24px;
    margin-top: 8px;
  }
  .section-5 .section-5-wrapper .rgt .des {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 14px;
  }
  .section-5.about-us::after {
    content: none;
  }
  .section-9 {
    background: url("https://www.pixpretty.com/temporary/img-home/sec9-bg-2.png") no-repeat center center;
    background-size: cover;
  }
  .section-9-swiper {
    margin-top: 58px;
  }
  .section-9-swiper .swiper-slide {
    background: rgb(255, 255, 255);
    padding: 10px 10px 16px;
    border-radius: 24px;
  }
  .section-9-swiper .swiper-slide p.tit {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    margin: 16px 0 0;
  }
  .section-9-swiper .swiper-slide p.data {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    color: rgba(17, 17, 17, 0.7);
    margin: 6px 0;
  }
  .section-9-swiper .section-9-swiper-pagination {
    margin-top: 8px;
    text-align: center;
    position: relative;
    z-index: 10;
    bottom: -38px !important;
  }
  .section-9-swiper .swiper-pagination-bullet {
    background: rgba(17, 17, 17, 0.7);
    opacity: 0.3;
    width: 6px;
    height: 6px;
  }
  .section-9-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 0.8;
    width: 24px;
    border-radius: 30px;
  }
  .section-connect-us {
    padding: 64px 0;
    background: url(https://pixpretty-images.tenorshare.ai/single-page/about-us-bg-2.png) no-repeat center center;
    background-size: cover;
  }
  .section-connect-us .content-wrapper {
    margin-top: 16px;
  }
  .section-connect-us .item {
    padding: 24px 16px;
  }
  .section-connect-us .item img {
    width: 80px;
    height: 80px;
  }
  .section-connect-us .item .tit {
    margin-top: 8px;
  }
  .section-connect-us .item .des {
    margin-top: 0;
  }
  .top-banner-part {
    padding: 64px 0;
    background: url("https://pixpretty-images.tenorshare.ai/single-page/top-banner-part-bg-2.png?w=390&h=512") no-repeat center center;
    background-size: cover;
  }
  .top-banner-part h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .top-banner-part .popular-search-wrapper {
    flex-direction: column;
    text-align: center;
    margin-top: 32px;
  }
  .top-banner-part .popular-search-wrapper .links-wrapper {
    margin-top: 8px;
  }
  .top-banner-part .popular-search-wrapper .link-item {
    padding: 8px 16px;
    font-size: 16px;
    line-height: 140%;
    margin: 16px 8px 0;
  }
  .top-banner-part .popular-search-wrapper span {
    margin: 0;
    margin-top: 0;
  }
  .top-banner-part #search-text {
    padding-left: 18px;
  }
  .support-center-faq {
    padding: 32px 0;
  }
  .support-center-faq nav {
    margin-right: 0;
    width: 100%;
  }
  #faq-nav.open {
    margin-bottom: 24px;
  }
  #btn-for-nav-collapse {
    border: 0;
    background: none;
    text-align: left;
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    color: rgba(17, 17, 17, 0.7);
    padding: 8px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin: 0;
    background: rgba(17, 17, 17, 0.15);
    height: 48px;
    position: relative;
  }
  #btn-for-nav-collapse .content-wrap {
    transition: width 0.3s ease-in-out;
    overflow: hidden;
    width: 100%;
  }
  #btn-for-nav-collapse .content-wrap .content {
    width: -moz-max-content;
    width: max-content;
  }
  #btn-for-nav-collapse::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQgNkw4IDEwTDEyIDYiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==") no-repeat center center;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    transition: transform 0.3s ease-in-out;
  }
  #btn-for-nav-collapse.active::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .support-center-faq .nav-tabs.v1 .nav-link {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    color: rgb(17, 17, 17);
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  }
  .support-center-faq .nav-tabs.v1 .nav-link .nav-tabs.v1 .nav-link.active {
    display: none;
  }
  #faq-nav.open .nav-tabs.v1 .nav-link:not(.active) {
    max-height: 50px;
    padding: 8px 16px;
  }
  .support-center-faq .nav-tabs.v1 .nav-link.active {
    background: transparent;
  }
  .support-center-faq .tit {
    font-size: 20px;
    line-height: 28px;
  }
  .support-center-faq .accordion.v1 .accordion-button.collapsed {
    padding: 12px 16px;
    font-size: 16px;
    line-height: 24px;
  }
  .support-center-faq .accordion.v1 .accordion-button {
    font-size: 16px;
    line-height: 24px;
  }
  .support-center-faq .accordion.v1 .accordion-button {
    padding: 12px 16px 8px;
  }
  .support-center-faq .accordion.v1 .accordion-body {
    padding: 0 16px 12px;
  }
  .support-center-faq .accordion.v1 .accordion-body {
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    color: rgba(17, 17, 17, 0.7);
  }
  .support-center-more-tools .item {
    width: 100%;
    margin-top: 16px;
  }
  .support-center-more-tools .content-wrap {
    margin-top: 16px;
  }
  .other-terms .content-wrap {
    padding: 24px 12px;
  }
  .other-terms h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .other-terms h1 + p {
    margin: 48px 0;
  }
  .other-terms p {
    font-size: 16px;
  }
  .other-terms h1 + p {
    margin: 40px 0;
  }
  .other-terms h2 {
    margin-top: 40px;
  }
  .section-404 h1 {
    font-size: 128px;
    line-height: 136px;
    text-align: center;
  }
  .section-404 p {
    font-size: 14px;
    line-height: 24px;
  }
  .section-2 .container-wrapper .cell .tit {
    font-size: 16px;
    line-height: 24px;
  }
  .section-banner-bottom {
    background: url(https://pixpretty-images.tenorshare.ai/single-page/banner-bottom-bg-2.png) no-repeat center center;
    background-size: cover;
    background-color: #000;
    padding: 64px 0;
  }
  .section-banner-bottom h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    white-space: unset;
  }
  .section-banner-bottom .des {
    max-width: 100%;
    padding: 0 12px;
  }
}
@media (min-width: 1921px) {
  .section-404,
  .section-connect-us,
  .top-banner-part {
    background: url(https://pixpretty-images.tenorshare.ai/public/texture-bg.png?w=5120&h=6200) no-repeat center center;
    background-size: cover;
  }
}
@layer btnanmia {
  .btn-arrow-anima {
    cursor: pointer;
    border: none;
    overflow: hidden;
    position: relative;
    transition: background 300ms, transform 200ms;
  }
  .btn-arrow-anima__circle {
    position: relative;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-arrow-anima__icon--copy {
    position: absolute;
    transform: translate(-150%, 150%);
  }
  .btn-arrow-anima:hover .btn-arrow-anima__icon:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
  }
  .btn-arrow-anima:hover .btn-arrow-anima__icon--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
    color: rgb(255, 178, 0);
  }
  a.btn-primary:hover {
    text-decoration: none !important;
  }
  a.btn-primary:hover span {
    color: #111111 !important;
    opacity: 1 !important;
  }
  a.btn-primary:hover svg {
    transform: none !important;
  }
  a.btn-primary.btn-in-black:hover {
    animation: btn-black-hover-breathing 1.5s linear infinite;
  }
  a.btn-primary.btn-in-white:hover {
    animation: btn-white-hover-breathing 1.5s linear infinite;
  }
  @keyframes btn-black-hover-breathing {
    0% {
      box-shadow: 0 0 0 0 #fff126;
    }
    100% {
      box-shadow: 0 0 0 10px rgba(255, 241, 38, 0.15);
    }
  }
  @keyframes btn-white-hover-breathing {
    0% {
      box-shadow: 0 0 0 0 #fff126;
    }
    100% {
      box-shadow: 0 0 0 10px rgba(255, 241, 38, 0.3);
    }
  }
}/*# sourceMappingURL=others.css.map */