



.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: 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: #FF6B6B;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: bold;
}
.recommend-item-info p {
    display: flex;
    color: #4a4a4a;
    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-color: #FF6B6B;
    border-radius: 8px;
    right: 0px;
    box-shadow: 0 4px 0 #FF5252;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}

.recommend-item-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 0 #FF5252;
    background-color: #4ECDC4;
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.dvcdui-recommend-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 10px;
    padding: 15px;
    background-color: #BAE6FF;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 0 #A3D5F7;
}

.dvcdui-recommend-content img {
    width: 100%;
}

.dvcdui-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 10px 20px;
    padding: 15px;
    background-color: #E2F5CB;
    border-radius: 16px;
    box-shadow: 0 8px 0 #D4EDB8;
    position: relative;
    overflow: hidden;
}

.dvcdui-recommend-content-hot img {
    width: 100%;
}




