@import url(./normalize.css);
@import url(./reset.css);
@import url(./iconfont.css);
@import url(../activity/css/activity.css);

@font-face {
  font-family: 'Rubik';
  src: url('../font/Rubik-ExtraBold.ttf');
  font-weight: 900;
}
@font-face {
  font-family: 'Noto sans';
  src: url(../font/noto-tc.ttf);
}
@font-face {
  font-family: 'Rubik';
  src: url('../font/Rubik-SemiBold.ttf');
  font-weight: 700;
}

@font-face {
  font-family: 'Rubik';
  src: url('../font/Rubik-Regular.ttf');
  font-weight: 400;
}

@font-face {
  font-family: 'Rubik';
  src: url('../font/Rubik-Light.ttf');
  font-weight: 300;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', 'Noto sans';
  font-weight: normal;
  font-size: 16px;
  color: #000;
}

.container {
  width: 1080px;
  margin: 0 auto;
}

.flex-c {
  display: flex;
  align-items: center;
}
.flex-c-c {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-sb-s {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.flex-c-s {
  display: flex;
  justify-content: center;
  align-items: start;
}

.flex-sb-c {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-fs-c {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.flex-s-c {
  display: flex;
  justify-content: start;
  align-items: center;
}

.to-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 60px;
  height: 60px;
  background-image: url(../img/to-top.svg);
  background-size: 100% 100%;
  transition: all 200ms;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}

.to-top:hover {
  transform: scale(1.05);
}

.to-top.active {
  visibility: visible;
  opacity: 1;
}

.videohunter-promotion {
  display: none;
}

@media (max-width: 768px) {
  html {
    font-size: 0.2666667vw;
  }

  body,
  .iconfont {
    font-size: 16rem;
  }

  .container {
    width: 100%;
    padding: 0 15rem;
  }

  .to-top {
    display: none;
  }

  .videohunter-promotion {
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 99;
    width: 100%;
    height: 90rem;
    background-image: url(../img/videohunter-android/promotion-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .videohunter-promotion .promotion-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    padding-right: 60rem;
  }

  .videohunter-promotion .promotion-title {
    display: flex;
    align-items: center;
    gap: 10rem;
    font-size: 14rem;
  }

  .videohunter-promotion .promotion-btn {
    display: flex;
    align-items: center;
    gap: 5rem;
    border-radius: 30rem;
    background: #3b7fff;
    box-shadow: 0 2rem 3rem 0 rgba(0, 46, 136, 0.25),
      0 -1rem 4rem 0 rgba(0, 0, 0, 0.25) inset;
    padding: 6rem 20rem;
    font-weight: 900;
    font-size: 12rem;
    color: #fff;
  }

  .videohunter-promotion .promotion-btn .iconfont {
    font-weight: normal;
    font-size: 20rem;
  }

  .videohunter-promotion .promotion-tag {
    position: absolute;
    top: 8rem;
    right: 18rem;
    width: 42rem;
    height: 42rem;
    background-image: url(../img/videohunter-android/promotion-free.svg);
    background-repeat: no-repeat;
    background-size: cover;
  }
}

/*header start*/
.produce-content,
.support-content {
  position: absolute;
  top: 65px;
  left: -20px;
  z-index: -1;
  display: none;
  background: #fff;
  border-radius: 0px 0px 9px 9px;
  box-shadow: 0px 4px 8.4px 0px rgba(170, 169, 169, 0.25);
}
.support-content {
  padding: 0 8px 15px;
  width: 120px;
}
.support-content .support-content_item {
  margin-top: 5px;
  display: block;
  min-width: 105px;
  border-radius: 5px;
  padding: 10px 8px;
  box-sizing: border-box;
  color: #333;
}
.support-content .support-content_item:hover {
  color: #3b7fff;
  background: #f5f5f5;
}
.header {
  position: relative;
  color: #171717;
  font-size: 16px;
  background: #fff;
  box-shadow: 0px 3px 22px 0px rgba(0, 0, 0, 0.05);
  z-index: 999;
}
.header .spite {
  display: inline-block;
  background: url(../img/header/spite.png) no-repeat center;
  background-size: 276px 149px;
  width: 25px;
  height: 25px;
}
.header .spite-videoHunter {
  width: 25px;
  height: 25px;
}
.header .moble {
  display: none;
}
@media (max-width: 768px) {
  .header .moble {
    display: block;
  }
}
.header .btn-model {
  gap: 6px;
}
.header .pc {
  display: block;
}
@media (max-width: 768px) {
  .header .pc {
    display: none;
  }
}
.header .header-logo {
  font-weight: 700;
  font-family: 'Rubik';
  font-size: 20px;
  gap: 10px;
  color: #333;
}
.header .btn {
  padding: 8px 25px;
  border-radius: 46px;
  border: 1px solid rgba(115, 115, 115, 0.41);
  background: #fff;
  font-weight: 600;
  color: #333;
  font-family: 'Rubik';
}
.header .register:hover {
  color: #3b7fff;
  border-color: #3b7fff;
}
.header .login {
  color: #fff;
  background: #3b7fff;
  border-color: #3b7fff;
}
.header .login:hover {
  background-color: #085eff;
}
.header .header-menu {
  gap: 70px;
  background: #fff;
  z-index: 9999;
}
.header .header-menu-item {
  position: relative;
  gap: 23px;
  font-weight: 600;
  padding: 25px 0;
  z-index: 0;
  background: #fff;
  color: #333;
  font-family: 'Rubik';
}
.header .header-menu-item a {
  color: #333;
}
.header .header-menu-item.active .icon-down {
  display: inline-block;
  transform: rotate(180deg);
  transition: all 0.5s;
}
.header .header-menu-item:hover > span,
.header .header-menu-item:hover i,
.header .header-menu-item:hover > a {
  color: #3b7fff;
}
.header .produce-content {
  width: 918px;
  box-sizing: border-box;
  padding: 20px 30px 40px 30px;
  left: -220px;
  top: 100%;
}
.header .produce-content::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 8px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent);
  z-index: 1;
}
.header .produce-content .produce-box:last-child .produce-box_item {
  width: 100%;
}
.header .produce-content_title {
  color: #717171;
  font-size: 12px;
  font-weight: 400;
  margin-top: 15px;
}
.header .produce-content_title img {
  margin-right: 10px;
}
.header .produce-box {
  margin-top: 15px;
  justify-content: space-between;
}
.header .boder {
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.header .item-title {
  color: #171717;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 600;
}
.header .produce-box_item {
  transition: all 0.5s;
}
.header .produce-box_item:nth-child(1) {
  width: 31%;
}
.header .produce-box_item:nth-child(2) {
  width: 30%;
}
.header .produce-box_item:nth-child(3) {
  width: 26%;
}
.header .item-content {
  color: #717171;
  font-size: 14px;
  gap: 8px;
  padding: 8px 14px 8px 0px;
  border-radius: 5px;
  font-weight: 500;
  margin-bottom: 4px;
  max-width: 288px;
  white-space: nowrap;
}
.header .item-content img {
  display: none;
}
.header .item-content span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header .item-content:hover {
  background: #f5f5f5;
  padding-left: 14px;
}
.header .item-content:hover img {
  display: block;
}
.header .item-content:hover span {
  flex-direction: column;
  align-items: start;
}
.header .item-content.all-in-one span::after {
  content: "All-in-One !";
  flex-shrink: 0;
  font-size: 10px;
  color: #fff;
  border-radius: 2px;
  background: #f32929;
  padding: 2px 4px;
}
.header .item-content.new-tag span::after {
  content: " NEW!";
  flex-shrink: 0;
  font-size: 10px;
  color: #fff;
  border-radius: 2px;
  background: #f32929;
  padding: 2px 4px;
}

.header-moble-menu {
  position: relative;
}
.header-moble-menu i {
  display: block;
  width: 18rem;
  height: 2rem;
  background: #000;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
}
.header-moble-menu.active i:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  transform-origin: center;
  margin: 0;
}
.header-moble-menu.active i:nth-child(2) {
  opacity: 0;
}
.header-moble-menu.active i:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 0;
  transform-origin: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .header .moble {
    position: relative;
    background: #fff;
    z-index: 999;
  }
  .header .moble::after {
    position: absolute;
    z-index: 1;
    content: "";
    width: 100%;
    height: 8rem;
    bottom: 0;
    box-shadow: 0px 4rem 8rem 0px rgba(170, 169, 169, 0.15);
  }
  .header .moble .support-content,
  .header .moble .produce-content {
    position: unset;
    z-index: 1;
    width: 100%;
    box-shadow: unset;
    padding: unset;
    padding-top: 15rem;
    display: none;
  }
  .header .moble .support-content::after,
  .header .moble .produce-content::after {
    display: none;
  }
  .header .moble .support-content .produce-box:last-child .produce-box_item,
  .header .moble .produce-content .produce-box:last-child .produce-box_item {
    width: 100%;
  }
  .header .moble .support-content .support-content_item {
    padding-left: 0;
  }
  .header .moble .header-logo {
    font-size: 20rem;
    gap: 6rem;
  }
  .header .moble .item-title {
    margin-bottom: 10rem;
  }
  .header .moble .header-logo {
    padding: 15rem 0;
  }
  .header .moble .header-logo img {
    width: 24rem;
    height: 24rem;
  }
  .header .moble .produce-box {
    flex-direction: column;
    gap: 20rem;
  }
  .header .moble .produce-box_item {
    width: 100%;
  }
  .header .moble .header-moble-content {
    background: #fff;
    display: none;
    position: absolute;
    width: 100%;
    top: 54rem;
    left: 0;
    box-sizing: border-box;
    padding: 0 15rem;
  }
  .header .moble .boder {
    border-bottom: unset;
  }
  .header .moble .header-menu-item {
    border-bottom: 1rem solid rgba(0, 0, 0, 0.04);
    padding: 20rem 0;
    font-size: 16rem;
    display: block;
  }
  .header .moble .header-menu-item a {
    color: #333;
  }
  .header .moble .produce-content_title,
  .header .moble .item-content {
    font-size: 14rem;
  }
  .header .moble .item-content {
    font-weight: 600;
  }
  .header .moble .item-content:hover {
    background: unset;
    color: #3b7fff;
    padding-left: 0;
  }
  .header .moble .item-content:hover span {
    flex-direction: row;
  }
  .header .moble .item-content img {
    display: none;
  }
  .header .moble .item-content span {
    gap: 5rem;
  }
  .header .moble .item-content.all-in-one span::after {
    content: "All-in-One !";
    font-size: 10rem;
    color: #fff;
    border-radius: 2rem;
    background: #f32929;
    padding: 2rem 4rem;
  }
  .header .moble .item-content.new-tag span::after {
    content: "NEW!";
    font-size: 10rem;
    color: #fff;
    border-radius: 2rem;
    background: #f32929;
    padding: 2rem 4rem;
  }
  .header .moble .produce-content_title {
    font-size: 14rem;
  }
  .header .moble .active .menu-title {
    border-bottom: 1rem solid rgba(0, 0, 0, 0.04);
    padding-bottom: 15rem;
  }
}

/*footer start*/
.footer {
  background: #0d1017;
  color: #fff;
  font-size: 14px;
  padding-top: 60px;
}
.footer a {
  display: block;
}
.footer .moble {
  display: none;
}
@media (max-width: 768px) {
  .footer .moble {
    display: block;
  }
}
.footer .pc {
  display: block;
}
@media (max-width: 768px) {
  .footer .pc {
    display: none;
  }
}
.footer .footer-logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  gap: 8px;
  margin-bottom: 30px;
}
.footer .footer-media {
  display: flex;
  gap: 15px;
  margin-right: 20px;
}
.footer .footer-media .media-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #3b7fff;
  transition: background 250ms;
}
.footer .footer-media .media-item::before {
  content: '';
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.footer .footer-media .media-item.youtube::before {
  width: 20px;
  height: 14px;
  background-image: url(../img/footer/footer-media-youtube.svg);
}
.footer .footer-media .media-item.facebook::before {
  width: 16px;
  height: 16px;
  background-image: url(../img/footer/footer-media-facebook.svg);
}
.footer .footer-media .media-item.x::before {
  width: 17px;
  height: 15px;
  background-image: url(../img/footer/footer-media-x.svg);
}
.footer .footer-media .media-item:hover {
  background: #0a5fff;
}
.footer .copyright {
  text-align: center;
  padding: 20px 0;
  color: #929292;
  margin-top: 40px;
  border-top: 1px solid rgba(146, 146, 146, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer .subscribe-btn {
  width: fit-content !important;
  height: fit-content !important;
  background: #3b7fff !important;
  color: #fff !important;
  font-size: 14px !important;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 600;
  margin: 25px 0;
  transition: all 0.5s;
  display: flex;
}
.footer .subscribe-btn img {
  margin-right: 10px;
  width: 25px;
}
.footer .subscribe-btn:hover {
  background: #085eff !important;
}
.footer .language {
  position: relative;
  color: #d7daed;
  cursor: pointer;
}
.footer i.active {
  display: inline-block;
  transition: all 0.5s;
  transform: rotate(180deg);
}
.footer .language-box {
  position: absolute;
  display: none;
  border: 0.5px solid #d7daed;
  border-radius: 8px;
  padding: 10px 15px 0 15px;
  top: 30px;
  left: 0;
  width: 100px;
  line-height: 2.3;
  z-index: 999;
  background-color: #000;
}
.footer .language-box .language-box_item {
  margin-bottom: 10px;
  color: #d7daed;
}
.footer .language-box .language-box_item:hover {
  color: #3b7fff;
}
.footer .footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
}
.footer .footer-list a {
  margin-bottom: 15px;
  color: #d7daed;
}
.footer .footer-list a:hover {
  color: #085eff;
}

.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 25px;
}
.footer-list_product{
  column-count: 2;
  column-gap: 100px;
}
.footer-list_product a{
  break-inside: avoid-column;
  margin-bottom: 10px;
}
.footer-list-group{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer-media a {
  width: 30px;
  height: 30px;
}
.flex-sb-s .footer-box_item:last-child{
  margin-right: 30px;
}
.footer-media .cls-facebook {
  background-image: url('../img/footer/footer-media-menu-facebook.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.footer-media .cls-facebook:hover {
  background-image: url('../img/footer/footer-media-hover-facebook.svg');
}
.footer-media .cls-x {
  background-image: url('../img/footer/footer-media-menu-x.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.footer-media .cls-x:hover {
  background-image: url('../img/footer/footer-media-hover-x.svg');
}
.footer-media .cls-youtube {
  background-image: url('../img/footer/footer-media-menu-youtube.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.footer-media .cls-youtube:hover {
  background-image: url('../img/footer/footer-media-hover-youtube.svg');
}
.footer-list_product {
  display: flex;
  gap: 50px;
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 20rem;
    font-size: 14rem;
  }
  .footer .footer-logo {
    margin-bottom: 20rem;
    font-size: 20rem;
  }
  .footer .footer-media {
    gap: 15rem;
    padding-top: 30rem;
  }
  .footer .footer-media .media-item {
    width: 30rem;
    height: 30rem;
  }
  .footer .footer-media .media-item.youtube::before {
    width: 20rem;
    height: 14rem;
  }
  .footer .footer-media .media-item.facebook::before {
    width: 16rem;
    height: 16rem;
  }
  .footer .footer-media .media-item.x::before {
    width: 17rem;
    height: 15rem;
  }
  .footer .footer-box_item {
    padding: 20rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .footer .footer-list {
    display: none;
    margin-top: 20rem;
  }
  .footer .language {
    width: fit-content;
  }
  .footer .footer-title {
    margin: 0;
    font-size: 18rem;
  }
  .footer .subscribe-btn {
    width: max-content;
  }
  .footer .language-box {
    position: relative;
    top: 0;
    padding-bottom: 5rem;
  }
}
div#subscribeEmail {
  display: none;
}
.pc-style {
  display: block;
}
.mb-style {
  display: none;
}
@media (max-width: 768px) {
  .pc-style {
    display: none;
  }
  .mb-style {
    display: block;
  }
}

.store .product-item .product-down_ul .product-down_li:nth-child(1),
.store .product-item .product-down_ul .product-down_li:nth-child(2),
.store .product-item .bottom:nth-child(7),
.store .product-item .bottom:nth-child(8),
.store .wrap3 .price-radio-list li:nth-child(1),
.store .wrap3 .price-radio-list li:nth-child(2),
.store .wrap3 .wrap3-panel .wrap3-item_right .btn-box:nth-child(3),
.store .wrap3 .wrap3-panel .wrap3-item_right .btn-box:nth-child(4) {
  display: none !important;
}
.store .product-item .bottom:nth-child(9) {
  display: flex !important;
}
.store .wrap3 .wrap3-panel .wrap3-item_right .btn-box:nth-child(5) {
  display: block !important;
}

.product-buy .product-plan-item .product-plan-main:nth-child(2) .product-plan-main-right .product-plan-box-item:nth-child(2),
.product-buy .product-plan-item .product-plan-main:nth-child(2) .product-plan-main-right .product-plan-box-item:nth-child(3),
.product-buy.aio .product-plan-item .product-plan-main-right .product-plan-box-item:nth-child(2),
.product-buy.aio .product-plan-item .product-plan-main-right .product-plan-box-item:nth-child(3) {
  display: none !important;
}

.product-uninstall .wrap-1 {
  display: none !important;
}

.product-index-buy .win-box,
.product-index-buy .mac-box {
  justify-content: center !important;
}
.product-index-buy .win-box .month,
.product-index-buy .win-box .year,
.product-index-buy .mac-box .month,
.product-index-buy .mac-box .year,
.wrap-7 .wrap-buy {
  display: none !important;
}
