/* =====================================
   联系我们页面样式 - Contact Page
   包含：联系卡片、标题、信息块、电话、邮箱、
         营业时间、响应式适配
   ===================================== */

/* ===== 页面内容区 ===== */
.royal-contact-content {
	padding: 80px 0;
	overflow: hidden;
}

.royal-contact-info,
.royal-contact-form {
	padding: 0 20px;
}

/* ===== 联系卡片 ===== */
.royal-contact-card {
	border-radius: 10px;
	padding: 40px;
	border: 1px solid #f3f3f3;
}

/* ===== 卡片标题 - 带底部装饰线 ===== */
.royal-contact-title {
	overflow: hidden;
	margin-bottom: 40px;
}

.royal-contact-title p {
	font-size: 16px;
}

.royal-contact-title h2 {
	font-size: 24px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	position: relative;
	color: #73D7DC;
}

/* 底部装饰短横线，悬停时加长 */
.royal-contact-title h2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 48px;
	height: 2px;
	background: #73D7DC;
	transition: width 0.3s ease;
}

.royal-contact-card:hover .royal-contact-title h2::after {
	width: 60px;
}

/* ===== 联系信息块 ===== */
.royal-contact-block {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.royal-contact-block:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

/* ===== 信息块子标题 ===== */
.royal-contact-subtitle {
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 10px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.royal-contact-subtitle i {
	color: #73D7DC;
	font-size: 16px;
	width: 20px;
	text-align: center;
}

/* ===== 信息文本 ===== */
.royal-contact-text {
	color: #666;
	font-size: 14px;
	margin: 0;
	padding-left: 30px;
}

/* ===== 电话号码列表 ===== */
.royal-contact-phones {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-left: 30px;
}

.royal-contact-phone {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 6px;
}

.royal-contact-phone:hover {
	color: #73D7DC;
	transform: translateX(3px);
}

/* 电话前圆点标记 */
.royal-contact-phone::before {
	content: '\2022';
	color: #73D7DC;
	font-weight: bold;
	font-size: 12px;
}

/* ===== 邮箱链接 ===== */
.royal-contact-email {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	padding-left: 30px;
	display: block;
	transition: all 0.3s ease;
}

.royal-contact-email:hover {
	color: #73D7DC;
}

/* ===== 营业时间 ===== */
.royal-contact-hours {
	padding-left: 30px;
}

.royal-contact-time {
	color: #666;
	font-size: 14px;
	margin: 0 0 6px 0;
	position: relative;
	padding-left: 16px;
}

/* 时间项前打勾标记 */
.royal-contact-time::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: #73D7DC;
	font-weight: bold;
	font-size: 12px;
}

.royal-contact-time:last-child {
	margin-bottom: 0;
}

/* ===== 响应式 - 平板及手机端适配 ===== */
@media (max-width: 992px) {
	.royal-contact-content {
		padding: 20px 5px;
	}

	.royal-contact-info,
	.royal-contact-form {
		padding: 0;
	}

	.royal-contact-form {
		margin-top: 20px;
	}
}
