/* 美食地图页面样式 */
main {
    margin-top: 60px;
}

.hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

h2 {
    color: #DE2910;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.search-box {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.search-box input {
    width: 300px;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 20px 0 0 20px;
    font-size: 1rem;
}

.search-box button {
    padding: 0.8rem 1.5rem;
    background: #DE2910;
    color: #fff;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    font-size: 1rem;
}

.map-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.china-map {
    position: relative;
    width: 100%;
    height: 600px;
}

.china-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    pointer-events: none;
}

.region-info h3 {
    color: #DE2910;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.region-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.region-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.region-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.region-detail {
    padding: 1rem;
    flex: 1;
}

.region-detail h4 {
    color: #DE2910;
    margin-bottom: 0.5rem;
}

.route-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.route-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.route-card:hover {
    transform: translateY(-5px);
}

.route-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.route-info {
    padding: 1.5rem;
}

.route-info h3 {
    color: #DE2910;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.route-highlights {
    margin-top: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.route-highlights img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tag {
    background: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.tag:hover {
    background: #DE2910;
    color: #fff;
}

@media (max-width: 768px) {
    .map-content {
        grid-template-columns: 1fr;
    }

    .china-map {
        height: 400px;
    }

    .search-box input {
        width: 200px;
    }
} 