/* ==========================================================================
   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: #ead03d; */
	letter-spacing: 2px;
	text-transform: uppercase;
}

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

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

.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, #F2DD62 20%, #F2DD62 50%, #FFD100 60%, #FFD100 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 #333;
	border-radius: 0;
	margin: 0 auto;
	position: relative;
	border-radius: 20px;
}

/* 滚轮 */
.royal-scroll-wheel {
	width: 3px;
	height: 8px;
	background: #333;
	border-radius: 0;
	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 #333;
	border-bottom: 2px solid #333;
	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: 0;
	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: #FFD100;
}

.royal-contact-title h2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 48px;
	height: 2px;
	background: #FFD100;
	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: #FFD100;
	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: #FFD100;
	transform: translateX(3px);
}

.royal-contact-phone::before {
	content: '\2022';
	color: #FFD100;
	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: #FFD100;
}

/* 工作时间 */
.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: #FFD100;
	font-weight: bold;
	font-size: 12px;
}

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

/* 表单卡片 */
.royal-contact-form-card {
	background: #FFFBF0;
	border-radius: 0;
	padding: 40px;
	box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.02);
	border: 1px solid #FFD100;
	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: #FFD100;
}

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

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

.royal-form-group label i {
	color: #FFD100;
	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: #f7f2da;
	border: 1px solid #ffe670;
	overflow: hidden;
	border-radius: 0;
	padding: 10px;
}

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

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

/* ==========================================================================
   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: 0;
}

.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: 0;
	color: #666;
}

.royal-article-meta-item i {
	color: #FFD100;
	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: 0;
	text-decoration: none;
	transition: 0.5s ease;
}

.royal-article-nav-btn:hover {
	border-color: #FFD100;
	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: 0;
	border: 2px solid #FFD100;
	border-left-width: 10px;
	background: #FFFBF0;
}

.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: #FFD100;
	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: 0;
	text-align: center;
}

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

.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: #FFD100;
	color: #fff;
	background: #FFD100;
}

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

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

/* ==========================================================================
   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 0px;
	}
	.royal-inner-banner-info h3{
		font-size: 14px;
	}
	.royal-product-banner .royal-inner-banner-info{
		max-width: 150px;
	}
	.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;
	}

}







/* 新增 */
/* 容器 */
.royal-showcase {
	width: 100%;
	padding: 96px 0;
	background: #ffffff;
	color: #2b2b2b;
	font-family: 'Inter', 'Noto Sans SC', -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	box-sizing: border-box;
}

.royal-showcase *,
.royal-showcase *::before,
.royal-showcase *::after {
	box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   标题区
   -------------------------------------------------------------------------- */
.royal-showcase-hd {
	text-align: center;
	margin-bottom: 72px;
}

.royal-showcase-hd-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.royal-showcase-hd h3 {
	margin: 0 0 14px;
	font-family: 'Inter', 'Noto Sans SC', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #6b6b6b;
}

.royal-showcase-hd h2 {
	position: relative;
	display: inline-block;
	margin: 0;
	padding-bottom: 22px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 44px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.01em;
	color: #2b2b2b;
}

.royal-showcase-hd h2::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 56px;
	height: 2px;
	background: #d4a64a;
}

/* --------------------------------------------------------------------------
   分类列表
   -------------------------------------------------------------------------- */
