



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    background: #FFFFFF;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
    display: block;
    width: 100%;
}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

.recommend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(0,0,0,0.15);
}

.recommend-item img:hover {
    transform: scale(1.02);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

.recommend-item-info h3 {
    color: #333;
    font-size: 1rem;
    margin: 5px 0;
    font-weight: bold;
    text-align: center;
    width: 100%;
}
.recommend-item-info p {
    display: flex;
    color: #666;
    font-size: 0.8rem;
    margin: 5px 0;
    text-align: center;
    width: 100%;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 0.9rem;
}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 30px;
    background: #33CCFF;
    border-radius: 8px;
    right: 0px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    margin-top: 5px;
}

.recommend-item-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;
    margin-right: 5px;
}

.recommend-item-btn span {
    margin-left: 5px;
}

.efcdn-recommend-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 15px 10px;
}

.efcdn-recommend-content img {
    width: 100%;
}

.efcdn-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 15px 20px;
    padding: 15px;
    background: #F9F9F9;
    border-radius: 12px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.05);
}

.efcdn-recommend-content-hot img {
    width: 100%;
}




