/* 策略研究文章列表样式 */
.strategy-wrapper {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    background-color: #f9f9f9;
    min-height: 100vh;
}

.strategy-banner {
    background: linear-gradient(146deg, #ffbf29, #bd1515);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -60px;
}

.strategy-banner h1 {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.strategy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.strategy-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.strategy-card-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.strategy-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.strategy-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.strategy-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ed6b1a, #d9590a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.strategy-author-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.strategy-date {
    font-size: 12px;
    color: #999;
}

.strategy-title {
    font-size: 16px;
    font-weight: 700;
    color: #15171c;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.strategy-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    padding: 0 20px;
    margin: 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.strategy-thumbnail {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin: 15px 0;
}

.strategy-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.strategy-card:hover .strategy-thumbnail img {
    transform: scale(1.05);
}

.strategy-tags {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
}

.strategy-tag-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.strategy-product {
    background: #f0f7ff;
    color: #2a5298;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.strategy-direction {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
}

.strategy-direction.rise {
    color: #ee5354;
}

.strategy-direction.fall {
    color: #4ab953;
}

.strategy-view-btn {
    color: #ed6b1a;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.strategy-view-btn:hover {
    color: #d9590a;
}

.strategy-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.strategy-pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #eaeaea;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.strategy-pagination a:hover,
.strategy-pagination .current {
    background: #d9590a;
    border-color: #d9590a;
    color: #fff;
}

@media (max-width: 768px) {
    .strategy-banner {
        height: 200px;
        margin-bottom: -40px;
    }
    
    .strategy-banner h1 {
        font-size: 32px;
    }
    
    .strategy-container {
        padding: 20px 15px;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}