body {
  --primary-blue-color: #7064ff;
  --primary-blue-hover-color: #8287ff;
  --primary-purple-color: #9962f4;
  --primary-deep-blue-color: #564cc9;
  --primary-black-color: #2e2e2e;
  --primary-bg-color: #080429;
  --primary-gray-color: #d9d9d9;
  --primary-purple-black-color: #322f4c;
  --primary-dark-purple-color: #1d1640;
}

html,
body {
  font-family: "Open Sans";
  background: #080429;
  transition: all 0.3s ease;
  overflow-x: hidden;
}

body::-webkit-scrollbar-thumb {
  background-color: #4caf50;
}

body::-webkit-scrollbar {
  display: none;
  width: 8px;
}

/* 设置滚动条轨道透明 */
body::-webkit-scrollbar-track {
  display: none;
  background-color: transparent; /* 轨道透明 */
}

main {
  padding-bottom: 150px;
}

main h2 {
  margin-bottom: 15px;
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  line-height: 52px;
  color: #fff;
}

main .title-desc {
  max-width: 826px;
  margin: 0 auto 45px;
  font-size: 16px;
  text-align: center;
  line-height: 22px;
  color: #fff;
}

@media (max-width: 768px) {
  main {
    padding-bottom: 60px;
  }

  main h2 {
    margin-bottom: 11px;
    font-size: 26px;
    line-height: 35px;
  }

  main .title-desc {
    margin: 0 auto 25px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 19px;
  }
}

input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="checkbox"]:checked {
  background-color: #007bff;
  border-color: #007bff;
}

input[type="checkbox"]:checked::after {
  position: absolute;
  display: block;
  width: 3px;
  height: 5px;
  content: "";
  border: solid #fff;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg) scale(1.5);
}

.primary-blue-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 18px 48px;
  background: var(--primary-blue-color);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
  width: fit-content;
  transition: all 0.3s ease;
}

.primary-blue-arrow-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 11px 40px;
  background: var(--primary-blue-color);
  border-radius: 10px;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  width: fit-content;
}

.primary-blue-arrow-btn .arrow {
  margin-top: 2px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.primary-blue-arrow-btn:hover .arrow {
  transform: translateX(10px);
}

.primary-border-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 11px 61px;
  background: #fff;
  border-radius: 10px;
  font-size: 18px;
  line-height: 26px;
  color: var(--primary-blue-color);
  width: fit-content;
  border: 1px solid #7064ff;
  transition: all 0.3s ease;
}

.primary-border-btn:hover {
  color: #fff;
  background: var(--primary-blue-color);
}

.primary-blue-btn:hover,
.primary-blue-arrow-btn:hover,
.primary-blue-btn:focus,
.primary-blue-arrow-btn:focus {
  color: #fff;
  background: var(--primary-blue-hover-color);
}

.primary-border-btn:hover,
.primary-border-btn:focus {
  color: #fff;
}

.primary-white-btn,
.primary-white-btn:focus {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 14px 76px;
  background: #fff;
  border-radius: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  width: fit-content;
  color: var(--primary-blue-color);
}

.primary-link-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--primary-blue-color);
}

.upload-label-btn {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}

.no-select {
  user-select: none;
}

.original-image,
.processed-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.mobile-image {
  display: none;
}



@media (max-width: 1204px) {
  .pc-image {
    display: none;
  }

  .mobile-image {
    display: block;
  }

  .product-nav .container {
    padding: 0 16px;
  }
}

/* Dialog And Toast Start */
.progress-modal {
  max-width: 450px;
  z-index: 1002;
}

.progress-modal .progress-container {
  position: relative;
  overflow: hidden;
  width: 343px;
  margin: 17px auto 33px;
  background-color: #c9c7d4;
  border-radius: 16px;
}

.progress-modal .progress-container .progress {
  height: 12px;
  background-color: #7064ff;
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  width: var(--progress, 0%);
  transition: width 0.3s ease;
}

