/**
 * 苏白幻灯片小工具 CSS v1.0.2
 * Author: 苏白
 * Website: https://www.sbzy.top/
 */

/* 呼吸灯动画 - 边框和阴影周期性变化 */
@keyframes searchBreathe {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.15);
        box-shadow: 
            0 0 15px rgba(255, 255, 255, 0.08),
            0 10px 30px rgba(0, 0, 0, 0.4);
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    50% {
        border-color: rgba(255, 255, 255, 0.25);
        box-shadow: 
            0 0 25px rgba(255, 255, 255, 0.15),
            0 10px 30px rgba(0, 0, 0, 0.4),
            0 0 40px rgba(255, 255, 255, 0.1);
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
}

.zbcfc-wrapper *,
.zbcfc-wrapper *::before,
.zbcfc-wrapper *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.zbcfc-wrapper {
    font-family: "Inter", "Microsoft YaHei", "PingFang SC", sans-serif;
    position: relative;
    width: 100%;
    max-width: 1373px;
    height: 480px;
    margin: 0 auto;
    background: transparent;
    border-radius: 14px;
    overflow: hidden;
    color: #fff;
}

/* ----- 幻灯片容器 ----- */
.zbcfc-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.zbcfc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1.02);
    pointer-events: none;
    will-change: opacity, transform;
    backface-visibility: hidden;
}
.zbcfc-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
.zbcfc-slide .zbcfc-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: transparent;
    position: relative;
}

/* 视频背景 */
.zbcfc-slide .zbcfc-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    will-change: opacity;
    backface-visibility: hidden;
}

/* 移动端视频隐藏 */
.zbcfc-video-mobile-hide {
    display: none !important;
}

/* 视差滚动图层 */
.zbcfc-layer[data-parallax] {
    will-change: transform;
    transition: transform 0.15s ease-out;
}

/* 键盘导航焦点样式 */
.zbcfc-focusable:focus {
    outline: 2px solid rgba(167, 139, 250, 0.5);
    outline-offset: 2px;
}
.zbcfc-focusable:focus:not(:focus-visible) {
    outline: none;
}
.zbcfc-focusable:focus-visible {
    outline: 2px solid rgba(167, 139, 250, 0.8);
    outline-offset: 2px;
}

/* ----- 统计数据 ----- */
.zbcfc-stats {
    position: absolute;
    z-index: 10;
    display: flex;
    gap: 36px;
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 8px 32px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
    white-space: nowrap;
    top: 20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}
.zbcfc-stats .zbcfc-stat {
    text-align: center;
    pointer-events: auto;
}
.zbcfc-stats .zbcfc-stat-val {
    color: #a78bfa;
    font-size: 24px;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}
.zbcfc-stats .zbcfc-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* 统计数据位置样式 */
.zbcfc-stats-left-top {
    top: 20px;
    left: 5%;
    right: auto;
    bottom: auto;
    transform: none;
}
.zbcfc-stats-left-center {
    top: 50%;
    left: 5%;
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
}
.zbcfc-stats-left-bottom {
    top: auto;
    left: 5%;
    right: auto;
    bottom: 50px;
    transform: none;
}
.zbcfc-stats-center-center {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
}
.zbcfc-stats-right-top {
    top: 20px;
    left: auto;
    right: 5%;
    bottom: auto;
    transform: none;
}
.zbcfc-stats-right-center {
    top: 50%;
    left: auto;
    right: 5%;
    bottom: auto;
    transform: translateY(-50%);
}
.zbcfc-stats-right-bottom {
    top: auto;
    left: auto;
    right: 5%;
    bottom: 50px;
    transform: none;
}
.zbcfc-stats-top-center {
    top: 20px;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translateX(-50%);
}
.zbcfc-stats-bottom-center {
    top: auto;
    left: 50%;
    right: auto;
    bottom: 50px;
    transform: translateX(-50%);
}

