/* 
*
* 产品介绍
*
*/
.main-recharge {
	max-width: var(--container-max-width);
	width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.main-introduces {
	background: none;
    height: calc(100vh - var(--try-out-banner-height) - var(--header-height));
    background-size: cover;
    background-position: center;
    color: #000;
    display: flex;
    padding: 0 var(--container-padding);
}
.main-recharge-title-container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-top: 100px;
}

.main-recharge-title-container>h2 {
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: var(--h2-font-size);
	margin-bottom: 30px;
}

.main-recharge-title-container>h5 {
	margin-bottom: 43px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: var(--h5-font-size);
	text-align: center;
	color: #8c8c8c;
}

.main-recharge-title-container>.tags {
	margin-bottom: 38px;
	display: flex;
	width: 100%;
	justify-content: center;
	gap: 60px;
}

.main-recharge-title-container>.tags>.tag-item {

	width: 30%;
	height: 200px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #000000;
	/* border-radius: 99px; */
}

.main-recharge-title-container>.tags>.tag-item>ul {
	margin-left: 1rem;
	font-size: 14px;
	padding-top: 20px;
	padding-left: 30px;
}

.main-recharge-title-container>.tags>.tag-item>h2 {
	padding-top: 10px;
	padding-left: 30px;
	color: #030B1A;
}

.main-recharge-title-container>.tags>.tag-item>ul li {
	list-style-type: disc;
	color: #616876;
}

.main-recharge-title-container>.tags>.tag-item>img {
	margin-top: 20px;
	padding-left: 30px;
	height: 22px;
	object-fit: contain;
	margin-right: 5px;
}

.main-recharge-title-container>.tags>.tag-item:nth-child(1) {
	background-color: rgba(10, 101, 232, 0.1);
}

.main-recharge-title-container>.tags>.tag-item:nth-child(2) {
	background-color: rgba(251, 120, 155, 0.1);
}

.main-recharge-title-container>.tags>.tag-item:nth-child(3) {
	background-color: rgba(75, 226, 172, 0.1);
}

.main-recharge-title-container>.tags>.tag-item:nth-child(4) {
	background-color: rgba(108, 218, 83, 0.1);
}

.main-recharge-title-container>.tags>.tag-item:nth-child(5) {
	background-color: rgba(255, 142, 30, 0.1);
}

@media screen and (max-width: 768px) {
	.main-recharge-title-container {
		margin-top: 50px;
	}

	.main-recharge-title-container>.tags {
		flex-wrap: wrap;
		gap: 20px;
	}
}

/* 1 */
.pc-management {
	background: #f8faff;
	border-radius: 20px;
	padding: 60px;
}

.pc-management .content-left {
	flex: 40%;
	/* position: relative; */
}

.pc-management .content-right {
	flex: 60%;
}



.slide-item h4 {
	font-size: 30px;
	margin-top: 100px;
}

.slide-items h4 {
	font-size: 32px;
	margin-top: 20px;
}

.slide-items ul {
	margin-left: 1rem;
}

.slide-items ul li {
	font-size: 20px;
	margin-top: 10px;
	list-style-type: circle;
	color: #FF2A6C;
}

.slide-items ul li span {
	color: #333333;
	font-size: 20px;
}

.slide-item h5 {
	margin-top: 20px;
}

.slide-item button {
	display: block;
	margin-top: 40px;
	color: #fff;
	width: 140px;
	height: 40px;
	background: linear-gradient(-79deg, #FF2774, #FF891A);
	border-radius: 4px;
	border: none;
}

.slide-item button a {
	color: #fff;
}

@keyframes slideInH6 {
	from {
		/* transform: translateY(50%); */
		left: 80px;
		opacity: 0;
	}

	to {
		/* transform: translateY(0); */
		left: 0px;
		opacity: 1;
	}
}

@keyframes slideInH3 {
	from {
		left: 50px;
		opacity: 0;
	}

	to {
		left: 0px;
		opacity: 1;
	}
}


@keyframes slideInP {
	from {
		left: 50px;
		opacity: 0;
	}

	to {
		left: 0px;
		opacity: 1;
	}
}

.pc-management .laptop-preview {
	position: relative;
	width: 100%;
	padding-top: 60%;
}

.pc-management .slide-images {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pc-management .slide-images img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	transition: opacity 0.5s ease;
	border-radius: 8px;
}

.pc-management .slide-images img.active {
	opacity: 1;
}

.pc-management .slide-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 10px 0;
}

