.banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.banner .swiper-button-next,
.banner .swiper-button-prev {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.banner .swiper-button-next::after,
.banner .swiper-button-prev::after {
  font-size: 38px;
  color: #fff;
}
.banner:hover .swiper-button-next,
.banner:hover .swiper-button-prev {
  opacity: 1;
}
.product {
  width: 100%;
  padding: 60px 0;
}
.product .product-title {
  width: 100%;
  margin-bottom: 60px;
}
.product .product-title .title {
  position: relative;
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  color: var(--text-color);
  padding-bottom: 10px;
}
@media (max-width: 1024px) {
  .product .product-title .title {
    font-size: 32px;
  }
}
.product .product-title .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: var(--text-color);
}
.product .product-container {
  position: relative;
  width: 100%;
}
.product .product-container .product-swiper {
  position: relative;
  width: calc(100% - 200px);
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .product .product-container .product-swiper {
    width: calc(100% - 100px);
  }
}
.product .product-container .product-swiper .swiper-wrapper {
  width: 100%;
}
.product .product-container .product-swiper .swiper-wrapper .product-swiper-item {
  width: 100%;
}
.product .product-container .product-swiper .swiper-wrapper .product-swiper-item .pic {
  position: relative;
  width: 100%;
  padding-top: 100%;
  user-select: none;
}
.product .product-container .product-swiper .swiper-wrapper .product-swiper-item .pic .pic-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product .product-container .product-swiper .swiper-wrapper .product-swiper-item .pic .pic-inner img {
  width: 100%;
  height: 100%;
}
.product .product-container .product-swiper .swiper-wrapper .product-swiper-item .name {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  color: var(--text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
}
.product .product-container .product-swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  transition: 0.2s;
  cursor: pointer;
  user-select: none;
  z-index: 1;
}
.product .product-container .product-swiper-btn.left {
  left: 0;
}
.product .product-container .product-swiper-btn.right {
  right: 0;
}
.product .product-container .product-swiper-btn.right .icon {
  transform: rotate(180deg);
}
.product .product-container .product-swiper-btn .icon {
  width: 18px;
  height: 18px;
  display: block;
  color: #999;
}
.product .product-container .product-swiper-btn:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background: var(--blue-color);
}
.product .product-container .product-swiper-btn:hover .icon {
  color: #fff;
}
.product .product-cursor {
  margin-top: 30px;
  position: relative;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  z-index: 1;
}
.product .product-cursor::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #fff, #eee, #fff);
  z-index: -1;
}
.product .product-cursor .cursor-box {
  width: 100px;
  height: 100%;
  padding: 0 8px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product .product-cursor .cursor-box .icon {
  width: 24px;
  height: 24px;
  line-height: 0;
  color: var(--orange-color);
  animation: move-product-cursor-gesture 3.25s infinite;
}
@keyframes move-product-cursor-gesture {
  0%,
  to {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
}
.product .product-cursor .cursor-box .point {
  width: 12px;
  height: 12px;
  line-height: 0;
  color: #fff;
}
.product .product-cursor .cursor-box .point.right {
  transform: rotate(180deg);
}
.service {
  position: relative;
  width: 100%;
  height: 600px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #f7f7f7;
  z-index: 1;
}
@media (max-width: 1024px) {
  .service {
    height: 400px;
  }
}
.service .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--blue-color), transparent);
  z-index: 1;
}
.service .box {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.service .box .title {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .service .box .title {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
.service .box .btns {
  display: flex;
  gap: 20px;
}
.service .box .btns .btn {
  width: 180px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: var(--text-color);
  background: var(--orange-color);
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}
@media (max-width: 1024px) {
  .service .box .btns .btn {
    width: 120px;
    height: 40px;
    font-size: 14px;
  }
}
.service .box .btns .btn .icon {
  width: 14px;
  height: 14px;
  line-height: 0;
  color: inherit;
  transform: rotate(180deg);
  margin-left: 8px;
  transition: transform 0.2s;
}
.service .box .btns .btn.line {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.service .box .btns .btn.line:hover {
  background: var(--orange-color);
  border-color: var(--orange-color);
  color: var(--text-color);
}
.service .box .btns .btn:hover .icon {
  transform: rotate(180deg) translateX(-5px);
}
/*# sourceMappingURL=index.css.map */