/* 子比 FLV 悬浮直播组件样式 */

.zfe-float-live-btn {
    position: fixed;
    z-index: 99990;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: linear-gradient(135deg, #ff4d6d, #f04494);
    color: #fff;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(240, 68, 148, .45);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    animation: zfe-fll-pulse 1.8s ease-in-out infinite;
    transition: transform .15s ease;
}
.zfe-float-live-btn:hover {
    transform: scale(1.05);
}
.zfe-float-live-btn .zfe-fll-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .8);
    animation: zfe-fll-blink 1.2s infinite;
}
.zfe-float-live-btn .zfe-fll-label {
    white-space: nowrap;
}

.zfe-pos-br { right: 22px; bottom: 96px; }
.zfe-pos-bl { left: 22px; bottom: 96px; }
.zfe-pos-tr { right: 22px; top: 96px; }
.zfe-pos-tl { left: 22px; top: 96px; }

@keyframes zfe-fll-blink {
    0%   { opacity: 1; }
    50%  { opacity: .25; }
    100% { opacity: 1; }
}
@keyframes zfe-fll-pulse {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

.zfe-float-live-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
}
.zfe-float-live-modal.open {
    display: block;
}
.zfe-fll-mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(2px);
}
.zfe-fll-panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 880px);
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
    animation: zfe-fll-show .2s ease;
}
@keyframes zfe-fll-show {
    from { opacity: 0; transform: translate(-50%, -46%) scale(.96); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.zfe-fll-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    background: #141414;
    color: #fff;
}
.zfe-fll-title {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.zfe-fll-title::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4d6d;
    box-shadow: 0 0 6px #ff4d6d;
}
.zfe-fll-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}
.zfe-fll-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.zfe-fll-status[data-state="live"] {
    color: #ff6b81;
    background: rgba(255, 77, 109, .16);
}
.zfe-fll-status[data-state="live"]::before {
    background: #ff4d6d;
    box-shadow: 0 0 0 0 rgba(255, 77, 109, .7);
    animation: zfe-fll-blink 1.2s infinite;
}
.zfe-fll-status[data-state="ended"] {
    color: #cfcfcf;
    background: rgba(255, 255, 255, .1);
}
.zfe-fll-status[data-state="ended"]::before {
    background: #9a9a9a;
}
.zfe-fll-close {
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    padding: 0 6px;
    color: #bbb;
}
.zfe-fll-close:hover { color: #fff; }
.zfe-fll-body {
    position: relative;
    background: #000;
}
.zfe-fll-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
.zfe-fll-dplayer {
    width: 100%;
    height: 100%;
    min-height: 280px;
}
.zfe-fll-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    background: #000;
}
.zfe-fll-loading .zfe-spinner {
    width: 26px;
    height: 26px;
    margin-right: 10px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: zfe-fll-spin .8s linear infinite;
}
@keyframes zfe-fll-spin {
    to { transform: rotate(360deg); }
}

.zfe-fll-ended {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, .82);
    color: #fff;
    text-align: center;
    padding: 20px;
}
.zfe-fll-ended-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #ff4d6d;
    color: #ff4d6d;
    font-size: 30px;
    line-height: 52px;
    text-align: center;
}
.zfe-fll-ended-text {
    font-size: 16px;
    font-weight: 600;
}
.zfe-fll-ended-sub {
    font-size: 13px;
    color: #b7b7b7;
}

