body {
  background-color: #F7F7F7;
}
body .header .header-wrapper {
  padding-top: var(--header-height);
}
.swiper {
  width: 100%;
  overflow: hidden;
  height: calc(100vh - var(--header-height));
}
.swiper .swiper-wrapper .swiper-slide {
  position: relative;
}
.swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper .swiper-wrapper .swiper-slide .swiper-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: #000;
}
.swiper .swiper-wrapper .swiper-slide .swiper-slide-content .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.swiper .swiper-wrapper .swiper-slide .swiper-slide-content .container .title,
.swiper .swiper-wrapper .swiper-slide .swiper-slide-content .container .desc {
  width: 50%;
}
.swiper .swiper-wrapper .swiper-slide .swiper-slide-content .container .button-wrapper {
  display: flex;
}
.swiper .swiper-wrapper .swiper-slide .swiper-slide-content .container .button-wrapper .button {
  height: 50px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(to left top, var(--primary-color), var(--primary-color-light) 70%), linear-gradient(to right bottom, var(--primary-color), var(--primary-color-light) 70%);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.swiper .swiper-wrapper .swiper-slide .swiper-slide-content .container .button-wrapper .button:hover {
  background: #fff;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.swiper .swiper-wrapper .swiper-slide .swiper-slide-content .container .button-wrapper .button .iconfont {
  margin-left: 4px;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.swiper .swiper-wrapper .swiper-slide.swiper-slide-active .swiper-slide-content .title {
  animation: indjsText 1s ease both 0.2s;
}
.swiper .swiper-wrapper .swiper-slide.swiper-slide-active .swiper-slide-content .desc {
  animation: indjsText 1s ease both 0.4s;
}
.swiper .swiper-wrapper .swiper-slide.swiper-slide-active .swiper-slide-content .button-wrapper {
  animation: indjsText 1s ease both 0.6s;
}
.swiper .swiper-pagination {
  bottom: 10%;
  padding: 0 var(--container-margin);
  display: flex;
  align-items: center;
}
.swiper .swiper-pagination .button-prev {
  margin-right: 16px;
}
.swiper .swiper-pagination .button-next {
  margin-left: 16px;
}
.swiper .swiper-pagination .button-prev,
.swiper .swiper-pagination .button-next {
  cursor: pointer;
}
.swiper .swiper-pagination .button-prev .iconfont,
.swiper .swiper-pagination .button-next .iconfont {
  color: #fff;
  font-size: 28px;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  width: initial;
  height: initial;
  background-color: initial;
  border-radius: initial;
  color: #fff;
  display: flex;
  align-items: center;
}
.swiper .swiper-pagination .swiper-pagination-bullet .line {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 16px;
  position: relative;
  font-size: 18px;
}
.swiper .swiper-pagination .swiper-pagination-bullet .line::before {
  content: "";
  width: 0;
  height: 100%;
  background: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-last .line {
  display: none;
}
.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .line::before {
  width: 100%;
  transition: width 6s linear;
}
@keyframes indjsText {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.product {
  --product-list-gap: 10px;
}
.product .product-header {
  display: flex;
  justify-content: space-between;
}
.product .product-header .product-nav-list {
  display: flex;
  font-family: 'OPPOSans-B';
}
.product .product-header .product-nav-list .product-nav-title {
  position: relative;
}
.product .product-header .product-nav-list .product-nav-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color-light) 50%, var(--primary-color) 100%);
}
.product .product-header .input-wrapper {
  background-color: #E5E5E5;
  width: calc(50% - (var(--product-list-gap) / 2));
  height: 60px;
  border-radius: 32px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  color: #B3B3B3;
  border: 1px solid var(--primary-color);
}
.product .product-header .input-wrapper input {
  width: initial;
  height: 100%;
  flex: 1;
  background-color: transparent;
}
.product .product-header .input-wrapper input::placeholder {
  color: #B3B3B3;
  font-size: 20px;
}
.product .product-header .input-wrapper .search-button {
  cursor: pointer;
}
.product .product-header .input-wrapper .search-button .iconfont {
  font-size: 28px;
  color: #B3B3B3;
}
.product .product-list {
  display: flex;
  gap: var(--product-list-gap);
  overflow: hidden;
}
.product .product-list .product-item {
  position: relative;
  display: block;
  overflow: hidden;
}
.product .product-list .product-item .title {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: 'OPPOSans-M';
}
.product .product-list .product-item img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product .product-list .product-item:hover img {
  transform: scale(1.1);
}
.product .product-list .product-left {
  width: calc(25% - (var(--product-list-gap) / 2));
}
.product .product-list .product-left .product-item {
  aspect-ratio: 395 / 475;
}
.product .product-list .product-right {
  width: calc(75% - (var(--product-list-gap) / 2));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.product .product-list .product-right .product-right-top {
  display: flex;
  gap: var(--product-list-gap);
}
.product .product-list .product-right .product-right-top .product-item {
  width: calc(100% / 3 * 2 - (var(--product-list-gap) / 2));
}
.product .product-list .product-right .product-right-top .product-item:last-child {
  width: calc(100% / 3 - (var(--product-list-gap) / 2));
  aspect-ratio: 1154 / 682;
}
.product .product-list .product-right .product-right-bottom {
  display: flex;
  gap: var(--product-list-gap);
}
.product .product-list .product-right .product-right-bottom .product-item {
  width: calc(100% / 3 - (var(--product-list-gap) * 2 / 3));
  aspect-ratio: 1154 / 682;
}
.product .product-list-mobile {
  display: none;
}
.product .product-bottom {
  --product-list-gap: 20px;
  display: flex;
  gap: var(--product-list-gap);
}
.product .product-bottom .product-bottom-item {
  display: flex;
  background-color: #E4E4E4;
  padding: 24px;
  align-items: center;
  width: calc(50% - (var(--product-list-gap) / 2) + 2px);
}
.product .product-bottom .product-bottom-item:last-child {
  width: calc(50% - (var(--product-list-gap) / 2) - 2px);
}
.product .product-bottom .product-bottom-item:hover .image img {
  transform: rotateY(180deg);
}
.product .product-bottom .product-bottom-item:hover .right-content {
  color: var(--primary-color);
}
.product .product-bottom .product-bottom-item:hover .right-content .desc {
  color: var(--primary-color);
}
.product .product-bottom .product-bottom-item .image {
  flex-shrink: 0;
  position: relative;
}
.product .product-bottom .product-bottom-item .image img {
  display: block;
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}
.product .product-bottom .product-bottom-item .right-content {
  padding-left: 48px;
}
.product .product-bottom .product-bottom-item .right-content .desc {
  color: #4D4D4D;
}
.title-wrapper {
  display: flex;
}
.title-wrapper .title {
  position: relative;
  font-family: 'OPPOSans-B';
}
.title-wrapper .title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color-light) 50%, var(--primary-color) 100%);
}
@keyframes rotate {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(10px) scale(1.1, 0.9);
  }
  75% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.solution .solution-content-wrapper {
  display: flex;
}
.solution .solution-content-wrapper .solution-content {
  width: calc(50% + 12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solution .solution-content-wrapper .solution-content .title {
  width: 75%;
  font-family: 'OPPOSans-B';
}
.solution .solution-content-wrapper .solution-content .desc {
  width: 80%;
  color: #999999;
  line-height: 2;
}
.solution .solution-content-wrapper .solution-content .solution-bottom {
  display: flex;
  align-items: center;
  gap: 58px;
  font-family: 'OPPOSans-M';
}
.solution .solution-content-wrapper .solution-content .solution-bottom .icon-text {
  display: flex;
  align-items: center;
  gap: 12px;
}
.solution .solution-content-wrapper .solution-content .solution-bottom .icon-text img {
  width: 50px;
}
.solution .solution-content-wrapper .solution-right {
  width: calc(50% - 12px);
  position: relative;
}
.solution .solution-content-wrapper .solution-right .solution-bg {
  width: 100%;
}
.solution .solution-content-wrapper .solution-right .jiantou-list img {
  position: absolute;
  z-index: 2;
}
.solution .solution-content-wrapper .solution-right .jiantou-list img:nth-child(1) {
  top: 20%;
  right: 26%;
  animation: rotate 0.7s linear infinite 0.2s;
}
.solution .solution-content-wrapper .solution-right .jiantou-list img:nth-child(2) {
  top: 34%;
  right: 54%;
  animation: rotate 0.7s linear infinite 0.4s;
}
.solution .solution-content-wrapper .solution-right .jiantou-list img:nth-child(3) {
  top: 25%;
  right: 78%;
  animation: rotate 0.7s linear infinite 0.6s;
}
.partner {
  overflow: hidden;
  background-color: #F7F7F7;
}
.partner .image-wrapper {
  margin: auto;
}
.partner .image-wrapper img {
  width: 100%;
  display: block;
}
.partner .scroll {
  margin-top: 24px;
  display: flex;
  opacity: 0.8;
  width: max-content;
  animation: 30s rowLeft linear infinite normal;
}
.partner .scroll:nth-child(odd) {
  animation: 20s rowLeft linear infinite normal;
}
.partner .scroll .p_list {
  display: flex;
  gap: 24px;
  margin-right: 24px;
}
.partner .scroll .p_loopitem {
  width: 248px;
  aspect-ratio: 16 / 9;
  position: relative;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 24px 48px;
}
.partner .scroll .p_loopitem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes rowLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.subscription {
  aspect-ratio: 1920 / 528;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.subscription .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.subscription .container .title {
  font-family: 'OPPOSans-M';
}
.subscription .container .desc {
  color: #F1F1F1;
}
.subscription .container .subscription-form {
  display: flex;
  align-items: center;
}
.subscription .container .subscription-form .single-input-box {
  background-color: rgba(160, 160, 160, 0.4);
  width: 352px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 0 26px;
}
.subscription .container .subscription-form .single-input-box input {
  flex: 1;
  border: none;
  color: #000;
  height: 100%;
  transition: border 0.4s ease;
  background-color: transparent;
  color: #fff;
}
.subscription .container .subscription-form .single-input-box input::placeholder {
  color: #E4E4E4;
}
.subscription .container .subscription-form .btn {
  width: 38px;
  height: 38px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.subscription .container .subscription-form .btn .iconfont {
  color: #fff;
}
@media (max-width: 1400px) {
  .product .product-list .product-item .title {
    top: 12px;
    left: 12px;
  }
  .solution .container .solution-right .jiantou-list img {
    width: 28px;
  }
  .solution .container .solution-right .jiantou-list img:nth-child(1) {
    top: 18%;
  }
  .solution .container .solution-right .jiantou-list img:nth-child(2) {
    top: 32%;
  }
  .solution .container .solution-right .jiantou-list img:nth-child(3) {
    top: 23%;
  }
}
@media (max-width: 1600px) {
  .solution .container .solution-right .jiantou-list img {
    width: 34px;
  }
  .solution .container .solution-right .jiantou-list img:nth-child(1) {
    top: 18%;
  }
  .solution .container .solution-right .jiantou-list img:nth-child(2) {
    top: 32%;
  }
  .solution .container .solution-right .jiantou-list img:nth-child(3) {
    top: 23%;
  }
}
@media screen and (min-width: 1600px) {
  :root {
    --container-width: 1440px;
  }
}
@media screen and (min-width: 1800px) {
  :root {
    --container-width: 1600px;
  }
}
@media screen and (max-width: 992px) {
  .swiper {
    height: auto;
    aspect-ratio: 1920 / 1080;
  }
  .swiper .swiper-wrapper .swiper-slide .swiper-slide-content .container {
    align-items: center;
  }
  .swiper .swiper-wrapper .swiper-slide .swiper-slide-content .container .title {
    width: 100%;
    font-size: 16px;
  }
  .swiper .swiper-wrapper .swiper-slide .swiper-slide-content .container .desc {
    display: none;
  }
  .swiper .swiper-wrapper .swiper-slide .swiper-slide-content .container .button-wrapper {
    justify-content: center;
    display: none;
  }
  .swiper .swiper-wrapper .swiper-slide .swiper-slide-content .container .button-wrapper .button {
    height: 40px;
    padding: 0 24px;
  }
  .swiper .swiper-pagination {
    justify-content: center;
    bottom: 20px;
    padding: 0 20px;
    flex-direction: row;
    right: 0;
    width: 100%;
  }
  .swiper .swiper-pagination .swiper-pagination-bullet .line {
    width: 30px;
    margin: 0 8px;
  }
  .product {
    padding: 24px 0;
  }
  .product .product-header {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .product .product-header .product-nav-list {
    justify-content: center;
  }
  .product .product-header .input-wrapper {
    width: 100%;
    height: 40px;
  }
  .product .product-header .input-wrapper input::placeholder {
    font-size: 14px;
  }
  .product .product-header .input-wrapper .search-button .iconfont {
    font-size: 24px;
  }
  .product .product-list {
    display: none;
    flex-direction: column;
    --product-list-gap: 12px;
  }
  .product .product-list .product-left {
    width: 100%;
  }
  .product .product-list .product-middle {
    width: 100%;
    flex-direction: column;
  }
  .product .product-list .product-right {
    width: 100%;
    gap: var(--product-list-gap);
  }
  .product .product-list .product-right .product-right-top,
  .product .product-list .product-right .product-right-bottom {
    flex-direction: column;
    width: 100%;
  }
  .product .product-list .product-right .product-right-top .product-item,
  .product .product-list .product-right .product-right-bottom .product-item {
    width: 100% !important;
  }
  .product .product-list-mobile {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .product .product-list-mobile .product-item {
    width: 100%;
    position: relative;
  }
  .product .product-list-mobile .product-item img {
    width: 100%;
  }
  .product .product-list-mobile .product-item .title {
    position: absolute;
    top: 6px;
    left: 6px;
  }
  .product .product-list-mobile .row {
    display: flex;
    gap: 8px;
  }
  .product .product-list-mobile .row .product-item,
  .product .product-list-mobile .row .column {
    width: calc(50% - 4px);
  }
  .product .product-list-mobile .row .column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .product .product-list-mobile .row .column .product-item {
    width: 100%;
  }
  .product .product-bottom {
    gap: 8px;
    flex-direction: column;
  }
  .product .product-bottom .product-bottom-item {
    padding: 12px;
    width: 100% !important;
  }
  .product .product-bottom .product-bottom-item .image img {
    width: 50px;
  }
  .product .product-bottom .product-bottom-item .right-content {
    padding-left: 12px;
  }
  .title-wrapper {
    margin-bottom: 24px;
  }
  .title-wrapper .title::after {
    bottom: -6px;
    height: 4px;
  }
  .solution {
    padding: 12px 0;
  }
  .solution .solution-content-wrapper {
    flex-direction: column;
  }
  .solution .solution-content-wrapper .solution-content {
    width: 100%;
  }
  .solution .solution-content-wrapper .solution-content .title {
    width: 100%;
  }
  .solution .solution-content-wrapper .solution-content .solution-bottom {
    align-items: flex-start;
    gap: 20px;
  }
  .solution .solution-content-wrapper .solution-content .solution-bottom .icon-text img {
    width: 45px;
  }
  .solution .solution-content-wrapper .solution-right {
    margin-top: 24px;
    width: 100%;
  }
  .solution .solution-content-wrapper .solution-right .jiantou-list img {
    width: 24px;
  }
  .solution .solution-content-wrapper .solution-right .jiantou-list img:nth-child(1) {
    top: 16%;
  }
  .solution .solution-content-wrapper .solution-right .jiantou-list img:nth-child(2) {
    top: 30%;
  }
  .solution .solution-content-wrapper .solution-right .jiantou-list img:nth-child(3) {
    top: 21%;
  }
  .partner .image-wrapper {
    width: 100%;
  }
  .partner .scroll .p_loopitem {
    width: 160px;
    height: inherit;
    aspect-ratio: 328 / 162;
    padding: 24px;
  }
  .subscription {
    aspect-ratio: 4 / 3;
  }
  .subscription .container {
    text-align: center;
  }
  .subscription .container .subscription-form {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .subscription .container .subscription-form .single-input-box {
    width: 100%;
    max-width: 300px;
    height: 50px;
  }
}
