/* common */
.main {
  width: 100%;
  overflow: hidden;
}

.main *,
.main {
  color: #000000;
}

.main video {
  display: block;
  max-width: 100%;
}

.main h2 {
  font-size: 86px;
  font-weight: 600;
  line-height: 97px;
  text-align: center;
}

.main h2.min {
  font-size: 56px;
}

.main h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.main .bg-line {
  user-select: none;
  pointer-events: none;
}

.main .product-plate {
  padding: 100px 0;
}

.main .section-desc {
  text-align: center;
  margin-top: 40px;
}

[data-scroll-animation] {
  opacity: 0;
}

.bg-line path {
  transition: stroke-dashoffset 0.1s linear;
}

.product-btns-group {
  --btn-border-radius: 10px;
  --btn-color: #fff;
  --btn-width: 200px;
  --btn-height: 56px;
  --btn-transtion: 0.3s cubic-bezier(.4,0,.2,1);
  --btn-scale: 1;
}
.product-btns-group .btn-buy {
  width: var(--btn-width);
  height: var(--btn-height);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-border-radius);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  transition: all var(--btn-transtion);
  z-index: 0;
  border: 1px solid #fff;
}

.product-btns-group .btn-buy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF1A;
  border-radius: var(--btn-border-radius);
  transition: all var(--btn-transtion);
  z-index: 1;
  backdrop-filter: blur(4px);
}

.product-btns-group .btn-buy:hover::before {
  background: rgba(255, 255, 255, 0.4);
}

.product-btns-group .btn-buy span {
  position: relative;
  z-index: 1;
  color: #fff;
}

.product-btns-group .product-btn {
  width: 250px;
  height: 56px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  transform: all 0.3s cubic-bezier(.4,0,.2,1);
}

