/* ===== 首页推荐项 ===== */
.recommend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    border-radius: 14px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommend-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.12);
    border-color: #0d9488;
}

.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
    width: 100%;
}

.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
}

/* ===== 推荐项信息 ===== */
.recommend-item-info {
    display: flex;
    flex-direction: column;
    padding: 10px;
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #0d9488;
    font-size: 0.95rem;
    margin: 0px 10px;
    font-weight: 700;
}

.recommend-item-info p {
    display: flex;
    color: #94a3b8;
    font-size: 0.78rem;
    margin: 8px 10px;
    line-height: 1.4;
}

/* ===== 推荐项按钮 ===== */
.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 28px;
    background: linear-gradient(135deg, #0d9488, #0891b2);
    border-radius: 8px;
    right: 0px;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
    transition: all 0.25s ease;
}

.recommend-item-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.recommend-item-btn img {
    width: 28px;
    height: 16px;
}

/* ===== 推荐内容网格 ===== */
.ycdbo-recommend-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 10px;
}

.ycdbo-recommend-content img {
    width: 100%;
}

/* ===== 热门推荐网格 ===== */
.ycdbo-recommend-content-hot {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 10px 20px;
}

.ycdbo-recommend-content-hot img {
    width: 100%;
}
