@font-face {
  font-family: 'HarmonyOS_Sans_SC_Bold';
  src: url('../fonts/HarmonyOS_Sans_SC_Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Medium';
  src: url('../fonts/HarmonyOS_Sans_SC_Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Regular';
  src: url('../fonts/HarmonyOS_Sans_SC_Regular.ttf') format('truetype');
}

body {
  font-family: 'HarmonyOS_Sans_SC_Regular';
}

body .font-medium{
	font-family: 'HarmonyOS_Sans_SC_Medium';
}

body .font-bold{
	font-family: 'HarmonyOS_Sans_SC_Bold';
}

nav li.active a {
	font-size: 1.125rem;
	font-weight: bold;
	position: relative;
	color: #1F2329;
}

nav li a {
	font-weight: 400;
	font-size: 1rem;
	color: #1F2329;
}

nav li.active a:after {
	content: '';
	display: block;
	background: linear-gradient(90deg, #FF79B8 0%, #FFABA7 100%);
	width: 1rem;
	height: 4px;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 0.375rem;
}

nav.active {
	background: rgba(255, 255, 255, 0.8);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

.bannerSwiper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 5px;
	opacity: 1;
	margin-right: 8px;
}

.bannerSwiper .swiper-pagination-bullet-active {
	background: #fff;
	width: 1.8rem;
	transition: width .1s ease;
}

.bannerSwiper .swiper-pagination {
	bottom: 1.25rem !important;
	width: 100%;
}

.connectWrap .item>img {
	position: absolute;
	top: 12px;
	transition: opacity 0.5s ease;
}

.connectWrap .item:hover .icon {
	opacity: 0;
}

.connectWrap .item:hover .iconActive {
	opacity: 1;
}

.connectWrap .item:hover .desc {
	color: white;
	transition: all .5s;
}

.connectWrap .item:hover {
	background: linear-gradient(45deg, #7C6BE8 0%, #B49FFF 100%);
}

.connectWrap .wxItem:hover .wxConnect {
	display: block;
}

.connectWrap .phoneItem:hover .phoneConnect {
	display: block;
}

@-webkit-keyframes FadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes FadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@-webkit-keyframes FadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

@keyframes FadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

@-webkit-keyframes ZoomIn {
	0% {
		-webkit-transform: scale3d(.25, .25, .25);
		transform: scale3d(.25, .25, .25);
		opacity: 0
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
		opacity: 1
	}
}

@keyframes ZoomIn {
	0% {
		-webkit-transform: scale3d(.25, .25, .25);
		transform: scale3d(.25, .25, .25);
		opacity: 0
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
		opacity: 1
	}
}

@-webkit-keyframes ZoomOut {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
		opacity: 1
	}

	to {
		-webkit-transform: scale3d(.1, .1, .1);
		transform: scale3d(.1, .1, .1);
		opacity: 0
	}
}

@keyframes ZoomOut {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
		opacity: 1
	}

	to {
		-webkit-transform: scale3d(.1, .1, .1);
		transform: scale3d(.1, .1, .1);
		opacity: 0
	}
}

.fade-enter,
.fade-leave {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-duration: .14s;
	animation-duration: .14s;
	transition: none;
	pointer-events: none;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: opacity
}

.fade-enter {
	opacity: 0
}

.fade-leave {
	-webkit-animation-delay: .08s;
	animation-delay: .08s
}

.fade-enter.fade-enter-active {
	-webkit-animation-name: FadeIn;
	animation-name: FadeIn;
	-webkit-animation-play-state: running;
	animation-play-state: running
}

.fade-leave.fade-leave-active,
.zoom-enter.zoom-enter-active,
.zoom-leave.zoom-leave-active {
	-webkit-animation-name: FadeOut;
	animation-name: FadeOut;
	-webkit-animation-play-state: running;
	animation-play-state: running
}

.zoom-enter {
	-webkit-animation-duration: .3s;
	animation-duration: .3s
}

.zoom-enter,
.zoom-leave {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
	transition: none;
	pointer-events: none;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: opacity, transform
}

.zoom-enter {
	-webkit-animation-delay: .08s;
	animation-delay: .08s;
	opacity: 0;
	-webkit-animation-timing-function: cubic-bezier(.08, .8, .18, 1);
	animation-timing-function: cubic-bezier(.08, .8, .18, 1)
}

.zoom-enter.zoom-enter-active,
.zoom-leave.zoom-leave-active {
	-webkit-animation-name: ZoomIn;
	animation-name: ZoomIn
}

.zoom-leave {
	-webkit-animation-duration: .28s;
	animation-duration: .28s;
	-webkit-animation-timing-function: cubic-bezier(.52, .3, .06, 1);
	animation-timing-function: cubic-bezier(.52, .3, .06, 1)
}

.zoom-leave.zoom-leave-active {
	-webkit-animation-name: ZoomOut;
	animation-name: ZoomOut
}

.animate-hidden {
	opacity: 0;
	-webkit-transform: translateY(3.75rem);
	transform: translateY(3.75rem);
}

.animate-show {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

::-webkit-scrollbar {
  width: 3px; /* 设置滚动条宽度 */
}

/* 水平滚动条样式 */
::-webkit-scrollbar-track {
  background-color: #F2F3F3; /* 设置滑道背景色 */
}

::-webkit-scrollbar-thumb {
  background-color: #8A8C96; /* 设置滑块背景色 */
  border-radius: 4px; /* 设置滑块圆角 */
}

/* 垂直滚动条样式 */
::-webkit-scrollbar-corner {
  display: none; /* 去除交叉点 */
}

/* Firefox浏览器支持 */
@supports (-moz-appearance:none) {
  ::-moz-scrollbar {
      width: 3px; /* 设置滚动条宽度 */
  }

  ::-moz-scrollbar-track {
      background-color: #F2F3F3; /* 设置滑道背景色 */
  }

  ::-moz-scrollbar-thumb {
      background-color: #8A8C96; /* 设置滑块背景色 */
      border-radius: 4px; /* 设置滑块圆角 */
  }
}