#page-content {
	background-position: center;
	background-size: cover;
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100vh;
	background: #000;
	overflow: hidden;
}

#hero-01 {
	width: 100%;
	height: 100vh;
}

.vidbacking {
	position: absolute;
	z-index: -100;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	background-size: cover;
	overflow: hidden;
	opacity: 1;
	transition: 2s opacity;
	transform: translateX(-50%) translateY(-50%);
}


.hero .hero-center .hero-txt h1 {
	font-size: 3.8rem !important;
	letter-spacing: 20px;
	padding-top: 15px;
	font-weight: 600 !important;
}

.hero .hero-center .hero-txt h3 {
	font-size: 3rem !important;
	letter-spacing: 20px;
	padding-top: 10px;
	font-weight: 300 !important;
	padding-left: 0;
	line-height: 1;
}

.container .title {
	padding: 0 20px;
	text-align: center;
}

.container .title h1 {
	font-size: 2.4rem;
	margin-bottom: 15px;
	letter-spacing: 1px;
	font-weight: 600;
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.container .title h1::before,
.container .title h1::after {
	content: "";
	display: inline-block;
	width: 11px;
	height: 11px;
	background: linear-gradient(#168ae1, rgb(1, 84, 201));
	margin: 0 15px;
}

.container .title p {
	color: #595757;
	padding-top: 10px;
	font-weight: 300;
}


/* 数字化转型产品 */

.bg-light {
	background: linear-gradient(#f8fbfe, rgb(233, 242, 255));
	position: relative;
}

.linebg-right {
	position: absolute;
	width: 35%;
	right: 0;
	top: 0;
	z-index: 0;
}

.linebg-left {
	position: absolute;
	width: 25%;
	left: 0;
	bottom: 0;
	z-index: 0;
}

.linebg-right1 {
	position: absolute;
	width: 50%;
	right: 0;
	top: 0;
	z-index: 0;
}

.linebg-left1 {
	position: absolute;
	width: 35%;
	left: 0;
	bottom: 20%;
	z-index: 0;
}

.linebg-right img,
.linebg-left img,
.linebg-right1 img,
.linebg-left1 img {
	width: 100%;
}

.serviceBox {
	flex: 1 0 calc(33.333% - 40px);
	background: #fff;
	border-radius: 20px;
	padding: 20px;
	transition: all 0.3s ease;
	box-sizing: border-box;
	text-align: center;
}

.serviceBox:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 100, 0.1);
}

.card-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto;
	margin-top: 20px;
	transition: all 0.5s ease-in-out;
}

.card-icon>img {
	width: 100%;
	animation: try 1.2s cubic-bezier(.36, 0, .7, 1) infinite alternate backwards;
}

@keyframes try {

	0% {
		transform: translateY(0);
		-webkit-transform: translateY(0);
	}

	100% {
		transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
	}

}

.serviceBox h3 {
	font-size: 1.2rem;
	line-height: 20px;
	font-family: sans-serif;
	margin: 20px 0;
	color: #444;
}

.serviceBox p {
	font-size: 1rem;
	color: #7e828a;
}

.pplogo-list {
	margin-bottom: 20px;
}

.pplogo-img {
	text-align: center;
}

.pplogo-img img {
	border-radius: 20px;
	width: 100%;
}


@media (max-width: 576px) {
	.hero .hero-center .hero-txt h1 {
		font-size: 3rem !important;
		letter-spacing: 10px;
		padding-top: 15px;
		font-weight: 600 !important;
	}

	.hero .hero-center .hero-txt h3 {
		font-size: 1.9rem !important;
		letter-spacing: 20px;
		padding-top: 10px;
		font-weight: 300 !important;
		padding-left: 8px;
		line-height: 1;
	}
}

/* 向下滑动提示图标 */
.scroll-down-hint {
	position: absolute;
	bottom: 6%;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 50px;
	border: 2px solid white;
	border-radius: 15px;
	display: flex;
	justify-content: center;
	animation: bounce 2s infinite;
}

.scroll-down-hint::after {
	content: '';
	position: absolute;
	top: 8px;
	width: 6px;
	height: 6px;
	background: white;
	border-radius: 50%;
	animation: scroll 2s infinite;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0) translateX(-50%);
	}

	40% {
		transform: translateY(-10px) translateX(-50%);
	}

	60% {
		transform: translateY(-5px) translateX(-50%);
	}
}

@keyframes scroll {
	0% {
		opacity: 1;
		top: 8px;
	}

	100% {
		opacity: 0;
		top: 30px;
	}
}