/* 直播带货：购物袋按钮 + 商品卡片面板 */
.zfe-fll-bag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: background .15s ease, transform .15s ease;
}
.zfe-fll-bag:hover,
.zfe-fll-bag.active {
    background: linear-gradient(135deg, #ff4d6d, #f04494);
    transform: translateY(-1px);
}
.zfe-fll-bag-icon {
    font-size: 15px;
    line-height: 1;
}
.zfe-fll-bag-count {
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: #ff4d6d;
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
}
.zfe-fll-products {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /* 自动填充直播带货框架左右（去掉居中 max-width），与弹窗/全屏等宽 */
    z-index: 31;
    background: #141414;
    backdrop-filter: blur(6px);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
    max-height: 86%;
    border-radius: 14px 14px 0 0;
    display: flex;
    flex-direction: column;
}
.zfe-fll-products.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.zfe-fll-products-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    flex-shrink: 0;
}
.zfe-fll-products-close {
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    color: #bbb;
    padding: 0 4px;
}
.zfe-fll-products-close:hover { color: #fff; }

/* 购物袋顶部工具栏（订单/购物车/券红包） */
.zfe-fll-products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    flex-shrink: 0;
}
.zfe-fll-products-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .08);
    border-radius: 20px;
    color: #999;
    font-size: 13px;
}
.zfe-fll-products-search svg,
.zfe-fll-products-search .zfe-fll-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}
.zfe-fll-products-search input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
}
.zfe-fll-products-search input::placeholder {
    color: #999;
}
.zfe-fll-products-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.zfe-fll-products-actions .zfe-fll-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    cursor: pointer;
    opacity: .9;
    text-decoration: none;
}
.zfe-fll-products-actions .zfe-fll-action:hover { opacity: 1; }
.zfe-fll-products-actions .zfe-fll-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.zfe-fll-products-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 14px;
    overflow-y: auto;
    overflow-x: hidden;
}
.zfe-fll-products-empty {
    padding: 30px 14px;
    color: #9a9a9a;
    font-size: 13px;
    text-align: center;
}