.progress-modal .desc {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: var(--primary-black-color);
}

.progress-modal .upload-status {
  font-size: 16px;
  font-weight: bold;
}

.progress-modal .dots::after,
.loading-tips .dots::after {
  content: "";
  display: inline-block;
  width: 1em;
  text-align: left;
  animation: dots 2s steps(4, end) infinite;
}

.toast.max-size-error,
.toast.toast-files-type-error,
.toast.toast-exceeds-error {
  max-width: 449px;
  padding: 13px 30px 13px 20px;
  background-color: #ffffffe5;
  font-size: 15px;
  line-height: 21px;
  color: var(--primary-black-color);
}

.toast.toast-files-type-error {
  max-width: 500px;
}

.modal.drop-tips,
.modal.loading-tips {
  max-width: none;
  text-align: center;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 44px;
}

@media (max-width: 768px) {
  .progress-modal {
    max-width: 96%;
  }

  .progress-modal .progress-container {
    width: 100%;
  }
}

/* Dialog And Toast End */

.header-content-bg {
  top: 62px;
}

@media (max-width: 1024px) {
  .header-content-bg {
    top: 68px;
  }
  .nav-bottom-functions {
    top: 0;
  }
}

@keyframes gradientAnimation {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

.product-nav .right-item .m-hidden a,
.product-nav .right-item .m-hidden .hover-icon {
  display: none;
}

.product-nav .right-item li.m-hidden {
  width: 150px;
  height: 32px;
  cursor: pointer;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  color: #2d2d2d;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
  animation: gradientAnimation 3s infinite linear;
  background-image: linear-gradient(67.98deg, #4C17D2 0%, #7635FF 32.05%, #E339FF 61.14%, #F6B451 97.18%);
  background-size: 200% 200%;
}

.product-nav .right-item li.buy-btn a{
  margin-right: 0;
}

.product-nav .right-item li.m-hidden .upload-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #fff;
  opacity: 1;
}

.product-nav .right-item li.m-hidden .upload-label svg {
  color: #fff;
  width: 15px;
  height: 15px;
  margin-right: 8px;
}

.product-nav .right-item li.m-hidden .upload-label span {
  vertical-align: middle;
}

.product-nav .right-item li.m-hidden .icon {
  display: none;
}

.product-nav .right-item li.m-hidden .hover-icon {
  display: block;
}

.product-nav .right-item li.m-hidden:hover .upload-label svg {
  /* color: #fff; */
}

.slider-handle {
  position: absolute;
  background-color: #fff;
  cursor: ew-resize;
  opacity: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  transition: all 1s ease;
}

.slider-handle.loaded {
  opacity: 1;
  transition: none;
}

.slider-handle.horizontal {
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
}

.slider-handle.vertical {
  width: 100%;
  height: 2px;
}

.move-icon {
  position: absolute;
  bottom: 67px;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translateX(-50%);
  cursor: pointer;
  background: url(https://images.anyrecover.com/anyrecoveren/themes/anyrecover/public/assets/images/photo_recovery/move-icon.svg);
  background-size: contain;
}

.banner-container {
  position: relative;
  width: 100vw;
  height: 1200px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.processed-image,
.original-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 1s ease;
}

.processed-image {
  opacity: 0;
  z-index: 1;
  transition: clip-path 1s ease;
}

.processed-image.horizontal {
  opacity: 1;
  clip-path: inset(0 100% 0 0);
}

.processed-image.vertical {
  opacity: 1;
  clip-path: inset(0 0 100%);
}

.processed-image.loaded {
  transition: none;
}

.original-image {
  z-index: 0;
}

.slider-handle {
  position: absolute;
  background: #fff;
  z-index: 2;
}

.container {
  max-width: 1301px;
  margin: 0 auto;
  padding: 0;
}

.max-container {
  max-width: 1800px;
  margin: 0 auto;
  border-radius: 30px;
}

@media (max-width: 1204px) {
  .image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(8, 4, 41, 0) 64.6%, #080429 100%);
  }
}

@media (max-width: 768px) {
  .move-icon {
    width: 40px;
    height: 40px;
    bottom: 56px;
  }
}

@media (max-width: 554px) {
  .product-nav .right-item li.m-hidden {
    display: none;
  }
}

/* Common End */

/* Header Start */
.header-nav .header-content {
  height: 62px;
}

.product-nav {
  height: 62px;
}

/* Header End */

/* Banner Start  */
.banner {
  position: relative;
}

.banner .right {
  position: absolute;
  right: 16%;
  top: 89px;
  width: 538px;
  color: #fff;
  z-index: 7;
}

.banner .brand-intro {
  display: flex;
  align-items: center;
  padding-left: 5px;
}

.banner .brand-intro img {
  min-width: 36px;
}

.banner .title {
  margin-top: 10px;
  font-size: 48px;
  font-weight: 700;
  line-height: 65px;
}

.banner .right .desc {
  margin-top: 15px;
  font-size: 16px;
  line-height: 22px;
  text-shadow: 0px 4px 4px #00000040;
}

.banner .sub-title.desc {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-shadow: none;
}

.banner .upload-container .tips {
  font-size: 16px;
  line-height: 22px;
}

.banner .upload-container .support-tips {
  margin-top: 12px;
  font-size: 12px;
  line-height: 16px;
}

.upload-container .terms .text {
  color: #fff;
  opacity: 0.6;
}

.image-wrapper .slider-handle {
  position: absolute;
  background-color: #fff;
  cursor: ew-resize;
  z-index: 2;
  opacity: 0;
}

.image-wrapper .slider-handle.horizontal {
  top: 0;
  width: 4px;
  height: 100%;
  opacity: 1;
  bottom: 520px;
}

.image-wrapper .slider-handle.vertical {
  opacity: 1;
  top: 0;
  width: 100%;
}

.image-wrapper .slider-handle.vertical .move-icon {
  bottom: 0;
  left: auto;
  right: 6.6667vw;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .image-wrapper .slider-handle.horizontal {
    width: 1px;
  }
}

.banner .move-icon {
  bottom: 520px;
  width: 62px;
  height: 62px;
}

.banner .image-wrapper .original-image.mobile {
  display: none;
}

.banner .shake-animation {
  animation: headShake 1s ease-in-out;
}

.banner .brand-intro {
  animation-name: slideUp;
  animation-delay: 0.2s;
}

.banner .title {
  animation-name: slideUp;
  animation-delay: 0.4s;
}

.banner .desc {
  animation-name: slideUp;
  animation-delay: 0.6s;
}

.banner .upload-container {
  animation-name: slideUp;
  animation-delay: 0.8s;
}

.banner .brand-intro,
.banner .title,
.banner .desc,
.banner .upload-container,
.banner .app-download-container {
  opacity: 0;
  transform: translateY(20px);
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes slideOnce {
  from {
    left: 0;
    opacity: 0;
  }
  to {
    left: 30%;
    opacity: 1;
  }
}

.image-wrapper .before-label,
.image-wrapper .after-label {
  position: absolute;
  top: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  width: 70px;
  height: 30px;
  border-radius: 3px;
  background: #0000004d;
  pointer-events: none;
}

.image-wrapper .before-label {
  left: calc(100% + 10px); /* 滑竿左边，稍微偏移10px */
}

.image-wrapper .after-label {
  right: calc(100% + 10px); /* 滑竿右边，稍微偏移10px */
}

@media (max-width: 768px) {
  .image-wrapper .before-label,
  .image-wrapper .after-label {
    width: 38px;
    height: 16px;
    font-size: 9px;
    line-height: 12px;
  }
}

.no-select {
  user-select: none;
}

.banner .right .brand-intro h1 {
  margin-left: 13px;
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
  color: #fff;
}

.upload-container {
  position: relative;
  width: 100%;
  padding: 39px 49px 34px;
  border: 2px dashed #ccc;
  color: #fff;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(27px);
  -webkit-backdrop-filter: blur(27pxpx);
  margin: 20px auto 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.upload-container:hover {
  background: rgba(255, 255, 255, 0.3);
}

.upload-container input[type="file"] {
  display: none;
}

.upload-container .upload-label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  z-index: 0;
}

.upload-container .upload-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  width: fit-content;
  height: 60px;
  margin: 30px auto 0;
  color: var(--primary-blue-color);
  background: rgba(255, 255, 255);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
}

.upload-container .upload-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.upload-container .upload-btn img {
  margin-right: 10px;
}

.upload-container .drop {
  margin: 24px auto 64px;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

.upload-container .terms {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 30px;
  color: #bbb8c6;
  font-size: 14px;
  z-index: 1;
}

.upload-container .terms a {
  color: #fff;
  text-decoration: underline;
}

.upload-container .terms a:hover {
  text-decoration: underline;
}

.upload-container .terms input {
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  margin-right: 9px;
  background-color: #0000004d;
  position: relative;
  appearance: none;
}

.banner .app-download-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  animation-name: slideUp;
  animation-delay: 1s;
}

.banner .app-download-container .item {
  position: relative;
  flex: 1;
  height: 62px;
  border: 1px solid #ffffff;
  background-size: contain;
  border-radius: 14px;
}

.banner .app-download-container .item::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 14px;
  background: var(--primary-bg-color);
  z-index: -1;
}

