.scenic-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.scenic-container h1 {
    color: #4a90e2;
    text-align: center;
    margin-bottom: 30px;
}

/* 景点网格布局 */
.scenic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* 景点卡片样式 */
.scenic-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.scenic-card:hover {
    transform: translateY(-5px);
}

.scenic-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.scenic-info {
    padding: 20px;
}

.scenic-info h2 {
    color: #4a90e2;
    margin-bottom: 15px;
}

.scenic-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.scenic-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9em;
}

.view-more {
    display: inline-block;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
}

.view-more:hover {
    text-decoration: underline;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .scenic-grid {
        grid-template-columns: 1fr;
    }
} 