.pc-management .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(191, 191, 191, 1);
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.pc-management .dot.active {
	background: rgba(96, 154, 239, 1);
}

/* 添加轮播动画相关的样式 */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

/* 2 */

.content-item.mobile-management {
	gap: 63px;
	flex-direction: row-reverse;
	/* margin-top: 30px; */
	text-align: left;
}

.content-item.mobile-management .feature-item {
	flex-direction: row-reverse;
}

/* 公共 item */
/* 1 */

.main-recharge-content-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	width: 100%;
}

.content-item {

	gap: 63px;
}

.main-recharge-content-container>.content-item {
	/* max-width: 1400px; */
	margin-bottom: 112px;
	background-color: rgba(243, 247, 255, 1);
	border-radius: 35px;
}

.main-recharge-content-container>.content-item:last-child {
	margin-bottom: 0;
}

.slide-item>h5 {

	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #636363;
	line-height: 23px;
}

.main-recharge-content-container>.content-item {
	background: #fff;
	border-radius: 16px;
	padding: 48px;
	display: flex;
	justify-content: space-between;
	gap: 60px;
}

.content-left {
	flex: 1;
}

.content-left h3 {
	/* font-size: 32px; */
	font-size: var(--h3-font-size);
	line-height: 1.4;
	font-weight: bold;
	margin-bottom: 40px;
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.feature-item {
	display: flex;
	gap: 16px;
}

.feature-icon {
	width: 30px;
	height: 30px;
	flex-shrink: 0;
}

.feature-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.feature-info h6 {
	font-size: var(--h6-font-size);
	font-weight: bold;
	margin-bottom: 8px;
	color: #333;
}

.feature-info p {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
}

.try-button {
	width: 140px;
	height: 40px;
	margin-top: 40px;
	background: linear-gradient(106deg, #ff2774, #ff891a);
	border-radius: 4px;
	color: white;
	border: none;
	font-size: 16px;
	cursor: pointer;

	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 14px;
	color: #ffffff;
}

.try-button a {
	color: #fff;
}

.content-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.phone-preview {
	position: relative;
	width: 100%;
	height: 500px;
	display: flex;
	justify-content: center;
	gap: 40px;
}

.phone-preview img {
	/* width: 220px; */
	height: 454px;
	transition: transform 0.3s ease;
	object-fit: contain;
}

.phone-preview img:hover {
	transform: translateY(-15px);
}

.phone-preview img:last-child {
	position: relative;
	top: 40px;
}

.preview-text {
	margin-top: 20px;
	color: #666;
	font-size: 14px;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	.main-recharge-content-container {
		padding: 0;
	}

	.content-item.mobile-management {
		flex-direction: column;
	}

	.main-recharge-content-container>.content-item {
		flex-direction: column;
		margin-bottom: 20px;
		padding: 32px;
		gap: 0;
	}

	.phone-preview {
		height: 260px;
		margin-top: 40px;
		gap: 20px;
	}

	.phone-preview img {
		border-radius: 12px;
		/* width: 130px; */
		height: 220px;
	}

	.phone-preview img:last-child {
		position: relative;
		top: 25px;
	}

	div.main-recharge-footer {
		margin-bottom: 50px;
	}

	.content-item {
		flex-direction: column;
	}
}

/* 底部联系我们 */
.main-recharge-footer {
	max-width: var(--container-max-width);
	margin-top: 30px;
	margin-bottom: 98px;
	margin-left: auto;
	margin-right: auto;
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 14px;
	color: #666666;
}