/* ----- 左下文字 ----- */
.zbcfc-text {
    position: absolute;
    bottom: 50px;
    left: 5%;
    z-index: 5;
    max-width: 48%;
    color: #fff;
    pointer-events: none;
}
.zbcfc-text .zbcfc-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    background: rgba(167, 139, 250, 0.20);
    border: 1px solid rgba(167, 139, 250, 0.25);
    font-size: 13px;
    font-weight: 600;
    color: #a78bfa;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    pointer-events: auto;
}
.zbcfc-text h2 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 8px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}
.zbcfc-text p {
    font-size: 1.15rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 480px;
    pointer-events: auto;
}

/* ----- 文字对齐位置 ----- */
.zbcfc-text-left-bottom {
    bottom: 50px;
    left: 5%;
    right: auto;
    top: auto;
    max-width: 48%;
    text-align: left;
}
.zbcfc-text-left-conter,
.zbcfc-text-left-center {
    top: 50%;
    left: 5%;
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
    max-width: 48%;
    text-align: left;
}
.zbcfc-text-conter-conter,
.zbcfc-text-center-center {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    max-width: 70%;
    text-align: center;
}
.zbcfc-text-conter-bottom,
.zbcfc-text-center-bottom {
    bottom: 50px;
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
    max-width: 70%;
    text-align: center;
}
.zbcfc-text-right-conter,
.zbcfc-text-right-center {
    top: 50%;
    right: 5%;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    max-width: 48%;
    text-align: right;
}
.zbcfc-text-right-bottom {
    bottom: 50px;
    right: 5%;
    left: auto;
    top: auto;
    max-width: 48%;
    text-align: right;
}

/* ----- 叠加图层 ----- */
.zbcfc-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}
.zbcfc-layer img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}
.zbcfc-layer-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.zbcfc-layer-left-top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.zbcfc-layer-left-center {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.zbcfc-layer-left-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.zbcfc-layer-right-top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.zbcfc-layer-right-center {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.zbcfc-layer-right-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.zbcfc-layer-top-center {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.zbcfc-layer-bottom-center {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* ----- 右侧面板 ----- */
.zbcfc-right {
    position: absolute;
    inset: 0;
    z-index: 8;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    overflow: visible;
}
.zbcfc-right > * {
    pointer-events: auto;
}

/* ----- 搜索框 ----- */
.gs-search-wrapper {
    position: absolute;
    bottom: 130px;
    right: 30px;
    width: 560px;
    z-index: 15;
}

.gs-search-box {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 50px;
    padding: 8px 20px;
    /* 方案6：微光边框 - 与统计数据透明度一致 */
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.08),
        0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    height: 68px;
    /* 添加呼吸灯动画 */
    animation: searchBreathe 3s ease-in-out infinite;
}

.gs-search-box:focus-within {
    /* 聚焦时暂停动画并突出显示 */
    animation: none;
    background: rgba(0, 0, 0, 0.40);
    border-color: rgba(255, 255, 255, 0.30);
    box-shadow: 
        0 0 25px rgba(255, 255, 255, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.gs-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.4rem;
    padding: 20px 25px 20px 0;
    color: white;
    outline: none;
    font-weight: 500;
    height: 52px;
    min-width: 0;
    cursor: text;
}

.gs-search-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    font-weight: 500;
}

.gs-search-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border: none;
    width: 72px;
    height: 40px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    margin-left: 10px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.gs-search-btn:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.gs-search-icon {
    display: inline-block;
    font-size: 24px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.gs-search-text {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

/* 搜索框位置样式 */
.gs-search-wrapper.gs-search-left-top {
    top: 20px;
    left: 5%;
    right: auto;
    bottom: auto;
    transform: none;
}
.gs-search-wrapper.gs-search-left-center {
    top: 50%;
    left: 5%;
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
}
.gs-search-wrapper.gs-search-left-bottom {
    bottom: 30px;
    left: 5%;
    right: auto;
    top: auto;
    transform: none;
}
.gs-search-wrapper.gs-search-center-center {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
}
.gs-search-wrapper.gs-search-right-top {
    top: 20px;
    right: 5%;
    left: auto;
    bottom: auto;
    transform: none;
}
.gs-search-wrapper.gs-search-right-center {
    top: 50%;
    right: 5%;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
}
.gs-search-wrapper.gs-search-right-bottom {
    bottom: 30px;
    right: 5%;
    left: auto;
    top: auto;
    transform: none;
}
.gs-search-wrapper.gs-search-top-center {
    top: 20px;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translateX(-50%);
}
.gs-search-wrapper.gs-search-bottom-center {
    bottom: 30px;
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
}
.gs-search-wrapper.gs-search-thumb-top {
    bottom: 140px;
    right: 30px;
    left: auto;
    top: auto;
    transform: none;
}

/* ----- 缩略图区域（固定在底部右侧） ----- */
.zbcfc-thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    min-height: 100px;
    overflow: visible;
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: auto;
    top: auto;
    max-width: 58%;
    margin-top: auto;
}
.zbcfc-thumbs {
    flex: 1;
    overflow: hidden;
    pointer-events: none;
    min-height: 100px;
}
.zbcfc-thumbs-inner {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 14px 6px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
    scrollbar-width: none;
    min-height: 100px;
    align-items: center;
}
.zbcfc-thumbs-inner::-webkit-scrollbar {
    display: none;
}

/* 缩略图左右箭头按钮 */
.zbcfc-thumb-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    pointer-events: auto;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.zbcfc-thumb-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}
.zbcfc-thumb-arrow.disabled {
    opacity: 0.3;
    cursor: default;
}
.zbcfc-thumb-arrow.disabled:hover {
    background: rgba(0, 0, 0, 0.5);
}

.zbcfc-thumb {
    flex: 0 0 150px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
    z-index: 1;
}
.zbcfc-thumb:hover {
    transform: translateY(-6px) scale(1.04);
    border-color: rgba(167, 139, 250, 0.60);
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.10);
    z-index: 2;
}
.zbcfc-thumb:hover img {
    filter: brightness(1.10);
}
.zbcfc-thumb.active {
    transform: translateY(-4px) scale(1.06);
    border-color: #a78bfa;
    box-shadow: 0 0 30px rgba(167, 139, 250, 0.20);
    z-index: 2;
}
.zbcfc-thumb.active img {
    filter: brightness(1.05);
}
.zbcfc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
}
.zbcfc-thumb .zbcfc-thumb-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}
.zbcfc-thumb:hover .zbcfc-thumb-title {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
    padding-bottom: 10px;
}

