html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
nav {
  position: fixed;
  top: -85px;
  z-index: 1000;
  width: 100%;
  height: 80px;
  background: #fff;
  transition: top 250ms;
  box-shadow: 0 0 10px 2px #eee;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  height: 100%;
}
nav .logo {
  width: 50px;
  height: 50px;
  background-image: url(../../img/home/logo-videohunter.svg);
}
nav .menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
}
nav .menu-item {
  font-weight: bold;
  color: #171717;
  transition: color 100ms;
}
nav .menu-item:hover {
  color: #3b7fff;
}
nav .win-box,
nav .mac-box,
nav .android-box {
  display: none;
  gap: 12px;
}
nav .win-box .download-btn,
nav .mac-box .download-btn,
nav .android-box .download-btn,
nav .win-box .buy-btn,
nav .mac-box .buy-btn,
nav .android-box .buy-btn {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  width: 200px;
  height: 56px;
  border-radius: 4px;
  background: #1b1b1b;
  color: #fff;
  transition: transform 250ms, background-color 250ms;
}
nav .win-box .download-btn_text,
nav .mac-box .download-btn_text,
nav .android-box .download-btn_text,
nav .win-box .buy-btn_text,
nav .mac-box .buy-btn_text,
nav .android-box .buy-btn_text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: bold;
}
nav .win-box .download-btn:hover,
nav .mac-box .download-btn:hover,
nav .android-box .download-btn:hover,
nav .win-box .buy-btn:hover,
nav .mac-box .buy-btn:hover,
nav .android-box .buy-btn:hover {
  transform: translateY(-10px);
  background-color: #000;
}
nav .win-box .buy-btn::before,
nav .mac-box .buy-btn::before,
nav .android-box .buy-btn::before {
  content: '\e6b8';
  font-family: iconfont;
  font-size: 24px;
}
nav .win-box.active,
nav .mac-box.active,
nav .android-box.active {
  display: flex;
}
nav .win-box .download-btn::before {
  content: '\e882';
  font-family: iconfont;
  font-size: 22px;
}
nav .mac-box .download-btn::before {
  content: '\e667';
  font-family: iconfont;
  font-size: 22px;
}
nav .android-box .download-btn::before {
  content: '\e669';
  font-family: iconfont;
  font-size: 22px;
}
nav.active {
  top: 0;
}
.banner {
  padding: 100px 0 0;
  background-image: url(../../img/home/banner-bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.banner-info {
  width: 504px;
}
.banner-title {
  font-weight: bold;
  font-size: 36px;
  color: #161616;
  margin: 14px 0 18px;
}
.banner .highlight {
  font-size: 42px;
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(90deg, #009dff -0.26%, #b561ff 50.24%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-list {
  line-height: 2;
  color: #434343;
  margin: 14px 0 22px;
  font-size: 16px;
}
.banner-desc {
  color: #434343;
  font-size: 16px;
  line-height: 180%;
  /* 28.8px */
}
.banner-tips {
  font-size: 14px;
  color: #8c8c8c;
  margin-top: 14px;
  line-height: 2.5;
}
.banner-tips strong {
  font-weight: bold;
}
.banner .switch-system {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.banner .switch-system .switch-btn_win,
.banner .switch-system .switch-btn_mac,
.banner .switch-system .switch-btn_android {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  border: 1px solid transparent;
  background-color: #b6d1ff;
  background-clip: content-box;
  padding: 4px;
  cursor: pointer;
  transition: border 200ms;
}
.banner .switch-system .switch-btn_win::before,
.banner .switch-system .switch-btn_mac::before,
.banner .switch-system .switch-btn_android::before {
  font-family: iconfont;
  font-size: 18px;
  color: #fff;
}
.banner .switch-system .switch-btn_win.active,
.banner .switch-system .switch-btn_mac.active,
.banner .switch-system .switch-btn_android.active {
  background-color: #3b7fff;
  border-color: #3b7fff;
}
.banner .switch-system .switch-btn_win::before {
  content: '\e882';
}
.banner .switch-system .switch-btn_mac::before {
  content: '\e667';
}
.banner .switch-system .switch-btn_android::before {
  content: '\e669';
}
.banner .win-box,
.banner .mac-box,
.banner .android-box {
  display: none;
  gap: 20px;
}
.banner .win-box .download-btn,
.banner .mac-box .download-btn,
.banner .android-box .download-btn,
.banner .win-box .buy-btn,
.banner .mac-box .buy-btn,
.banner .android-box .buy-btn {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  width: 250px;
  height: 64px;
  border-radius: 8px;
  background: #3b7fff;
  color: #fff;
  transition: transform 250ms, background-color 250ms;
}
.banner .win-box .download-btn_text,
.banner .mac-box .download-btn_text,
.banner .android-box .download-btn_text,
.banner .win-box .buy-btn_text,
.banner .mac-box .buy-btn_text,
.banner .android-box .buy-btn_text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.banner .win-box .download-btn_text .text-title,
.banner .mac-box .download-btn_text .text-title,
.banner .android-box .download-btn_text .text-title,
.banner .win-box .buy-btn_text .text-title,
.banner .mac-box .buy-btn_text .text-title,
.banner .android-box .buy-btn_text .text-title {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
}
.banner .win-box .download-btn_text .text-desc,
.banner .mac-box .download-btn_text .text-desc,
.banner .android-box .download-btn_text .text-desc,
.banner .win-box .buy-btn_text .text-desc,
.banner .mac-box .buy-btn_text .text-desc,
.banner .android-box .buy-btn_text .text-desc {
  font-style: normal;
  font-size: 12px;
}
.banner .win-box .download-btn:hover,
.banner .mac-box .download-btn:hover,
.banner .android-box .download-btn:hover,
.banner .win-box .buy-btn:hover,
.banner .mac-box .buy-btn:hover,
.banner .android-box .buy-btn:hover {
  transform: translateY(-10px);
  background-color: #0058fe;
}
.banner .win-box .buy-btn,
.banner .mac-box .buy-btn,
.banner .android-box .buy-btn {
  justify-content: center;
}
.banner .win-box .buy-btn::before,
.banner .mac-box .buy-btn::before,
.banner .android-box .buy-btn::before {
  content: '\e6b8';
  font-family: iconfont;
  font-size: 32px;
}
.banner .win-box.active,
.banner .mac-box.active,
.banner .android-box.active {
  display: flex;
}
.banner .win-box .download-btn {
  padding: 0 12px;
}
.banner .win-box .download-btn::before {
  content: '\e882';
  font-family: iconfont;
  font-size: 28px;
}
.banner .mac-box .download-btn {
  padding: 0 10px;
}
.banner .mac-box .download-btn::before {
  content: '\e667';
  font-family: iconfont;
  font-size: 32px;
}
.banner .android-box .download-btn {
  padding: 0 10px;
}
.banner .android-box .download-btn::before {
  content: '\e669';
  font-family: iconfont;
  font-size: 32px;
}
.banner-pic {
  position: relative;
  width: 600px;
  height: 610px;
}
.banner-pic img {
  position: absolute;
  left: 20px;
  max-width: 100%;
  height: auto;
  transform: rotate(2.5deg);
}
.wrap-title {
  font-weight: bold;
  font-size: 36px;
  line-height: 1.6;
  text-align: center;
  color: #161616;
  margin-bottom: 40px;
}
.wrap-download {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 55px;
}
.wrap-download .download-win,
.wrap-download .download-mac {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 200px;
  height: 56px;
  font-weight: bold;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  background: #3b7fff;
  transition: transform 250ms, background-color 250ms;
}
.wrap-download .download-win::before,
.wrap-download .download-mac::before {
  font-family: iconfont;
  font-weight: normal;
  font-size: 24px;
}
.wrap-download .download-win:hover,
.wrap-download .download-mac:hover {
  transform: translateY(-10px);
  background-color: #0058fe;
}
.wrap-download .download-win::before {
  content: '\e882';
}
.wrap-download .download-mac::before {
  content: '\e667';
}
.wrap-1 {
  padding: 140px 0;
  overflow: hidden;
}
.wrap-1 .wrap-title {
  width: 70%;
  margin: 0 auto 40px;
}
.wrap-1 .wrap-title .highlight {
  font-style: normal;
  background: linear-gradient(90deg, #2aadff 0.39%, #6b68ff 22.21%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wrap-1 .wrap-img .mobile {
  display: none;
}
.wrap-1 .wrap-img .pc {
  width: 100%;
}
.wrap-1 .wrap-text {
  max-width: 960px;
  width: 100%;
  color: #414141;
  text-align: center;
  font-size: 18px;
  line-height: 160%;
  /* 28.8px */
  margin: 0 auto;
}
.wrap-1 .wrap-text p {
  margin: 40px 0;
}
.wrap-3 {
  position: relative;
  padding: 258px 0 180px;
  overflow: hidden;
}
.wrap-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 286px;
  height: 420px;
  background-image: url(../../img/home/wrap3-before.svg);
  background-size: cover;
}
.wrap-3 .container {
  position: relative;
}
.wrap-3 .container::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -210px;
  z-index: -1;
  width: 418px;
  height: 420px;
  background-image: url(../../img/home/wrap3-after.svg);
  background-size: cover;
}
.wrap-3 .wrap-title {
  margin-bottom: 40px;
}
.wrap-3 .wrap-title .highlight {
  font-style: normal;
  color: #3b7fff;
}
.wrap-3 .wrap-download {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 54px;
}
.wrap-3 .wrap-download .download-win,
.wrap-3 .wrap-download .download-mac {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 200px;
  height: 56px;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
  background: #3b7fff;
  font-size: 16px;
  transition: transform 250ms, background-color 250ms;
}
.wrap-3 .wrap-download .download-win::before,
.wrap-3 .wrap-download .download-mac::before {
  font-family: iconfont;
  font-weight: normal;
  font-size: 24px;
}
.wrap-3 .wrap-download .download-win:hover,
.wrap-3 .wrap-download .download-mac:hover {
  transform: translateY(-10px);
  background-color: #0058fe;
}
.wrap-3 .wrap-download .download-win::before {
  content: '\e882';
}
.wrap-3 .wrap-download .download-mac::before {
  content: '\e667';
}
.wrap-3 .wrap-swiper {
  display: flex;
  justify-content: space-between;
}
.wrap-3 .swiper-controller {
  width: 490px;
  counter-reset: item-counter;
}
.wrap-3 .swiper-controller .controller-item {
  position: relative;
  display: flex;
  gap: 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #7e7e7e;
  padding-bottom: 56px;
  cursor: pointer;
}
.wrap-3 .swiper-controller .controller-item::before {
  content: counter(item-counter);
  counter-increment: item-counter;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  color: #3b7fff;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 7px 15px 0 rgba(0, 0, 0, 0.13);
  transition: color 250ms, background-color 250ms;
}
.wrap-3 .swiper-controller .controller-item::after {
  content: '';
  position: absolute;
  top: 45px;
  left: 20px;
  width: 1px;
  height: calc(100% - 50px);
  border-left: 1px dashed #ccc;
}
.wrap-3 .swiper-controller .controller-item.active {
  color: #3b7fff;
}
.wrap-3 .swiper-controller .controller-item.active::before {
  color: #fff;
  background-color: #3b7fff;
}
.wrap-3 .swiper-controller .controller-item:last-child::after {
  display: none;
}
.wrap-3 .swiper-container {
  position: relative;
  width: 520px;
  overflow: hidden;
  padding: 0 0 40px;
}
.wrap-3 .swiper-container .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrap-3 .swiper-container .swiper-slide img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  border: 1px solid #e1e1e1;
}
.wrap-3 .swiper-container .swiper-pagination-bullet {
  width: 20px;
  height: 5px;
  background: #d4eaff;
  opacity: 1;
  border-radius: 8px;
}
.wrap-3 .swiper-container .swiper-pagination-bullet-active {
  background: #3b7fff;
  opacity: 1;
}
.wrap-4 {
  overflow: auto;
  background-image: url(../../img/home/wrap4-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 46px 0 62px;
}
.wrap-4::-webkit-scrollbar {
  background-color: transparent;
}
.wrap-4 .container {
  width: 100%;
}
.wrap-4 .wrap-title {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.wrap-4 .user-swiper .slide-cover {
  border-radius: 50%;
  box-shadow: 0 20px 40px -6px rgba(0, 0, 0, 0.2);
}
.wrap-4 .media-swiper {
  margin-bottom: 68px;
}
.wrap-4 .media-swiper .slide-info {
  height: 60px;
  flex-direction: row;
  justify-content: space-between;
}
.wrap-4 .user-swiper {
  position: relative;
}
.wrap-4 .user-swiper .swiper-slide {
  position: relative;
}
.wrap-4 .user-swiper .swiper-slide::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50px;
  width: 88px;
  height: 62px;
  background-image: url(../../img/home/icon-quote.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.wrap-4 .user-swiper .slide-info {
  flex-direction: column;
  gap: 15px;
  margin-top: -50px;
}
.wrap-4 .swiper-wrapper {
  display: flex;
  justify-content: center;
  gap: 35px;
}
.wrap-4 .slide-info {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.wrap-4 .swiper-slide {
  width: 520px;
  height: 365px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 24px;
  padding: 20px 40px;
}
.wrap-4 .slide-name {
  color: #060606;
  font-size: 20px;
}
.wrap-4 .slide-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #898989;
  text-align: center;
}
.wrap-4 .swiper-pagination {
  display: none;
}
.wrap-5 {
  padding: 80px 0;
  counter-reset: counter;
}
.wrap-5 .content-item {
  counter-increment: counter;
  margin-bottom: 0;
  transition: margin 500ms;
}
.wrap-5 .content-item .item-header {
  position: relative;
  display: flex;
  gap: 10px;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  color: #282828;
  border-radius: 12px;
  background-color: #fafafa;
  padding: 20px;
  cursor: pointer;
  padding-right: 40px;
  transition: color 250ms, background-color 250ms;
}
.wrap-5 .content-item .item-header::after {
  content: '\e7eb';
  position: absolute;
  top: 24px;
  right: 20px;
  font-family: iconfont;
  font-size: 16px;
  color: #282828;
  transform: rotate(90deg);
  transition: color 250ms, transform 250ms;
}
.wrap-5 .content-item .item-content {
  height: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #434343;
  transition: height 500ms;
  padding: 0 20px;
  overflow: hidden;
  margin-top: 30px;
}
.wrap-5 .content-item .item-content strong {
  font-weight: 600;
}
.wrap-5 .content-item .item-content li {
  list-style: disc;
  margin-left: 20px;
}
.wrap-5 .content-item .item-content a {
  color: #6b9fff;
}
.wrap-5 .content-item .item-content a:hover {
  text-decoration: underline;
}
.wrap-5 .content-item:last-child {
  margin-bottom: 0;
}
.wrap-5 .content-item.active {
  margin-bottom: 30px;
}
.wrap-5 .content-item.active .item-header {
  color: #fff;
  background: #6b9fff;
}
.wrap-5 .content-item.active .item-header::after {
  color: #fff;
  transform: rotate(270deg);
}
.wrap-6 {
  background-color: #f3f7fb;
  padding: 80px 0;
}
.wrap-6 .wrap-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
.wrap-6 .wrap-title {
  margin-bottom: 0;
}
.wrap-6 .wrap-more {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  font-size: 18px;
  color: #1a1d1f;
}
.wrap-6 .wrap-more::after {
  content: '';
  width: 15px;
  height: 9px;
  background-image: url(../../img/netflix-video-downloader/icon-learn-more.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: transform 250ms;
}
.wrap-6 .wrap-more:hover::after {
  transform: translateX(10px);
}
.wrap-6 .wrap-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrap-6 .wrap-cover {
  margin: 0 20px;
}
.wrap-6 .wrap-list {
  width: 630px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wrap-6 .wrap-list .list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  line-height: 1.5;
  color: #282828;
  padding: 15px 25px 15px 65px;
  background-color: #fff;
  border-radius: 30px;
  transition: color 250ms;
}
.wrap-6 .wrap-list .list-item::after {
  content: '';
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #dbe3ff;
  background-image: url(../../img/netflix-video-downloader/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: background-color 250ms, transform 250ms;
}
.wrap-6 .wrap-list .list-item:hover {
  color: #3b7fff;
}
.wrap-6 .wrap-list .list-item:hover::after {
  background-color: #7794f7;
  transform: translateX(10px);
}
.wrap-7 {
  padding: 80px 0 100px;
  background-image: url(../../img/home/wrap7-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.wrap-7 .wrap-title {
  font-size: 40px;
  margin-bottom: 20px;
}
.wrap-7 .wrap-desc {
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
  color: #7e7e7e;
  margin-bottom: 35px;
  padding: 0 50px;
}
.wrap-7 .wrap-download {
  margin-bottom: 80px;
}
.wrap-7 .wrap-buy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 80px;
}
.wrap-7 .wrap-buy .buy-item {
  position: relative;
  width: 344px;
  height: 620px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid rgba(91, 173, 255, 0.66);
  background: #fff;
  padding: 25px;
}
.wrap-7 .wrap-buy .buy-item .item-tag {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.wrap-7 .wrap-buy .buy-item .item-title {
  display: flex;
  align-items: center;
  height: 32px;
  font-weight: bold;
  font-size: 20px;
  color: #282828;
  margin-bottom: 15px;
}
.wrap-7 .wrap-buy .buy-item .item-price {
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 15px;
  color: #282828;
}
.wrap-7 .wrap-buy .buy-item .item-info {
  line-height: 2;
  color: #7e7e7e;
  margin-bottom: 20px;
}
.wrap-7 .wrap-buy .buy-item .item-btn {
  width: 280px;
  height: 56px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #fff;
  background-color: #3b7fff;
  border-radius: 12px;
  transition: background-color 250ms, color 250ms, transform 250ms;
  margin-bottom: 35px;
}
.wrap-7 .wrap-buy .buy-item .item-btn:hover {
  background-color: #0058fe;
  transform: translateY(-10px);
}
.wrap-7 .wrap-buy .buy-item .item-intro li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #505050;
  padding-left: 30px;
}
.wrap-7 .wrap-buy .buy-item .item-intro li a {
  color: #505050;
}
.wrap-7 .wrap-buy .buy-item .item-intro li::before {
  position: absolute;
  content: '';
  top: 2px;
  left: 0;
  width: 18px;
  height: 19px;
  background-image: url(../../img/home/intro-before-1.svg);
  background-size: 100% 100%;
}
.wrap-7 .wrap-buy .buy-item .item-intro li:last-child {
  margin-bottom: 0;
}
.wrap-7 .wrap-buy .buy-item .item-platform-more {
  position: absolute;
  z-index: 100;
  display: flex;
  flex-flow: row wrap;
  width: 300px;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 8px;
  background: #fff;
  filter: drop-shadow(0px 1px 26px rgba(38, 65, 97, 0.3));
  visibility: hidden;
  opacity: 0;
  transition: opacity 250ms;
}
.wrap-7 .wrap-buy .buy-item .item-platform-more::before {
  content: '';
  position: absolute;
  top: -18px;
  width: 0;
  height: 0;
  box-sizing: border-box;
  border: 10px solid transparent;
  border-bottom-color: #fff;
}
.wrap-7 .wrap-buy .buy-item .item-platform-more .more-item {
  width: 30px;
  height: 30px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.wrap-7 .wrap-buy .buy-item .item-platform-more .more-item.item-1 {
  background-image: url(../../img/home/platform-more-item1.svg);
}
.wrap-7 .wrap-buy .buy-item .item-platform-more .more-item.item-2 {
  background-image: url(../../img/home/platform-more-item2.svg);
}
.wrap-7 .wrap-buy .buy-item .item-platform-more .more-item.item-3 {
  background-image: url(../../img/home/platform-more-item3.svg);
}
.wrap-7 .wrap-buy .buy-item .item-platform-more .more-item.item-4 {
  background-image: url(../../img/home/platform-more-item4.svg);
}
.wrap-7 .wrap-buy .buy-item .item-platform-more .more-item.item-5 {
  background-image: url(../../img/home/platform-more-item5.svg);
}
.wrap-7 .wrap-buy .buy-item .item-platform-more .more-item.item-6 {
  background-image: url(../../img/home/platform-more-item6.svg);
}
.wrap-7 .wrap-buy .buy-item .item-platform-more .more-item.item-7 {
  background-image: url(../../img/home/platform-more-item7.svg);
}
.wrap-7 .wrap-buy .buy-item .item-platform-more .more-item.item-8 {
  background-image: url(../../img/home/platform-more-item8.svg);
}
.wrap-7 .wrap-buy .buy-item .item-platform-more .more-item.item-9 {
  background-image: url(../../img/home/platform-more-item9.svg);
}
.wrap-7 .wrap-buy .buy-item .item-platform-more .more-item.item-10 {
  background-image: url(../../img/home/platform-more-item10.svg);
}
.wrap-7 .wrap-buy .buy-item .item-platform-more .more-item.item-11 {
  background-image: url(../../img/home/platform-more-item11.svg);
}
.wrap-7 .wrap-buy .buy-item .item-platform-more .more-item.item-12 {
  background-image: url(../../img/home/platform-more-item12.svg);
}
.wrap-7 .wrap-buy .buy-item .item-platform-more .more-item.item-13 {
  background-image: url(../../img/home/platform-more-item13.svg);
}
.wrap-7 .wrap-buy .buy-item .item-platform-more .more-item.item-14 {
  background-image: url(../../img/home/platform-more-item14.svg);
}
.wrap-7 .wrap-buy .buy-item .item-platform-more .more-item:hover {
  filter: drop-shadow(0px 1px 26px rgba(38, 65, 97, 0.3));
}
.wrap-7 .wrap-buy .buy-item .item-platform-more.active {
  visibility: visible;
  opacity: 1;
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform,
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform .platform-icon,
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform .platform-icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform .platform-icon.icon-youtube,
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform .platform-icon.icon-youtube {
  background-image: url(../../img/home/icon-five-youtube.png);
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform .platform-icon.icon-onlyfans,
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform .platform-icon.icon-onlyfans {
  background-image: url(../../img/home/icon-five-onlyfans.png);
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform .platform-icon.icon-pornhub,
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform .platform-icon.icon-pornhub {
  background-image: url(../../img/home/icon-five-pornhub.png);
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform .platform-icon.icon-facebook,
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform .platform-icon.icon-facebook {
  background-image: url(../../img/home/icon-five-facebook.png);
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform .platform-icon.icon-instagram,
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform .platform-icon.icon-instagram {
  background-image: url(../../img/home/icon-five-instagram.png);
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform .platform-icon.icon-tiktok,
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform .platform-icon.icon-tiktok {
  background-image: url(../../img/home/icon-five-tiktok.png);
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform .platform-icon.icon-more,
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform .platform-icon.icon-more {
  background-image: url(../../img/home/icon-five-more.png);
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform .platform-icon.icon-netflix,
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform .platform-icon.icon-netflix {
  background-image: url(../../img/home/icon-five-netflix.png);
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform .platform-icon.icon-amazon,
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform .platform-icon.icon-amazon {
  background-image: url(../../img/home/icon-five-amazon.png);
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform .platform-icon.icon-disney,
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform .platform-icon.icon-disney {
  background-image: url(../../img/home/icon-five-disney.png);
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform .platform-icon.icon-hbo,
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform .platform-icon.icon-hbo {
  background-image: url(../../img/home/icon-five-hbo.png);
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform .platform-icon.icon-hulu,
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform .platform-icon.icon-hulu {
  background-image: url(../../img/home/icon-five-hulu.png);
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform .platform-icon:hover,
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform .platform-icon:hover {
  filter: drop-shadow(0px 1px 26px rgba(38, 65, 97, 0.3));
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform-more {
  top: 105px;
  left: -5px;
}
.wrap-7 .wrap-buy .buy-item.five-in-one .item-platform-more::before {
  right: 40px;
}
.wrap-7 .wrap-buy .buy-item.all-in-one {
  height: 630px;
  border-radius: 12px;
  border: 1px solid #ff5900;
  box-shadow: 0 7px 0 0 #ff5900;
}
.wrap-7 .wrap-buy .buy-item.all-in-one .item-title {
  width: 115px;
  justify-content: center;
  color: #ff5900;
  border-radius: 50px;
  background: rgba(255, 89, 0, 0.1);
}
.wrap-7 .wrap-buy .buy-item.all-in-one .item-price {
  color: #ff5900;
}
.wrap-7 .wrap-buy .buy-item.all-in-one .item-btn {
  background-color: #ff5900;
}
.wrap-7 .wrap-buy .buy-item.all-in-one .item-btn:hover {
  background-color: #f30;
}
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform-more {
  top: 145px;
  left: -5px;
}
.wrap-7 .wrap-buy .buy-item.all-in-one .item-platform-more::before {
  left: 200px;
}
.wrap-7 .wrap-content {
  display: flex;
  justify-content: space-between;
  border-radius: 14px;
  background-color: #e7f3ff;
  padding: 40px 30px 20px;
}
.wrap-7 .wrap-content .content-item {
  width: 250px;
  position: relative;
}
.wrap-7 .wrap-content .content-item .item-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 14px;
  color: #3b7fff;
  margin-bottom: 10px;
}
.wrap-7 .wrap-content .content-item .item-title::before {
  content: '';
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
.wrap-7 .wrap-content .content-item .item-desc {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.5;
  color: #606060;
}
.wrap-7 .wrap-content .content-item .item-desc strong {
  font-weight: bold;
}
.wrap-7 .wrap-content .content-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 1px;
  height: 70px;
  background: rgba(59, 127, 255, 0.2);
}
.wrap-7 .wrap-content .content-item.supported-system {
  width: 200px;
}
.wrap-7 .wrap-content .content-item.supported-system .item-title::before {
  background-image: url(../../img/home/icon-supported-system.svg);
}
.wrap-7 .wrap-content .content-item.output-quality {
  width: 170px;
}
.wrap-7 .wrap-content .content-item.output-quality .item-title::before {
  background-image: url(../../img/home/icon-output-quality.svg);
}
.wrap-7 .wrap-content .content-item.output-formats {
  width: 265px;
}
.wrap-7 .wrap-content .content-item.output-formats .item-title::before {
  background-image: url(../../img/home/icon-output-formats.svg);
}
.wrap-7 .wrap-content .content-item.language .item-title::before {
  background-image: url(../../img/home/icon-language.svg);
}
.wrap-7 .wrap-content .content-item.language::after {
  display: none;
}
.wrap-apk-win,
.wrap-apk-mac,
.wrap-apk-android {
  position: fixed;
  left: 50%;
  bottom: 50px;
  z-index: 99;
  transform: translateX(-50%) scale(1.5);
  width: 250px;
  height: 46px;
  border-radius: 50px;
  background: linear-gradient(90deg, #9cbeff 0%, #6097ff 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 250ms;
}
.wrap-apk-win:hover,
.wrap-apk-mac:hover,
.wrap-apk-android:hover {
  transform: translateX(-50%) scale(1.6);
}
.wrap-apk-win::before,
.wrap-apk-mac::before,
.wrap-apk-android::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -15px;
  width: 23px;
  height: 16px;
  background-image: url(../../img/home/icon-apk-tag.svg);
}
.wrap-apk-win::after,
.wrap-apk-mac::after,
.wrap-apk-android::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 15px;
  width: 66px;
  height: 20px;
  background-image: url(../../img/home/icon-apk-bg.svg);
}
.wrap-apk-win .apk-inner,
.wrap-apk-mac .apk-inner,
.wrap-apk-android .apk-inner {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  border-radius: 50px;
  padding: 5px;
}
.wrap-apk-win .apk-inner::before,
.wrap-apk-mac .apk-inner::before,
.wrap-apk-android .apk-inner::before {
  content: '';
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-image: url(../../img/home/icon-apk-videohunter.svg);
}
.wrap-apk-win .apk-inner::after,
.wrap-apk-mac .apk-inner::after,
.wrap-apk-android .apk-inner::after {
  content: '';
  width: 31px;
  height: 33px;
  background-image: url(../../img/home/icon-apk-download.svg);
  transform: translate(-5px, 5px);
}
.wrap-apk-win .apk-info,
.wrap-apk-mac .apk-info,
.wrap-apk-android .apk-info {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wrap-apk-win .apk-title,
.wrap-apk-mac .apk-title,
.wrap-apk-android .apk-title {
  font-size: 12px;
  color: #fff;
}
.wrap-apk-win .apk-subtitle,
.wrap-apk-mac .apk-subtitle,
.wrap-apk-android .apk-subtitle {
  font-weight: bold;
  font-size: 12px;
  color: #fff;
}
.wrap-apk-win.show,
.wrap-apk-mac.show,
.wrap-apk-android.show {
  display: block;
}
.wrap-apk-win.active,
.wrap-apk-mac.active,
.wrap-apk-android.active {
  opacity: 1;
  visibility: visible;
}
.wrap-apk-win.unset-position,
.wrap-apk-mac.unset-position,
.wrap-apk-android.unset-position {
  position: sticky !important;
  margin: 0 auto !important;
}
footer {
  margin-top: 50px;
}
.article_left .wrap-img img {
  transform: rotate(-2deg);
  margin-top: 26px;
}
.article_right .wrap-img img {
  transform: rotate(2deg);
  margin-top: 26px;
}
.article .container {
  display: flex;
}
.article .wrap-img {
  flex: 1;
}
.article .wrap-cont {
  width: 522px;
}
.article .wrap-tit {
  color: #282828;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  /* 33.6px */
  margin-bottom: 24px;
}
.article .wrap-desc {
  color: #515151;
  font-size: 16px;
  line-height: 180%;
}
.article .wrap-desc li {
  list-style: disc;
  margin-left: 20px;
}
.article .wrap-desc strong {
  font-weight: 600;
}
.wrap-line .container {
  text-align: center;
  margin: 50px auto;
}
.wrap-2 {
  margin: 160px 0 0;
}
.wrap-2 .high-swiper {
  position: relative;
  overflow: hidden;
}
.wrap-2 .high-swiper .swiper-pagination-bullet {
  background: #dcebff;
  opacity: 1;
  width: 24px;
  height: 4px;
  border-radius: 18px;
}
.wrap-2 .high-swiper .swiper-pagination-bullet-active {
  background: #3b7fff;
}
.wrap-2 .swiper-wrapper {
  column-gap: 24px;
}
.wrap-2 .swiper-wrapper .swiper-slide {
  width: calc((100% - 24px * 2) / 3);
  height: auto;
}
.wrap-2 .swiper-wrapper .swiper-slide.slide1 {
  border-radius: 16px;
  border: 2px solid #65b5ff;
  background: #65b5ff;
}
.wrap-2 .swiper-wrapper .swiper-slide.slide2 {
  border-radius: 16px;
  border: 2px solid #ffb05c;
  background: #ffb05c;
}
.wrap-2 .swiper-wrapper .swiper-slide.slide3 {
  border-radius: 16px;
  border: 2px solid #7265ff;
  background: #7265ff;
}
.wrap-2 .swiper-wrapper .slide-cont {
  background: #fff;
  margin-top: 16px;
  border-radius: 16px;
  text-align: center;
  padding: 22px;
  height: calc(100% - 16px);
}
.wrap-2 .swiper-wrapper .slide-cont .slide-tit {
  color: #1c1717;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
  margin: 12px 0 8px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrap-2 .swiper-wrapper .slide-cont .slide-desc {
  color: #1c1717;
  text-align: center;
  font-size: 16px;
  line-height: 2.1;
}
.wrap-2 .swiper-wrapper .slide-cont img {
  width: 56px;
}
main {
  position: relative;
}
.circle {
  position: absolute;
  z-index: -1;
}
.circle_1 {
  top: 1820px;
  left: 0;
}
.circle_2 {
  top: 3600px;
  left: 0;
}
.circle_3 {
  top: 3880px;
  right: 0;
}
.circle_3 img {
  transform: rotate(180deg);
}
@media (max-width: 1680px) {
  .wrap-4 {
    overflow: hidden;
    padding-bottom: 100px;
  }
  .wrap-4 .swiper-wrapper {
    justify-content: start;
    gap: 0;
  }
  .wrap-4 .user-swiper {
    padding-bottom: 100px;
  }
  .wrap-4 .swiper-slide {
    height: auto;
    padding: 20px 30px;
    transition: 300ms;
    transform: scale(0.8);
  }
  .wrap-4 .swiper-slide-active,
  .wrap-4 .swiper-slide-duplicate-active {
    transform: scale(1);
  }
  .wrap-4 .swiper-pagination {
    display: block;
    bottom: 40px !important;
  }
  .wrap-4 .swiper-pagination-bullet {
    width: 20px;
    height: 5px;
    background: #214fb1;
    opacity: 1;
    border-radius: 8px;
  }
  .wrap-4 .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
  }
}
@media (max-width: 1200px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
  .wrap-7 .wrap-buy .buy-item {
    width: 300px;
    padding: 16px;
  }
  .wrap-7 .wrap-buy .buy-item .item-btn {
    width: 268px;
  }
  .wrap-7 .wrap-content {
    padding: 40px 10px 20px;
  }
}
@media (max-width: 996px) {
  .banner .container {
    flex-direction: column;
  }
  .banner-info {
    width: 100%;
  }
  .banner-pic {
    width: 100%;
  }
  .banner-pic img {
    transform: rotate(0);
  }
  .circle {
    opacity: 0;
  }
  .wrap-1 {
    padding: 60px 0 0;
  }
  .wrap-1 .wrap-title {
    width: 100%;
  }
  .wrap-1 .wrap-text {
    padding: 0 15px;
  }
  .wrap-5 .content-item .item-header::before {
    width: 42px;
  }
  .wrap-6 .wrap-content {
    flex-direction: column-reverse;
  }
  .wrap-6 .wrap-list {
    width: 100%;
    padding: 0 10px;
  }
  .wrap-6 .wrap-list .list-item {
    padding: 8px 18px 8px 30px;
    font-size: 14px;
  }
  .wrap-6 .wrap-cover {
    margin-top: 40px;
  }
  .article {
    margin-top: 60px;
  }
  .article .container {
    flex-direction: column-reverse;
  }
  .article .wrap-cont {
    width: 100%;
  }
  .article .wrap-img {
    text-align: center;
  }
  .article .wrap-img img {
    transform: rotate(0);
  }
  .article_right .container {
    flex-direction: column;
  }
  .wrap-line {
    display: none;
  }
}
@media (max-width: 768px) {
  .banner {
    padding: 50px 0;
    background-image: url(../../img/home/banner-bg-mb.svg);
  }
  .banner .container {
    flex-direction: column;
    gap: 20px;
  }
  .banner-info {
    width: 100%;
  }
  .banner-title {
    font-size: 30px;
    margin: 4px 0 18px;
  }
  .banner-list {
    margin-bottom: 24px;
  }
  .banner-tips {
    display: none;
  }
  .banner .switch-system {
    justify-content: center;
    gap: 10px;
    margin-bottom: 26px;
  }
  .banner .switch-system .switch-btn_win,
  .banner .switch-system .switch-btn_mac,
  .banner .switch-system .switch-btn_android {
    width: 45rem;
    height: 45rem;
    border-radius: 20rem;
    border-width: 1rem;
    padding: 2rem;
  }
  .banner .switch-system .switch-btn_win::before,
  .banner .switch-system .switch-btn_mac::before,
  .banner .switch-system .switch-btn_android::before {
    font-size: 20rem;
  }
  .banner .win-box,
  .banner .mac-box,
  .banner .android-box {
    display: none;
    width: 100%;
    justify-content: center;
    gap: 15rem;
  }
  .banner .win-box .download-btn,
  .banner .mac-box .download-btn,
  .banner .android-box .download-btn,
  .banner .win-box .buy-btn,
  .banner .mac-box .buy-btn,
  .banner .android-box .buy-btn {
    gap: 10rem;
    width: 165rem;
    height: 48rem;
    border-radius: 8rem;
  }
  .banner .win-box .download-btn_text,
  .banner .mac-box .download-btn_text,
  .banner .android-box .download-btn_text,
  .banner .win-box .buy-btn_text,
  .banner .mac-box .buy-btn_text,
  .banner .android-box .buy-btn_text {
    gap: 5rem;
  }
  .banner .win-box .download-btn_text .text-title,
  .banner .mac-box .download-btn_text .text-title,
  .banner .android-box .download-btn_text .text-title,
  .banner .win-box .buy-btn_text .text-title,
  .banner .mac-box .buy-btn_text .text-title,
  .banner .android-box .buy-btn_text .text-title {
    font-size: 14rem;
  }
  .banner .win-box .download-btn_text .text-desc,
  .banner .mac-box .download-btn_text .text-desc,
  .banner .android-box .download-btn_text .text-desc,
  .banner .win-box .buy-btn_text .text-desc,
  .banner .mac-box .buy-btn_text .text-desc,
  .banner .android-box .buy-btn_text .text-desc {
    font-size: 8rem;
  }
  .banner .win-box .download-btn:hover,
  .banner .mac-box .download-btn:hover,
  .banner .android-box .download-btn:hover,
  .banner .win-box .buy-btn:hover,
  .banner .mac-box .buy-btn:hover,
  .banner .android-box .buy-btn:hover {
    transform: translateY(-10rem);
  }
  .banner .win-box .buy-btn,
  .banner .mac-box .buy-btn,
  .banner .android-box .buy-btn {
    width: fit-content;
    padding: 0 20rem;
  }
  .banner .win-box .buy-btn::before,
  .banner .mac-box .buy-btn::before,
  .banner .android-box .buy-btn::before {
    font-size: 24rem;
  }
  .banner .win-box .download-btn {
    padding: 0 10rem;
  }
  .banner .win-box .download-btn::before {
    font-size: 22rem;
  }
  .banner .mac-box .download-btn {
    padding: 0 10rem;
  }
  .banner .mac-box .download-btn::before {
    font-size: 22rem;
  }
  .banner .android-box .download-btn {
    padding: 0 10rem;
  }
  .banner .android-box .download-btn::before {
    font-size: 22rem;
  }
  .banner-pic {
    width: 100%;
    height: auto;
  }
  .banner-pic img {
    position: relative;
    left: 0;
  }
  .banner-pic::before {
    display: none;
  }
  .article .wrap-img img {
    width: 100%;
  }
  .wrap-title {
    font-size: 28rem;
    margin-bottom: 40rem;
  }
  .wrap-2 {
    margin: 70px 0;
  }
  .wrap-2 .wrap-title {
    text-align: left;
  }
  .wrap-2 .high-swiper {
    padding-bottom: 40px;
  }
  .wrap-2 .swiper-wrapper {
    column-gap: 0;
  }
  .wrap-2 .swiper-wrapper .swiper-slide {
    width: 100%;
  }
  .wrap-download {
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 55rem;
  }
  .wrap-download .download-win,
  .wrap-download .download-mac {
    gap: 10rem;
    width: 160rem;
    height: 45rem;
    font-size: 12rem;
    border-radius: 5rem;
  }
  .wrap-download .download-win::before,
  .wrap-download .download-mac::before {
    font-size: 22rem;
  }
  .wrap-download .download-win:hover,
  .wrap-download .download-mac:hover {
    transform: translateY(-10rem);
  }
  .wrap-1 {
    padding: 0;
  }
  .wrap-1 .wrap-title {
    margin-bottom: 20rem;
    text-align: left;
  }
  .wrap-1 .wrap-download {
    margin-bottom: 30rem;
  }
  .wrap-1 .wrap-img .mobile {
    display: block;
    margin: 0 auto;
  }
  .wrap-1 .wrap-img .pc {
    display: none;
  }
  .wrap-1 .wrap-text {
    font-size: 16px;
    text-align: justify;
  }
  nav {
    display: none;
  }
  .wrap-3 {
    padding: 0 0 50px;
  }
  .wrap-3::before {
    display: none;
  }
  .wrap-3 .container {
    position: relative;
  }
  .wrap-3 .container::after {
    display: none;
  }
  .wrap-3 .wrap-title {
    margin-bottom: 40rem;
  }
  .wrap-3 .wrap-swiper {
    flex-direction: column;
    gap: 35rem;
  }
  .wrap-3 .wrap-download .download-mac {
    font-size: 14px;
  }
  .wrap-3 .wrap-download .download-win {
    font-size: 14px;
  }
  .wrap-3 .swiper-controller {
    width: 100%;
  }
  .wrap-3 .swiper-controller .controller-item {
    gap: 20rem;
    font-size: 16rem;
    padding-bottom: 20rem;
  }
  .wrap-3 .swiper-controller .controller-item::before {
    width: 30rem;
    height: 30rem;
    font-size: 18rem;
    box-shadow: 0 7rem 15rem 0 rgba(0, 0, 0, 0.13);
  }
  .wrap-3 .swiper-controller .controller-item::after {
    top: 35rem;
    left: 15rem;
    width: 1rem;
    height: calc(100% - 40rem);
    border-left-width: 1rem;
  }
  .wrap-3 .swiper-container {
    width: 100%;
    padding: 0 0 50rem;
  }
  .wrap-3 .swiper-container .swiper-slide img {
    border-radius: 5rem;
    border-width: 1rem;
  }
  .wrap-3 .swiper-container .swiper-pagination-bullet {
    width: 20rem;
    height: 5rem;
    border-radius: 8rem;
  }
  .wrap-4 {
    background: #527ad0;
    padding: 40rem 0;
  }
  .wrap-4 .media-swiper {
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  .wrap-4 .media-swiper .slide-info {
    height: 60rem;
  }
  .wrap-4 .media-swiper .cover-1 {
    width: 122rem;
    height: 29rem;
  }
  .wrap-4 .media-swiper .cover-2 {
    width: 175rem;
    height: 60rem;
  }
  .wrap-4 .media-swiper .cover-3 {
    width: 146rem;
    height: 38rem;
  }
  .wrap-4 .user-swiper {
    padding: 50rem 0;
  }
  .wrap-4 .user-swiper .swiper-slide::before {
    top: 30rem;
    left: 30rem;
    width: 65rem;
    height: 50rem;
  }
  .wrap-4 .user-swiper .slide-info {
    gap: 15rem;
    margin-top: -50rem;
  }
  .wrap-4 .user-swiper .slide-cover {
    width: 60rem;
    height: 60rem;
  }
  .wrap-4 .swiper-container {
    overflow: hidden;
  }
  .wrap-4 .swiper-wrapper {
    justify-content: flex-start;
    gap: 0;
  }
  .wrap-4 .swiper-slide {
    width: 100%;
    height: 365rem;
    border-radius: 24rem;
    padding: 20rem;
  }
  .wrap-4 .slide-info {
    margin-bottom: 15rem;
  }
  .wrap-4 .slide-ranking {
    width: 102rem;
    height: 22rem;
  }
  .wrap-4 .slide-name {
    font-size: 14rem;
    margin-bottom: 24rem;
  }
  .wrap-4 .slide-title {
    font-size: 18rem;
    margin-bottom: 24rem;
  }
  .wrap-4 .slide-desc {
    font-size: 16rem;
  }
  .wrap-4 .swiper-slide {
    transform: scale(1);
  }
  .wrap-4 .swiper-pagination {
    display: block;
    bottom: 0 !important;
  }
  .wrap-4 .swiper-pagination-bullet {
    width: 20rem;
    height: 5rem;
    background: #214fb1;
    opacity: 1;
    border-radius: 8rem;
  }
  .wrap-4 .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
  }
  .wrap-5 {
    padding: 80px 0;
  }
  .wrap-5 .content-item .item-header {
    font-size: 16px;
    padding: 15px;
    padding-right: 50px;
  }
  .wrap-5 .content-item .item-header::before {
    display: inline-block;
  }
  .wrap-5 .content-item .item-header::after {
    top: 18px;
    right: 24px;
    font-size: 12px;
  }
  .wrap-5 .content-item .item-content {
    padding: 0 10rem;
    margin-top: 20rem;
  }
  .wrap-5 .content-item.active {
    margin-bottom: 20rem;
  }
  .wrap-6 {
    padding: 40rem 0;
  }
  .wrap-6 .wrap-header {
    flex-direction: column;
    margin-bottom: 40rem;
  }
  .wrap-6 .wrap-title {
    margin-bottom: 20rem;
  }
  .wrap-6 .wrap-more {
    gap: 12rem;
    font-size: 16rem;
  }
  .wrap-6 .wrap-more::after {
    width: 15rem;
    height: 9rem;
  }
  .wrap-6 .wrap-more:hover::after {
    transform: translateX(10rem);
  }
  .wrap-6 .wrap-content {
    flex-direction: column-reverse;
    gap: 40rem;
  }
  .wrap-6 .wrap-cover {
    margin: 0;
    max-width: 100%;
    height: auto;
  }
  .wrap-6 .wrap-list {
    width: 100%;
    gap: 10rem;
  }
  .wrap-6 .wrap-list .list-item {
    align-items: center;
    gap: 20rem;
    font-size: 14rem;
    padding: 8rem 18rem 8rem 30rem;
    border-radius: 30rem;
  }
  .wrap-6 .wrap-list .list-item::after {
    flex-shrink: 0;
    width: 25rem;
    height: 25rem;
  }
  .wrap-6 .wrap-list .list-item:hover::after {
    transform: translateX(10rem);
  }
  .wrap-7 {
    padding: 40rem 0;
    background-image: unset;
  }
  .wrap-7 .wrap-title {
    font-size: 28rem;
    margin-bottom: 20rem;
    padding: 0;
  }
  .wrap-7 .wrap-desc {
    font-size: 18rem;
    margin-bottom: 35rem;
    padding: 0;
  }
  .wrap-7 .wrap-download {
    margin-bottom: 40rem;
  }
  .wrap-7 .wrap-buy {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 30px;
    margin-bottom: 80rem;
  }
  .wrap-7 .wrap-buy .buy-item {
    width: 100%;
    height: auto;
    border-radius: 12rem;
    border-width: 1rem;
    padding: 25rem;
  }
  .wrap-7 .wrap-buy .buy-item .item-title {
    font-size: 20rem;
    margin-bottom: 15rem;
  }
  .wrap-7 .wrap-buy .buy-item .item-price {
    font-size: 40rem;
    margin-bottom: 15rem;
  }
  .wrap-7 .wrap-buy .buy-item .item-info {
    margin-bottom: 20rem;
  }
  .wrap-7 .wrap-buy .buy-item .item-btn {
    width: 280rem;
    height: 56rem;
    border-radius: 12rem;
    margin-bottom: 35rem;
  }
  .wrap-7 .wrap-buy .buy-item .item-btn:hover {
    transform: translateY(-10rem);
  }
  .wrap-7 .wrap-buy .buy-item .item-intro li {
    gap: 12rem;
    margin-bottom: 15rem;
    padding-left: 30rem;
  }
  .wrap-7 .wrap-buy .buy-item .item-intro li::before {
    top: 2rem;
    width: 18rem;
    height: 19rem;
  }
  .wrap-7 .wrap-buy .buy-item .item-platform-more {
    width: 300rem;
    gap: 10rem;
    padding: 12rem 15rem;
    border-radius: 8rem;
    filter: drop-shadow(0 1rem 26rem rgba(38, 65, 97, 0.3));
  }
  .wrap-7 .wrap-buy .buy-item .item-platform-more::before {
    top: -18rem;
    border-width: 10rem;
  }
  .wrap-7 .wrap-buy .buy-item .item-platform-more .more-item {
    width: 30rem;
    height: 30rem;
  }
  .wrap-7 .wrap-buy .buy-item .item-platform-more .more-item:hover {
    filter: drop-shadow(0 1rem 26rem rgba(38, 65, 97, 0.3));
  }
  .wrap-7 .wrap-buy .buy-item.five-in-one .item-platform,
  .wrap-7 .wrap-buy .buy-item.all-in-one .item-platform {
    gap: 10rem;
    margin-bottom: 10rem;
  }
  .wrap-7 .wrap-buy .buy-item.five-in-one .item-platform .platform-icon,
  .wrap-7 .wrap-buy .buy-item.all-in-one .item-platform .platform-icon {
    width: 30rem;
    height: 30rem;
  }
  .wrap-7 .wrap-buy .buy-item.five-in-one .item-platform .platform-icon:hover,
  .wrap-7 .wrap-buy .buy-item.all-in-one .item-platform .platform-icon:hover {
    filter: drop-shadow(0 1rem 26rem rgba(38, 65, 97, 0.3));
  }
  .wrap-7 .wrap-buy .buy-item.five-in-one .item-platform-more {
    top: 105rem;
    left: -5rem;
  }
  .wrap-7 .wrap-buy .buy-item.five-in-one .item-platform-more::before {
    right: 40rem;
  }
  .wrap-7 .wrap-buy .buy-item.all-in-one {
    height: auto;
    border-radius: 12rem;
    border-width: 1rem;
  }
  .wrap-7 .wrap-buy .buy-item.all-in-one .item-platform-more {
    top: 145rem;
    left: -5rem;
  }
  .wrap-7 .wrap-buy .buy-item.all-in-one .item-platform-more::before {
    left: 200rem;
  }
  .wrap-7 .wrap-content {
    width: 300rem;
    flex-direction: column;
    border-radius: 14rem;
    padding: 20rem 25rem;
    margin: 0 auto;
  }
  .wrap-7 .wrap-content .content-item {
    width: 100%;
    padding-bottom: 15rem;
    margin-bottom: 15rem;
  }
  .wrap-7 .wrap-content .content-item .item-title {
    gap: 12rem;
    font-size: 14rem;
    margin-bottom: 10rem;
  }
  .wrap-7 .wrap-content .content-item .item-title::before {
    width: 24rem;
    height: 24rem;
  }
  .wrap-7 .wrap-content .content-item .item-desc {
    font-size: 14rem;
  }
  .wrap-7 .wrap-content .content-item::after {
    top: unset;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2rem;
    transform: scaleY(0.5);
  }
  .wrap-7 .wrap-content .content-item.supported-system,
  .wrap-7 .wrap-content .content-item.output-quality,
  .wrap-7 .wrap-content .content-item.output-formats {
    width: 100%;
  }
  .wrap-7 .wrap-content .content-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .wrap-apk-win,
  .wrap-apk-mac,
  .wrap-apk-android {
    display: none !important;
  }
  footer {
    margin-top: 0;
  }
}
