/* ==========================================================================
   1. 通用标题样式 (Section Titles)
   ========================================================================== */
.royal-title {
	overflow: hidden;
	margin-bottom: 30px;
	padding-bottom: 10px;
	position: relative;
	text-align: center;
}

.royal-title h2 {
	font-size: 40px;
	margin-bottom: 10px;
}

.royal-title h3 {
	font-size: 18px;
	color: #666;
}

/* 标题底部装饰线 + 呼吸动画 */
.royal-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 5px;
	background: #333;
	border-radius: 4px;
	animation: pulse 5s ease-in-out infinite;
}

/* ==========================================================================
   2. 内页横幅 (Inner Page Banner)
   ========================================================================== */
.royal-inner-banner {
	position: relative;
	overflow: hidden;
	height: 480px;
	background-color: #b4e1dc;
}

.royal-inner-banner-bg {
	position: absolute;
	inset: 0;
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 2;
	width: 100%;
	height: 100%;
	animation: imageZoom 10s infinite ease-in-out;
}

.royal-inner-banner .royal-container {
	position: relative;
	overflow: hidden;
	height: 100%;
}

/* 渐变背景动画 */
.royal-inner-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(-150deg, #b4e1dc 20%, #b4e1dc 50%, #73D7DC 60%, #73D7DC 100%);
	background-size: 200% 200%;
	z-index: 1;
	animation: gradientMove 5s ease infinite;
	transition: transform 1s ease, filter 1s ease;
}

.royal-inner-banner-content {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	z-index: 3;
	height: 100%;
}

.royal-inner-banner-info {
	overflow: hidden;
	max-width: 640px;
	z-index: 4;
}

.royal-inner-banner-info h2 {
	font-size: 40px;
	text-transform: uppercase;
}

.royal-inner-banner-info h3 {
	font-size: 16px;
}

/* ==========================================================================
   3. 鼠标下滑提示 (Scroll Indicator)
   ========================================================================== */
.royal-scroll-indicator {
	position: absolute;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	cursor: pointer;
	animation: gentleBounce 2s ease-in-out infinite;
	text-align: center;
	transition: opacity 0.3s;
}

.royal-scroll-indicator:hover {
	opacity: 0.7;
}

@keyframes gentleBounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(10px);
	}
}

/* 鼠标图标 */
.royal-scroll-mouse {
	width: 26px;
	height: 40px;
	border: 2px solid #fff;
	border-radius: 20px;
	margin: 0 auto;
	position: relative;
}

/* 滚轮 */
.royal-scroll-wheel {
	width: 3px;
	height: 8px;
	background: #fff;
	border-radius: 2px;
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	animation: scrollWheel 1.5s ease infinite;
}

/* 跳动箭头 */
.royal-scroll-arrow {
	margin-top: 8px;
}

.royal-scroll-arrow span {
	display: block;
	width: 10px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	margin: -4px auto;
	animation: scrollArrow 2s ease infinite;
}

.royal-scroll-arrow span:nth-child(2) {
	animation-delay: 0.2s;
}

.royal-scroll-arrow span:nth-child(3) {
	animation-delay: 0.4s;
}

/* 文字提示 */
.royal-scroll-text {
	margin-top: 8px;
	font-size: 12px;
	color: #fff;
	letter-spacing: 2px;
	text-transform: uppercase;
	opacity: 0.8;
}

/* 动画定义 */
@keyframes scrollWheel {
	0% {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}

	80% {
		opacity: 0.5;
		transform: translateX(-50%) translateY(10px);
	}

	100% {
		opacity: 0.5;
		transform: translateX(-50%) translateY(0);
	}
}

@keyframes scrollArrow {
	0% {
		opacity: 0.5;
		transform: rotate(45deg) translate(-5px, -5px);
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0.5;
		transform: rotate(45deg) translate(5px, 5px);
	}
}

/* ==========================================================================
   4. 联系方式模块 (Contact Module)
   注意：以下 .royal-contact-* 样式与 contact.css 重复，
   此处保留用于非联系页面的弹窗/模态框场景。
   ========================================================================== */
.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;
}

/* 表单卡片 */
.royal-contact-form-card {
	background: #F0FFFD;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.02);
	border: 1px solid #73D7DC;
	height: 100%;
}

.royal-contact-form-card .royal-form-group {
	margin-bottom: 20px;
}

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

.royal-contact-form-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 48px;
	height: 2px;
	background: #73D7DC;
	transition: width 0.3s ease;
}

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

.royal-form-group label i {
	color: #73D7DC;
	width: 16px;
}