.banner .app-download-container .google-pay {
  background: url(../png/google-pay.png)
    no-repeat center center;
}

.banner .app-download-container .apple-store {
  background: url(../png/app-store.png)
    no-repeat center center;
}

@media (max-width: 1880px) {
  .banner .right {
    right: 100px;
  }
}

@media (max-width: 1300px) {
  .banner .right {
    right: 50px;
  }
}

@media (max-width: 1204px) {
  .banner .banner-container {
    height: 900px;
  }
  .banner .title {
    font-size: 40px;
  }
}

@media (max-width: 1024px) {
  .banner .banner-container {
    height: 101.8667vw;
  }
  .banner .move-icon {
    width: 42px;
    height: 42px;
    bottom: 53.333vw;
    background: url(https://images.anyrecover.com/anyrecoveren/assets/overview/ai_repair/move-vertical.svg);
  }
  .banner .right {
    display: flex;
    position: relative;
    right: auto;
    top: auto;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    width: 92%;
    margin: 0 auto;
    top: -35.2vw;
  }
  .banner .title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    line-height: 38px;
  }
  .banner .right .sub-title.desc {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
  }
  .banner .right .desc {
    margin-top: 10px;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
  }

  .banner .app-download-container {
    width: 100%;
  }
  .banner .upload-container {
    margin-top: 36px;
    padding: 21px 27px 23px 29px;
  }

  .banner .upload-container .support-tips {
    padding: 0 10px;
    margin-top: 10px;
  }
  .upload-container .upload-btn {
    margin: 15px auto 0;
    padding: 30px 20px;
  }

  .upload-container .terms {
    margin-top: 15px;
    text-align: left;
    line-height: 19px;
  }
  .upload-container .terms input {
    min-width: 16px;
    width: 16px;
    min-height: 16px;
    height: 16px;
    margin-bottom: auto;
    margin-top: 2px;
  }
  .banner .brand-intro {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .banner .banner-container {
    /* height: 143.2vw; */
  }
  .banner .upload-container {
    margin-top: 38px;
  }
  .banner .app-download-container {
    flex-direction: column;
    margin-top: 24px;
  }

  .banner .app-download-container .item {
    flex: none;
    width: 100%;
  }
  .upload-container .upload-btn {
    padding: 19px 50px !important;
  }
}

@media (max-width: 545px) {
  .banner .banner-container {
    height: 143.2vw;
  }
}

/* Banner Start  */

/* Wipe List Start */
.category {
  padding-top: 140px;
}

.category h2 {
  margin-bottom: 20px;
}

.category .title-desc {
  max-width: 1010px;
}

.category .move-icon {
  bottom: 50%;
  width: 62px;
  height: 62px;
  transform: translateX(-50%);
}

.category .category-tab {
  display: flex;
  justify-content: center;
  max-width: 1010px;
  margin: 65px auto 38px;
  color: #fff;
}

.category .category-tab .tab-item {
  position: relative;
  cursor: pointer;
  padding: 15px 49px;
  white-space: nowrap;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.6);
}

