 .article-block{
            margin-top: 2px;
            background: #fff;
            border-radius: 0px;
            overflow: hidden;
        }
        .article-block-header{
            height: 45px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #308dd700;
    background: linear-gradient(to bottom, #19774b, #098a70);
        }
        .article-block-title{
            font-size: 16px;
            font-weight: bold;
            color: #ffffff;
        }
        .article-block-more{
            font-size: 13px;
            color: #ffffff;
            text-decoration: none;
        }
        .article-block-more:hover{ color: #16baaa; }

        .article-tab-bar{
            padding: 0 20px;
            border-bottom: 2px solid #f0f0f0;
            display: flex;
            gap: 25px;
                background: #F1F8E9;
    /* overflow-x: auto;*/
        }
        .article-tab-item{
            padding: 12px 0;
            font-size: 14px;
            color: #666;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .article-tab-item.active{
            color: #ff5722;
            border-bottom-color: #ff5722;
            font-weight: bold;
        }
        .article-tab-panel{
            display: none;
        }
        .article-tab-panel.active{
            display: block;
        }

        .article-list{
            padding: 15px 20px 20px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .article-list-item{
            display: flex;
            gap: 12px;
            padding: 12px;
            border: 1px solid #f0f0f0;
            border-radius: 4px;
            transition: all 0.2s;
        }
        .article-list-item:hover{
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            transform: translateY(-2px);
        }
        .article-list-cover{
            width: 120px;
            height: 90px;
            flex-shrink: 0;
            border-radius: 4px;
            overflow: hidden;
            display: block;
        }
        .article-list-cover img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .article-list-info{
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .article-list-title{
            font-size: 15px;
            font-weight: bold;
            margin: 0 0 6px 0;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }
        .article-list-title a{ color: #333; text-decoration: none; }
        .article-list-title a:hover{ color: #1890ff; }
        .article-list-desc{
            font-size: 12px;
            color: #666;
            line-height: 1.5;
            margin: 0 0 6px 0;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .article-list-meta{
            display: flex;
            gap: 10px;
            font-size: 12px;
            color: #999;
            flex-wrap: wrap;
        }
        .article-list-meta span{
            display: flex;
            align-items: center;
            gap: 3px;
        }

        /* 搜索结果 卡密商城同款排版 */
        .search-block{
            background: #fff;
            border-radius: 6px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        .search-block-header{
            height: 48px;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #f0f0f0;
        }
        .search-block-title{
            font-size: 16px;
            font-weight: bold;
            color: #333;
        }
        .search-block-title span{
            color: #ff5722;
            margin: 0 4px;
        }
        .search-card-grid{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            padding: 15px 20px 20px;
        }
        .search-card-item{
            border: 1px solid #eee;
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.2s;
            display: flex;
            flex-direction: column;
        }
        .search-card-item:hover{
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transform: translateY(-2px);
        }
        .search-card-cover{
            width: 100%;
            height: 120px;
            object-fit: cover;
            display: block;
        }
        .search-card-body{
            padding: 10px 12px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .search-card-name{
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
            height: 40px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            margin-bottom: 8px;
        }
        .search-card-name a{ color: #333; }
        .search-card-name a:hover{ color: #ff5722; }
        .search-card-meta{
            font-size: 12px;
            color: #999;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
        }
        .search-card-bottom{
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        .search-card-price{
            color: #ff5722;
            font-size: 16px;
            font-weight: bold;
        }
        .search-card-price.free{ color: #43a047; }
        .search-card-btn{
            display: block;
            text-align: center;
            height: 32px;
            line-height: 32px;
            background: #ff5722;
            color: #fff;
            border-radius: 2px;
            font-size: 13px;
            text-decoration: none;
        }
        .search-card-btn:hover{ opacity: 0.9; color: #fff; }
        .search-empty{
            padding: 60px 20px;
            text-align: center;
            color: #999;
            font-size: 14px;
        }

        /* 响应式适配 */
        @media (max-width: 992px){
            .resource-grid, .article-grid, .search-card-grid{
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px){
            .resource-grid, .article-grid, .search-card-grid{
                grid-template-columns: 1fr;
            }
        }
     /* 卡密商城网格排版 */
.card-shop-block{
    margin-top: 20px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}
.card-shop-header{
    height: 48px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}
.card-shop-title{
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
.card-shop-more{
    font-size: 13px;
    color: #999;
    text-decoration: none;
}
.card-shop-more:hover{ color: #16baaa; }

.card-shop-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 15px 20px 20px;
}
.card-shop-item{
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.card-shop-item:hover{
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.card-shop-cover{
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #f5f5f5;
}
.card-shop-cover img{
    width: 100%;
    height: 100%;
    display: block;
}
.card-shop-body{
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-shop-name{
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-shop-desc{
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
}
.card-shop-valid{
    font-size: 12px;
    color: #ff5722;
    margin-bottom: 8px;
}
.card-shop-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.card-shop-price{
    color: #ff5722;
    font-size: 18px;
    font-weight: bold;
}
.card-shop-stock{
    font-size: 12px;
    color: #999;
}
.card-shop-btn{
    display: block;
    text-align: center;
    height: 36px;
    line-height: 36px;
    background: #e53935;
    color: #fff;
    border-radius: 2px;
    font-size: 14px;
    text-decoration: none;
    margin-top: auto;
}
.card-shop-btn:hover{ opacity: 0.9; color: #fff; }
.card-shop-btn.disable{
    background: #ccc;
    cursor: not-allowed;
}

/* 响应式适配 */
@media (max-width: 992px){
    .card-shop-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px){
    .card-shop-grid{
        grid-template-columns: 1fr;
    }
}   