



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 0;
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #43e9b7;
}
.recommend-item:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 20px 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;
    aspect-ratio: 1 / 1.1;
}

.recommend-item img:hover {
    transform: scale(1.02);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

.recommend-item-info h3 {
    color: #333;
    font-size: 0.9rem;
    margin: 5px 0;
    font-weight: bold;
    text-align: center;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.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.8rem;
    margin: 5px 0;
    text-align: center;
    line-height: 1.4;
    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, #43e97b 0%, #38f9d7 100%);
    border-radius: 8px;
    right: 0px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    align-items: center;
    justify-content: center;
}

.recommend-item-btn:hover {
    transform: scale(1.05);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.utghlfd-recommend-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 1rem;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 0;
}

.utghlfd-recommend-content img {
    width: 100%;
}

.utghlfd-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 0.75rem;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 0;
}

.utghlfd-recommend-content-hot img {
    width: 100%;
}




