



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.recommend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.recommend-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    aspect-ratio: 16/9;
    transition: transform 0.3s ease;
}

.recommend-item:hover img {
    transform: scale(1.05);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 15px;
    position: relative;
}

.recommend-item-info h3 {
    color: #ff6f00;
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recommend-item-info p {
    display: flex;
    color: #666;
    font-size: 0.8rem;
    margin: 0 0 12px 0;
    opacity: 0.9;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, #ff6f00 0%, #ff8a33 50%, #ffa726 100%);
    border-radius: 25px;
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recommend-item-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.recommend-item-btn:hover::before {
    left: 100%;
}

.recommend-item-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.4);
}

.recommend-item-btn img {
    width: 28px;
    height: 16px;
    filter: brightness(0) invert(1);
    z-index: 1;
}

.jpxqjf-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin: 20px;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 138, 48, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.jpxqjf-recommend-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6f00 0%, #ff8a33 25%, #ffa726 50%, #ffb74d 75%, #ffcc80 100%);
}

.jpxqjf-recommend-content img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.jpxqjf-recommend-content img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.jpxqjf-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin: 20px;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 138, 48, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.jpxqjf-recommend-content-hot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6f00 0%, #ff8a33 25%, #ffa726 50%, #ffb74d 75%, #ffcc80 100%);
}

.jpxqjf-recommend-content-hot img {
    width: 100%;
}