.product-btns-group .product-btn.gradient-button {
  background-image: linear-gradient(278.44deg, #5454DF, #1BECC2, #5454DF);
  background-position: 0 0;
  background-size: 200% 100%;
}

.product-btns-group .product-btn.gradient-button:hover {
  background-position: 100% 0;
}

.product-btns-group .product-btn.gradient-button span {
  position: relative;
  z-index: 1;
  color: #fff;
}

.product-btns-group .product-btn.gradient-border-button {
  position: relative;
  background: linear-gradient(278.44deg, #5454DF, #1BECC2, #5454DF);
  background-size: 200% 100%;
  background-position: 0 0;
  -webkit-background-clip: text;
  color: transparent;
}

.product-btns-group .product-btn.gradient-border-button span {
  background: linear-gradient(278.44deg, #5454DF, #1BECC2, #5454DF);
  background-size: 200% 100%;
  background-position: 0 0;
  -webkit-background-clip: text;
  color: transparent;
}

.product-btns-group .product-btn.gradient-border-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(278.44deg, #5454DF, #1BECC2, #5454DF);
  background-size: 200% 100%;
  background-position: 0 0;
  padding: 1px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);  
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  transition: background-position 0.4s ease;
  pointer-events: none;
}

.product-btns-group .product-btn.gradient-border-button:hover,
.product-btns-group .product-btn.gradient-border-button:hover span,
.product-btns-group .product-btn.gradient-border-button:hover::before {
    background-position: 100% 0;
}

.main .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 6px;
  border-radius: 8px;
}

.main .swiper-pagination-bullet-active {
  width: 24px;
  background: linear-gradient(278.44deg, #5454DF, #1BECC2);
}

@media (max-width: 1024px) {
  .main h2 {
    font-size: 54px;
    line-height: 1.37;
  }

  .main h2.min {
    font-size: 44px;
  }

  .main h3 {
    font-size: 32px;
  }

  .main .section-desc {
    margin-top: 30px;
  }

  .main .product-plate {
    padding: 80px 0;
  }

  .product-btns-group .product-btn {
    margin: 0 12px;
  }
}

@media (max-width: 768px) {
  .product-btns-group {
    --btn-height: 50px;
    --btn-border-radius: 8px;
  }

  .main h2 {
    font-size: 36px;
    line-height: 1.37;
  }

  .main h2.min {
    font-size: 28px;
  }

  .main h3 {
    font-size: 24px;
  }

  .main .product-plate {
    padding: 60px 0;
  }
}
/* common */

/* top-banner */
.top-banner .container {
  max-width: 1470px;
  position: relative;
}

.top-banner .banner-video {
  border-radius: 40px;
  overflow: hidden;
  width: 100%;
}

.top-banner .banner-video video {
  width: 100%;
}

.top-banner .banner-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 42px 15px 60px;
  color: #fff;
  width: calc(100% - 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  border-radius: 0 0 40px 40px;
}

.top-banner h1 {
  font-size: 54px;
  line-height: 1.37;
  font-weight: 600;
  color: #fff;
}

.top-banner h1 span {
  background: linear-gradient(278.44deg, #1BECC2 -2.8%, #5454DF 95.65%);
  -webkit-background-clip: text;
  color: transparent;
}

.top-banner .banner-desc {
  font-size: 24px;
  margin: 6px auto 30px;
  color: #fff;
}

@media (max-width: 1024px) {
  .top-banner .banner-video {
    border-radius: 20px;
  }
  .top-banner h1 {
    font-size: 36px;
    line-height: 48px;
  }

  .top-banner .banner-desc {
    font-size: 20px;
  }

  .top-banner .banner-content {
    border-radius: 0 0 20px 20px;
    padding: 30px 15px 40px;
  }
}

@media (max-width: 768px) {
  .top-banner .banner-video {
    width: 100%;
    height: calc(100vh - 100px);
    border-radius: 12px;
  }

  .top-banner .banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .top-banner .banner-content {
    border-radius: 0 0 12px 12px;
  }

  .top-banner h1 {
    font-size: 28px;
    line-height: 38px;
  }

  .top-banner .banner-desc {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

/* top-banner */

/* generate */
.generate {
  padding: 100px 0 40px;
}

.generate h2 {
  margin-bottom: 240px;
}

.generate-container {
  margin: 0 auto;
  position: relative;
  height: 500vh;
  overflow: visible;
  max-width: 1380px;
}

.generate-mobile {
  display: none;
}

.generate .bg-line {
  position: absolute;
  top: -266px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.generate-wrapper {
  height: calc(100vh - 140px);
  width: 100%;
  max-width: 1380px;
  padding: 0 15px;
  /* pointer-events: none; */
}

.generate-wrapper.fixed {
  position: fixed;
  top: 10vh;
  left: 50%;
  transform: translateX(-50%);
}

.generate-wrapper.absolute {
  position: absolute;
  top: unset;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.generate-wrapper .hide {
  display: none;
}

.generate-progress {
  position: absolute;
  width: calc(100% - 40px);
  bottom: 0;
  left: 20px;
}

.generate-progress .progress-line {
  --progress: 0%;
  width: 100%;
  position: relative;
  height: 1px;
  background: #00000033;
  border-radius: 8px;
  margin-bottom: 24px;
}

.generate-progress .progress-line::before {
  position: absolute;
  content: '';
  width: var(--progress);
  height: 1px;
  top: 0;
  left: 0;
  background: linear-gradient(278.44deg, #1BECC2 -2.8%, #5DC6FF 62.1%, #5454DF 95.65%);
  border-radius: inherit;
}

.generate-progress .progress-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  font-size: 24px;
  font-weight: 600;
}

.prompt {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 100px));
  z-index: 1;
  height: 152px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  will-change: opacity, transform;
}

.prompt .char {
  font-size: 86px;
  line-height: 1.1;
  font-weight: 600;
  will-change: opacity, transform;
}

.prompt-border {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 100px));
  width: 100%;
  height: 152px;
  border-radius: 200px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  will-change: opacity, transform;
}

.prompt-border::before {
  position: absolute;
  content: '';
  inset: 0;
  background: linear-gradient(278.1deg, #1BECC2 -1.91%, #5DC6FF 61.93%, #5454DF 94.92%);
  filter: blur(6px);
  z-index: 0;
  border-radius: inherit;
}

.prompt-border::after {
  position: absolute;
  content: '';
  inset: 0;
  z-index: 1;
  background-color: #fff;
  border-radius: inherit;
}

.generate-btn {
  width: 280px;
  height: 72px;
  border-radius: 18px;
  /* background: linear-gradient(278.1deg, #1BECC2 -1.91%, #5DC6FF 61.93%, #5454DF 94.92%); */
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 100px)) scale(1.35);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  will-change: opacity, transform;
}

.generate-btn-bg {
  width: 280px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(278.1deg, #1BECC2 -1.91%, #5DC6FF 61.93%, #5454DF 94.92%);
  position: absolute;
  text-align: center;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0) scale(1.35);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  will-change: opacity, transform;
}

.generate-btn .generate-text {
  width: 280px;
  height: 72px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.35);
  z-index: 3;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: opacity, transform;
}

.generate-block {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50%));
  z-index: 1;
  background: linear-gradient(278.1deg, #1BECC2 -1.91%, #5DC6FF 61.93%, #5454DF 94.92%);
  opacity: 0;
  border-radius: 18px;
  will-change: opacity, transform;
}

