



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 8px 0;
    position: relative;
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.18),
        0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 8px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #3b82f6;
    font-size: 1.1rem;
    margin: 0 6px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.08);
    line-height: 1.4;
}
.recommend-item-info p {
    display: flex;
    color: #5A5A5A;
    font-size: 0.8rem;
    margin: 6px 6px;
    line-height: 1.3;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #3b82f6 100%);
    border-radius: 30px;
    right: 0px;
    box-shadow: 
        0 8px 20px rgba(59, 130, 246, 0.35),
        0 4px 10px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.recommend-item-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(59, 130, 246, 0.45),
        0 6px 15px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.lsjpad-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 16px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s ease;
}

.lsjpad-recommend-content img {
    width: 100%;
}

.lsjpad-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 16px 16px 24px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 
        0 10px 30px rgba(59, 130, 246, 0.25),
        0 4px 12px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.4);
    transition: all 0.4s ease;
}

.lsjpad-recommend-content-hot img {
    width: 100%;
}




