
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>菜单</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
color: #333;
}
.container {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
}
.menu-section {
margin-bottom: 40px;
}
h2 {
border-bottom: 2px solid #333;
padding-bottom: 10px;
margin-bottom: 20px;
color: #333;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
th, td {
border: 1px solid #eaeaea;
padding: 15px;
text-align: left;
}
th {
background-color: #333;
color: #fff;
}
td {
background-color: #f9f9f9;
}
tr:nth-child(even) td {
background-color: #f4f4f4;
}
.price {
font-weight: bold;
color: #e74c3c;
}
/* 响应式设计 */
@media (max-width: 768px) {
.container {
margin: 10px;
padding: 10px;
}
th, td {
padding: 10px;
}
h2 {
font-size: 18px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>菜单</h1>
<div class="menu-section">
<h2>凉菜</h2>
<table>
<tr>
<th>菜品名称</th>
<th>价格</th>
</tr>
<tr>
<td>躇瓜</td>
<td class="price">12元</td>
</tr>
<!-- 更多凉菜 -->
<tr>
<td>囹圄鳜鱼</td>
<td class="price">14元</td>
</tr>
<tr>
<td>骉毳</td>
<td class="price">36元</td>
</tr>
<tr>
<td>淼焱垚锅</td>
<td class="price">42元</td>
</tr>
</table>
</div>
<!-- 更多菜单部分 -->
<div class="menu-section">
<h2>热菜</h2>
<table>
<tr>
<th>菜品名称</th>
<th>价格</th>
</tr>
<tr>
<td>躞头</td>
<td class="price">12元</td>
</tr>
<tr>
<td>垚犇猋赑</td>
<td class="price">36元</td>
</tr>
<tr>
<td>曩奣驫烧</td>
<td class="price">42元</td>
</tr>
<tr>
<td>赑煊烜汤</td>
<td class="price">46元</td>
</tr>
<tr>
<td>嚞嚞炒馫畾</td>
<td class="price">42元</td>
</tr>
</table>
</div>
<div class="menu-section">
<h2>特色菜</h2>
<table>
<tr>
<th>菜品名称</th>
<th>价格</th>
</tr>
<tr>
<td>酸辣土豆丝</td>
<td class="price">16元</td>
</tr>
<tr>
<td>鬓鱼</td>
<td class="price">22元</td>
</tr>
<tr>
<td>轰皛炒龘</td>
<td class="price">48元</td>
</tr>
<tr>
<td>燚焜炖龃龉</td>
<td class="price">48元</td>
</tr>
<tr>
<td>垚众弄掰菜</td>
<td class="price">48元</td>
</tr>
</table>
</div>
<div class="menu-section">
<h2>汤品</h2>
<table>
<tr>
<th>菜品名称</th>
<th>价格</th>
</tr>
<tr>
<td>子子炖趄斡</td>
<td class="price">24元</td>
</tr>
<tr>
<td>鸕烧鷦</td>
<td class="price">28元</td>
</tr>
<tr>
<td>磅缀拌颥</td>
<td class="price">28元</td>
</tr>
<tr>
<td>暖馫炸龘</td>
<td class="price">32元</td>
</tr>
<tr>
<td>咄嗟舐犊假</td>
<td class="price">32元</td>
</tr>
<tr>
<td>万鷦鬓爪</td>
<td class="price">32元</td>
</tr>
</table>
</div>
</div>
</body>
</html>