



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 10px 0px;
    position: relative;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.recommend-item:hover {
    transform: translateY(-3px);
    box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
    display: block;
    width: 100%;
}
.recommend-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

.recommend-item img:hover {
    transform: scale(1.03);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px 5px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

.recommend-item-info h3 {
    color: #333;
    font-size: 0.9rem;
    margin: 5px 0px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}
.recommend-item-info p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
    font-size: 0.75rem;
    margin: 5px 0px;
    text-align: center;
    line-height: 1.4em;
    max-height: 2.8em;
    width: 100%;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    border-radius: 8px;
    right: 0px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.recommend-item-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.uthgnv-recommend-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 15px 10px;
}

.uthgnv-recommend-content img {
    width: 100%;
}

.uthgnv-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 15px 15px;
}

.uthgnv-recommend-content-hot img {
    width: 100%;
}