/* ----- 主导航箭头（方形样式，参考子比主题 Swiper） ----- */
.zbcfc-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 50px;
    z-index: 6;
    background: rgba(0, 0, 0, 0.25) !important;
    border: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    user-select: none;
    padding: 0;
    opacity: 0;
    box-shadow: none !important;
    backdrop-filter: none !important;
    font-size: 28px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 0 6px #444;
    transition: opacity 0.3s, background 0.3s, transform 0.15s;
    line-height: 1;
    font-family: "Times New Roman", serif;
}
.zbcfc-wrapper:hover .zbcfc-nav-arrow {
    opacity: 0.8;
}
.zbcfc-nav-arrow:hover {
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    transform: translateY(-50%) scale(1.05);
}
.zbcfc-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}
.zbcfc-nav-arrow.zbcfc-prev {
    left: 0;
    border-radius: 0 6px 6px 0;
}
.zbcfc-nav-arrow.zbcfc-next {
    right: 0;
    border-radius: 6px 0 0 6px;
}

/* ----- 底部圆点 ----- */
.zbcfc-dots {
    position: absolute;
    bottom: 20px;
    left: 5%;
    z-index: 4;
    display: flex;
    gap: 10px;
    pointer-events: none;
}
.zbcfc-dots .zbcfc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: auto;
}
.zbcfc-dots .zbcfc-dot.active {
    background: #a78bfa;
    width: 28px;
    border-radius: 4px;
}

/* ----- 数字动画 ----- */
@keyframes zbcfc-fadeUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.zbcfc-stat .zbcfc-stat-val {
    animation: zbcfc-fadeUp 0.6s ease forwards;
}

