@charset "UTF-8";
@import url(../hunting-overview-icon/style.css);
/* 动画代码 */
@keyframes upDown {
  0% {
    top: 0;
  }
  100% {
    top: 20px;
  }
}

@keyframes upDownMobile {
  0% {
    top: 0;
  }
  100% {
    top: 16px;
  }
}

.screen-online-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .screen-online-banner .container {
    justify-content: center;
    flex-direction: column;
  }
}

.screen-online-banner .left {
  width: 34%;
  position: relative;
}

.screen-online-banner .left h1 {
  font-size: 48px;
  line-height: 49px;
  font-weight: bold;
}

.screen-online-banner .left .desc {
  font-size: 18px;
  line-height: 30px;
  color: #666666;
  margin-top: 24px;
}

.screen-online-banner .left .desc span {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  color: #ff4c00;
}

.screen-online-banner .left .star {
  margin-top: 40px;
  margin-bottom: unset;
}

.screen-online-banner .left .star em {
  color: #fbb03b;
  font-size: 16px;
}

.screen-online-banner .left .star em:not(:first-child) {
  margin: 0 3px;
}

.screen-online-banner .left .description {
  font-size: 18px;
  line-height: 30px;
  color: #666666;
}

.screen-online-banner .left .description span {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  color: #285281;
}

.screen-online-banner .left .button-list {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
}

.screen-online-banner .left .button-list div {
  width: 278px;
  height: 52px;
  border-radius: 4px;
}

.screen-online-banner .left .button-list div:last-child {
  margin-top: 14px;
}

