/* 样式统一放在这里 */
/* 文本与图片的flex布局 */
.sh1m {
	display: flex;
	justify-content: space-between;
	margin-top: 25px;
}

.sh1m-text,
.sh1m-img {
	flex: 1;
}

/* 调整左右布局结构 */
.plaza-content-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 25px;
}

.plaza-media-row {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 20px;
	margin-bottom: 30px;
}

.plaza-image-container, 
.plaza-video-container {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.plaza-image-container:hover, 
.plaza-video-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.plaza-image-container img,
.plaza-video-container video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.plaza-text-container {
	width: 80%;
	max-width: 800px;
	text-align: center;
}

.plaza-text-container p {
	color: #333;
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 20px;
	font-weight: 300;
	position: relative;
	padding: 0 20px;
}

.plaza-text-container p:before {
	content: '';
	position: absolute;
	height: 2px;
	width: 50px;
	background-color: #E51122;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
}

.plaza-text-container p:after {
	top: auto;
	bottom: -15px;
}

/* Zone Grid 布局样式 */
.zone-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr); /* 改为单列布局 */
	gap: 15px; /* 减小间距 */
	margin-top: 10px; /* 减小顶部间距 */
}

.zone-item {
	display: flex;
	align-items: flex-start;
	background-color: #f8f9fa;
	border-radius: 8px;
	padding: 12px; /* 减小内边距 */
	transition: all 0.3s ease;
	border-left: 4px solid #E51122;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(20px);
}

/* 入场动画 */
.zone-item.animated-in {
	animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 高亮激活状态 */
.zone-item.active-zone {
	background-color: rgba(229, 17, 34, 0.08);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
	transform: translateY(-5px);
}

.zone-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.zone-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(229, 17, 34, 0.05);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
	z-index: 0;
}

.zone-item:hover::before {
	transform: scaleX(1);
}

.zone-icon {
	width: 32px; /* 缩小图标尺寸 */
	height: 32px;
	background-color: #E51122;
	color: white;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 16px; /* 缩小字体 */
	margin-right: 12px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	box-shadow: 0 4px 8px rgba(229, 17, 34, 0.2);
	transition: all 0.3s ease;
}

.zone-item:hover .zone-icon {
	transform: scale(1.1);
	box-shadow: 0 6px 12px rgba(229, 17, 34, 0.3);
}

/* 活动区域的图标特效 */
.zone-item.active-zone .zone-icon {
	transform: scale(1.1);
	box-shadow: 0 6px 12px rgba(229, 17, 34, 0.3);
	animation: pulse 1s infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(229, 17, 34, 0.4);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(229, 17, 34, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(229, 17, 34, 0);
	}
}

.zone-content {
	flex-grow: 1;
	position: relative;
	z-index: 1;
}

.zone-content h4 {
	margin: 0 0 5px 0;
	color: #333;
	font-size: 15px; /* 缩小标题字体 */
	font-weight: 600;
	transition: all 0.3s ease;
}

.zone-item:hover .zone-content h4,
.zone-item.active-zone .zone-content h4 {
	color: #E51122;
}

.zone-content p {
	margin: 0;
	color: #666;
	font-size: 13px; /* 缩小描述字体 */
	line-height: 1.4;
}

/* STAR Plaza区域样式 */
.plaza-map-container {
	position: relative;
	width: 100%;
	margin: 30px auto;
}

/* Plaza Zone Container 样式 */
.plaza-zone-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 48px;
	margin: 40px 12px;
}

.plaza-zone-item {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	position: relative;
}

.plaza-zone-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.plaza-zone-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.plaza-zone-item:hover img {
	transform: scale(1.02);
}

/* 移动端适配 */
@media only screen and (max-width:768px) {
	.plaza-zone-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}

@media only screen and (max-width:480px) {
	.plaza-zone-container {
		grid-template-columns: 1fr;
	}
}

/* 优化提示文本样式 */
p.tip {
	text-align: center;
	margin: 20px auto;
	padding: 12px 20px;
	background-color: #f8f9fa;
	border-left: 5px solid #E51122;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 500;
	color: #333;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 600px;
}

p.tip:before {
	content: "\f25a";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
	color: #E51122;
	font-size: 18px;
}

.plaza-bg {
	display: block;
	max-width: 100%;
}

.plaza-top-row,
.plaza-bottom-row {
	position: absolute;
	width: 100%;
	height: 50%;
	left: 0;
}

.plaza-top-row {
	top: 0;
}

.plaza-bottom-row {
	bottom: 0;
}

.plaza-area {
	position: absolute;
	transition: all 0.3s ease;
	cursor: pointer;
	box-shadow: 0 0 5px rgba(229, 17, 34, 0.2);
	border: 2px solid transparent;
}

.plaza-area:hover {
	transform: scale(1.05);
	z-index: 10;
	border-color: #ffffff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* 区域具体位置 - 根据实际图片调整 */
.plaza-top-row img:nth-child(1) {
	top: 0;
	left: 0;
	width: auto;
	height: 29.8%;
}

.plaza-top-row img:nth-child(2) {
	top: 0;
	left: 23%;
	width: auto;
	height: 29.8%;
}

.plaza-top-row img:nth-child(3) {
	top: 0%;
	left: 33%;
	width: auto;
	height: 29.8%;
}

.plaza-top-row img:nth-child(4) {
	top: 0%;
	left: 55.5%;
	width: auto;
	height: 29.8%;
}

.plaza-top-row img:nth-child(5) {
	top: 0%;
	left: 77.5%;
	width: auto;
	height: 29%;
}

.plaza-bottom-row img:nth-child(1) {
	bottom: 0;
	top: unset;
	left: 11.3%;
	width: auto;
	height: 28%;
}

.plaza-bottom-row img:nth-child(2) {
	bottom: 0;
	top: unset;
	left: 33.4%;
	width: auto;
	height: 28%;
}

.plaza-bottom-row img:nth-child(3) {
	bottom: 0;
	top: unset;
	left: 77.8%;
	width: auto;
	height: 28%;
}

/* 移动端适配 */
@media only screen and (max-width:768px) {
	.plaza-media-row {
		flex-direction: column;
		gap: 15px;
	}
	
	.plaza-image-container, 
	.plaza-video-container {
		width: 100%;
		margin-bottom: 15px;
	}
	
	.plaza-text-container {
		width: 100%;
	}
	
	.plaza-text-container p {
		font-size: 16px;
		padding: 0 10px;
	}
	
	/* 添加手机端展示样式 */
	.plaza-content-container {
		flex-direction: column;
	}
	
	.plaza-left-content,
	.plaza-right-content {
		width: 100%;
	}
	
	.sh1m {
		flex-direction: column;
	}

	.sh1m-text,
	.sh1m-img {
		width: 100%;
		margin-bottom: 15px;
	}

	/* 移动端 STAR Plaza 区域样式调整 */
	.plaza-top-row,
	.plaza-bottom-row {
		position: relative;
		height: auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 10px 0;
	}

	.plaza-area {
		position: relative !important;
		width: 48% !important;
		margin-bottom: 10px;
		top: auto !important;
		left: auto !important;
		bottom: auto !important;
	}
	
	/* 移动端提示文本样式调整 */
	p.tip {
		font-size: 14px;
		padding: 10px 15px;
	}
	
	/* 移动端Zone Grid调整 */
	.zone-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.zone-item {
		padding: 12px;
	}
	
	.zone-icon {
		width: 30px;
		height: 30px;
		font-size: 16px;
		margin-right: 10px;
	}
	
	.zone-content h4 {
		font-size: 15px;
	}
	
	.zone-content p {
		font-size: 13px;
	}
}