/* ==========================================================================
   5. 面包屑导航 (Breadcrumb)
   ========================================================================== */
.royal-breadcrumb {
	margin: 0;
}

.royal-breadcrumb > li [class*="royal-icon-"]::before {
	color: #333;
}

.royal-breadcrumb a {
	font-size: 12px;
}

.royal-breadcrumb > li + li::before {
	color: #333;
}

/* ==========================================================================
   6. 子栏目菜单 (Side Navigation)
   ========================================================================== */
.royal-side-nav {
	overflow: hidden;
	padding: 40px 0 30px;
	text-align: center;
}

.royal-side-nav-list {
	display: inline-block;
	background: #b4e1dc;
	overflow: hidden;
	border-radius: 50px;
	padding: 10px;
}

.royal-side-nav a {
	border-radius: 40px;
	padding: 10px 20px;
	margin: 0 5px;
	display: inline-block;
	background: #b4e1dc;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
}

.royal-side-nav a:hover,
.royal-side-nav a.active {
	background: #73D7DC;
}

/* ==========================================================================
   7. 主要内容区布局 (Main Content Layout)
   ========================================================================== */
.royal-inner-content-fl {
	width: 20%;
	float: left;
	padding: 10px 20px 10px 0;
}

.royal-inner-content-fr {
	width: 80%;
	float: right;
	overflow: hidden;
}

.royal-inner-content {
	overflow: hidden;
}

/* ==========================================================================
   8. 文章详情页 (Article Detail)
   ========================================================================== */
.royal-article-section {
	padding: 110px 0 40px;
	overflow: hidden;
}

.royal-article-content {
	padding: 40px;
	overflow: hidden;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
}

.royal-article-header {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e6e6e6;
}

.royal-article-title {
	font-weight: bold;
}

/* 文章元信息 */
.royal-article-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 20px 0;
}

.royal-article-meta-item {
	display: flex;
	align-items: center;
	margin-right: 10px;
	padding: 5px 10px;
	background: #f3f3f3;
	border: 1px solid #e6e6e6;
	border-radius: 5px;
	color: #666;
}

.royal-article-meta-item i {
	color: #73D7DC;
	margin-right: 5px;
}

/* 文章正文 */
.royal-article {
	min-height: 800px;
	overflow: hidden;
}

.royal-article-bd {
	font-size: 16px;
	line-height: 1.6;
}

.royal-article-bd img {
	max-width: 100%;
	height: auto;
}

/* ==========================================================================
   9. 文章上下导航 (Article Navigation)
   ========================================================================== */
.royal-article-navigation {
	padding-top: 10px;
	overflow: hidden;
}

.royal-article-nav-btn {
	padding: 10px 20px;
	display: block;
	border: 1px solid #e6e6e6;
	margin-bottom: 10px;
	border-radius: 5px;
	text-decoration: none;
	transition: 0.5s ease;
}

.royal-article-nav-btn:hover {
	border-color: #73D7DC;
	box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.05);
	transform: translateY(-2px);
}

.royal-article-nav-btn.royal-article-nav-disabled {
	color: #666;
	cursor: not-allowed;
	background: #f3f3f3;
	opacity: 0.6;
}

.royal-article-nav-btn.royal-article-nav-disabled:hover {
	border-color: #e6e6e6;
}

/* ==========================================================================
   10. 文章表格样式 (Article Table)
   ========================================================================== */
.royal-article-bd table {
	width: 100%;
	margin-bottom: 105px;
	border-spacing: 0;
	border-collapse: separate;
}

.royal-article-bd table > thead > tr > th,
.royal-article-bd table > tbody > tr > th,
.royal-article-bd table > tfoot > tr > th,
.royal-article-bd table > thead > tr > td,
.royal-article-bd table > tbody > tr > td,
.royal-article-bd table > tfoot > tr > td {
	line-height: 1.6;
	vertical-align: top;
	border-top: 1px solid #e6e6e6;
}

.royal-article-bd table > thead > tr > th {
	vertical-align: bottom;
	border-bottom: 1px solid #e6e6e6;
}

.royal-article-bd table > caption + thead > tr:first-child > th,
.royal-article-bd table > colgroup + thead > tr:first-child > th,
.royal-article-bd table > thead:first-child > tr:first-child > th,
.royal-article-bd table > caption + thead > tr:first-child > td,
.royal-article-bd table > colgroup + thead > tr:first-child > td,
.royal-article-bd table > thead:first-child > tr:first-child > td {
	border-top: 0;
}

.royal-article-bd table > tbody + tbody tr:first-child td {
	border-top: 2px solid #e6e6e6;
}