.generate-light {
  width: 658px;
  height: 240px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  filter: blur(74px);
  z-index: 2;
  background: url(https://images.anyrecover.com/anyrecoveren/assets/overview/ai_video_generator/generate-light.png) no-repeat center / cover;
  will-change: opacity, transform;
}

.generate-img {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  opacity: 0;
  z-index: 2;
  opacity: 0;
  transform-origin: center center;
  will-change: opacity, transform;
}

.generate-img.img-top {
  z-index: 3;
}

.generate-video {
  position: absolute;
  width: 100%;
  height: 0;
  padding-top: 60%;
  left: 0;
  bottom: 0;
  opacity: 0;
  z-index: 3;
  opacity: 0;
  border-radius: 18px;
  overflow: hidden;
}

.generate-video video {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .generate {
    padding-top: 80px;
  }
  .generate .bg-line {
    top: -302px;
    transform: translateX(-50%) scale(0.8);
  }

  .generate h2 {
    margin-bottom: 160px;
  }

  .generate-progress .progress-text {
    font-size: 20px;
    padding: 0 30px;
  }

  .generate-progress .progress-line {
    margin-bottom: 16px;
  }

  .prompt {
    height: 120px;
    transform: translate(-50%, calc(-50% - 80px));
  }
}

@media (max-width: 768px) {
  .generate {
    padding-top: 60px;
  }

  .generate h2 {
    margin-bottom: 30px;
  }
  .prompt {
    height: 90px;
    transform: translate(-50%, calc(-50% - 60px));
  }

  .generate .bg-line {
    display: none;
  }

  .generate-progress .progress-text {
    font-size: 16px;
  }

  .generate-container {
    display: none;
  }

  .generate-mobile {
    display: block;
    padding: 0 15px;
  }

  .generate-mobile-video {
    border-radius: 8px;
    overflow: hidden;
  }

  .generate-mobile-prompt {
    position: relative;
    margin: 20px 0;
    padding: 12px 30px;
    border-radius: 60px;
    z-index: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
  }

  .generate-mobile-prompt::before {
    position: absolute;
    content: '';
    inset: 0;
    background: linear-gradient(278.1deg, #1BECC2 -1.91%, #5DC6FF 61.93%, #5454DF 94.92%);
    filter: blur(6px);
    z-index: 0;
    border-radius: inherit;
  }

  .generate-mobile-prompt::after {
    position: absolute;
    content: '';
    inset: 0;
    z-index: 1;
    background-color: #fff;
    border-radius: inherit;
  }

  .generate-mobile-prompt span {
    position: relative;
    z-index: 2;
  }

  .generate-mobile-progress {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
  }
}

@media (max-width: 500px) {
  .prompt {
    height: 40px;
    transform: translate(-50%, calc(-50% - 40px));
  }
}

/* generate */

/* create-ways */
.create-ways .container {
  max-width: 1400px;
}

.ways-top {
  --center-x: 0;
  margin: 60px auto 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.ways-top li {
  padding: 8px 18px;
  margin: 0 5px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  outline: 1px solid #00000033;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.ways-top li::before {
  position: absolute;
  content: '';
  inset: 0;
  background: linear-gradient(278.44deg, #1BECC2 -2.8%, #5454DF 95.65%);
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.ways-top li.active {
  outline-color: #00000000;
  color: #fff;
}

.ways-top li.active::before {
  opacity: 1;
}

.ways-bottom .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

.ways-bottom .swiper-slide .slide-left {
  max-width: 521px;
  width: calc(46% - 20px);
  height: fit-content;
}

.ways-bottom .slide-desc {
  font-size: 18px;
  opacity: 0.6;
  line-height: 1.4;
  margin-top: 40px;
}

.ways-bottom .prompt-list{
  margin-top: 40px;
}

.ways-bottom .prompt-list li {
  display: none;
  background: #FFFFFF;
  border-radius: 12px;
  position: relative;
  padding: 10px;
}

.ways-bottom .prompt-list li::before {
  position: absolute;
  z-index: -1;
  content: '';
  inset: 0;
  background: linear-gradient(278.1deg, #1BECC2 -1.91%, #5DC6FF 61.93%, #5454DF 94.92%);
  filter: blur(8px);
  opacity: 0.5;
}

.ways-bottom .prompt-list li.active {
  display: block;
}

.ways-bottom .prompt-list .prompt-title {
  font-size: 14px;
  font-weight: 600;
}

.ways-bottom .prompt-list .prompt-text {
  margin-top: 10px;
  border: 1px solid #00000033;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  line-height: 19px;
  max-height: 160px;
  overflow-y: auto;
}

.ways-bottom .effect-btn-group {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}

.ways-bottom .effect-btn-group .effect-btn {
  margin: 10px 10px 0 0;
  border: 1px solid #00000033;
  padding: 6px 14px;
  height: 35px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.ways-bottom .effect-btn-group .effect-btn.active {
  background-color: #000000;
  border-color: #000000;
  color: #fff;
}

.ways-bottom .swiper-slide .slide-video-container,
.ways-bottom .swiper-slide .slide-img-container {
  max-width: 720px;
  width: 54%;
  border-radius: 10px;
  overflow: hidden;
}

.ways-bottom .swiper-slide .video-wrapper,
.ways-bottom .swiper-slide .img-wrapper {
  display: none;
}

.ways-bottom .swiper-slide .video-wrapper.active,
.ways-bottom .swiper-slide .img-wrapper.active {
  display: block;
}

.ways-bottom .swiper-pagination {
  margin-top: 30px;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  display: none;
}

.create-ways .bottom-more {
  margin-top: 40px;
}

.create-ways .bottom-more .product-btns-group {
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .ways-top {
    margin: 40px auto 20px;
  }

  .ways-bottom .slide-desc,
  .ways-bottom .prompt-list {
    margin-top: 30px;
  }

  .ways-bottom .effect-btn-group {
    margin-top: 10px;
  }

  .create-ways .bottom-more {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .ways-bottom .swiper-slide {
    flex-direction: column;
  }

  .ways-bottom .swiper-slide .slide-left {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }

  .ways-bottom .swiper-slide h3{
    text-align: center;
  }

  .ways-bottom .slide-desc {
    text-align: center;
    margin-top: 24px;
  }

  .ways-bottom .slide-desc,
  .ways-bottom .prompt-list {
    margin-top: 24px;
  }

  .ways-bottom .effect-btn-group {
    justify-content: center;
  }

  .ways-bottom .swiper-slide .slide-video-container,
  .ways-bottom .swiper-slide .slide-img-container {
    width: 100%;
    max-width: 600px;
  }

  .ways-bottom .swiper-pagination {
    display: flex;
  }

  .ways-top-wrap {
    overflow-y: auto;
    margin: 40px auto 20px;
  }

  .ways-top-wrap::-webkit-scrollbar {
    height: 0
  }

  .ways-top {
    width: fit-content;
    padding: 0 4px 3px;
    flex-wrap: nowrap;
    margin: 0;
    position: relative;
  }

  .ways-top.active::before {
    position: absolute;
    content: '';
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(278.44deg, #5454DF, #1BECC2);
    left: var(--center-x);
    bottom: 0;
    transition: left 0.3s ease;
  }

  .ways-top li {
    margin: 0;
    padding: 6px 0;
    border-radius: 0;
    font-weight: 600;
    white-space: nowrap;
    border: none;
    outline: none;
    font-weight: 600;
    color: #000000B3;
  }

  .ways-top li.active {
    color: #000000;
    outline-color: transparent;
  }

  .ways-top li + li {
    margin-left: 20px;
  }

  .ways-top li::before {
    display: none;
  }

  .ways-bottom .effect-btn-group .effect-btn {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
  }
}
/* create-ways */

/* multiple-models */
.multiple-models .container {
  position: relative;
  max-width: 1380px;
}

.multiple-models h2 {
  max-width: 820px;
  margin: 0 auto 230px;
}

.multiple-models .bg-line {
  position: absolute;
  top: -413px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.multiple-models .mod-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}

.multiple-models .mod-left {
  width: 50%;
  max-width: 660px;
}

.multiple-models .mod-left .mod-desc {
  font-size: 18px;
  opacity: 0.6;
  margin: 40px 0 55px;
}

.multiple-models .mod-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.multiple-models .mod-list li {
  font-size: 18px;
  margin-top: 10px;
  position: relative;
}

.multiple-models .mod-list li.line {
  width: 1px;
  height: 16px;
  background: #D9D9D9;
  margin-left: 10px;
  margin-right: 10px;
}

.multiple-models .mod-right {
  width: 48%;
  max-width: 455px;
  position: relative;
}

.multiple-models .mod-right::before {
  position: absolute;
  content: '';
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 695px;
  height: 552px;
  background: #34ddda33;
  filter: blur(318px);
}

@media (max-width: 1024px) {
  .multiple-models .bg-line {
    top: -430px;
    transform: translateX(-50%) scale(0.8);
  }

  .multiple-models h2 {
    margin-bottom: 180px;
  }

  .multiple-models .mod-left .mod-desc {
    margin: 30px 0;
  }
  .multiple-models .mod-content {
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .multiple-models .bg-line {
    display: none;
  }

  .multiple-models h2 {
    margin-bottom: 30px;
  }

  .multiple-models .mod-content {
    flex-direction: column;
  }

  .multiple-models .mod-left {
    width: 100%;
    text-align: center;
  }

  .multiple-models .mod-left .mod-desc {
    margin: 24px 0;
  }

  .multiple-models .mod-right {
    width: 100%;
    margin: 30px auto 0;
  }

  .multiple-models .mod-list {
    justify-content: center;
  }
}
/* multiple-models */

/* one-tool */
.one-tool {
  background: rgba(83, 203, 247, 0.1);
}

.one-tool .container {
  max-width: 1470px;
}

.one-tool .tool-swiper {
  position: relative;
  margin-top: 60px;
  border-radius: 30px;
  overflow: hidden;
}

.one-tool .tool-swiper .swiper-slide {
  border-radius: 30px;
  overflow: hidden;
}

.one-tool .tool-swiper-pagination {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 58px 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.one-tool .tool-swiper-pagination .swiper-pagination {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
}

.tool-swiper-pagination .swiper-pagination-bullet {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin: 0 0 0 8px;
  opacity: 1;
  border-radius: 30px;
}

.tool-swiper-pagination .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 1);
  color: #000000;
}

.tool-swiper-pagination .tool-list {
  position: relative;
  height: 65px;
}

.tool-swiper-pagination .tool-list li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: 48px;
  line-height: 65px;
  font-weight: 700;
  opacity: 0;
  z-index: 0;
  text-align: center;
  transition: opacity 0.3s ease;
}

.tool-swiper-pagination .tool-list li.active {
  opacity: 1;
  z-index: 1;
}

.one-tool .bottom-more {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .one-tool .tool-swiper {
    margin-top: 40px;
    border-radius: 20px;
  }

  .one-tool .tool-swiper .swiper-slide {
    border-radius: 20px;
  }

  .one-tool .tool-swiper-pagination {
    padding: 40px 0;
  }

  .tool-swiper-pagination .tool-list {
    height: 40px;
  }

  .tool-swiper-pagination .tool-list li {
    font-size: 30px;
    line-height: 1.25;
  }

  .tool-swiper-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .one-tool .bottom-more {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .one-tool .tool-swiper {
    margin-top: 30px;
    border-radius: 12px;
  }

  .one-tool .tool-swiper .swiper-slide {
    border-radius: 12px;
  }

  .one-tool .tool-swiper-pagination {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 24px 0;
  }

  .one-tool .tool-swiper-pagination .swiper-pagination {
    position: unset;
    top: unset;
    right: unset;
    transform: none;
  }

  .tool-swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin: 0 4px;
  }

  .tool-swiper-pagination .tool-list {
    width: 100%;
    height: 23px;
    margin-bottom: 16px;
  }

  .tool-swiper-pagination .tool-list li {
    font-size: 18px;
    line-height: 23px;
    border-radius: 6px;
  }
}
/* one-tool */

/* why-choose */
.why-choose {
  position: relative;
}

.why-choose::before {
  position: absolute;
  content: '';
  inset: 0;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #000000;
}

.why-choose .bg-line {
  position: absolute;
  top: -186px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.why-choose .container {
  position: relative;
  z-index: 1;
}

.why-choose .container::before {
  width: 695px;
  height: 552px;
  position: absolute;
  content: '';
  top: 90px;
  right: 50%;
  transform: translateX(-622px);
  background: #00ABF4;
  z-index: -1;
  filter: blur(318px);
  opacity: 0.2;
}

.why-choose .container::after {
  width: 695px;
  height: 552px;
  position: absolute;
  content: '';
  top: 297px;
  left: 50%;
  transform: translateX(622px);
  background: #00ABF4;
  z-index: -1;
  filter: blur(318px);
  opacity: 0.2;
}

.why-choose h2 {
  color: #fff;
}
.why-choose .choose-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.why-choose .choose-grid {
  max-width: 950px;
  display: grid;
  grid-template-columns: 1fr 28.3% 1fr;
  grid-template-rows: auto 60px auto;
  gap: 20px;
  grid-template-areas:
    "models using using"
    "models logo workflow"
    "cost cost workflow";
}

.why-choose .choose-grid .grid-item {
  position: relative;
  border-radius: 10px;
  min-height: 60px;
  padding: 30px;
  transition: all 0.3s ease;
}

.why-choose .choose-grid .grid-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 12px 8px rgba(255, 255, 255, 0.05);
}

.why-choose .choose-grid .grid-item.part-logo {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-choose .choose-grid .grid-item::before {
  position: absolute;
  content: '';
  inset: 0;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  z-index: -1;
  border: 1px solid #FFFFFF33;
}

.choose-grid .part-models {
  grid-area: models;
}

.choose-grid .part-using {
  grid-area: using;
}

.choose-grid .part-logo {
  grid-area: logo;
}

.choose-grid .part-workflow {
  grid-area: workflow;
}

.choose-grid .grid-item .part-title {
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: #fff;
}

.choose-grid .grid-item .part-desc {
  font-size: 14px;
  color: #fff;
  line-height: 19px;
}

.choose-grid .part-cost {
  grid-area: cost;
}

.choose-grid .part-logo img {
  width: 38px;
  margin-right: 8px;
}

.choose-grid .part-logo span {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.choose-grid .part-models .part-top {
  display: flex;
  align-items: flex-end;
}

.choose-grid .part-models .part-top picture,
.choose-grid .part-models .part-top img {
  height: 40px;
}

.choose-grid .part-models .part-top span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-left: 6px;
}

.choose-grid .part-cost .bar-box {
  display: flex;
  align-items: center;
  max-width: 540px;
}

.choose-grid .part-cost .bar-box .bar {
  height: 22px;
  border-radius: 4px;
  margin-right: 8px;
}

.choose-grid .part-cost .anycreate-bar .bar {
  width: 30%;
  max-width: 117px;
  background: linear-gradient(278.44deg, #1BECC2 -1.5%, #5DC6FF 39.35%, #5454DF 99.94%);
}

.choose-grid .part-cost .anycreate-bar .text {
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(278.44deg, #1BECC2 -1.5%, #5DC6FF 39.35%, #5454DF 99.94%);
  -webkit-background-clip: text;
  color: transparent;
}

.choose-grid .part-cost .mult-bar {
  margin: 10px 0 14px;
}

.choose-grid .part-cost .mult-bar .bar {
  flex-grow: 1;
  background: linear-gradient(-278.44deg, #4F4F4F 0%, #FFFFFF 100%);
}

.choose-grid .part-cost .mult-bar .text {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.choose-grid .part-cost .cost {
  border-top: 1px solid #4F4F4F;
  text-align: right;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.67;
}

.choose-grid .grid-item.part-cost .part-title {
  margin-top: 2px;
}

.choose-grid .part-using .part-top {
  display: flex;
  align-items: center;
}

.choose-grid .part-using .input-text {
  background-color: #fff;
  width: 312px;
  padding: 9px 18px;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  display: flex;
  align-items: center;
  margin-left: 14px;
  border-radius: 10px;
}

.choose-grid .part-using .input-text::after {
  display: inline-block;
  content: '';
  width: 1.5px;
  height: 18px;
  background-color: #D9D9D9;
  margin-left: 3px;
  animation: caret-blink 1s steps(1) infinite;
}

/* 闪烁 keyframes */
@keyframes caret-blink{
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@media (max-width: 1024px) {
  .why-choose .bg-line {
    top: -388px;
    transform: translateX(-50%) scale(0.8);
  }

  .why-choose .choose-content {
    margin-top: 40px;
  }

  .why-choose .choose-grid .grid-item {
    padding: 24px 20px;
  }
}

@media (max-width: 768px) {
  .why-choose .bg-line {
    display: none;
  }
  .why-choose .choose-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    grid-template-areas:
      "models"
      "using"
      "workflow"
      "cost";
  }

  .why-choose .choose-grid .grid-item.part-logo {
    display: none;
  }
}
/* why-choose */

/* user-creations */
.user-creations {
  background: #000;
}

.user-creations h2 {
  color: #fff;
}

.user-creations .container {
  max-width: 1470px;
}

.creations-wrap {
  margin-top: 60px;
}

.creations-wrap .creations-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.creations-scroll-box {
  width: 100%;
  overflow: hidden;
}

.creations-list {
  width: fit-content;
  display: flex;
  align-items: center;
  will-change: transform;
  animation-name: creations-scroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

.creations-list.reverse {
  animation-name: creations-reverse-scroll;
}

/* .creations-scroll-box:hover .creations-list,
.creations-scroll-box:focus-within .creations-list {
    animation-play-state: paused;
} */

.creations-list li {
  margin-right: 20px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  width: 273px;
  height: 365px;
}

.creations-list li .video-hover-wrapper {
  width: 100%;
  height: 100%;
}

.creations-list li video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes creations-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes creations-reverse-scroll {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

@media (max-width: 1024px) {
  .creations-wrap {
    margin-top: 40px;
  }

  .creations-wrap .creations-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .creations-list li {
    width: 137px;
    height: 183px;
    border-radius: 8px;
    margin-right: 16px;
  }
}
/* user-creations */

/* faqs */
.faqs {
  padding: 40px 0 60px;
  background: #000;
}

.faqs h2 {
  color: #fff;
}

.faqs-list {
  margin-top: 40px;
}

@property --faqs-colorA {
    syntax: "<color>";
    inherits: false;
    initial-value: #FFFFFF1A;
    }
@property --faqs-colorB {
    syntax: "<color>";
    inherits: false;
    initial-value: #FFFFFF1A;
}

@property --faqs-colorC {
    syntax: "<color>";
    inherits: false;
    initial-value: #FFFFFF1A;
}

.faqs-list .faqs-item {
  position: relative;
  margin-top: 20px;
  border-radius: 10px;
  padding: 0 24px 10px;
  background: linear-gradient(278.44deg, var(--faqs-colorA) -2.8%, var(--faqs-colorB) 49.26%, var(--faqs-colorC) 95.65%);
  transition: --faqs-colorA 0.3s ease,
              --faqs-colorB 0.3s ease,
              --faqs-colorC 0.3s ease;
}

.faqs-list .faqs-item.active {
  --faqs-colorA: #1BECC2;
  --faqs-colorB: #008DD9;
  --faqs-colorC: #5454DF;
}

.faqs-list .faqs-item .faqs-title {
  padding: 30px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.faqs-list .faqs-item .faqs-title .title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.faqs-list .faqs-item.active .faqs-title svg {
  transition: all linear .2s;
}

.faqs-list .faqs-item.active .faqs-title svg {
  transform: rotate(45deg);
}

.faqs-list .faqs-item .faqs-answer,
.faqs-list .faqs-item .faqs-answer * {
  color: #fff9;
}

.faqs-list .faqs-item .faqs-answer p {
  margin-bottom: 20px;
}

.faqs .bottom-more {
  margin-top: 40px;
  text-align: center;
}

.faqs .bottom-more a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.faqs .bottom-more a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faqs-list .faqs-item {
    padding: 0 16px 10px;
    border-radius: 6px;
  }

  .faqs-list .faqs-item .faqs-title {
    padding: 20px 0 16px;
  }

  .faqs-list .faqs-item .faqs-title .title {
    font-size: 16px;
  }

  .faqs-list .faqs-item .faqs-answer p {
    margin-bottom: 12px;
  }
}

/* faqs */

/* bottom-banner */
.bottom-banner {
  padding: 60px 0 80px;
  background: #000;
}

.bottom-banner .container {
  max-width: 1470px;
}

.bottom-banner-content {
  height: 600px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: url(https://images.anyrecover.com/anyrecoveren/assets/overview/ai_video_generator/bottom-banner-bg.jpg) no-repeat center center / cover;
  border-radius: 30px;
}

.bottom-banner .logo {
  width: 100px;
}

.bottom-banner h2 {
  color: #fff;
  margin: 20px auto 30px;
  max-width: 528px;
  font-size: 48px;
  line-height: 65px;
}

.bottom-banner .product-btns-group {
  display: flex;
}

@media (max-width: 1024px) {
  .bottom-banner-content {
    height: auto;
    padding: 80px 20px;
    border-radius: 20px;
  }

  .bottom-banner .logo {
    width: 80px;
  }

  .bottom-banner h2 {
    font-size: 36px;
    line-height: 1.25;
  }
}

@media (max-width: 768px) {
  .bottom-banner-content {
    padding: 60px 20px;
    border-radius: 12px;
  }

  .bottom-banner .logo {
    width: 60px;
  }

  .bottom-banner h2 {
    font-size: 28px;
    margin: 16px auto 20px;
  }
}

@media (max-width: 600px) {
  .bottom-banner .product-btns-group {
    flex-direction: column;
  }

  .bottom-banner .product-btns-group .product-btn + .product-btn {
    margin-top: 20px;
  }
}
/* bottom-banner */


/* 2025 christmas */
.bottom-banner-content .product-btns-group .product-btn.gradient-button{
    background: url(https://images.anyrecover.com/anyrecoveren/assets/christmas-2025/btn-small-bg.png);
    background-position: center;
    background-size: 250px 56px;
    border: none !important;
    color: #fff;
    position: relative;
    overflow: visible;
}

.bottom-banner-content .product-btns-group .product-btn.gradient-button::before{
    width: 74px;
    height: 54px;
    background-image: url(https://images.anyrecover.com/anyrecoveren/assets/christmas-2025/btn-decoration.png);
    background-position: center;
    background-size: contain;
    position: absolute;
    top: -46px;
    right: 10px;
    transform: none;
    transition: none;
    left: unset;
    background-color: unset;
    content: '';
    display: block;
}

.bottom-banner-content .product-btns-group .product-btn.gradient-button:hover{
    background: url(https://images.anyrecover.com/anyrecoveren/assets/christmas-2025/btn-small-hover-bg.png);
    background-size: 250px 56px;
    background-position: center;
}

.bottom-banner-content .product-btns-group .product-btn.gradient-button svg{
    display: none;
}

/* 2025 christmas */