.screen-online-banner .left .button-list div:first-child {
  background-image: linear-gradient(to right, #40e1d5, #285281);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  line-height: 29px;
  font-weight: bold;
  cursor: pointer;
  transition: 4s;
}

.screen-online-banner .left .button-list div:first-child:hover {
  background-image: linear-gradient(to left, #40e1d5, #285281);
}

.screen-online-banner .left .button-list div:first-child span {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin-left: 20px;
}

.screen-online-banner .left .button-list div:first-child span::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background-color: rgba(239, 96, 106, 0.37);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.screen-online-banner .left .button-list div:first-child span::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ef606a;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hunting 2s linear infinite;
}

@keyframes hunting {
  0% {
    width: 12px;
    height: 12px;
  }
  50% {
    width: 17px;
    height: 17px;
  }
  100% {
    width: 12px;
    height: 12px;
  }
}

.screen-online-banner .left .button-list div:last-child {
  overflow: hidden;
}

.screen-online-banner .left .button-list div:last-child a {
  width: 100%;
  height: 100%;
  font-size: 24px;
  line-height: 29px;
  font-weight: bold;
  color: #285281;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-clip: padding-box;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 4px;
}

.screen-online-banner .left .button-list div:last-child a::after {
  content: '';
  position: absolute;
  display: block;
  z-index: -1;
  top: -2px;
  bottom: -2px;
  right: -2px;
  left: -2px;
  border-radius: 4px;
  background: linear-gradient(to right, #ffa528, #ff4c0e);
  transition: 4s;
}

.screen-online-banner .left .button-list div:last-child a:hover::after {
  background: linear-gradient(to right, #ff4c0e, #ffa528);
}

.screen-online-banner .left .button-list div:last-child a span {
  width: 21px;
  height: 21px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  position: relative;
}

.screen-online-banner .left .button-list div:last-child a span::before {
  content: '';
  position: absolute;
  background-image: url(/static/index/images/screen-online/banner-download.svg);
  width: 18px;
  height: 19px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 767px) {
  .screen-online-banner .left .button-list div:last-child a span::before {
    width: 12px;
    height: 13px;
  }
}

.screen-online-banner .left .start-hint {
  display: none;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.screen-online-banner .left .start-hint .hint-content {
  background: url(/static/index/images/screen-online/hint.svg) no-repeat;
  filter: drop-shadow(0 0 13px rgba(119, 63, 55, 0.1));
  background-size: cover;
  width: 331px;
  height: 149px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.screen-online-banner .left .start-hint .hint-content img {
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

.screen-online-banner .left .start-hint .hint-content .proccess {
  display: block;
  top: 46px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: url(/static/index/images/screen-online/loading-percent.gif) center center no-repeat;
  padding: unset !important;
}

.screen-online-banner .left .start-hint .hint-content .desc {
  font-size: 18px;
  line-height: 22px;
  color: #666666;
  margin-top: 0 !important;
}

.screen-online-banner .left .start-hint .hint-content .hint-button-list {
  width: 217px;
  height: 37px;
  border-radius: 2px;
  background-image: linear-gradient(to right, #40e1d5, #285281);
  overflow: hidden;
  transition: 4s;
}

.screen-online-banner .left .start-hint .hint-content .hint-button-list:hover {
  background-image: linear-gradient(to left, #40e1d5, #285281);
}

.screen-online-banner .left .start-hint .hint-content .hint-button-list a {
  width: 100%;
  height: 100%;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.screen-online-banner .left .start-hint .hint-content .hint-button-list a.activeMac {
  transform: translateY(-37px);
}

.screen-online-banner .left .start-hint .hint-content p {
  text-align: center;
  line-height: 149px;
}

.screen-online-banner .left .start-hint .hint-content span {
  display: block;
  text-align: center;
  padding: 0 20px;
}

.screen-online-banner .left .start-hint .hint-content div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}

.screen-online-banner .left .start-hint .hint-content div span {
  margin: 0 3px;
  padding: 3px 10px;
  border-radius: 2px;
  background-image: linear-gradient(to right, #40e1d5, #285281);
  overflow: hidden;
  transition: 4s;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  cursor: pointer;
}

.screen-online-banner .left .start-hint .hint-content div span:hover {
  background-image: linear-gradient(to left, #40e1d5, #285281);
}

.screen-online-banner .left .start-hint .hint-close {
  position: absolute;
  top: 13%;
  right: 8%;
  cursor: pointer;
}

.screen-online-banner .left .start-hint .hint-close::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 2px;
  background-color: #666666;
  border-radius: 5px;
  transform: rotate(45deg);
}

.screen-online-banner .left .start-hint .hint-close::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 2px;
  background-color: #666666;
  border-radius: 5px;
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .screen-online-banner .left {
    width: 100%;
    text-align: center;
    margin-top: 40px;
  }
  .screen-online-banner .left h1 {
    font-size: 24px;
    line-height: 49px;
  }
  .screen-online-banner .left .desc {
    font-size: 14px;
    line-height: 22px;
    padding: 0 40px;
    margin-top: 0;
  }
  .screen-online-banner .left .desc span {
    font-size: 16px;
    line-height: 26px;
  }
  .screen-online-banner .left .star {
    font-size: 12px;
    margin-top: 10px;
  }
  .screen-online-banner .left .description {
    font-size: 14px;
    line-height: 14px;
    margin-top: 10px;
  }
  .screen-online-banner .left .description span {
    font-size: 16px;
    line-height: 16px;
  }
  .screen-online-banner .left .button-list {
    align-items: center;
  }
}

.screen-online-banner .right {
  width: 56%;
}

@media (max-width: 767px) {
  .screen-online-banner .right {
    width: 100%;
  }
}

.screen-online-banner .right #container {
  width: 720px;
  height: 520px;
}

@media (max-width: 1200px) {
  .screen-online-banner .right #container {
    width: 100%;
  }
}

@media (max-width: 1200px) and (max-width: 767px) {
  .screen-online-banner .right #container {
    width: 100%;
    height: 250px;
  }
}

@media (max-width: 767px) {
  .screen-online-banner .left .start-hint .hint-content img {
    display: none;
  }
  .screen-online-banner .left .start-hint .hint-content .proccess {
    display: none;
  }
  .screen-online-banner .left .start-hint .hint-content .desc {
    display: none;
  }
  .screen-online-banner .left .start-hint .hint-content .hint-button-list {
    display: none;
  }
  .screen-online-banner .left .start-hint .hint-content p {
    display: none;
  }
  .screen-online-banner .left .start-hint .hint-content span {
    display: none;
  }
  .screen-online-banner .left .start-hint .hint-content span {
    display: block;
    font-size: 16px;
  }
  .screen-online-banner .left .start-hint .hint-content .btn-top-shutdown {
    padding: 10px 20px;
    display: block;
    margin: 10px auto 0;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    border-radius: 4px;
    border-radius: 2px;
    background-image: linear-gradient(to right, #40e1d5, #285281);
    text-decoration: none;
  }
  .screen-online-banner .left .start-hint .hint-content div {
    display: none;
  }
  .screen-online-banner .left .start-hint .hint-close {
    display: none;
  }
  .screen-online-banner .right {
    display: none;
  }
}

.hunting-navigation {
  width: auto;
  height: 0;
  position: sticky;
  top: 0px;
  z-index: 2;
  background-color: #fff;
  opacity: 0;
  transition: all 0.4s;
}

.hunting-navigation.hunting-navigation-show {
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  opacity: 1;
  height: auto;
}

.hunting-navigation .content {
  height: 69px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hunting-navigation .content .logo {
  display: flex;
  align-items: center;
}

.hunting-navigation .content .logo img {
  width: 32px;
  height: 32px;
}

.hunting-navigation .content .logo span {
  font-size: 18px;
  line-height: 22px;
  color: #000;
  margin-left: 10px;
}

.hunting-navigation .content .mobile-title {
  font-size: 18px;
  position: relative;
  color: #59baea;
  margin-right: 12px;
  display: none;
}

.hunting-navigation .content .mobile-title.mobileActive::before {
  transform: rotateX(180deg);
}

.hunting-navigation .content .mobile-title::before {
  content: "";
  background: url(/static/index/images/hunting/arrow-down.svg);
  background-size: cover;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 65%;
  top: 3px;
}

.hunting-navigation .content .other-href {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.hunting-navigation .content .other-href .start-download {
  width: 116px;
  height: 31px;
  margin: 0 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-clip: padding-box;
  background-color: #fff;
  border: 2px solid transparent;
  transition: 4s;
}

.hunting-navigation .content .other-href .start-download::after {
  content: '';
  position: absolute;
  display: block;
  z-index: -1;
  top: -2px;
  bottom: -2px;
  right: -2px;
  left: -2px;
  border-radius: 4px;
  background-image: linear-gradient(to right, #40e1d5, #285281);
  transition: 4s;
}

.hunting-navigation .content .other-href .start-download:hover::after {
  background-image: linear-gradient(to left, #40e1d5, #285281);
}

.hunting-navigation .content .other-href .start-download span {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin-left: 5px;
}

.hunting-navigation .content .other-href .start-download span::before {
  content: '';
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50px;
  background-color: rgba(239, 96, 106, 0.37);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hunting-navigation .content .other-href .start-download span::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ef606a;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hunting 2s linear infinite;
}

@keyframes hunting {
  0% {
    width: 12px;
    height: 12px;
  }
  50% {
    width: 15px;
    height: 15px;
  }
  100% {
    width: 12px;
    height: 12px;
  }
}

.hunting-navigation .content .other-href .start-hint {
  display: none;
  position: absolute;
  left: -80px;
  top: 70px;
}

.hunting-navigation .content .other-href .start-hint .hint-content {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 25px 0px;
  background-color: #fff;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 280px;
  height: 118px;
  position: relative;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .hunting-navigation .content .other-href .start-hint .hint-content {
    width: unset;
    height: unset;
    padding: 20px;
  }
}

.hunting-navigation .content .other-href .start-hint .hint-content::before {
  content: '';
  position: absolute;
  bottom: auto;
  top: -14px;
  border-left: 8px solid transparent;
  border-right: 8px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid #fff;
  transform: skewX(-30deg);
  filter: drop-shadow(0 0 13px rgba(119, 63, 55, 0.1));
}

.hunting-navigation .content .other-href .start-hint .hint-content img {
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

.hunting-navigation .content .other-href .start-hint .hint-content .proccess {
  display: block;
  top: 46px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: url(/static/index/images/screen-online/loading-percent.gif) center center no-repeat;
  padding: unset !important;
}

.hunting-navigation .content .other-href .start-hint .hint-content .desc {
  font-size: 16px;
  line-height: 22px;
  color: #666666;
}

.hunting-navigation .content .other-href .start-hint .hint-content .hint-button-list {
  width: 217px;
  height: 37px;
  border-radius: 2px;
  background-image: linear-gradient(to right, #40e1d5, #285281);
  overflow: hidden;
  transition: 4s;
}

.hunting-navigation .content .other-href .start-hint .hint-content .hint-button-list:hover {
  background-image: linear-gradient(to left, #40e1d5, #285281);
}

.hunting-navigation .content .other-href .start-hint .hint-content .hint-button-list a {
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hunting-navigation .content .other-href .start-hint .hint-content .hint-button-list a.activeMac {
  transform: translateY(-37px);
}

.hunting-navigation .content .other-href .start-hint .hint-content p {
  text-align: center;
  line-height: 118px;
}

@media (max-width: 767px) {
  .hunting-navigation .content .other-href .start-hint .hint-content p {
    display: none;
  }
}

.hunting-navigation .content .other-href .start-hint .hint-content span {
  display: block;
  text-align: center;
  margin-top: 10px;
  padding: 0 20px;
}

@media (max-width: 767px) {
  .hunting-navigation .content .other-href .start-hint .hint-content span {
    display: none;
  }
}

.hunting-navigation .content .other-href .start-hint .hint-content div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}

.hunting-navigation .content .other-href .start-hint .hint-content div span {
  margin: 0 3px;
  padding: 3px 10px;
  border-radius: 2px;
  background-image: linear-gradient(to right, #40e1d5, #285281);
  overflow: hidden;
  transition: 4s;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  cursor: pointer;
}

.hunting-navigation .content .other-href .start-hint .hint-content div span:hover {
  background-image: linear-gradient(to left, #40e1d5, #285281);
}

.hunting-navigation .content .other-href .start-hint .hint-close {
  position: absolute;
  top: 13%;
  right: 8%;
  cursor: pointer;
}

.hunting-navigation .content .other-href .start-hint .hint-close::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 2px;
  background-color: #666666;
  border-radius: 5px;
  transform: rotate(45deg);
}

.hunting-navigation .content .other-href .start-hint .hint-close::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 2px;
  background-color: #666666;
  border-radius: 5px;
  transform: rotate(-45deg);
}

.hunting-navigation .content .other-href ul {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.hunting-navigation .content .other-href ul li {
  height: 100%;
  list-style: none;
  display: flex;
  align-items: center;
}

.hunting-navigation .content .other-href ul li:hover a {
  text-decoration: none;
  color: #285281;
}

.hunting-navigation .content .other-href ul li a {
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  margin: 0 10px;
  transition: all .4s;
  position: relative;
}

.hunting-navigation .content .other-href ul li a::before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  background-color: #285281;
  transform: scaleX(0);
  transition: all .4s;
}

.hunting-navigation .content .other-href ul li a:hover::before {
  transform: scaleX(1);
}

.hunting-navigation .content .other-href .buy-now {
  width: 116px;
  height: 31px;
  margin: 0 10px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 4s ease-in-out;
  background-image: linear-gradient(to right, #40e1d5, #285281);
}

.hunting-navigation .content .other-href .buy-now a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

.hunting-navigation .content .other-href .buy-now a:hover {
  color: #fff;
}

.hunting-navigation .content .other-href .buy-now a.showMac {
  transform: translateY(-31px);
}

.hunting-navigation .content .other-href .buy-now a span {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  position: relative;
}

.hunting-navigation .content .other-href .buy-now a span::before {
  content: '';
  position: absolute;
  background-image: url(/static/index/images/screen-online/banner-download.svg);
  width: 10px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.hunting-navigation .content .other-href .buy-now:hover {
  background-image: linear-gradient(to right, #285281, #40e1d5);
}

.hunting-navigation .content .other-href .button-list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hunting-navigation .content .other-href .button-list div {
  position: relative;
}

.hunting-navigation .content .other-href .button-list div:first-child div {
  background-image: linear-gradient(to right, #40e1d5, #285281);
}

.hunting-navigation .content .other-href .button-list div:first-child div:hover {
  background-image: linear-gradient(to right, #285281, #40e1d5);
}

.hunting-navigation .content .other-href .button-list div:last-child div {
  background-image: linear-gradient(to right, #ffa528, #ff4c0e);
}

.hunting-navigation .content .other-href .button-list div:last-child div:hover {
  background-image: linear-gradient(to right, #ff4c0e, #ffa528);
}

.hunting-navigation .content .other-href .button-list div div {
  width: 116px;
  height: 31px;
  margin: 0 10px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 4s ease-in-out;
}

.hunting-navigation .content .other-href .button-list div div a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

.hunting-navigation .content .other-href .button-list div div a:hover {
  color: #fff;
}

.hunting-navigation .content .other-href .button-list div div a.showMac {
  transform: translateY(-31px);
}

.hunting-navigation .content .other-href .button-list div div a span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  margin-left: 10px;
}

.hunting-navigation .content .other-href .button-list div div a span img {
  width: 12px;
  height: 13px;
}

.hunting-navigation .content .mobile-buy {
  display: none;
}

.hunting-navigation .content .mobile-buy img {
  width: 22px;
}

@media (max-width: 1200px) {
  .hunting-navigation .content .other-href {
    position: unset;
  }
  .hunting-navigation .content .other-href .start-download,
  .hunting-navigation .content .other-href .buy-now {
    display: none;
  }
  .hunting-navigation .content .mobile-buy {
    display: block;
  }
}

@media (max-width: 1200px) and (max-width: 767px) {
  .hunting-navigation .container {
    padding-left: unset !important;
    padding-right: unset !important;
  }
  .hunting-navigation .content {
    justify-content: space-between;
    position: relative;
    padding: 0 15px;
  }
  .hunting-navigation .content .logo span {
    display: none;
  }
  .hunting-navigation .content .mobile-title {
    width: 100%;
    display: flex;
    justify-content: center;
    top: calc(15px / 2);
    margin-right: 0;
  }
  .hunting-navigation .content .mobile-title::before {
    left: 66%;
  }
}

@media (max-width: 1200px) and (max-width: 767px) and (max-width: 320px) {
  .hunting-navigation .content .mobile-title::before {
    left: 70%;
  }
}

@media (max-width: 1200px) and (max-width: 767px) {
  .hunting-navigation .content .other-href ul {
    width: 100%;
    height: unset;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
    display: none;
  }
  .hunting-navigation .content .other-href ul li {
    display: flex;
    width: 100%;
    height: 66px;
    align-items: center;
    justify-content: center;
  }
  .hunting-navigation .content .other-href ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  }
}

.free-hunting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-top: 60px;
}

.free-hunting h2 {
  font-size: 36px;
  line-height: 49px;
  font-weight: bold;
  color: #000000;
}

.free-hunting .content {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 58px;
}

.free-hunting .content .item {
  width: 26%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.free-hunting .content .item img {
  width: 108px;
  height: 108px;
}

.free-hunting .content .item .title {
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  color: #000000;
  margin-top: 30px;
}

.free-hunting .content .item .desc {
  width: 100%;
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  margin-top: 14px;
}

@media (max-width: 767px) {
  .free-hunting {
    flex-direction: column;
    justify-content: center;
  }
  .free-hunting h2 {
    font-size: 21px;
    line-height: 49px;
  }
  .free-hunting .content {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    margin-top: unset;
  }
  .free-hunting .content .item {
    width: 100%;
    margin-top: 30px;
  }
  .free-hunting .content .item .title {
    font-size: 18px;
    line-height: 30px;
    margin-top: unset;
  }
  .free-hunting .content .item .desc {
    font-size: 14px;
    line-height: 20px;
    margin-top: unset;
  }
}

.features {
  margin-top: 86px;
  padding: 72px 0 66px;
  background-color: #fffbfb;
}

.features h2 {
  font-size: 36px;
  line-height: 49px;
  font-weight: bold;
  text-align: center;
}

.features .content {
  width: 73%;
  margin: 0 auto;
}

.features .content .item {
  display: flex;
  justify-content: center;
}

.features .content .item:nth-child(1) {
  margin-top: 60px;
}

.features .content .item:nth-child(1) .description {
  text-align: right;
}

.features .content .item:nth-child(1) .img {
  margin-left: 82px;
}

.features .content .item:nth-child(1) .img img {
  width: 305px;
  height: 203px;
}

.features .content .item:nth-child(2) {
  margin-top: 54px;
  flex-direction: row-reverse;
}

.features .content .item:nth-child(2) .description {
  text-align: left;
  margin-top: 25px;
}

.features .content .item:nth-child(2) .img {
  margin-right: 94px;
}

.features .content .item:nth-child(2) .img img {
  width: 388px;
  height: 171px;
}

.features .content .item:nth-child(3) {
  margin-top: 104px;
}

.features .content .item:nth-child(3) .description {
  text-align: right;
}

.features .content .item:nth-child(3) .img {
  margin-left: 86px;
}

.features .content .item:nth-child(3) .img img {
  width: 337px;
  height: 180px;
}

.features .content .item:nth-child(4) {
  margin-top: 66px;
  flex-direction: row-reverse;
}

.features .content .item:nth-child(4) .description {
  text-align: left;
  margin-top: 20px;
}

.features .content .item:nth-child(4) .img {
  margin-right: 89px;
}

.features .content .item:nth-child(4) .img img {
  width: 304px;
  height: 205px;
}

.features .content .item .description {
  width: 41%;
}

.features .content .item .description h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
}

.features .content .item .description .desc {
  font-size: 16px;
  line-height: 22px;
  color: #666666;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .features {
    margin-top: 40px;
    padding: 40px 0 50px;
  }
  .features h2 {
    font-size: 21px;
    line-height: 49px;
  }
  .features .content {
    width: 100%;
  }
  .features .content .item {
    flex-direction: column;
    align-items: center;
  }
  .features .content .item:nth-child(1) {
    margin-top: 30px;
  }
  .features .content .item:nth-child(1) .description {
    text-align: center;
    order: 2;
  }
  .features .content .item:nth-child(1) .img {
    order: 1;
    margin-left: unset;
  }
  .features .content .item:nth-child(1) .img img {
    width: 100%;
    height: unset;
  }
  .features .content .item:nth-child(2) {
    margin-top: 30px;
    flex-direction: column;
  }
  .features .content .item:nth-child(2) .description {
    order: 2;
    text-align: center;
    margin-top: 25px;
  }
  .features .content .item:nth-child(2) .img {
    order: 1;
    margin-right: unset;
  }
  .features .content .item:nth-child(2) .img img {
    width: 100%;
    height: unset;
  }
  .features .content .item:nth-child(3) {
    margin-top: 30px;
  }
  .features .content .item:nth-child(3) .description {
    order: 2;
    text-align: center;
    margin-top: 30px;
  }
  .features .content .item:nth-child(3) .img {
    order: 1;
    margin-left: unset;
  }
  .features .content .item:nth-child(3) .img img {
    width: 100%;
    height: unset;
  }
  .features .content .item:nth-child(4) {
    margin-top: 30px;
    flex-direction: column;
  }
  .features .content .item:nth-child(4) .description {
    order: 2;
    text-align: center;
    margin-top: 20px;
  }
  .features .content .item:nth-child(4) .img {
    order: 1;
    margin-right: unset;
  }
  .features .content .item:nth-child(4) .img img {
    width: 100%;
    height: unset;
  }
  .features .content .item .description {
    width: 100%;
  }
  .features .content .item .description h3 {
    font-size: 18px;
    line-height: 30px;
  }
  .features .content .item .description .desc {
    font-size: 12px;
    line-height: 20px;
  }
}

.compared {
  margin-top: 112px;
}

.compared h2 {
  font-size: 36px;
  line-height: 49px;
  color: #000000;
  text-align: center;
}

.compared .desc {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  color: #666666;
  margin-top: 10px;
}

.compared .content {
  width: 78%;
  margin: 30px auto 0;
}

.compared .content .item {
  display: flex;
}

.compared .content .item:not(:first-child) {
  border-top: 1px solid #f2f2f2;
}

.compared .content .item:first-child .col-two,
.compared .content .item:first-child .col-three {
  text-align: center;
}

.compared .content .item .col-one {
  flex: 0 0 28%;
  border-right: 1px solid #f2f2f2;
  padding: 20px 17px;
  font-size: 16px;
  color: #666666;
}

.compared .content .item .col-two {
  flex: 0 0 35%;
  border-right: 1px solid #f2f2f2;
  padding: 20px 17px;
  font-size: 16px;
  line-height: 30px;
  color: #000000;
}

.compared .content .item .col-two .title {
  font-size: 21px;
  line-height: 49px;
  font-weight: bold;
  color: #000000;
}

.compared .content .item .col-two div {
  position: relative;
}

.compared .content .item .col-two div .start-button {
  width: 157px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  background-clip: padding-box;
  background-color: #fff;
  border: 2px solid transparent;
  transition: 4s;
}

.compared .content .item .col-two div .start-button::after {
  content: '';
  position: absolute;
  display: block;
  z-index: -1;
  top: -2px;
  bottom: -2px;
  right: -2px;
  left: -2px;
  border-radius: 4px;
  background-image: linear-gradient(to right, #40e1d5, #285281);
  transition: 4s;
}

.compared .content .item .col-two div .start-button:hover::after {
  background-image: linear-gradient(to left, #40e1d5, #285281);
}

.compared .content .item .col-two div .start-button span {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin-left: 20px;
}

.compared .content .item .col-two div .start-button span::before {
  content: '';
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50px;
  background-color: rgba(239, 96, 106, 0.37);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.compared .content .item .col-two div .start-button span::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ef606a;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hunting 2s linear infinite;
}

@keyframes hunting {
  0% {
    width: 12px;
    height: 12px;
  }
  50% {
    width: 15px;
    height: 15px;
  }
  100% {
    width: 12px;
    height: 12px;
  }
}

.compared .content .item .col-two div .start-hint {
  display: none;
  position: absolute;
  bottom: 34px;
}

.compared .content .item .col-two div .start-hint .hint-content {
  background: url(/static/index/images/screen-online/hint.svg) no-repeat;
  filter: drop-shadow(0 0 13px rgba(119, 63, 55, 0.1));
  background-size: cover;
  width: 331px;
  height: 149px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.compared .content .item .col-two div .start-hint .hint-content img {
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

.compared .content .item .col-two div .start-hint .hint-content .proccess {
  display: block;
  top: 46px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: url(/static/index/images/screen-online/loading-percent.gif) center center no-repeat;
  padding: unset !important;
}

.compared .content .item .col-two div .start-hint .hint-content p {
  text-align: center;
  line-height: 149px;
}

.compared .content .item .col-two div .start-hint .hint-content span {
  display: block;
  text-align: center;
  padding: 0 20px;
}

.compared .content .item .col-two div .start-hint .hint-content .desc {
  font-size: 18px;
  line-height: 22px;
  color: #666666;
  margin-top: 0 !important;
}

.compared .content .item .col-two div .start-hint .hint-content .hint-button-list {
  width: 217px;
  height: 37px;
  border-radius: 2px;
  background-image: linear-gradient(to right, #40e1d5, #285281);
  overflow: hidden;
  transition: 4s;
}

.compared .content .item .col-two div .start-hint .hint-content .hint-button-list:hover {
  background-image: linear-gradient(to left, #40e1d5, #285281);
}

.compared .content .item .col-two div .start-hint .hint-content .hint-button-list a {
  width: 100%;
  height: 100%;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.compared .content .item .col-two div .start-hint .hint-content .hint-button-list a.activeMac {
  transform: translateY(-37px);
}

.compared .content .item .col-two div .start-hint .hint-content div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}

.compared .content .item .col-two div .start-hint .hint-content div span {
  margin: 0 3px;
  padding: 3px 10px;
  border-radius: 2px;
  background-image: linear-gradient(to right, #40e1d5, #285281);
  overflow: hidden;
  transition: 4s;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  cursor: pointer;
}

.compared .content .item .col-two div .start-hint .hint-content div span:hover {
  background-image: linear-gradient(to left, #40e1d5, #285281);
}

.compared .content .item .col-two div .start-hint .hint-close {
  position: absolute;
  top: 13%;
  right: 8%;
  cursor: pointer;
}

.compared .content .item .col-two div .start-hint .hint-close::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 2px;
  background-color: #666666;
  border-radius: 5px;
  transform: rotate(45deg);
}

.compared .content .item .col-two div .start-hint .hint-close::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 2px;
  background-color: #666666;
  border-radius: 5px;
  transform: rotate(-45deg);
}

.compared .content .item .col-two img.true {
  width: 18px;
  height: 13px;
}

.compared .content .item .col-two img.false {
  width: 13px;
  height: 13px;
}

.compared .content .item .col-three {
  flex: 0 0 37%;
  padding: 20px 17px;
  font-size: 16px;
  line-height: 30px;
  color: #000000;
}

.compared .content .item .col-three .title {
  font-size: 21px;
  line-height: 49px;
  font-weight: bold;
  color: #000000;
}

.compared .content .item .col-three .download {
  width: 157px;
  height: 42px;
  margin: 0 auto;
  border-radius: 4px;
  background-image: linear-gradient(to right, #ffa528, #ff4c0e);
  color: #fff;
  overflow: hidden;
  transition: 4s;
}

.compared .content .item .col-three .download:hover {
  background-image: linear-gradient(to left, #ffa528, #ff4c0e);
}

.compared .content .item .col-three .download a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.compared .content .item .col-three .download a.activeMac {
  transform: translateY(-42px);
}

.compared .content .item .col-three .download a span {
  width: 21px;
  height: 21px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  position: relative;
}

.compared .content .item .col-three .download a span::before {
  content: '';
  position: absolute;
  background-image: url(/static/index/images/screen-online/banner-download.svg);
  width: 12px;
  height: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

.compared .content .item .col-three img.true {
  width: 18px;
  height: 13px;
}

.compared .content .item .col-three img.false {
  width: 13px;
  height: 13px;
}

@media (max-width: 767px) {
  .compared {
    margin-top: 50px;
  }
  .compared h2 {
    font-size: 21px;
    line-height: 49px;
  }
  .compared .desc {
    font-size: 12px;
    line-height: 20px;
  }
  .compared .content {
    width: 100%;
  }
  .compared .content .item .col-one {
    flex: 0 0 33%;
    padding: 10px;
    font-size: 14px;
    line-height: 30px;
  }
  .compared .content .item .col-two {
    flex: 0 0 33%;
    padding: 10px;
    font-size: 16px;
    line-height: 30px;
    color: #000000;
  }
  .compared .content .item .col-two .title {
    font-size: 12px;
    line-height: 20px;
  }
  .compared .content .item .col-two div .start-button {
    width: 90px;
    height: 24px;
    font-size: 12px;
  }
  .compared .content .item .col-two div .start-button span {
    width: 12px;
    height: 12px;
    margin-left: 10px;
  }
  .compared .content .item .col-two div .start-button span::before {
    width: 9px;
    height: 9px;
  }
  .compared .content .item .col-two div .start-button span::after {
    content: '';
    width: 6px;
    height: 6px;
  }
  @keyframes hunting {
    0% {
      width: 6px;
      height: 6px;
    }
    50% {
      width: 9px;
      height: 9px;
    }
    100% {
      width: 6px;
      height: 6px;
    }
  }
  .compared .content .item .col-two div .start-hint {
    left: unset;
  }
  .compared .content .item .col-two div .start-hint .hint-content {
    background: unset;
    left: -50px;
    width: 200px;
    height: 100px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 25px 0px;
    background-color: #fff;
    border-radius: 4px;
    position: relative;
  }
  .compared .content .item .col-two div .start-hint .hint-content::before {
    content: '';
    position: absolute;
    bottom: -14px;
    border-left: 8px solid #fff;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
    border-bottom: 8px solid transparent;
    transform: skewX(-30deg);
    filter: drop-shadow(0 0 13px rgba(119, 63, 55, 0.1));
  }
  .compared .content .item .col-two div .start-hint .hint-content img {
    display: none;
  }
  .compared .content .item .col-two div .start-hint .hint-content .proccess {
    display: none;
  }
  .compared .content .item .col-two div .start-hint .hint-content p {
    display: none;
  }
  .compared .content .item .col-two div .start-hint .hint-content .desc {
    display: none;
  }
  .compared .content .item .col-two div .start-hint .hint-content span {
    display: block;
    font-size: 16px;
  }
  .compared .content .item .col-two div .start-hint .hint-content .hint-button-list {
    display: none;
  }
  .compared .content .item .col-two div .start-hint .hint-content .btn-top-shutdown {
    padding: 0 14px;
    display: block;
    margin: 10px auto 0;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    border-radius: 4px;
    border-radius: 2px;
    background-image: linear-gradient(to right, #40e1d5, #285281);
    text-decoration: none;
  }
  .compared .content .item .col-two div .start-hint .hint-content div {
    display: none;
  }
  .compared .content .item .col-two div .start-hint .hint-close {
    display: none;
  }
  .compared .content .item .col-three {
    flex: 0 0 33%;
    padding: 10px;
    font-size: 16px;
    line-height: 30px;
  }
  .compared .content .item .col-three .title {
    font-size: 12px;
    line-height: 20px;
  }
  .compared .content .item .col-three .download {
    width: 85px;
    height: 23px;
    font-size: 12px;
  }
  .compared .content .item .col-three .download a span {
    width: 12px;
    height: 12px;
    margin-left: 5px;
  }
  .compared .content .item .col-three .download a span::before {
    width: 9px;
    height: 9px;
  }
}

.compared .download-box {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.compared .download-box a {
  display: none;
  background-image: linear-gradient(to right, #ffa528, #ff4c0e);
  border-radius: 3px;
  padding: 3.5px 22px;
  align-items: center;
}

@media (max-width: 425px) {
  .compared .download-box a {
    padding: 3.5px 15px;
  }
}

.compared .download-box a.active {
  display: flex;
}

.compared .download-box a:hover {
  background-image: linear-gradient(to left, #ffa528, #ff4c0e);
  text-decoration: none;
}

.compared .download-box a .icon {
  display: inline-block;
  padding-right: 14px;
  position: relative;
}

.compared .download-box a .icon::before {
  content: '';
  position: absolute;
  right: 0;
  top: -9px;
  width: 1px;
  height: 59px;
  background: linear-gradient(150deg, transparent, #FFFFFF, transparent);
}

@media (max-width: 425px) {
  .compared .download-box a .icon::before {
    top: -6px;
    height: 41px;
  }
}

.compared .download-box a .icon img {
  width: 33px;
  height: 40px;
}

@media (max-width: 425px) {
  .compared .download-box a .icon img {
    width: 23px;
    height: 30px;
  }
}

.compared .download-box a span {
  display: inline-block;
}

.compared .download-box a .text {
  color: #fff;
  margin-left: 12px;
  font-weight: bold;
  font-size: 24px;
}

@media (max-width: 425px) {
  .compared .download-box a .text {
    font-size: 16px;
  }
}

.compared .download-box a .download-icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 14px;
  position: relative;
  transition: all 2s;
}

@media (max-width: 425px) {
  .compared .download-box a .download-icon {
    width: 40px;
    height: 40px;
  }
}

.compared .download-box a .download-icon::before {
  content: '';
  position: absolute;
  background-image: url(/static/index/images/screen-online/download-icon.svg);
  width: 21px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  animation: upDown 2s linear infinite;
  animation-direction: alternate;
}

@media (max-width: 425px) {
  .compared .download-box a .download-icon::before {
    animation: upDownMobile 2s linear infinite;
    animation-direction: alternate;
  }
}

.tutorials {
  margin-top: 94px;
  background-color: #f8fcff;
  padding: 78px 0 144px;
}

.tutorials h2 {
  font-size: 36px;
  line-height: 49px;
  text-align: center;
  color: #000000;
}

.tutorials .content {
  width: 91%;
  margin: 44px auto 0;
  background-color: #3fc9b8;
  border-radius: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
}

.tutorials .content .item {
  height: 183px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.tutorials .content .item:nth-child(1) {
  width: 29%;
}

.tutorials .content .item:nth-child(1)::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  border: 0.5px dashed #fff;
  top: 0;
  right: 0;
}

.tutorials .content .item:nth-child(1) .img img {
  width: 135px;
  height: 96px;
}

.tutorials .content .item:nth-child(1) .step {
  left: 0;
}

.tutorials .content .item:nth-child(2) {
  width: 34%;
}

.tutorials .content .item:nth-child(2)::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  border: 0.5px dashed #fff;
  top: 0;
  right: 0;
}

.tutorials .content .item:nth-child(2) .img img {
  width: 241px;
  height: 163px;
}

.tutorials .content .item:nth-child(2) .step {
  left: 25%;
}

.tutorials .content .item:nth-child(3) {
  width: 32%;
}

.tutorials .content .item:nth-child(3) .img img {
  width: 125px;
  height: 98px;
}

.tutorials .content .item:nth-child(3) .step {
  left: 30%;
}

.tutorials .content .item .step {
  position: absolute;
  top: 100%;
}

.tutorials .content .item .step span {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background-color: #285281;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 29px;
  line-height: 39px;
  font-weight: bold;
  color: #fff;
}

.tutorials .content .item .step .desc {
  font-size: 16px;
  line-height: 30px;
  color: #333333;
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .tutorials {
    padding: 78px 0 200px;
  }
}

@media (max-width: 1200px) and (max-width: 767px) {
  .tutorials {
    padding: 30px 0 50px;
  }
  .tutorials h2 {
    font-size: 21px;
  }
  .tutorials .content {
    width: 100%;
    margin: unset;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    background-color: unset;
    padding: 30px 0;
  }
  .tutorials .content .item {
    height: unset;
    padding: unset;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .tutorials .content .item:not(:first-child) {
    margin-top: 30px;
  }
  .tutorials .content .item:nth-child(1) {
    width: 100%;
  }
  .tutorials .content .item:nth-child(1)::before {
    content: unset;
  }
  .tutorials .content .item:nth-child(1) .img img {
    width: 98px;
    height: 70px;
  }
  .tutorials .content .item:nth-child(1) .step {
    top: unset;
  }
  .tutorials .content .item:nth-child(2) {
    width: 100%;
  }
  .tutorials .content .item:nth-child(2)::before {
    content: unset;
  }
  .tutorials .content .item:nth-child(2) .img img {
    width: 127px;
    height: 86px;
  }
  .tutorials .content .item:nth-child(2) .step {
    left: unset;
  }
  .tutorials .content .item:nth-child(3) {
    width: 100%;
  }
  .tutorials .content .item:nth-child(3) .img img {
    width: 100px;
    height: 79px;
  }
  .tutorials .content .item:nth-child(3) .step {
    left: unset;
  }
  .tutorials .content .item .img {
    width: 151px;
    height: 137px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 13px;
    background-color: #3fc9b8;
  }
  .tutorials .content .item .step {
    position: relative;
    top: 100%;
    width: 151px;
    top: unset;
    margin-top: -25px;
  }
  .tutorials .content .item .step .desc {
    font-size: 14px;
    line-height: 20px;
  }
}

.carousel {
  margin-top: 76px;
}

.carousel h2 {
  font-size: 36px;
  line-height: 49px;
  font-weight: bold;
  color: #000000;
  text-align: center;
}

.carousel .carousel-container {
  width: 79.5%;
  margin: 64px auto 0;
  padding-bottom: 36px;
}

.carousel .carousel-container .swiper-wrapper {
  height: auto;
}

.carousel .carousel-container .swiper-wrapper .swiper-slide {
  height: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carousel .carousel-container .swiper-wrapper .swiper-slide .desc {
  width: 67.6%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 30px;
  color: #333333;
  text-align: center;
}

.carousel .carousel-container .swiper-wrapper .swiper-slide img {
  width: 61px;
  height: 61px;
  border-radius: 50%;
  margin: 38px auto 0;
  display: block;
}

.carousel .carousel-container .swiper-wrapper .swiper-slide .name {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  margin-top: 12px;
  color: #333333;
}

.carousel .carousel-container .swiper-button-prev,
.carousel .carousel-container .swiper-container-rtl .swiper-button-next {
  background-image: none;
}

.carousel .carousel-container .swiper-button-next,
.carousel .carousel-container .swiper-container-rtl .swiper-button-prev {
  background-image: none;
}

.carousel .carousel-container .carousel-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 76, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 20%;
}

.carousel .carousel-container .carousel-button img {
  width: 12px;
  height: 20px;
}

.carousel .carousel-container .carousel-button.carousel-button-next {
  transform: rotate(180deg);
}

.carousel .carousel-container .Steps-Super {
  display: flex;
  width: 34px;
  height: 6px;
  justify-content: space-between;
  align-items: center;
  left: 50%;
  transform: translate(-50%, -50%);
}

.carousel .carousel-container .Steps-Super .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #b3b3b3;
  margin: auto;
}

.carousel .carousel-container .Steps-Super .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 76, 0, 0.92);
}

@media (max-width: 767px) {
  .carousel {
    margin-top: 30px;
  }
  .carousel h2 {
    font-size: 21px;
  }
  .carousel .carousel-container {
    width: 100%;
    margin: 10px auto 0;
    padding-bottom: 20px;
  }
  .carousel .carousel-container .swiper-wrapper .swiper-slide .desc {
    width: 67.6%;
    margin: 0 auto;
    font-size: 16px;
  }
  .carousel .carousel-container .swiper-wrapper .swiper-slide img {
    margin: 20px auto 0;
  }
  .carousel .carousel-container .carousel-button {
    width: 32px;
    height: 32px;
    top: 20%;
  }
  .carousel .carousel-container .carousel-button img {
    width: 9px;
    height: 18px;
  }
}

.screen-footer {
  margin-top: 72px;
  padding-bottom: 68px;
}

.screen-footer .content {
  width: 86%;
  margin: 0 auto;
  background: url(/static/index/images/screen-online/footer-pc.svg) no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 44px 46px;
  border-radius: 16px;
}

.screen-footer .content .left {
  width: 55%;
}

.screen-footer .content .left .title {
  font-size: 36px;
  line-height: 49px;
  font-weight: bold;
  color: #fff;
}

.screen-footer .content .left .desc {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}

.screen-footer .content .left .desc span {
  font-weight: bold;
  color: #ffff00;
}

.screen-footer .content .left .tips {
  display: flex;
}

.screen-footer .content .left .tips .star {
  display: flex;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .screen-footer .content .left .tips .star {
    margin-top: 0;
  }
}

.screen-footer .content .left .tips .star em {
  width: 11px;
  height: 11px;
  margin: 0 3px;
  color: #ffff00;
}

.screen-footer .content .left .tips .tip {
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  padding-left: 10px;
}

.screen-footer .content .left .tips .tip span {
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
  color: #ffff00;
}

.screen-footer .content .right {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.screen-footer .content .right .button-list {
  display: flex;
  margin-top: 36px;
}

.screen-footer .content .right .button-list div {
  width: 157px;
  height: 42px;
  border-radius: 4px;
}

.screen-footer .content .right .button-list div:last-child {
  margin-left: 15px;
}

.screen-footer .content .right .button-list div:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 22px;
  color: #285281;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  background-clip: padding-box;
  background-color: #fff;
  border: 2px solid transparent;
}

.screen-footer .content .right .button-list div:first-child::after {
  content: '';
  position: absolute;
  display: block;
  z-index: -1;
  top: -2px;
  bottom: -2px;
  right: -2px;
  left: -2px;
  border-radius: 4px;
  background-image: linear-gradient(to right, #40e1d5, #285281);
  transition: 4s;
}

.screen-footer .content .right .button-list div:first-child:hover::after {
  background-image: linear-gradient(to left, #40e1d5, #285281);
}

.screen-footer .content .right .button-list div:first-child span {
  position: relative;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-color: rgba(239, 96, 106, 0.2);
  margin-left: 20px;
}

.screen-footer .content .right .button-list div:first-child span::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  background-color: rgba(239, 96, 106, 0.37);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.screen-footer .content .right .button-list div:first-child span::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ef606a;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hunting 2s linear infinite;
}

@keyframes hunting {
  0% {
    width: 12px;
    height: 12px;
  }
  50% {
    width: 16px;
    height: 16px;
  }
  100% {
    width: 12px;
    height: 12px;
  }
}

.screen-footer .content .right .button-list div:last-child {
  background-image: linear-gradient(to right, #ffa528, #ff4c0e);
  overflow: hidden;
  transition: 4s;
}

.screen-footer .content .right .button-list div:last-child:hover {
  background-image: linear-gradient(to left, #ffa528, #ff4c0e);
}

.screen-footer .content .right .button-list div:last-child a {
  width: 100%;
  height: 100%;
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.screen-footer .content .right .button-list div:last-child a.showMac {
  transform: translateY(-42px);
}

.screen-footer .content .right .button-list div:last-child a span {
  width: 21px;
  height: 21px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  position: relative;
}

.screen-footer .content .right .button-list div:last-child a span::before {
  content: '';
  position: absolute;
  background-image: url(/static/index/images/screen-online/banner-download.svg);
  width: 12px;
  height: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

.screen-footer .content .right .start-hint {
  display: none;
  position: absolute;
  top: -35%;
  left: 40%;
  transform: translate(-50%, -50%);
}

.screen-footer .content .right .start-hint .hint-content {
  background: url(/static/index/images/screen-online/hint.svg) no-repeat;
  filter: drop-shadow(0 0 13px rgba(119, 63, 55, 0.1));
  background-size: cover;
  width: 331px;
  height: 149px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.screen-footer .content .right .start-hint .hint-content img {
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

.screen-footer .content .right .start-hint .hint-content .proccess {
  display: block;
  top: 46px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: url(/static/index/images/screen-online/loading-percent.gif) center center no-repeat;
  padding: unset !important;
}

.screen-footer .content .right .start-hint .hint-content p {
  text-align: center;
  line-height: 149px;
}

.screen-footer .content .right .start-hint .hint-content span {
  display: block;
  text-align: center;
  padding: 0 20px;
}

.screen-footer .content .right .start-hint .hint-content .desc {
  font-size: 18px;
  line-height: 22px;
  color: #666666;
}

.screen-footer .content .right .start-hint .hint-content .hint-button-list {
  width: 217px;
  height: 37px;
  border-radius: 2px;
  background-image: linear-gradient(to right, #40e1d5, #285281);
  overflow: hidden;
  transition: 4s;
}

.screen-footer .content .right .start-hint .hint-content .hint-button-list:hover {
  background-image: linear-gradient(to left, #40e1d5, #285281);
}

.screen-footer .content .right .start-hint .hint-content .hint-button-list a {
  width: 100%;
  height: 100%;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.screen-footer .content .right .start-hint .hint-content .hint-button-list a.activeMac {
  transform: translateY(-37px);
}

.screen-footer .content .right .start-hint .hint-content div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}

.screen-footer .content .right .start-hint .hint-content div span {
  margin: 0 3px;
  padding: 3px 10px;
  border-radius: 2px;
  background-image: linear-gradient(to right, #40e1d5, #285281);
  overflow: hidden;
  transition: 4s;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  cursor: pointer;
}

.screen-footer .content .right .start-hint .hint-content div span:hover {
  background-image: linear-gradient(to left, #40e1d5, #285281);
}

.screen-footer .content .right .start-hint .hint-close {
  position: absolute;
  top: 13%;
  right: 8%;
  cursor: pointer;
}

.screen-footer .content .right .start-hint .hint-close::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 2px;
  background-color: #666666;
  border-radius: 5px;
  transform: rotate(45deg);
}

.screen-footer .content .right .start-hint .hint-close::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 2px;
  background-color: #666666;
  border-radius: 5px;
  transform: rotate(-45deg);
}

@media (max-width: 1200px) {
  .screen-footer .content .right .button-list {
    flex-direction: column;
  }
  .screen-footer .content .right .button-list div:last-child {
    margin-top: 15px;
    margin-left: 0;
  }
}

@media (max-width: 1200px) and (max-width: 767px) {
  .screen-footer .content {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    background: url(/static/index/images/screen-online/footer-mobile.svg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
  }
  .screen-footer .content .left {
    width: 100%;
    text-align: center;
  }
  .screen-footer .content .left .title {
    font-size: 26px;
    line-height: 37px;
  }
  .screen-footer .content .left .desc {
    font-size: 16px;
    line-height: 23px;
  }
  .screen-footer .content .left .tips {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .screen-footer .content .left .tips .tip {
    padding-left: unset;
    margin-top: 10px;
    font-size: 16px;
    line-height: 20px;
  }
  .screen-footer .content .left .tips .tip span {
    font-size: 16px;
    line-height: 20px;
  }
  .screen-footer .content .right {
    width: 100%;
    justify-content: center;
  }
  .screen-footer .content .right .start-hint {
    left: 50%;
  }
  .screen-footer .content .right .start-hint .hint-content img {
    display: none;
  }
  .screen-footer .content .right .start-hint .hint-content .proccess {
    display: none;
  }
  .screen-footer .content .right .start-hint .hint-content p {
    display: none;
  }
  .screen-footer .content .right .start-hint .hint-content .desc {
    display: none;
  }
  .screen-footer .content .right .start-hint .hint-content span {
    display: block;
    font-size: 16px;
  }
  .screen-footer .content .right .start-hint .hint-content .hint-button-list {
    display: none;
  }
  .screen-footer .content .right .start-hint .hint-content .btn-top-shutdown {
    padding: 10px 20px;
    display: block;
    margin: 10px auto 0;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    border-radius: 4px;
    border-radius: 2px;
    background-image: linear-gradient(to right, #40e1d5, #285281);
    text-decoration: none;
  }
  .screen-footer .content .right .start-hint .hint-content div {
    display: none;
  }
  .screen-footer .content .right .start-hint .hint-close {
    display: none;
  }
}

/* feedback */
.feedback {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  padding-top: 50px;
  max-width: 576px;
  min-height: 510px;
  max-height: 504px;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 30px 5px rgba(74, 40, 32, 0.1);
  z-index: 99;
  font-size: 16px;
  color: #222;
}

@media (max-width: 767px) {
  .feedback {
    width: 92%;
  }
}

.feedback .feedback_container {
  width: 80%;
  margin: 0 auto;
}

.feedback p {
  text-align: left;
  margin: 5px 0 20px 0;
  font-size: 18px;
}

.feedback input {
  margin-bottom: 10px;
  width: 100%;
  min-height: 32px;
  border: 0;
  outline: 0;
  background-color: #e2f0f9;
  text-align: left;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 16px;
  color: #666;
}

.feedback #form_contents {
  margin: 0;
  border: 0;
  padding: 6px 0;
  height: 100px;
  width: 100%;
  background-color: #e2f0f9;
  font-size: 16px;
  line-height: 18px;
  text-indent: 10px;
  color: #666;
}

.feedback #form_submit {
  display: block;
  margin: 30px auto;
  width: 160px;
  height: 48px;
  border-radius: 6px;
  line-height: 40px;
  color: #fff;
  font-size: 18px;
  background-color: #f6762b;
  text-align: center;
  cursor: pointer;
}

.feedback .title {
  margin-bottom: 26px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  text-align: left;
}

.feedback-close {
  position: absolute;
  top: 13%;
  right: 8%;
  cursor: pointer;
}

.feedback-close::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 2px;
  background-color: #666666;
  border-radius: 5px;
  transform: rotate(45deg);
}

.feedback-close::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 2px;
  background-color: #666666;
  border-radius: 5px;
  transform: rotate(-45deg);
}

.feedback #mail-tip {
  display: none;
  position: absolute;
  top: 206px;
  font-size: 14px;
  color: #c7340f;
}

#feedbacktip {
  display: none;
  position: fixed;
  z-index: 990;
  right: 0px;
  top: 60%;
  width: 75px;
  height: 128px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(193, 113, 93, 0.35);
  box-sizing: border-box;
  padding: 0 6px;
}

#feedbacktip li {
  position: relative;
  height: 50%;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
}

#feedbacktip li:first-child {
  border-bottom: 1px dashed #29374c;
}

#feedbacktip li::after {
  background: #fff;
  content: "";
  clear: both;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -6px;
}

#feedbacktip li a {
  position: absolute;
  width: 0px;
  background: #fff;
  top: 0;
  right: -6px;
  line-height: 72px;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
  font-size: 16px;
  color: #ff8569;
  padding-left: 16px;
  box-sizing: border-box;
  transition: width .3s linear;
  overflow: hidden;
  color: #222;
}

#feedbacktip li a:hover {
  color: #ff8569;
  text-decoration: none;
}

#feedbacktip li:hover a {
  width: 250px;
  box-shadow: 0 0 16px rgba(193, 113, 93, 0.35);
}

#feedbacktip li i {
  width: 100%;
  height: 40px;
  background: #fff url(/images/free-online-video-converter/feedbacktip.png) no-repeat center center;
  margin: auto;
  display: block;
  position: relative;
  z-index: 2;
}

#feedbacktip li:nth-child(1) i {
  background-position-y: 0px;
}

#feedbacktip li:nth-child(2) i {
  background-position-y: -40px;
}

.info_form {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 460px;
  height: 100px;
  background-color: #f7f7f7;
  border-radius: 6px;
  padding: 30px 0;
  line-height: 24px;
  font-size: 16px;
  box-shadow: 0 0 30px 5px rgba(74, 40, 32, 0.1);
  z-index: 999;
  text-align: center;
}
