 /* 全局样式重置与基础设定 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Serif SC', 'SimSun', serif;
        }

        body {
            line-height: 1.6;
            color: #333;
            background-color: #f8f8f8;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        /* 返回按钮样式 */
        .back-btn {
            display: inline-block;
            background-color: #D2691E;
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 16px;
            text-decoration: none;
            margin: 30px 0;
        }

        .back-btn:hover {
            background-color: #b35a1a;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(210, 105, 30, 0.2);
        }

        /* 页面内容样式 */
        .page-content {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }

        .page-content h1 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 20px;
            color: #D2691E;
        }

        .page-content p {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }

        .food-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .food-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .food-item:hover {
            transform: translateY(-5px);
        }

        .food-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .food-item h3 {
            padding: 15px;
            font-size: 1.2rem;
            color: #333;
        }
        /* 商家窗口表格样式 */
        .canteen-table {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 0 auto 40px;
            max-width: 1000px;
        }
        .table-title {
            font-size: 2rem;
            color: #D2691E;
            margin-bottom: 30px;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 15px;
            text-align: left;
        }

        .window-table {
            width: 100%;
            border-collapse: collapse;
        }

        .window-table th,
        .window-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .window-table th {
            background-color: #faf6f3;
            font-size: 1.1rem;
            color: #333;
            font-weight: 600;
        }

        .window-table tr:hover {
            background-color: #f9f9f9;
        }

        /* 图片放大 */
        .zoom-img {
            width: 100px;
            height: 80px;
            object-fit: cover;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: zoom-in;/*提醒*/
            position: relative; 
        }

        .zoom-img:hover {
            transform: scale(3); 
            z-index: 100; 
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* 评分样式 */
        .table-rating {
            color: #FFD700;
            font-size: 1.2rem;
        }