.slider {
	height: 60rem;
}

.slider-swiper {
	width: 100%;
	height: 100%;
	position: relative;
}

.slider-slide {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.slider-content {
	width: 100%;
	height: 100%;
	max-width: 128rem;
	margin: 0 auto;
}

.slider-left {
	flex: 1;
	padding-right: 4rem;
}

.slider-right {
	flex: 1;
	height: 100%;
	justify-content: center;
}

.slider-image {
	height: 100%;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.slider-title {
	margin: 0 0 1.2rem;
	font-size: 4.6rem;
	font-weight: 400;
	line-height: 1.2;
	color: var(--text-color);
}

.slider-subtitle {
	margin: 0 0 3rem;
	font-size: 1.8rem;
	line-height: 1.7;
	color: var(--text-dark-color);
}

.slider-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2.8rem;
	border-radius: 0.6rem;
	background-color: var(--primary-color);
	color: var(--white-color);
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.slider-cta:hover {
	transform: translateY(-0.1rem);
}

.slider-pagination-wrap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 1.8rem;
	height: 12rem;
	z-index: 10;
}

.slider-pagination {
	gap: 0.6rem;
	max-width: 128rem;
	margin: 0 auto;
	position: relative;
}

.slider-pagination .bullet {
	width: 3.8rem;
	height: 0.6rem;
	border-radius: 99rem;
	background-color: var(--white-color);
	cursor: pointer;
	transition: background-color 0.2s ease;
	opacity: 1;
}

.slider-pagination .bullet.swiper-pagination-bullet-active {
	background-color: var(--primary-color);
}

.banner {
	position: relative;
	z-index: 9;
}

.banner-content {
	gap: 2rem;
	margin-top: -6rem;
}

.banner-item {
	padding: 2rem;
	background-color: var(--white-color);
	border-radius: 1.2rem;
	box-shadow: 0.8rem 0.8rem 2rem var(--border-color);
}

.banner-title {
	margin-bottom: 1rem;
}

.banner-title i {
	font-size: 2.4rem;
	margin-right: 1rem;
	color: var(--primary-color);
}

.banner-title h2 {
	font-size: 1.8rem;
	font-weight: 500;
}

.banner-desc {
	color: var(--text-dark-color);
}

.product {
	padding: 8rem 0
}

.product-intro {
    display: flex;
	gap: 2rem;
}

.product-box {
    width: 100%;
	background: var(--white-color);
	border: 0.1rem solid var(--border-color);
	padding: 2rem;
	border-radius: 1.2rem;
}

.product-image {
	width: 100%;
	height: 12rem;
	margin-bottom: 2rem;
	border-radius: 0.8rem;
    overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%
}

.product-name {
	font-size: 2rem
}

.product-meta {
	margin-top: 1rem
}

.product-meta span {
	display: inline-block;
	background: var(--background-color);
	color: var(--text-dark-color);
	font-size: 1.2rem;
	padding: 0.6rem 1.2rem;
	margin-right: 0.5rem;
	border-radius: 0.6rem;
}

.product-info p {
	margin-top: 1.8rem;
	font-size: 1.4rem;
	line-height: 2.6rem;
	color: var(--text-dark-color);
}

.product-price {
	margin-top: 2rem;
    padding-top: 2rem;
    border-top: 0.1rem solid var(--border-color);
}

.product-text {
	color: var(--text-dark-color);
}

.product-number {
	font-size: 3rem;
	line-height: 3rem;
	font-weight: bold;
	color: var(--primary-color);
}

.product-unit {
	font-size: 1.4rem;
	color: var(--text-dark-color);
}

.product-box .button {
	margin-top: 2rem;
	cursor: pointer;
	justify-content: center;
	background: var(--primary-color);
	border: 0.1rem solid var(--primary-color);
	width: 100%;
	font-size: 1.4rem;
	color: var(--white-color);
	height: 4rem;
	line-height: 4rem;
	border-radius: 0.6rem;
}

.product-box .button:hover {
	background: var(--hover-color);
	color: var(--white-color);
	border-color: var(--hover-color);
}

.network {
	background-color: var(--white-color);
	padding: 8rem 0;
}

.network-content {
	position: relative;
	flex-wrap: wrap;
}

.network-left {
	position: absolute;
	width: 35%;
	z-index: 1;
}

.network-info {
	margin-bottom: 2rem;
	color: #4a5568;
	font-size: 1.6rem;
	line-height: 2.6rem;
}

.network-link {
	margin-top: 4.2rem;
	background: transparent;
	position: relative;
	width: fit-content;
	flex-direction: row;
	justify-content: center;
	cursor: pointer;
	border-radius: 1.2rem;
}

.network-link a {
	color: var(--primary-color);
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2.6rem;
	letter-spacing: 0.02rem;
	text-align: left;
	margin-right: 2.6rem;
	white-space: nowrap;
}

.network-link i {
	position: absolute;
	right: 0;
	font-size: 1.4rem;
	color: var(--primary-color);
	transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.network-link .ri-arrow-right-long-line {
	opacity: 0;
	transform: translateX(-1rem) scale(0.8);
}

.network-link:hover .ri-arrow-right-s-line {
	opacity: 0;
	transform: translateX(1rem) scale(0.8);
}

.network-link:hover .ri-arrow-right-long-line {
	opacity: 1;
	transform: translateX(0) scale(1);
}

.network-right {
	width: 100%;
}

.network-map {
	width: 64rem;
	height: 32rem;
	position: relative;
	top: -10rem;
	float: right;
	background: url(../img/map.svg) 50% no-repeat;
	background-size: contain;
}

.network-item {
	width: 1.8rem;
	height: 1.2rem;
	position: absolute;
	background: url(../img/dot.png) 50% no-repeat;
	background-size: contain;
	cursor: pointer;
}

.network-hk {
	top: 18rem;
	right: 15rem;
}

.network-us {
	top: 15rem;
	left: 9rem;
}

.network-jp {
	top: 14rem;
	right: 8rem;
}

.network-kr {
	top: 12.5rem;
	right: 9rem;
}

.network-sg {
	top: 21rem;
	right: 17.5rem;
}

.network-card {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: -3.6rem;
	left: -50%;
	transform: translate(-35%, -50%);
	padding: 1rem 2rem;
	z-index: 1;
	background: var(--white-color);
	border-radius: 0.8rem;
	font-size: 1.6rem;
	font-weight: 500;
	white-space: nowrap;
	color: #1a202c;
	box-shadow: 0 1.2rem 2.8rem 0 var(--border-color);
	pointer-events: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all .3s;
}

.network .active {
	opacity: 1;
	visibility: visible;
}

.network-img {
	width: 2.3rem;
	height: 1.6rem;
}

.network-img img {
	width: 100%;
	height: 100%;
	box-shadow: 0.2rem 0.2rem 0.6rem 0 var(--border-color);
}

.network-name {
	padding-left: 1.2rem;
}

.network-footer {
	padding: 3rem;
	background: var(--background-color);
	border-radius: 1.2rem;
	gap: 2rem;
}

.network-intro {
	width: 33.3333%;
}

.network-intro i {
	color: var(--primary-color);
	font-size: 3.8rem;
	line-height: 3.8rem;
}

.network-intro span {
	padding-left: 1.2rem;
	color: var(--text-color);
	font-size: 1.8rem;
	line-height: 2.8rem;
	font-weight: bold;
}

.network-intro-desc {
	padding-left: 4.8rem;
	font-size: 1.4rem;
	color: var(--text-dark-color);
}

.honor {
	padding: 8rem 0
}

.honor-list {
	justify-content: space-between;
	margin-bottom: 2rem;
}

.honor-list:last-child {
	margin-bottom: 0
}

.honor li {
	text-align: center;
	background: var(--white-color);
	border: 0.1rem solid var(--border-color);
	padding: 2rem;
	width: 24rem;
	border-radius: 1.2rem;
}

.honor li img {
	width: auto;
	height: 10rem;
}

.honor-title {
	font-size: 1.4rem
}

.service {
	background: var(--white-color);
	padding: 8rem 0
}

.service-box {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 2rem;
}

.service-item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
    border-radius: 1.2rem;
	line-height: 1;
}

.service-content {
	position: relative;
	padding: 3rem;
	z-index: 999
}

.service-image {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	overflow: hidden;
	background-image: -moz-linear-gradient(-15deg,#eef3fb 0%, #fdfdfe 100%);
	background-image: -webkit-linear-gradient(-15deg,#eef3fb 0%, #fdfdfe 100%);
	background-image: -ms-linear-gradient(-15deg,#eef3fb 0%, #fdfdfe 100%)
}

.service-image:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: linear-gradient(45deg,var(--primary-color),transparent);
	opacity: 0;
	filter: brightness(1.2);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease
}

.service-base .big {
	font-size: 4.2rem;
	color: var(--primary-color);
	font-weight: bold
}

.service-base .small {
	font-size: 2rem;
	margin-left: 0.2rem;
	transform: translateY(-1.2rem);
	color: var(--primary-color);
}

.service-info {
	margin-top: 2rem;
}

.service-info .title {
	font-size: 2rem
}

.service-info .sub-title {
	font-size: 1.4rem;
	margin-top: 1rem;
	color: var(--text-dark-color);
}

.service-image img {
	width: 100%;
	position: relative;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease
}

.service-item:hover .service-image img {
	transform: translate(0.5rem,0.5rem)
}

.service-item:hover .service-image::after {
	opacity: 0.35
}

.service-item:hover .service-base .big,.service-item:hover .service-base .small,.service-item:hover .service-info .title {
	color: var(--white-color)
}

.service-item:hover .service-info .sub-title {
	color: var(--white-color)
}

.article {
	padding: 8rem 0;
}

.article-box {
	gap: 2rem;
}

.article-item {
	width: 33.3333%;
	background-color: var(--white-color);
	border-radius: 1.2rem;
	border: 0.1rem solid var(--border-color);
}

.article-head {
	padding: 2rem;
	border-bottom: 0.1rem solid #ddd;
}

.article-title i {
	font-size: 2.4rem;
	margin-right: 1rem;
	color: var(--primary-color);
}

.article-title h2 {
	font-size: 1.6rem;
	font-weight: bold;
}

.article-more {
	font-size: 1.4rem;
	color: var(--text-dark-color);
}

.article-more:hover {
	color: var(--primary-color)
}

.article-list {
	padding: 1rem 2rem;
}

.article-list li {
	position: relative;
	padding: 1rem 0;
}

.article-date {
	position: absolute;
	right: 0;
	color: var(--text-dark-color);
}

.article-link {
	padding-right: 5rem;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.article-link:hover {
	color: var(--primary-color)
}