/* 攻略页面样式 */
.guide-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 攻略banner */
.guide-banner {
    background: linear-gradient(145deg, #2b1216, #1a1a1a);
    padding: 40px 20px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 30px;
}

.guide-banner h1 {
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 20px;
}

/* 攻略分类 */
.guide-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category {
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid #6e1620;
    border-radius: 20px;
    transition: all 0.3s;
}

.category:hover,
.category.active {
    background: #6e1620;
    border-color: #6e1620;
}

/* 热门攻略 */
.featured-guides {
    margin-bottom: 40px;
}

.section-title {
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #6e1620;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.featured-guide {
    background: linear-gradient(145deg, #2b1216, #1a1a1a);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s;
}

.featured-guide:hover {
    transform: translateY(-5px);
}

.guide-image {
    position: relative;
    width: 100%;
}

.guide-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.guide-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    background: #6e1620;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
}

.guide-content {
    padding: 20px;
}

.guide-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.guide-content p {
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.6;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 14px;
}

/* 攻略列表 */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.guide-item {
    background: linear-gradient(145deg, #2b1216, #1a1a1a);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s;
}

.guide-item:hover {
    transform: translateY(-5px);
}

.guide-item .guide-image img {
    height: 200px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.page-item,
.page-next {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #6e1620;
    border-radius: 3px;
    transition: all 0.3s;
}

.page-item:hover,
.page-item.active {
    background: #6e1620;
}

.page-next {
    padding: 8px 20px;
}

.page-dots {
    color: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .featured-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .guide-categories {
        gap: 10px;
    }

    .category {
        padding: 6px 15px;
        font-size: 14px;
    }

    .guide-content h3 {
        font-size: 18px;
    }

    .guide-image img {
        height: 200px;
    }
} 