



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #1b4332;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: bold;
}
.recommend-item-info p {
    display: flex;
    color: #5c4033;
    font-size: 0.8rem;
    margin: 10px 10px;
}


.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 25px;
    background: #d4a574;
    border-radius: 5px;
    right: 0px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}


.recommend-item-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.yudcv-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

.yudcv-recommend-content img {
    width: 100%;
}

.yudcv-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 12px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px 20px;
}

.yudcv-recommend-content-hot img {
    width: 100%;
}

.yudcv-strategy-section {
    margin: 20px 10px;
}

.yudcv-strategy-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.yudcv-strategy-item {
    padding: 15px;
    border-radius: 8px;
    background: #f5f0e8;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.yudcv-strategy-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(27, 67, 50, 0.2);
    border-color: #d4a574;
}

.yudcv-strategy-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #1b4332;
    color: #f5f0e8;
    font-size: 0.7rem;
    border-radius: 12px;
    margin-bottom: 8px;
    font-weight: bold;
}

.yudcv-strategy-item h4 {
    color: #1b4332;
    font-size: 1rem;
    margin: 8px 0;
    font-weight: bold;
    line-height: 1.4;
}

.yudcv-strategy-item p {
    color: #5c4033;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yudcv-strategy-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.75rem;
    color: #8b6f47;
}

.yudcv-tags-section {
    margin: 20px 10px;
}

.yudcv-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.yudcv-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #f5f0e8;
    color: #1b4332;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid #2d6a4f;
}

.yudcv-tag:hover {
    background: #1b4332;
    color: #f5f0e8;
    transform: translateY(-2px);
}

.yudcv-tag.tag-hot {
    background: #d4a574;
    color: #ffffff;
    border-color: #d4a574;
}

.yudcv-tag.tag-hot:hover {
    background: #1b4332;
    border-color: #1b4332;
}

.yudcv-daily-pick-section {
    margin: 20px 10px;
}

.yudcv-daily-pick-content {
    padding: 20px;
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(27, 67, 50, 0.3);
    transition: all 0.3s ease;
}

.yudcv-daily-pick-item {
    position: relative;
    padding: 10px;
}

.yudcv-daily-pick-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #d4a574;
    color: #ffffff;
    font-size: 0.75rem;
    border-radius: 15px;
    margin-bottom: 10px;
    font-weight: bold;
}

.yudcv-daily-pick-info h3 {
    color: #f5f0e8;
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: bold;
}

.yudcv-daily-pick-info p {
    color: #e8d5c4;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 10px 0;
}

.yudcv-daily-pick-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 25px;
    background: #d4a574;
    color: #ffffff;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.yudcv-daily-pick-btn:hover {
    background: #f5f0e8;
    color: #1b4332;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}




