body {
	font-family: Arial, sans-serif;
}

.hero-section {
	background-color: #fff9f9;
	padding: 60px 0;
}

.menu-card {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.menu-card:hover {
	transform: translateY(-5px);
}

.feature-box {
	background-color: #222;
	color: white;
	padding: 30px;
	border-radius: 8px;
}

.footer {
	background-color: #222;
	color: white;
	padding: 40px 0;
}

.news-item {
	margin-bottom: 20px;
	padding: 15px;
	border-left: 4px solid #e60000;
	background-color: #f8f8f8;
}

.top-bar {
	background-color: #e60000;
	color: white;
	padding: 8px 0;
	font-size: 14px;
}

.navbar {
	padding: 15px 0;
}

.nav-item {
	margin-right: 10px;
}

.order-btn {
	background-color: #e60000;
	color: white;
	border-radius: 50px;
	padding: 8px 20px;
	border: 0 solid transparent;
}

.view-menu-btn {
	border: 1px solid #e60000;
	color: #e60000;
	border-radius: 50px;
	padding: 8px 20px;
}

.order-online-btn {
	background-color: #e60000;
	color: white;
	border-radius: 50px;
	padding: 8px 20px;
}

.text-red {
	color: #e60000;
}


/* menu */

.cate-nav {
	padding: 10px;
}

.cate-nav-item {
	color: #e60000;
	cursor: pointer;
	float: left;
	padding: 15px 0;
	text-align: center;
}

.cate-item-1 {
	font-size: 20px;
	font-weight: bold;

	border-bottom: 2px solid #e60000;
	margin-bottom: 20px;
}

.cate-item-2 {
	font-size: 16px;
	font-weight: bold;

	padding-left: 20px;

	border-bottom: 1px solid #CCCCCC;
	margin-bottom: 20px;
}

.product-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* 创建4个等宽列 */
	grid-auto-rows: 1fr; /* 行高自动分配为等分剩余空间 */
	gap: 16px; /* 可选：列间距 */
}

.product-list-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	/*margin-bottom: 20px;*/
}

.product-list-item .product-img {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 75%; /* 保证容器是正方形 */
	overflow: hidden; /* 溢出隐藏 */
}

.product-list-item .product-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%; /* 图片宽度100% */
	height: 100%; /* 图片高度100% */
	object-fit: cover; /* 保持图片比例填充容器 */
}

.product-list-item .product-name {
	width: 100%;
	height: 20px;
	overflow: hidden;

	text-align: center;
}

.product-list-item .product-price {
	width: 100%;
	height: 20px;
	overflow: hidden;

	text-align: center;
	color: #e60000;
	margin-top: 8px;
}


/* index */

.index-menu .text-muted {
	height: 48px;
	overflow: hidden;
}