/* ==========================================================================
   11. 表单弹窗 (Form Modal Dialog)
   ========================================================================== */
.royal-form-modal-dialog {
	border-radius: 20px;
	border: 2px solid #73D7DC;
	border-left-width: 10px;
	background: #F0FFFD;
}

.royal-form-modal-dialog .royal-modal-bd {
	border: none;
	padding: 20px;
	text-align: left;
}

/* ==========================================================================
   12. 缩略图容器 (Thumbnail Wrapper)
   ========================================================================== */
.royal-thumb-wrapper {
	overflow: hidden;
	position: relative;
}

.royal-thumb-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	-o-object-fit: contain;
	transition: transform 0.5s ease;
}

.royal-thumb-wrapper:hover img {
	transform: scale(1.08);
}

/* ==========================================================================
   13. 推荐列表 (Recommendation List)
   ========================================================================== */
.royal-rec-list {
	overflow: hidden;
	padding-bottom: 30px;
}

.royal-rec-list-header {
	overflow: hidden;
	font-size: 24px;
	color: #73D7DC;
	font-weight: bold;
	padding: 20px 0;
	margin-bottom: 30px;
	border-bottom: 1px solid #e6e6e6;
}

.royal-rec-list li {
	padding: 10px;
	overflow: hidden;
}

.royal-rec-list-item {
	padding: 20px;
	border: 1px solid #e6e6e6;
	overflow: hidden;
	border-radius: 10px;
	text-align: center;
}

.royal-rec-list-img {
	padding-bottom: 75%;
	border-radius: 10px;
}

.royal-rec-list-img img {
	object-fit: cover;
}

.royal-rec-list-info {
	overflow: hidden;
	margin-top: 20px;
}

.royal-rec-list-info h3 {
	height: 50px;
	overflow: hidden;
}

/* 列表图标信息行 */
.royal-list-pic-info-icons {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	padding-top: 10px;
	margin-top: 10px;
	color: #666;
	border-top: 1px solid #f3f3f3;
}

/* ==========================================================================
   14. 无结果提示 (No Results)
   ========================================================================== */
.royal-no-results {
	text-align: center;
	padding: 80px 20px;
	color: #666;
}

.royal-no-results i {
	font-size: 60px;
	color: #e6e6e6;
	margin-bottom: 20px;
}

.royal-no-results h3 {
	font-size: 20px;
	color: #666;
	margin: 0 0 10px 0;
}

.royal-no-results p {
	font-size: 16px;
	color: #666;
	margin: 0;
}

/* ==========================================================================
   15. 分页样式 (Pagination)
   ========================================================================== */
.royal-pagination ul {
	margin: 20px 0 0;
	list-style: none;
	padding: 0;
	text-align: center;
}

.royal-pagination li {
	margin-right: 10px;
	display: inline-block;
}

.royal-pagination li.disabled span {
	border-color: #f3f3f3;
	color: #666;
}

.royal-pagination li.active span {
	border-color: #73D7DC;
	color: #fff;
	background: #73D7DC;
}

.royal-pagination li a,
.royal-pagination li span {
	display: block;
	padding: 0.4em 1em;
	border: 1px solid #e6e6e6;
	border-radius: 2px;
	text-decoration: none;
	transition: 0.5s ease;
}

.royal-pagination li a:hover {
	border-color: #73D7DC;
	color: #fff;
	background: #73D7DC;
}

/* ==========================================================================
   16. 响应式设计 - 移动端 (Responsive - Mobile 992px)
   ========================================================================== */
@media (max-width: 992px) {
	.royal-inner-banner {
		margin-top: 51px;
		height: 240px;
	}

	.royal-scroll-indicator {
		display: none;
	}

	.royal-inner-banner-content {
		padding: 0 20px;
	}

	.royal-inner-banner-info h2 {
		font-size: 24px;
	}

	.royal-article-section {
		padding: 70px 0 20px;
	}

	.royal-article {
		padding: 5px 0;
	}

	.royal-article-content {
		padding: 20px;
	}

	.royal-product-class-g {
		padding: 20px 0 40px;
	}

	.royal-title {
		margin-bottom: 10px;
	}

	.royal-title h2 {
		font-size: 24px;
	}

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

	.royal-wap-sidenav {
		margin: 20px 15px;
	}

	.royal-rec-list-header {
		padding: 10px 0;
		margin-bottom: 10px;
	}

	.royal-rec-list li {
		padding: 5px;
	}

	.royal-rec-list-item {
		padding: 10px;
	}
}
