/* 美食简介部分 */
.food-intro {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.food-intro p {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

/* 特色小吃部分 */
.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.food-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.food-card:hover {
    transform: translateY(-5px);
}

.food-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.food-info {
    padding: 1.5rem;
}

.food-info h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.food-info p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    color: #C41E3A;
    font-weight: bold;
}

/* 推荐餐厅部分 */
.restaurant-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.restaurant-item {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.restaurant-item img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.restaurant-info {
    padding: 1.5rem;
    flex: 1;
}

.restaurant-info h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.restaurant-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* 美食小贴士部分 */
.food-tips {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
}

.tips-content ul {
    list-style-type: none;
    padding: 0;
}

.tips-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
}

.tips-content li::before {
    content: "•";
    color: #C41E3A;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .restaurant-item {
        flex-direction: column;
    }

    .restaurant-item img {
        width: 100%;
        height: 200px;
    }

    .food-grid {
        grid-template-columns: 1fr;
    }
} 