



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(250, 112, 154, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.recommend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
    width: 100%;
}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 15px 15px 0 0;
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 15px;
    align-items:flex-start;
    flex-wrap: wrap;
    position: relative;
    background: linear-gradient(180deg, #ffffff, #fff3f0);
}

.recommend-item-info h3 {
    color: #ff6b6b;
    font-size: 1rem;
    margin: 0px 0px 10px 0px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}
.recommend-item-info p {
    display: flex;
    color: #5f27cd;
    font-size: 0.8rem;
    margin: 5px 0px;
    text-align: center;
    width: 100%;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: auto;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 0 0 15px 15px;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}
.recommend-item-btn:hover {
    background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;
    border-radius: 0;
}

.jisvcdu-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 15px;
}

.jisvcdu-recommend-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 201, 255, 0.2);
    transition: transform 0.3s ease;
}

.jisvcdu-recommend-content img:hover {
    transform: scale(1.05);
}

.jisvcdu-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(250, 112, 154, 0.15);
}

.jisvcdu-recommend-content-hot img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(254, 225, 64, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jisvcdu-recommend-content-hot img::before {
    content: "HOT";
    position: absolute;
    top: 5px;
    left: 5px;
    background: linear-gradient(90deg, #fa709a 0%, #fee140 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 1;
}

.jisvcdu-recommend-content-hot img:hover {
    transform: scale(1.1);
}




