



.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: 12px;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(241, 91, 181, 0.1);
}

.recommend-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(241, 91, 181, 0.3);
}

.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.recommend-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
    border: 1px solid rgba(241, 91, 181, 0.2);
}

.recommend-item img:hover {
    transform: scale(1.05);
    border-radius: 12px;
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    align-items: center;
    text-align: center;
    position: relative;
    width: 100%;
}

.recommend-item-info h3 {
    color: #9B5DE5;
    font-size: 1rem;
    margin: 8px 0;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(155, 93, 229, 0.2);
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recommend-item-info p {
    color: #4a4a4a;
    font-size: 0.8rem;
    margin: 5px 0;
    font-weight: 500;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 30px;
    background: linear-gradient(45deg, #F15BB5, #FF9770, #FFD670);
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(241, 91, 181, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(241, 91, 181, 0.3);
    margin-top: 8px;
    justify-content: center;
    align-items: center;
}

.recommend-item-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(241, 91, 181, 0.6);
    background: linear-gradient(45deg, #FF9770, #FFD670, #00BBF9);
}

.recommend-item-btn a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;
    margin: 0 5px;
    transition: transform 0.3s;
}

.recommend-item-btn:hover img {
    transform: scale(1.1);
}

.ptyoyi-recommend-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(241, 91, 181, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.ptyoyi-recommend-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ptyoyi-recommend-content img {
    width: 100%;
}

.ptyoyi-recommend-content-hot-title {
    text-align: center;
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 20px 0 10px 0;
    text-shadow: 0 2px 8px rgba(155, 93, 229, 0.5);
}

.ptyoyi-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 12px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px 20px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(241, 91, 181, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ptyoyi-recommend-content-hot:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.ptyoyi-recommend-content-hot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #F15BB5, #FF9770, #FFD670, #00BBF9);
}

.ptyoyi-recommend-content-hot img {
    width: 100%;
}




