/* 景点页面主体样式 */
.scenic-main {
    margin-top: 100px;
    padding: 20px;
}

/* 分类导航样式 */
.category-nav {
    background: #fff;
    padding: 15px 0;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.category-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-nav li {
    margin: 0 20px;
}

.category-nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 5px 15px;
    border-radius: 20px;
    transition: all 0.3s;
}

.category-nav li.active a,
.category-nav a:hover {
    background: #c41230;
    color: #fff;
}

/* 景点列表样式 */
.scenic-section {
    margin-bottom: 50px;
}

.scenic-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 5px solid #c41230;
}

.scenic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

/* 景点卡片样式 */
.scenic-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.scenic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.scenic-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.location {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.description {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.tags {
    margin-bottom: 15px;
}

.tags span {
    display: inline-block;
    padding: 3px 10px;
    background: #f5f5f5;
    color: #666;
    border-radius: 15px;
    font-size: 12px;
    margin-right: 8px;
}

.read-more {
    display: inline-block;
    padding: 8px 20px;
    background: #c41230;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
}

.read-more:hover {
    background: #a00e26;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .category-nav ul {
        flex-wrap: wrap;
    }
    
    .category-nav li {
        margin: 5px 10px;
    }
    
    .scenic-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .scenic-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
} 