
.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 10px 0px;
    position: relative;
    transition: transform 0.3s ease;
}

.recommend-item:hover {
    transform: translateY(-3px);
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #DB2777;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: bold;
}
.recommend-item-info p {
    display: flex;
    color: #5A5A5A;
    font-size: 0.8rem;
    margin: 10px 10px;
}

.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(135deg, #00CED1 0%, #1E90FF 100%);
    border-radius: 5px;
    right: 0px;
    box-shadow: 0 2px 8px rgba(30, 144, 255, 0.4);
    transition: transform 0.2s ease;
}

.recommend-item-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.5);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.jijfiv-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 10px 0;
    padding: 5px;
}

.jijfiv-recommend-content img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.jijfiv-recommend-content img:hover {
    transform: scale(1.05);
}

.jijfiv-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 15px 10px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(214, 245, 255, 0.9) 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(30, 144, 255, 0.15);
    border: 2px solid rgba(30, 144, 255, 0.2);
}

.jijfiv-recommend-content-hot img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.jijfiv-recommend-content-hot img:hover {
    transform: scale(1.05);
}




