body {
	font-family: Arial, sans-serif;
	margin: 0 auto;
	padding: 0;
	background-color: #ffffff;
}


.vrindex-carousel {
	width: 96%;
	overflow: hidden;
	margin: 0 auto;
	position: relative;
}

.carousel-container {
	display: flex;
	transition: transform 0.5s ease;
}
.carousel-container img {
	width: 100%;
	flex-shrink: 0;
	max-height: 240px;
}
/*.vrindex-carousel img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 5px;
}*/



.vrindex-navigation {
	display: flex;
	justify-content: space-around;
	margin: 0 auto;
	padding-top: 5px;
	width: 96%;
}

.vrindex-nav-item {
	width: 48%;
	text-align: center;
}

.vrindex-nav-item img {
	width: 100%;
	border-radius: 5px;
}

.vrindex-route {

	padding-top: 18px;

	width: 96%;
	margin: 0 auto;
}

.vrindex-route h3 {
	text-align: left;
	margin-bottom: 5px;
	margin-top: 2px;
	margin-left: 10px;

}

.vrindex-route-subtitle {
	text-align: left;
	font-size: 14px;
	color: #666;
	margin-bottom: 6px;
	margin-left: 10px;
}


.vrindex-route-content {
	display: flex;
	gap: 10px;

	align-items: center; /* 确保图片垂直居中 */
}

.vrindex-route-content img {
	border-radius: 5px;
	height: 120px;

	object-fit: cover; /* 确保填充且不变形 */
}




.vrindex-route-small {
	flex: 3; /* 30% 宽度 */
}

.vrindex-route-large {
	flex: 7; /* 70% 宽度 */
}


.vrindex-promo {
	display: flex;
	flex-wrap: wrap; /* 允许换行 */
	justify-content: space-between;


	margin: 0 auto;
	padding-top: 20px;
	width: 96%;
}

.vrindex-promo-item {
	width: calc(50% - 2.5px);
	margin-bottom: 10px; /* 设置每一行之间的间距 */
	position: relative;
	background: white;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	text-align: center;

}

.vrindex-promo-item img {
	width: 100%;
	border-radius: 10px;
}

.vrindex-promo-label {
	position: absolute;
	top: 0;
	left: 0;
	background: red;
	color: white;
	padding: 5px 10px;
	border-bottom-right-radius: 0;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	font-size: 12px;
}