/* OneNav Child - 首页 Bar（通栏样式） */
.oc-home-bar {
    margin: 0 0 18px;
    border: 1px solid #e6e8eb;
    border-radius: 12px;
    background: #fff;
    padding: 14px 18px;
}
.oc-home-bar-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.oc-home-bar-lead {
    display: flex;
    align-items: center;
    gap: 10px;
}
.oc-home-bar-icon {
    font-size: 24px;
    line-height: 1;
    color: #2f6bff;
    display: inline-flex;
}
.oc-home-bar-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.oc-home-bar-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}
.oc-home-bar-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}
.oc-home-bar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: auto;
}
.oc-home-bar-pill {
    display: inline-flex;
    align-items: center;
    background: #2f6bff;
    color: #fff;
    padding: 7px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: background .2s ease;
}
.oc-home-bar-pill:hover {
    background: #1f5bef;
    color: #fff;
}
.oc-home-bar-tag {
    display: inline-flex;
    align-items: center;
    color: #1f9d57;
    border: 1px solid #9be0b3;
    background: #eafaf0;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    white-space: nowrap;
}
.oc-home-bar-cta {
    display: inline-flex;
    align-items: center;
    background: #2f6bff;
    color: #fff;
    padding: 9px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    transition: background .2s ease;
}
.oc-home-bar-cta:hover {
    background: #1f5bef;
    color: #fff;
}
@media (max-width: 768px) {
    .oc-home-bar-actions {
        margin-left: 0;
        width: 100%;
    }
}
