



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2),
                0 0 15px rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    transition: all 0.3s ease;
}

.recommend-item:hover img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                0 0 25px rgba(0, 210, 255, 0.2);
    transform: scale(1.02);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #00d2ff;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 210, 255, 0.3);
}
.recommend-item-info p {
    display: flex;
    color: #666666;
    font-size: 0.8rem;
    margin: 10px 10px;
    font-weight: 500;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 25px;
    background: linear-gradient(45deg, #00d2ff, #3a7bd5, #6a11cb);
    border-radius: 5px;
    right: 0px;
    box-shadow: 0 3px 15px rgba(0, 210, 255, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 210, 255, 0.3);
}

.recommend-item-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.6);
    background: linear-gradient(45deg, #3a7bd5, #6a11cb, #ff0080);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.lergshf-recommend-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2),
                0 0 30px rgba(0, 210, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 210, 255, 0.4);
    transition: all 0.3s ease;
}

.lergshf-recommend-content img {
    width: 100%;
}

.lergshf-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 12px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px 20px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25),
                0 0 40px rgba(0, 210, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 210, 255, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lergshf-recommend-content-hot:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3),
                0 0 50px rgba(0, 210, 255, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.lergshf-recommend-content-hot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5, #6a11cb, #ff0080);
    box-shadow: 0 2px 15px rgba(0, 210, 255, 0.3);
    z-index: 1;
}

.lergshf-recommend-content-hot img {
    width: 100%;
}