/* ----- 响应式适配 ----- */
@media (max-width: 1400px) {
    .zbcfc-wrapper { height: 440px; }
    .zbcfc-stats { gap: 28px; padding: 6px 28px; }
    .zbcfc-stats .zbcfc-stat-val { font-size: 22px; }
    .zbcfc-text h2 { font-size: 2.2rem; }
    .zbcfc-text p { font-size: 1.0rem; }
    .zbcfc-search { width: 380px; padding: 5px 5px 5px 20px; }
    .zbcfc-search input { font-size: 14px; padding: 8px 10px 8px 0; }
    .zbcfc-search .zbcfc-search-btn { padding: 6px 18px; font-size: 13px; }
    .zbcfc-search .zbcfc-search-icon { font-size: 16px; }
    .zbcfc-thumb { flex: 0 0 130px; }
    .zbcfc-thumbs-inner { gap: 14px; min-height: 90px; }
    .zbcfc-thumbs-wrap { min-height: 90px; }
    .zbcfc-thumbs { min-height: 90px; }
    .zbcfc-thumb-arrow { width: 24px; height: 24px; font-size: 14px; line-height: 24px; }
}
@media (max-width: 1200px) {
    .zbcfc-wrapper { height: 400px; }
    .zbcfc-stats { gap: 20px; padding: 5px 22px; }
    .zbcfc-stats .zbcfc-stat-val { font-size: 18px; }
    .zbcfc-stats .zbcfc-stat-label { font-size: 10px; }
    .zbcfc-text h2 { font-size: 1.8rem; }
    .zbcfc-text p { font-size: 0.9rem; }
    .zbcfc-search { width: 340px; padding: 4px 4px 4px 18px; }
    .zbcfc-search input { font-size: 13px; padding: 7px 8px 7px 0; }
    .zbcfc-search .zbcfc-search-btn { padding: 5px 16px; font-size: 12px; }
    .zbcfc-search .zbcfc-search-icon { font-size: 15px; }
    .zbcfc-thumb { flex: 0 0 110px; }
    .zbcfc-thumbs-inner { gap: 12px; min-height: 80px; padding: 10px 4px; }
    .zbcfc-thumbs-wrap { min-height: 80px; }
    .zbcfc-thumbs { min-height: 80px; }
    .zbcfc-thumb-arrow { width: 22px; height: 22px; font-size: 12px; line-height: 22px; }
    .zbcfc-right { max-width: 65%; bottom: 20px; right: 20px; gap: 12px; }
    .zbcfc-text { bottom: 40px; max-width: 50%; }
    .zbcfc-nav-arrow { width: 32px; height: 44px; font-size: 22px; }
    .zbcfc-dots { gap: 8px; }
    .zbcfc-dots .zbcfc-dot { width: 7px; height: 7px; }
    .zbcfc-dots .zbcfc-dot.active { width: 20px; }
}
@media (max-width: 992px) {
    .zbcfc-wrapper { height: 380px; }
    .zbcfc-stats { gap: 16px; padding: 4px 18px; flex-wrap: wrap; justify-content: center; top: 14px; }
    .zbcfc-stats .zbcfc-stat-val { font-size: 16px; }
    .zbcfc-stats .zbcfc-stat-label { font-size: 9px; }
    .zbcfc-text h2 { font-size: 1.5rem; }
    .zbcfc-text p { font-size: 0.8rem; display: none; }
    .zbcfc-search { width: 280px; padding: 3px 3px 3px 14px; animation: none; }
    .zbcfc-search input { font-size: 12px; padding: 6px 6px 6px 0; }
    .zbcfc-search .zbcfc-search-btn { padding: 4px 12px; font-size: 11px; }
    .zbcfc-search .zbcfc-search-icon { font-size: 14px; }
    .zbcfc-thumb { flex: 0 0 90px; }
    .zbcfc-thumbs-inner { gap: 10px; min-height: 70px; padding: 8px 4px; }
    .zbcfc-thumbs-wrap { min-height: 70px; }
    .zbcfc-thumbs { min-height: 70px; }
    .zbcfc-thumb-arrow { width: 20px; height: 20px; font-size: 11px; line-height: 20px; }
    .zbcfc-right { max-width: 70%; bottom: 16px; right: 16px; gap: 10px; }
    .zbcfc-text { bottom: 35px; left: 4%; max-width: 55%; }
    .zbcfc-nav-arrow { width: 28px; height: 40px; font-size: 20px; }
    .zbcfc-dots { left: 4%; bottom: 14px; gap: 6px; }
    .zbcfc-dots .zbcfc-dot { width: 6px; height: 6px; }
    .zbcfc-dots .zbcfc-dot.active { width: 16px; }
}
@media (max-width: 768px) {
    .zbcfc-wrapper { height: 340px; border-radius: 10px; }
    /* 数据统计居中 */
    .zbcfc-stats { 
        flex-wrap: nowrap; 
        gap: 10px; 
        padding: 3px 14px; 
        top: 10px; 
        border-radius: 30px; 
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    .zbcfc-stats .zbcfc-stat-val { font-size: 14px; }
    .zbcfc-stats .zbcfc-stat-label { font-size: 8px; }
    .zbcfc-text { bottom: 50px; max-width: 62%; left: 3%; }
    .zbcfc-text h2 { font-size: 1.2rem; }
    .zbcfc-text .zbcfc-badge { font-size: 10px; padding: 2px 10px; }
    .zbcfc-right { max-width: 85%; bottom: 10px; right: 8px; gap: 8px; }
    .zbcfc-thumb-arrow { width: 18px; height: 18px; font-size: 10px; line-height: 18px; }
    /* 搜索框正中心 - 统一使用CSS变量实现响应式 */
    .gs-search-wrapper,
    .gs-search-wrapper.gs-search-left-top,
    .gs-search-wrapper.gs-search-left-center,
    .gs-search-wrapper.gs-search-left-bottom,
    .gs-search-wrapper.gs-search-center-center,
    .gs-search-wrapper.gs-search-right-top,
    .gs-search-wrapper.gs-search-right-center,
    .gs-search-wrapper.gs-search-right-bottom,
    .gs-search-wrapper.gs-search-top-center,
    .gs-search-wrapper.gs-search-bottom-center,
    .gs-search-wrapper.gs-search-thumb-top { 
        width: 280px;
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
        z-index: 20;
    }
    .gs-search-box { 
        height: 55px;
        padding: 6px 15px;
        border-radius: 45px;
        border: 1.5px solid rgba(255, 255, 255, 0.15);
        box-shadow: 
            0 0 15px rgba(255, 255, 255, 0.08),
            0 10px 30px rgba(0, 0, 0, 0.4);
        animation: searchBreathe 3s ease-in-out infinite;
    }
    .gs-search-box:focus-within {
        animation: none;
        background: rgba(0, 0, 0, 0.40);
        border-color: rgba(255, 255, 255, 0.30);
        box-shadow: 
            0 0 25px rgba(255, 255, 255, 0.15),
            0 10px 30px rgba(0, 0, 0, 0.5);
    }
    .gs-search-input { 
        font-size: 1.1rem; 
        padding: 15px 20px 15px 0;
        height: 42px;
    }
    .gs-search-input::placeholder { font-size: 1.1rem; }
    .gs-search-btn { 
        width: 62px; 
        height: 36px;
        background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
        border: none;
        border-radius: 18px;
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    }
    .gs-search-btn:hover {
        background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(139, 92, 246, 0.5);
    }
    .gs-search-icon {
        font-size: 20px;
        line-height: 1;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
    .gs-search-text {
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }
    .zbcfc-wrapper:hover .zbcfc-nav-arrow { opacity: 0.7; }
    .zbcfc-nav-arrow.zbcfc-prev { border-radius: 0 4px 4px 0; }
    .zbcfc-nav-arrow.zbcfc-next { border-radius: 4px 0 0 4px; }
}
@media (max-width: 480px) {
    .zbcfc-wrapper { height: 280px; border-radius: 8px; }
    /* 数据统计居中 */
    .zbcfc-stats .zbcfc-stat-val { font-size: 12px; }
    .zbcfc-stats .zbcfc-stat-label { font-size: 7px; }
    .zbcfc-stats { 
        gap: 6px; 
        padding: 2px 10px; 
        top: 6px; 
        border-radius: 20px; 
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    .zbcfc-text { bottom: 40px; max-width: 72%; }
    .zbcfc-text h2 { font-size: 1.0rem; }
    .zbcfc-text .zbcfc-badge { font-size: 9px; padding: 2px 8px; }
    .zbcfc-right { max-width: 92%; bottom: 8px; right: 4px; gap: 4px; }
    .zbcfc-thumb-arrow { width: 16px; height: 16px; font-size: 9px; line-height: 16px; }
    /* 搜索框样式响应式 - 只修改宽度 */
    .gs-search-wrapper,
    .gs-search-wrapper.gs-search-left-top,
    .gs-search-wrapper.gs-search-left-center,
    .gs-search-wrapper.gs-search-left-bottom,
    .gs-search-wrapper.gs-search-center-center,
    .gs-search-wrapper.gs-search-right-top,
    .gs-search-wrapper.gs-search-right-center,
    .gs-search-wrapper.gs-search-right-bottom,
    .gs-search-wrapper.gs-search-top-center,
    .gs-search-wrapper.gs-search-bottom-center,
    .gs-search-wrapper.gs-search-thumb-top { 
        width: 220px;
    }
    .gs-search-box { 
        height: 48px;
        padding: 5px 12px;
        border-radius: 40px;
        border: 1.5px solid rgba(255, 255, 255, 0.15);
        box-shadow: 
            0 0 12px rgba(255, 255, 255, 0.08),
            0 8px 24px rgba(0, 0, 0, 0.4);
        animation: searchBreathe 3s ease-in-out infinite;
    }
    .gs-search-box:focus-within {
        animation: none;
        background: rgba(0, 0, 0, 0.40);
        border-color: rgba(255, 255, 255, 0.30);
        box-shadow: 
            0 0 20px rgba(255, 255, 255, 0.15),
            0 8px 24px rgba(0, 0, 0, 0.5);
    }
    .gs-search-input { 
        font-size: 1rem; 
        padding: 12px 15px 12px 0;
        height: 38px;
    }
    .gs-search-input::placeholder { font-size: 1rem; }
    .gs-search-btn { 
        width: 56px; 
        height: 32px; 
        background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
        border: none;
        border-radius: 16px;
        box-shadow: 0 3px 10px rgba(139, 92, 246, 0.4);
    }
    .gs-search-btn:hover {
        background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
        transform: translateY(-2px);
        box-shadow: 0 5px 14px rgba(139, 92, 246, 0.5);
    }
    .gs-search-icon {
        font-size: 18px;
        line-height: 1;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
    .gs-search-text {
        font-size: 12px;
        font-weight: 600;
        color: #fff;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }
    /* 隐藏缩略图 */
    .zbcfc-thumbs-wrap { display: none !important; }
    .zbcfc-thumb { display: none !important; }
    .zbcfc-thumbs-inner { display: none !important; }
    /* 移动端导航箭头 */
    .zbcfc-nav-arrow {
        width: 28px;
        height: 36px;
        font-size: 14px;
        opacity: 0.85;
        background: rgba(0, 0, 0, 0.5) !important;
    }
    .zbcfc-nav-arrow.zbcfc-prev {
        left: 0;
        border-radius: 0 4px 4px 0;
    }
    .zbcfc-nav-arrow.zbcfc-next {
        right: 0;
        border-radius: 4px 0 0 4px;
    }
    /* 指示器更明显 */
    .zbcfc-dots { 
        gap: 6px; 
        bottom: 12px; 
        left: 50%; 
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.30);
        padding: 6px 10px;
        border-radius: 16px;
    }
    .zbcfc-dots .zbcfc-dot { 
        width: 6px; 
        height: 6px; 
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    .zbcfc-dots .zbcfc-dot.active { 
        width: 16px; 
        background: rgba(167, 139, 250, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.5);
    }
    .zbcfc-wrapper:hover .zbcfc-nav-arrow { opacity: 0.6; }
}