* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 背景图片 */
.header {
	background-image: url(./../images/74.png);
	background-repeat: no-repeat;
	width: 100%;
	height: 540px;
	background-position: center center;
	background-size: cover;
	margin-top: 55px;
}

.eatHM {
	width: 100%;
	height: 220px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.eatTitle {
	font-family: '宋体';
	font-size: 36px;
}

.eatSubtitle {
	font-family: '宋体';
	font-size: 14px;
}

.carousel-containers {
	position: relative;
	overflow: hidden;
	padding: 30px;
	box-sizing: border-box;
	padding: 0;
}

.carousel-tracks {
	display: flex;
	transition: transform 0.5s ease;
	padding: 10px 0;
	box-sizing: border-box;
	cursor: grab;
}

.carousel-items {
    flex: 0 0 calc(100% / 6 - 20px);
    height: 378px;
    margin: 0 8px;
    /* border-radius: 10px; */
    overflow: hidden;
    transition: all 0.4s ease;
}
.carousel-items1{
	flex:none;
	/* background-color: red; */
	/* border-right: 1px solid #333; */
	height: 400px;
	transition: all 0.4s ease;
}
.carousel-items1 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.carousel-items:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 0px 5px rgba(0, 0, 0, 0.6);
	z-index: 2;
}

.carousel-items img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.carousel-navs {
    position: absolute;
    top: 49%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 44px;
	box-sizing: border-box;
    z-index: 10;
    pointer-events: none;
}


.nav-btns {
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	pointer-events: auto;
}

.nav-btns:hover {
	background: #ff6b6b;
	color: white;
	transform: scale(1.1);
}

.shop{
	width: 100%;
	text-align: center;
	margin-top: 50px;
}
.shopTitle{
	color: #fe571f;
	font-size: 18px;
}
.shopSubtitle{
	color: #979797;
	font-size: 11px;
	margin-top: 10px;
}
.shopcontent{
	font-size: 14px;
	margin-top: 27px;
	margin-bottom: 110px;
}





/* 响应式设计 */
@media (max-width: 1200px) {
	.carousel-items {
		flex: 0 0 calc(100% / 4 - 20px);
		height: 220px;
	}
}

@media (max-width: 992px) {
	.carousel-items {
		flex: 0 0 calc(100% / 3 - 20px);
	}
	.shop{
		width: 100%;
		text-align: center;
		margin-top: 10px;
	}
	.shopcontent{
		font-size: 14px;
		margin-top: 27px;
		margin-bottom: 52px;
		padding: 0 20px;
		box-sizing: border-box;
	}
}
.header-mobile{
	display: none;
}
@media (max-width: 768px) {
	.header-mobile{
		display: block;
	}
	.header {
		background-image: none;
		margin-top: 47px;
		height: auto;
	}
	.carousel-items1{
		height: 200px;
	}
	.eatHM{
		height: auto;
		padding: 20px 0;
	}
	.carousel-items {
		flex: 0 0 calc(100% / 2 - 20px);
		height: 200px;
	}
}

@media (max-width: 576px) {
	.carousel-items {
		/* flex: 0 0 calc(100% - 20px); */
		flex: none;
		height: 250px;
	}

	.nav-btns {
		width: 40px;
		height: 40px;
	}
}