.container {
  user-select: none;
}

[v-cloak] {
  display: none;
}

.nav {
  width: 100%;
  min-width: 800px;
  height: 51px;
  background-color: #282828;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
}

.nav-content {
  width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-weight: 700;
}

.logo-text {
  font-size: 24px;
  margin-right: 120px;

  &:hover {
    cursor: pointer;
  }
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

li {
  margin-right: 30px;
  color: #fff;
  font-size: 15px;
  position: relative;

  &:hover {
    cursor: pointer;
  }
}

.li-line {
  width: 23px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links-item {
  width: 84px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  margin-left: 12px;

  &:hover {
    cursor: pointer;
    background: #9b1cff;
  }
}

.main {
  width: 100%;
  min-width: 800px;
  height: 651px;
  background: linear-gradient(90deg, #7f00ff, #e100ff);
  padding-top: 51px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-content {
  width: 1280px;
  height: 100%;
  display: flex;
  justify-content: space-around;
}

.main-content-slide {
  width: 300px;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}

.main-content-slide-title {
  font-weight: 700;
  font-size: 18px;
}

.main-content-slide-logo {
  width: 120px;
  height: 120px;
  margin: 44px 0 18px;
}

.main-content-slide-intro {
  font-weight: 510;
  font-size: 35px;
}

.download-btn {
  width: 212.5px;
  height: 72px;
  border: 1.375px solid rgba(255, 255, 255, 0.5);
  background: #000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;

  &:hover {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  }
}

.download-btn.google-play {
  margin-top: 50px;
}

.download-btn.app-store {
  margin-top: 12px;
}

.download-btn-img {
  width: 42px;
  height: 42px;
  margin-right: 12px;
}

.download-text-one {
  font-size: 16px;
  font-weight: 510;
  color: rgba(255, 255, 255, 0.8);
}

.download-text-two {
  font-size: 25px;
  font-weight: 510;
  color: rgba(255, 255, 255, 1);
}

.main-content-banner {
  width: 447px;
  margin-left: 156px;
  position: relative;
}

.main-content-banner-img {
  width: 281px;
  height: 525.5px;
  position: absolute;
  left: 83px;
  top: 52.5px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
}

.main-content-banner-img.active {
  opacity: 1;
}

.main-content-banner-arrow {
  width: 33px;
  height: 33px;
  position: absolute;
  top: 289px;
  right: 0;

  &:hover {
    cursor: pointer;
  }
}

.main-content-banner-arrow.left {
  left: 0;
  transform: rotate(180deg);
}

.main-content-banner-dots {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.main-content-banner-dots-item {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  margin-right: 12px;

  &:hover {
    cursor: pointer;
  }
}

.main-content-banner-dots-item.active {
  background: #fff;
}

.module-title {
  font-size: 38px;
  color: #9b1cff;
  font-weight: 700;
}

.about {
  width: 100%;
  color: #9b1cff;
  font-weight: 700;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.about-wrapper-img {
  width: 348.5px;
  border-radius: 8px;
}

.about-wrapper-content {
  width: 481.5px;
  height: 426.5px;
  box-sizing: border-box;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  font-size: 16px;
  font-weight: 510;
  padding: 24px;
  margin-left: 50px;
  overflow-y: auto;
  /* scrollbar-width: none; */
  color: #666666;
}

.indent-text {
  text-indent: 32px;
}

.services {
  width: 100%;
  color: #9b1cff;
  font-weight: 700;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.services-wrapper {
  width: 904.5px;
  padding: 24px 0;
  margin: 26px 0 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.services-swiper {
  display: flex;
  transition: transform 0.5s ease;
}

.service-item {
  width: 277.5px;
  height: 596px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
  margin: 0 12px;

  &:last-child {
    margin-right: 0;
  }
}

.service-item-img {
  width: 100%;
  height: 100%;
}

.swiper-arrows {
  display: flex;
}

.swiper-arrow {
  width: 65.5px;
  height: 65.5px;
  border-radius: 50%;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
  margin: 0 25.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;

  &:hover {
    cursor: pointer;
    background: #9b1cff;
    box-shadow: 0 0 16px 0 rgba(155, 28, 255, 0.5);
  }
}

.swiper-arrow-icon {
  width: 33px;
  height: 33px;
}

.swiper-arrow-left {
  transform: rotate(180deg);
}

.contact {
  width: 100%;
  background: rgba(155, 28, 255, 0.1);
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.contact-img {
  width: 658.5px;
  height: 318.5px;
  border-radius: 8px;
  margin-top: 50px;
}

.footer {
  width: 100%;
  min-height: 111px;
  background: #9b1cff;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  .footer-text {
    font-size: 18px;
    margin: 1px 0;
  }
}