.category .category-tab .tab-item.active {
  color: #fff;
}

.category .category-tab .tab-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary-purple-color);
  border-radius: 9px;
}

.category .tab-content {
  height: 620px;
}

.category .tab-content .item.active {
  opacity: 1;
  height: 100%;
}

.category .tab-content .item {
  opacity: 0;
  height: 0;
}

.category .image-wrapper .before-label,
.category .image-wrapper .after-label {
  top: auto;
  bottom: 22px;
}

.category .primary-blue-btn {
  margin: 40px auto 0;
  
}

@media (max-width: 991px) {
  .category {
    padding-top: 60px;
  }
  .category .category-tab .tab-item {
    padding: 15px 16px;
  }
  .category .tab-content {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .category h2 {
    margin-bottom: 15px;
  }

  .category .image-wrapper .slider-handle.horizontal {
    width: 2px;
  }

  .category .primary-blue-btn { 
    margin: 30px auto 0;
  }

  .category .move-icon {
    width: 32px;
    height: 32px;
  }

  .category .title-desc {
    font-size: 16px;
    line-height: 22px;
  }

  .category .category-tab {
    margin: 29px 0 20px;
    overflow-x: auto;
    margin-left: -4px;
  }

  .category .category-tab {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .category .category-tab::-webkit-scrollbar {
    display: none;
  }

  .category .category-tab .tab-item {
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
    color: #fff;
    opacity: 0.6;
  }

  .category .category-tab .tab-item.active {
    opacity: 1;
  }
  .category .tab-content {
    height: 86.4vw;
  }

  .category .image-wrapper .before-label,
  .category .image-wrapper .after-label {
    top: auto;
    bottom: 11.5px;
    font-size: 8px;
    font-weight: 400;
    line-height: 12px;
    width: 37px;
    height: 16px;
  }
}

@media (max-width: 640px) {
  .category .category-tab {
    justify-content: flex-start;
  }
}

/* Wipe List End */

/* Step Start */

.step {
  margin-top: 168px;
}

.step .container-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-right: 309px;
  width: 100%;
}
.step .step-list {
  width: 36%;
  max-width: 579px;
  color: #fff;
  overflow: hidden;
}

.step .step-list h2 {
  max-width: 579px;
  margin-bottom: 40px;
  text-align: left;
}

.step .step-list .step-item {
  position: relative;
  cursor: pointer;
  padding-bottom: 30px;
  margin-top: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.step .step-list .step-item:last-of-type {
  border: none;
}

.step .step-list .step-item .image-wrap {
  left: 0;
  top: 0;
  height: 0;
  width: 100%;
  transition: all 0.3s ease;
  opacity: 0;
}

.step .step-list .step-item .image-wrap img {
  height: 100%;
  min-height: 278px;
  object-fit: contain;
}

.step .step-list .step-item .title {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  color: #fff;
}

.step .step-list .step-item .desc {
  font-size: 16px;
  line-height: 22px;
}

.step .guide {
  position: relative;
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--primary-blue-color);
  z-index: 5;
}

.step .step-item.active .progress-bar {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  background-color: var(--primary-blue-color);
  width: 0;
  animation: progress 5s linear infinite;
}

.step .left-container {
  position: relative;
  margin-right: 97px;
  width: 58.6%;
  max-width: 935px;
}

.step .left-container .item {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  transition: opacity 0.2s ease;
}

.step .left-container .item.active {
  position: relative;
  opacity: 1;
}

@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@media (max-width: 1660px) {
  .step .container-wrap {
    padding-right: 80px;
  }
}

@media (max-width: 1366px) {
  .step .container-wrap {
    padding-right: 0;
  }

  .step .left-container {
    margin-right: 20px;
  }
}

@media (max-width: 1204px) {
  .step {
    margin-top: 60px;
  }

  .step .step-list {
    overflow: hidden;
  }
  .step .step-list h2 {
    padding: 0 16px;
    margin-bottom: 20px;
  }

  .step .step-list .step-item .title {
    padding: 0 16px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
  }

  .step .step-list .step-item .desc {
    padding: 0 16px;
    font-size: 16px;
    line-height: 22px;
  }

  .step .left-container {
    display: none;
    height: 0;
  }

  .step .step-list {
    width: 100%;
    max-width: 100%;
  }

  .step .step-list .step-item {
    margin-top: 20px;
    padding-bottom: 20px;
  }

  .step .step-list .step-item.active .image-wrap {
    text-align: left;
    height: 278px;
    margin-top: 20px;
    opacity: 1;
  }

  .step .guide {
    padding: 0 16px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .step .guide {
    margin-top: 10px;
  }
}
/* Step End */

/* Comment Start */
.comment {
  margin-top: 160px;
  padding: 0 16px;
}

.comment .comment-swiper {
  width: 100%;
  height: 500px;
  margin-top: 60px;
  background: #fff;
  border-radius: 30px;
}

.comment .comment-swiper .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment .comment-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.comment .comment-swiper .swiper-slide .content {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 65px;
  height: 100%;
  padding-top: 33px;
}

.comment .swiper-slide .content .user-avatar .avatar {
  min-width: 160px;
  min-height: 160px;
}

.comment .swiper-slide .content .user-info {
  display: flex;
  flex-direction: column;
  max-width: 718px;
}

.comment .swiper-slide .content .user-info .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: left;
}

.comment .swiper-slide .content .user-info .comment-info {
  margin-top: 20px;
  font-size: 24px;
  line-height: 33px;
  text-align: left;
  color: var(--primary-bg-color);
  opacity: 0.5;
}

.comment .swiper-slide .content .user-info .user-name {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  color: var(--primary-bg-color);
}

.comment .swiper-slide .icon {
  position: absolute;
  top: 78px;
  left: 55px;
}

.comment .swiper-button-next,
.comment .swiper-button-prev {
  width: 50px;
  height: 50px;
  top: 81px;
  left: auto;
  z-index: 5;
}

.comment .swiper-button-next {
  right: 249px;
  background: url(https://images.anyrecover.com/anyrecoveren/assets/overview/ai_repair/pre-icon.svg);
}

.comment .swiper-button-prev {
  right: 316px;
  left: auto;
  background: url(https://images.anyrecover.com/anyrecoveren/assets/overview/ai_repair/next-icon.svg);
}

@media (max-width: 1204px) {
  .comment {
    margin-top: 60px;
  }
  .comment .comment-swiper {
    height: 450px;
    margin-top: 20px;
  }
  .comment .swiper-button-next {
    right: 59px;
  }

  .comment .swiper-button-prev {
    right: 120px;
  }
}

@media (max-width: 991px) {
  .comment {
    margin-top: 60px;
  }
  .comment .comment-swiper .swiper-slide .content {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .comment .comment-swiper {
    border-radius: 15px;
  }

  .comment .comment-swiper {
    height: auto;
  }

  .comment .swiper-button-next,
  .comment .swiper-button-prev {
    width: 36px;
    height: 36px;
    object-fit: contain;
    background-size: contain;
  }

  .comment .swiper-button-next {
    right: 13px;
    top: 38px;
  }

  .comment .swiper-button-prev {
    top: 38px;
    right: 59px;
  }

  .comment .swiper-slide .icon {
    width: 27px;
    height: 23px;
    left: 26px;
    top: 18px;
  }

  .comment .comment-swiper .swiper-slide .content {
    flex-direction: column;
    justify-content: flex-start;
    padding: 76px 16px 13px 18px;
    gap: 0;
  }

  .comment .swiper-slide .content .user-info .title {
    margin-top: 21px;
    text-align: center;
  }

  .comment .swiper-slide .content .user-info .comment-info {
    font-size: 18px;
    line-height: 24px;
  }

  .comment .swiper-slide .content .user-avatar .avatar {
    width: 100px;
    height: 100px;
    min-height: 100px;
    min-width: 100px;
  }

  .comment .swiper-slide .content .user-info .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
  }

  .comment .swiper-slide .content .user-info .comment-info {
    font-size: 18px;
    line-height: 24px;
    text-align: left;
  }

  .comment .swiper-slide .content .user-info .user-name {
    margin-top: 28px;
    font-size: 14px;
    font-weight: 700;
    line-height: 19px;
  }
}

/* Comment End */

/* Hot Topic Start */
.hot-topic {
  margin-top: 160px;
}

.hot-topic .topic-list {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.hot-topic .topic-list .topic-item {
  width: 23.9%;
  max-width: 310px;
}
.hot-topic .topic-list .topic-item .cover {
  border-radius: 20px;
}
.hot-topic .topic-list .topic-item h3 {
  margin-top: 20px;
  text-align: left;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

.hot-topic .more-topic {
  display: block;
  margin-top: 40px;
  text-align: center;
  width: 100%;
}

@media (max-width: 991px) {
  .hot-topic {
    margin-top: 60px;
    padding: 0 16px;
  }

  .hot-topic .topic-list {
    margin-top: 30px;
  }

  .hot-topic .topic-list {
    flex-wrap: wrap;
  }

  .hot-topic .topic-list .topic-item .cover {
    border-radius: 10px;
  }

  .hot-topic .topic-list .topic-item {
    width: 48%;
    max-width: 48%;
    margin-bottom: 20px;
  }

  .hot-topic .topic-list .topic-item h3 {
    margin-top: 10px;
    font-size: 14px;
    line-height: 19px;
  }

  .hot-topic .more-topic {
    margin-top: 14px;
  }
}

/* Hot Topic End */

/* Faq Start */
.faq {
  margin-top: 140px;
  color: #fff;
}

.faq .desc {
  max-width: 300px;
}

.faq .container {
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}

.faq h2 {
  width: 24.9%;
  text-align: left;
  font-size: 36px;
  font-weight: 700;
  line-height: 49px;
}

.faq .faq-list {
  width: 60%;
}

.faq .faq-item:first-child {
  padding-top: 0;
}

.faq .faq-item:last-child {
  border-bottom: none;
}

.faq .faq-item {
  width: 100%;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.faq .faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
}

.faq .faq-question svg {
  min-width: 24px;
  width: 24px;
  min-height: 24px;
  height: 24px;
  transform: rotate(180deg);
}

.faq .faq-question.active svg {
  transform: rotate(0);
}

.faq .faq-item:first-child .faq-answer {
  display: block;
}

.faq .faq-answer {
  display: none;
  margin-top: 17px;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

.faq .faq-answer a {
  color: var(--primary-blue-color);
}

.faq .faq-answer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq {
    margin-top: 48px;
  }
  .faq .container {
    flex-direction: column;
  }

  .faq .faq-list,
  .faq h2 {
    width: 100%;
  }

  .faq h2 {
    margin-bottom: 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 35px;
  }

  .faq .faq-list {
    margin-top: 46px;
  }

  .faq .desc {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .faq .faq-question {
    font-size: 18px;
    line-height: 24px;
  }

  .faq .faq-item .faq-answer {
    font-size: 14px;
    line-height: 19px;
    margin-top: 10px;
  }

  .faq .faq-item {
    padding: 30px 0 25px;
  }
}

/* Faq End */