/* 景点页面样式 */
.page-banner {
    height: 300px;
    background: url('../images/scenic-banner.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.page-title {
    position: relative;
    z-index: 1;
    font-size: 36px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 分类导航 */
.category-nav {
    background: #f5f5f5;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.category-list {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.category-item {
    padding: 8px 20px;
    border-radius: 20px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.category-item:hover,
.category-item.active {
    background: #8B0000;
    color: #fff;
}

/* 景点列表 */
.scenic-list {
    padding: 50px 0;
}

.scenic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.scenic-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.scenic-item:hover {
    transform: translateY(-5px);
}

.scenic-img {
    height: 300px;
    overflow: hidden;
}

.scenic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.scenic-item:hover .scenic-img img {
    transform: scale(1.1);
}

.scenic-content {
    padding: 30px;
}

.scenic-title {
    font-size: 24px;
    color: #8B0000;
    margin-bottom: 15px;
    border-bottom: 2px solid #8B0000;
    padding-bottom: 10px;
}

.scenic-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.scenic-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.scenic-desc {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.scenic-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.scenic-tag {
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 15px;
    color: #666;
    font-size: 12px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    transition: all 0.3s;
}

.page-btn:hover,
.page-btn.active {
    background: #8B0000;
    color: #fff;
    border-color: #8B0000;
} 