/* 元素不可见且不在文档流中 */
.rk-hidden {
	display: none!important;
}

/* 基础样式重置 */
.registerGuide {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
}

.registerGuide {
	min-height: 70vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 10vh;
	position: relative;
	overflow: hidden;
}

/* 标题样式 */
.rk-title-container {
	text-align: center;
	margin-bottom: 80px;
	position: relative;
	z-index: 1;
	animation: fadeInDown 1s ease-out;
}

.rk-title {
	font-size: 3rem;
	font-weight: 700;
	color: #2e7d32;
	letter-spacing: 2px;
	position: relative;
	display: inline-block;
}

.rk-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, transparent, #4CAF50, transparent);
	border-radius: 3px;
}

/* 选项容器 */
.rk-options-container {
	display: flex;
	gap: 30px;
	width: 100%;
	max-width: 800px;
	position: relative;
	z-index: 1;
}

/* 毛玻璃选项样式 */
.rk-option {
	flex: 1;
	padding: 40px 30px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	text-align: center;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.8s ease-out;
}

.rk-option:first-child {
	animation-delay: 0.2s;
}

.rk-option:last-child {
	animation-delay: 0.4s;
}

/* 选项悬停效果 */
.rk-option:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
	background: rgba(255, 255, 255, 0.85);
}

/* 选项图标 */
.rk-option-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 25px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(76, 175, 80, 0.1);
	color: #2e7d32;
	font-size: 2rem;
	transition: all 0.3s ease;
}

.rk-option:hover .rk-option-icon {
	background: #4CAF50;
	color: white;
	transform: scale(1.1);
}

/* 选项标题 */
.rk-option-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
}

/* 选项描述 */
.rk-option-desc {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.6;
}

/* 底部信息 */
.rk-footer {
	margin-top: 100px;
	color: #888;
	font-size: 0.9rem;
	position: relative;
	z-index: 1;
	opacity: 0.8;
}

/* 动画效果 */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 响应式调整 */
@media (max-width: 768px) {
	.rk-options-container {
		flex-direction: column;
		max-width: 400px;
	}

	.rk-title {
		font-size: 2.2rem;
	}

	.rk-option {
		padding: 30px 20px;
	}
}