/* 抖音式横向商品卡片 */
.zfe-fll-pcard {
    display: flex;
    align-items: stretch;
    gap: 12px;
    padding: 12px 14px;
    background: #141414;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    text-decoration: none;
    color: #fff;
    transition: background .15s ease;
}
.zfe-fll-pcard:hover {
    background: #1a1a1a;
}
.zfe-fll-pcard-imgbox {
    position: relative;
    width: 118px;
    height: 118px;
    flex: 0 0 118px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #2a2a2a;
}
.zfe-fll-pcard-img {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.zfe-fll-pcard-img-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 13px;
}
.zfe-fll-pcard-index {
    position: absolute;
    top: 6px;
    left: 6px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
}
.zfe-fll-pcard-live {
    position: absolute;
    left: 6px;
    bottom: 6px;
    padding: 2px 7px;
    background: linear-gradient(135deg, #ff4d6d, #f04494);
    color: #fff;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

.zfe-fll-pcard-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2px 0;
}
.zfe-fll-pcard-title {
    font-size: 14px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
}
.zfe-fll-pcard-shop {
    font-size: 12px;
    color: #ff6b81;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.zfe-fll-pcard-tag {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 6px;
    padding: 2px 6px;
    background: rgba(255, 107, 129, .12);
    color: #ff6b81;
    border-radius: 4px;
    font-size: 11px;
    line-height: 1;
}
.zfe-fll-pcard-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 8px;
}
.zfe-fll-pcard-price-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.zfe-fll-pcard-price {
    color: #ff4d6d;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}
.zfe-fll-pcard-price::before {
    content: "¥";
    font-size: 13px;
    margin-right: 1px;
}
.zfe-fll-pcard-original {
    color: #999;
    font-size: 12px;
    font-weight: 400;
    text-decoration: line-through;
    line-height: 1;
}
.zfe-fll-pcard-original::before {
    content: "¥";
    font-size: 10px;
    margin-right: 1px;
}
.zfe-fll-pcard-discount-tag {
    display: inline-block;
    color: #ff4d6d;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 5px;
    background: #fff0f3;
    border-radius: 4px;
    line-height: 1;
}
.zfe-fll-pcard-btn {
    flex-shrink: 0;
    padding: 7px 16px;
    background: linear-gradient(135deg, #ff4d6d, #f04494);
    color: #fff;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    box-shadow: 0 4px 12px rgba(240, 68, 148, .35);
}
.zfe-fll-pcard-btn:hover {
    box-shadow: 0 6px 16px rgba(240, 68, 148, .45);
}

body.zfe-fll-noscroll {
    overflow: hidden;
}

/* ===== 直播内购买面板（图一：确认订单）===== */
.zfe-fll-body {
    position: relative;
}
/* 确认订单面板：底部抽屉，保留顶部直播画面 */
.zfe-fll-buy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    /* 自动填充直播带货框架左右（去掉居中 max-width），与弹窗/全屏等宽 */
    z-index: 100;
    max-height: 86%;
    display: flex;
    flex-direction: column;
    background: #fff;
    transform: translateY(100%);
    transition: transform .28s ease;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, .25);
}
.zfe-fll-buy.open {
    transform: translateY(0);
}
.zfe-fll-buy-head {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}
.zfe-fll-buy-back,
.zfe-fll-buy-close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #666;
    cursor: pointer;
    border-radius: 50%;
}
.zfe-fll-buy-back:hover,
.zfe-fll-buy-close:hover {
    background: #f5f5f5;
}
.zfe-fll-buy-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 14px;
}
.zfe-fll-buy-loading {
    text-align: center;
    color: #999;
    padding: 40px 0;
    font-size: 13px;
}
.zfe-fll-buy-error {
    color: #ff4d6d;
    background: #fff0f3;
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    margin-top: 10px;
}
.zfe-fll-buy-product {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid #f3f3f3;
}
.zfe-fll-buy-img {
    width: 76px;
    height: 76px;
    flex-shrink: 0;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-color: #f3f3f3;
}
.zfe-fll-buy-pinfo {
    flex: 1;
    min-width: 0;
}
.zfe-fll-buy-ptitle {
    font-size: 14px;
    color: #222;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zfe-fll-buy-poption {
    margin-top: 4px;
    font-size: 12px;
    color: #888;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 16px;
}
.zfe-fll-buy-pprice {
    margin-top: 8px;
    color: #ff4d6d;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
.zfe-fll-buy-pfinal-tag {
    font-size: 11px;
    font-weight: 600;
    color: #ff4d6d;
    background: #fff0f3;
    padding: 1px 7px;
    border-radius: 10px;
    align-self: center;
}
.zfe-fll-buy-mark {
    font-size: 12px;
    margin-right: 1px;
}
.zfe-fll-buy-pdiscount-row {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.zfe-fll-buy-poriginal {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
}
.zfe-fll-buy-pdiscount {
    font-size: 12px;
    color: #ff4d6d;
    padding: 2px 7px;
    background: #fff0f3;
    border-radius: 10px;
}
/* 价格明细：商品总价 / 运费 / 优惠 / 合计（与子比官方确认订单一致） */
.zfe-fll-buy-pricebox {
    padding: 12px 0 14px;
    border-bottom: 1px solid #f3f3f3;
    transition: opacity .15s ease;
}
/* 切换规格/数量实时刷新价格时的淡入淡出反馈，让刷新时机更稳、更直观 */
.zfe-fll-buy-body.zfe-fll-refreshing .zfe-fll-buy-pricebox,
.zfe-fll-buy-body.zfe-fll-refreshing .zfe-fll-buy-pprice {
    opacity: .45;
}
.zfe-fll-buy-prow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    color: #666;
}
.zfe-fll-buy-plabel {
    display: flex;
    align-items: center;
    gap: 6px;
}
.zfe-fll-buy-pcount {
    font-style: normal;
    font-size: 12px;
    color: #aaa;
}
.zfe-fll-buy-pval {
    color: #333;
    font-weight: 600;
}
.zfe-fll-buy-prow-discount .zfe-fll-buy-pval {
    color: #ff4d6d;
}
.zfe-fll-buy-pmuted {
    color: #aaa;
    font-weight: 400;
}
.zfe-fll-buy-prow-hint {
    background: #fafafa;
    border-radius: 8px;
    padding: 6px 8px;
    margin-top: 2px;
}
.zfe-fll-buy-pname {
    font-size: 11px;
    color: #ff6b81;
    background: #fff0f3;
    padding: 1px 7px;
    border-radius: 10px;
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.zfe-fll-buy-prow-total {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
}
.zfe-fll-buy-ptotal {
    color: #ff4d6d;
    font-size: 18px;
    font-weight: 700;
}
.zfe-fll-buy-diag {
    margin-top: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.zfe-fll-buy-diag summary {
    padding: 8px 10px;
    font-size: 12px;
    color: #888;
    cursor: pointer;
    background: #fafafa;
    user-select: none;
    -webkit-user-select: none;
}
.zfe-fll-buy-diag summary::-webkit-details-marker {
    color: #aaa;
}
.zfe-fll-buy-diag-body {
    padding: 6px 10px 10px;
}
.zfe-fll-buy-diag-body .zfe-fll-buy-prow {
    padding: 5px 0;
    font-size: 12px;
}
.zfe-fll-buy-sku {
    padding: 14px 0;
    border-bottom: 1px solid #f3f3f3;
}
.zfe-fll-sku-group + .zfe-fll-sku-group {
    margin-top: 14px;
}
.zfe-fll-sku-title {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}
.zfe-fll-sku-opts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.zfe-fll-sku-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: #f7f7f7;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    line-height: 1;
}
.zfe-fll-sku-item.active {
    background: #fff7f9;
    border-color: #ff4d6d;
    color: #ff4d6d;
}
.zfe-fll-sku-img {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.zfe-fll-buy-qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f3f3f3;
    font-size: 14px;
    color: #333;
}
.zfe-fll-number-spinner {
    display: flex;
    align-items: center;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    overflow: hidden;
}
.zfe-fll-number-spinner button {
    width: 32px;
    height: 32px;
    border: none;
    background: #fafafa;
    font-size: 18px;
    color: #555;
    cursor: pointer;
}
.zfe-fll-number-spinner button:active {
    background: #f0f0f0;
}
.zfe-fll-number-spinner .zfe-fll-count {
    min-width: 40px;
    text-align: center;
    font-size: 14px;
}
.zfe-fll-buy-addr,
.zfe-fll-buy-email {
    padding: 14px 0;
    border-bottom: 1px solid #f3f3f3;
}
.zfe-fll-buy-addr-label {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}
.zfe-fll-buy-addr-info {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}
.zfe-fll-buy-addr-edit input,
.zfe-fll-buy-email input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 8px;
    padding: 9px 10px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    font-size: 14px;
}
.zfe-fll-buy-addr-edit input:last-child,
.zfe-fll-buy-email input:last-child {
    margin-bottom: 0;
}
.zfe-fll-buy-pay {
    padding: 14px 0;
}
.zfe-fll-pay-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.zfe-fll-pay-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border: 1px solid #ececec;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}
.zfe-fll-pay-item.active {
    border-color: #ff4d6d;
    background: #fff7f9;
}
.zfe-fll-pay-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zfe-fll-pay-icon img,
.zfe-fll-pay-icon svg {
    max-width: 100%;
    max-height: 100%;
}
.zfe-fll-pay-name {
    flex: 1;
}
.zfe-fll-pay-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #d8d8d8;
    position: relative;
}
.zfe-fll-pay-item.active .zfe-fll-pay-check {
    border-color: #ff4d6d;
    background: #ff4d6d;
}
.zfe-fll-pay-item.active .zfe-fll-pay-check::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.zfe-fll-buy-errbox {
    color: #ff4d6d;
    font-size: 13px;
    background: #fff0f3;
    border-radius: 8px;
    padding: 10px;
    margin-top: 6px;
}
.zfe-fll-buy-foot {
    flex-shrink: 0;
    padding: 10px 14px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
}
.zfe-fll-buy-submit {
    width: 100%;
    border: none;
    padding: 13px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ff4d6d, #f04494);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(240, 68, 148, .35);
}
.zfe-fll-buy-submit:disabled {
    opacity: .7;
    cursor: default;
}
.zfe-fll-buy-foot-price {
    font-weight: 700;
}
.zfe-fll-pay-form {
    margin-top: 10px;
}
.zfe-fll-buy-paybtn {
    width: 100%;
    border: none;
    padding: 13px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ff4d6d, #f04494);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

/* ===== 直播框架内 iframe 面板（订单/购物车）===== */
/* 订单/购物车 iframe 面板：底部抽屉，保留顶部直播画面 */
.zfe-fll-frame {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    /* 自动填充直播带货框架左右（去掉居中 max-width），与弹窗/全屏等宽 */
    z-index: 100;
    /* 购物车/订单浮层几乎占满弹窗，仅保留顶部 28px 直播画面 */
    height: calc(100% - 28px);
    max-height: calc(100% - 28px);
    min-height: 70%;
    display: flex;
    flex-direction: column;
    background: #fff;
    transform: translateY(100%);
    transition: transform .28s ease;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, .25);
}
.zfe-fll-frame.open {
    transform: translateY(0);
}
.zfe-fll-frame-head {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}
.zfe-fll-frame-back,
.zfe-fll-frame-close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #666;
    cursor: pointer;
    border-radius: 50%;
}
.zfe-fll-frame-back:hover,
.zfe-fll-frame-close:hover {
    background: #f5f5f5;
}
.zfe-fll-frame-body {
    flex: 1;
    min-height: 0;
}
.zfe-fll-frame-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