.royal-showcase-body {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.royal-showcase-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.royal-showcase-list > li {
	list-style: none;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.royal-showcase-list > li.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* 每一行：图 + 文 左右各 50% */
.royal-showcase-item {
	display: flex;
	align-items: center;
	gap: 80px;
}

/* 偶数行：图文左右互换 */
.royal-showcase-list > li:nth-child(even) .royal-showcase-item {
	flex-direction: row-reverse;
}

/* --------------------------------------------------------------------------
   图片区
   -------------------------------------------------------------------------- */
.royal-showcase-media {
	flex: 0 0 50%;
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #fafaf6;
}

.royal-showcase-media a {
	display: block;
	width: 100%;
	height: 100%;
}

.royal-showcase-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.royal-showcase-item:hover .royal-showcase-media img {
	transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   文字区
   -------------------------------------------------------------------------- */
.royal-showcase-text {
	flex: 0 0 50%;
	padding: 0 2px;
	text-align: center;
}

.royal-showcase-text a {
	display: inline-block;
	max-width: 580px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 32px;
	/*font-weight: 700;*/
	line-height: 1.55;
	letter-spacing: 0.005em;
	color: #2b2b2b;
	text-decoration: none;
	transition: color 300ms ease-out;
}
.royal-showcase-text span {
	display: inline-block;
	max-width: 580px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: 0.005em;
	color: #2b2b2b;
	text-decoration: none;
	transition: color 300ms ease-out;
}

.royal-showcase-item:hover .royal-showcase-text a {
	color: #1a1a1a;
}

/* 文字下方装饰单向箭头（尖端指向图片方向） */
.royal-showcase-text::after {
	content: '';
	display: block;
	margin: 32px auto 0;
	width: 72px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 72px 24px;
}

/* 奇数行：图在左 → 双 chevron 左箭头 « */
.royal-showcase-list > li:nth-child(odd) .royal-showcase-text::after {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='24' viewBox='0 0 72 24' fill='none' stroke='%23FFD100' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='32,4 20,12 32,20'/><polyline points='52,4 40,12 52,20'/></svg>");
}

/* 偶数行：图在右 → 双 chevron 右箭头 » */
.royal-showcase-list > li:nth-child(even) .royal-showcase-text::after {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='24' viewBox='0 0 72 24' fill='none' stroke='%23FFD100' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20,4 32,12 20,20'/><polyline points='40,4 52,12 40,20'/></svg>");
}

/* --------------------------------------------------------------------------
   scrollspy 进场动画（兼容宿主 royal-animation-slide-bottom）
   -------------------------------------------------------------------------- */
.royal-showcase .royal-animation-slide-bottom {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.royal-showcase .royal-animation-slide-bottom.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* --------------------------------------------------------------------------
   响应式
   -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
	.royal-showcase {
		padding: 80px 0;
	}

	.royal-showcase-hd {
		margin-bottom: 56px;
	}

	.royal-showcase-hd h2 {
		font-size: 36px;
		padding-bottom: 18px;
	}

	.royal-showcase-hd h2::after {
		width: 48px;
	}

	.royal-showcase-list {
		gap: 72px;
	}

	.royal-showcase-item {
		gap: 56px;
	}

	.royal-showcase-text {
		padding: 0 20px;
	}

	.royal-showcase-text a {
		font-size: 26px;
	}

	.royal-showcase-text::after {
		width: 64px;
		height: 22px;
		background-size: 64px 22px;
		margin-top: 24px;
	}

	.royal-showcase-list > li:nth-child(odd) .royal-showcase-text::after,
	.royal-showcase-list > li:nth-child(even) .royal-showcase-text::after {
		background-size: 64px 22px;
	}
}

@media (max-width: 767px) {
	.royal-showcase {
		padding: 56px 0;
	}

	.royal-showcase-hd {
		margin-bottom: 36px;
	}

	.royal-showcase-hd-inner {
		padding: 0 20px;
	}

	.royal-showcase-hd h3 {
		font-size: 11px;
		letter-spacing: 0.2em;
		margin-bottom: 10px;
	}

	.royal-showcase-hd h2 {
		font-size: 26px;
		padding-bottom: 14px;
	}

	.royal-showcase-hd h2::after {
		width: 36px;
	}

	.royal-showcase-body {
		padding: 0 20px;
	}

	.royal-showcase-list {
		gap: 48px;
	}

	/* 手机端：所有行统一改为上下堆叠，取消左右交替 */
	.royal-showcase-item,
	.royal-showcase-list > li:nth-child(even) .royal-showcase-item {
		flex-direction: column;
		gap: 20px;
	}

	.royal-showcase-media,
	.royal-showcase-text {
		flex: 0 0 auto;
		width: 100%;
	}

	.royal-showcase-text {
		padding: 0;
	}

	.royal-showcase-text a {
		font-size: 18px;
		max-width: 420px;
	}

	/* 手机端：图在上，文在下 → 双 chevron 向上箭头 ⌃⌃，奇偶行统一 */
	.royal-showcase-list > li:nth-child(odd) .royal-showcase-text::after,
	.royal-showcase-list > li:nth-child(even) .royal-showcase-text::after {
		width: 24px;
		height: 56px;
		background-size: 24px 56px;
		margin: 18px auto 0;
		background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='56' viewBox='0 0 24 56' fill='none' stroke='%23FFD100' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4,24 12,12 20,24'/><polyline points='4,44 12,32 20,44'/></svg>");
	}
}

@media (max-width: 380px) {
	.royal-showcase {
		padding: 44px 0;
	}

	.royal-showcase-hd h2 {
		font-size: 22px;
	}

	.royal-showcase-text a {
		font-size: 18px;
	}
}
