.trial_main {
	width: 100%;
	height: 1000px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #e3f2fd, #f8f9fa);
	position: relative;
	overflow: hidden;
}

.trial_main::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
				radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
				radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

/* 试用页面头部样式 */
.trial_header {
	text-align: center;
	margin-bottom: 60px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
	position: relative;
	z-index: 1;
}

.trial_title {
	font-size: 48px;
	font-weight: bold;
	color: #333333;
	margin-bottom: 20px;
	font-family: Source Han Sans CN;
}

.trial_subtitle {
	font-size: 20px;
	color: #333333;
	margin-bottom: 30px;
	font-family: Source Han Sans CN;
	opacity: 0.8;
}

.trial_features {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.feature_item {
	background: #f8f9fa;
	color: #333333;
	padding: 10px 20px;
	border-radius: 25px;
	font-size: 16px;
	font-family: Source Han Sans CN;
	border: 1px solid #e9ecef;
}

.card_box {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: minmax(auto, auto);
	gap: 58px;
	position: relative;
	z-index: 1;
}

.card_item {
	width: 375px;
	height: 433px;
	display: inline-block;
	background: #FFFFFF;
	border-radius: 30px;
	cursor: pointer;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card_item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card_item:last-child {
	margin-right: 0;
}

.card_t1 {
	width: 100%;
	height: 177px;
	text-align: center;
	line-height: 177px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 30px;
	color: #FFFFFF;
	background: #2975F7;
	border-radius: 30px 30px 0 0;
}

.card_t2 {
	width: 100%;
	height: 177px;
	text-align: center;
	line-height: 177px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 30px;
	color: #FFFFFF;
	background: #28a745;
	border-radius: 30px 30px 0 0;
}

.card_t3 {
	width: 100%;
	height: 177px;
	text-align: center;
	line-height: 177px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 30px;
	color: #FFFFFF;
	background: #ffc107;
	border-radius: 30px 30px 0 0;
}

.card_info {
	width: 100%;
	height: 256px;
	padding: 52px 0 65px 52px;
	box-sizing: border-box;
}

.card_row {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 20px;
	color: #666666;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
}

.check-icon {
	color: #28a745;
	font-weight: bold;
	margin-right: 8px;
	font-size: 18px;
}

.card_link {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 18px;
}

.card_link a {
	text-decoration: none;
	color: #FFFFFF;
	background: #2975F7;
	padding: 12px 24px;
	border-radius: 25px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	font-weight: 500;
}

.card_link a:hover {
	background: #1a5bb8;
	transform: scale(1.05);
}

.card_link img{
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.card_link a:hover img {
	transform: translateX(5px);
}

/* 二维码弹窗样式 */
.qrcode-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	justify-content: center;
	align-items: center;
	animation: fadeIn 0.3s ease;
}

.qrcode-content {
	background: #FFFFFF;
	border-radius: 20px;
	padding: 40px;
	text-align: center;
	position: relative;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.qrcode-close {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 30px;
	color: #999;
	cursor: pointer;
	transition: color 0.3s ease;
}

.qrcode-close:hover {
	color: #333;
}

.qrcode-title {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin-bottom: 20px;
	font-family: Source Han Sans CN;
}

.qrcode-image {
	width: 200px;
	height: 200px;
	margin: 20px auto;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qrcode-desc {
	font-size: 16px;
	color: #666;
	margin-top: 20px;
	font-family: Source Han Sans CN;
	line-height: 1.5;
}

/* 动画效果 */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
		transform: scale(1);
	}
	to {
		opacity: 0;
		transform: scale(0.9);
	}
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.card_box {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
	
	.trial_features {
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.card_box {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.trial_title {
		font-size: 36px;
	}
	
	.trial_subtitle {
		font-size: 18px;
	}
	
	.trial_features {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
	
	.feature_item {
		width: 200px;
		text-align: center;
	}
	
	.qrcode-content {
		padding: 30px 20px;
	}
	
	.qrcode-image {
		width: 150px;
		height: 150px;
	}
}