/* 
*
* 产品介绍
*
*/
.main-recharge {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.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;
	justify-content: center;
	gap: 60px;
}

.main-recharge-title-container>.tags>.tag-item {
	width: 95px;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #000000;
	border-radius: 99px;
}

.main-recharge-title-container>.tags>.tag-item>img {
	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: 35%;
	position: relative;
}

.pc-management .content-right {
	flex: 65%;
}

.pc-management .slide-content {
	position: relative;
}

.pc-management .slide-content .slide-item {
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.5s ease;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

.pc-management .slide-content .slide-item.active {
	visibility: visible;
	position: relative;
	opacity: 1;
}

.pc-management .slide-content .slide-item.active h6 {
		position: relative;
		animation: slideInH6 1s ease-out forwards;
}

@keyframes slideInH6 {
	from {
		/* transform: translateY(50%); */
		left: 80px;
		opacity: 0;
	}

	to {
		/* transform: translateY(0); */
		left: 0px;
		opacity: 1;
	}
}

.pc-management .slide-content .slide-item.active h3 {
		position: relative;
		animation: slideInH3 1s ease-out forwards;
}

@keyframes slideInH3 {
	from {
		left: 50px;
		opacity: 0;
	}

	to {
		left: 0px;
		opacity: 1;
	}
}

.pc-management .slide-content .slide-item.active p {
		position: relative;
		animation: slideInP 1s ease-out forwards;
}

@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);
}
.pc-management .dots {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(191, 191, 191, 1);
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.pc-management .dots.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 {
	flex-direction: row-reverse;
	margin-top: 30px;
	text-align: right;
}

.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: 20px 0;
}

.main-recharge-content-container>.content-item {
	max-width: 1400px;
	border-radius: 20px;
	background-color: #F3F7FF !important;
	border-radius: 35px;
}

.main-recharge-content-container>.content-item:last-child {
	margin-bottom: 0;
}

.main-recharge-content-container>.content-item {
	background-color: #F3F7FF;
	border-radius: 16px;
	padding: 48px;
	display: flex;
	justify-content: space-between;
	gap: 60px;
}

.content-left {
	position: relative;
	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-items {
	display: flex;
	gap: 16px;
	flex-direction: row-reverse;
}
.feature-itemss {
	display: flex;
	gap: 16px;
	/* flex-direction: row-reverse; */
}
.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: #ffffff;
}
.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: 440px;
	height: 454px;
	transition: transform 0.3s ease;
	object-fit: contain;
}
.chargewxshow{
	width: 150px; height: 150px; position: absolute; left: 150px;top: 400px; display: none
}
.phone-preview img:hover {
	transform: translateY(-15px);
}

.phone-preview img:last-child {
	position: relative;
	top: 40px;
}

.preview-text {

}
.preview-texts {
	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: 220px;
		height: 220px;
	}

	.phone-preview img:last-child {
		position: relative;
		top: 25px;
	}

	div.main-recharge-footer {
		margin-bottom: 50px;
	}
}

/* 底部联系我们 */
.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;
}