/* =========================
   全局重置与基础样式
   ========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f4f7fb;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #409eff;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #66b1ff;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

input {
    font-family: inherit;
    outline: none;
}

/* =========================
   登录/注册页面样式
   ========================= */
.dl-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #4c1d95 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.dl-page::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.28) 0%, rgba(99,102,241,0) 70%);
    top: -200px;
    left: -150px;
    pointer-events: none;
}

.dl-page::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236,72,153,0.22) 0%, rgba(236,72,153,0) 70%);
    bottom: -250px;
    right: -200px;
    pointer-events: none;
}

.dl-wrap {
    position: relative;
    z-index: 1;
    width: 960px;
    max-width: 100%;
    display: flex;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.35);
    border-radius: 10px;
    overflow: hidden;
    min-height: 560px;
}

/* 左侧品牌介绍 */
.dl-hero {
    flex: 1;
    background: linear-gradient(160deg, #1e3a8a 0%, #4338ca 55%, #7e22ce 100%);
    color: #ffffff;
    padding: 50px 44px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.dl-hero::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    top: -100px;
    right: -80px;
}

.dl-hero::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    bottom: -60px;
    left: -40px;
}

.dl-hero-top {
    position: relative;
    z-index: 2;
}

.dl-hero-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.dl-hero-logo i {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.dl-hero-h1 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 14px;
}

.dl-hero-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 340px;
}

.dl-hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.dl-hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    padding: 8px 0;
}

.dl-hero-list li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.dl-hero-foot {
    position: relative;
    z-index: 2;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1px;
}

/* 右侧表单卡片 */
.dl-box {
    width: 440px;
    background: #ffffff;
    padding: 56px 48px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dl-title {
    font-size: 26px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.dl-sub {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 32px;
}

@media (max-width: 860px) {
    .dl-wrap {
        flex-direction: column;
        width: 440px;
        min-height: 0;
    }
    
    .dl-hero {
        padding: 30px 28px;
    }
    
    .dl-hero-logo {
        margin-bottom: 18px;
    }
    
    .dl-hero-h1 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .dl-hero-desc {
        margin-bottom: 16px;
    }
    
    .dl-hero-list {
        display: none;
    }
    
    .dl-hero-foot {
        display: none;
    }
    
    .dl-box {
        width: 100%;
        padding: 36px 28px;
    }
}

.dl-form-item {
    margin-bottom: 18px;
}

.dl-label {
    display: block;
    font-size: 13px;
    color: #374151;
    margin-bottom: 8px;
}

.dl-label .star {
    color: #f56c6c;
    margin-right: 4px;
}

.dl-input-wrap {
    position: relative;
    border-bottom: 1px solid #dcdfe6;
}

.dl-input-wrap:hover {
    border-bottom-color: #409eff;
}

.dl-input {
    width: 100%;
    height: 38px;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #303133;
    padding: 0 4px;
}

.dl-input::placeholder {
    color: #c0c4cc;
}

.dl-toggle {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #409eff;
    font-size: 13px;
    background: transparent;
    padding: 4px 6px;
}

.dl-check-row {
    display: flex;
    align-items: center;
    margin: 8px 0 22px 0;
    font-size: 13px;
    color: #606266;
}

.dl-check-row input {
    margin-right: 6px;
}

.dl-btn {
    width: 100%;
    height: 42px;
    background: #409eff;
    color: #ffffff;
    font-size: 15px;
    border: none;
    letter-spacing: 2px;
}

.dl-btn:hover {
    background: #66b1ff;
}

.dl-btn:disabled {
    background: #a0cfff;
    cursor: not-allowed;
}

.dl-foot {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: #606266;
}

.dl-tip {
    min-height: 20px;
    font-size: 13px;
    color: #f56c6c;
    margin-top: 8px;
}

.dl-tip.ok {
    color: #67c23a;
}

/* =========================
   后台管理布局样式 (最终修复版)
   ========================= */
.sy-layout {
    display: flex;
    min-height: 100vh;
}

/* 侧边栏 - 默认折叠状态 (60px宽，只显示图标) */
.sy-aside {
    width: 210px;
    background: #ffffff;
    color: #1f2937;
    position: fixed;
    height: 100vh;
    z-index: 1000;
    border-right: 1px solid #f1f5f9;
    transition: width 0.3s ease;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

/* 侧边栏展开状态 */
.sy-aside.show {
    width: 200px;
}

.sy-logo {
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.sy-logo .logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #409eff 0%, #6366f1 100%);
    color: #ffffff;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(64, 158, 255, 0.3);
    flex-shrink: 0;
}

.sy-logo span {
    margin-left: 10px;
    word-break: break-all;      /* 允许在任意字符间断行 */
    white-space: normal;        /* 重置为默认换行 */
    line-height: 1.2;           /* 稍微压缩一下行高，避免太高 */
    max-height: 2.4em;          /* 限制最多显示两行 */
    overflow: hidden;           /* 超出两行隐藏 */
}

.sy-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    padding-right: 4px;
}

/* 自定义滚动条 */
.sy-menu::-webkit-scrollbar {
    width: 4px;
}
.sy-menu::-webkit-scrollbar-track {
    background: transparent;
}
.sy-menu::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 2px;
}

/* 菜单项 - 胶囊式 */
.sy-menu-item {
    display: flex;
    align-items: center;
    height: 44px;
    padding: 0 14px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.sy-menu-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.sy-menu-item span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.2s ease;
}

/* 悬停效果 */
.sy-menu-item:hover {
    background: #f8fafc;
    color: #334155;
    transform: translateX(2px);
}

.sy-menu-item:hover i {
    transform: scale(1.1);
}

/* 激活状态 */
.sy-menu-item.on {
    background: linear-gradient(135deg, #409eff 0%, #6366f1 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(64, 158, 255, 0.3);
    font-weight: 600;
}

.sy-menu-item.on::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: #ffffff;
    border-radius: 0 3px 3px 0;
}

/* 主内容区 */
.sy-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin-left: 210px;
    transition: margin-left 0.3s ease;
    background: #f4f7fb;
}

/* 顶部导航栏 */
.sy-head {
    height: 60px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    padding: 0 24px;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* 🔥 移动端菜单按钮 (汉堡包) */
.menu-toggle-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.menu-toggle-btn:hover {
    background: #f1f5f9;
    color: #334155;
}

.sy-head-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sy-head-title {
    font-size: 15px;
    color: #303133;
    font-weight: 500;
}

.sy-head-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 0;
}

.sy-head-right .tool-btn {
    color: #606266;
    font-size: 16px;
    background: transparent;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

.sy-head-right .tool-btn:hover {
    background: #f0f0f0;
    color: #409eff;
}

.sy-head-user {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    border: 1px solid #edf2f7;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 14px;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
    max-width: 280px;
    min-width: 0;
}

.sy-head-user .tx {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #409eff 0%, #6366f1 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sy-head-user .info {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    gap: 3px;
    min-width: 0;
}

.sy-head-user .info .name {
    color: #303133;
    font-weight: bold;
    line-height: 1.1;
}

.sy-head-user .info .role {
    display: none;
}

.sy-head-user .head-balance-line {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    line-height: 1.35;
    white-space: nowrap;
}

.sy-head-user .head-balance-line b,
.sy-head-user .head-balance-line em {
    font-style: normal;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 999px;
}

.sy-head-user .head-balance-line b {
    color: #1d4ed8;
    background: #eff6ff;
}

.sy-head-user .head-balance-line em {
    color: #b45309;
    background: #fffbeb;
}

.sy-head-user .head-rent-time {
    color: #10b981;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    white-space: nowrap;
    max-width: 205px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sy-head-user .drop {
    margin-left: 0;
    color: #909399;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.sy-head-user .drop:hover {
    background: #f0f0f0;
    color: #f56c6c;
}

/* 主体内容 - 修复排版 */
.sy-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f4f7fb;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}

/* 首页顶部三栏 */
.sy-top-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}

.sy-top-3col .col-gg {
    background: #fdf6ec;
    border: 1px solid #faecd8;
    padding: 12px 14px;
    color: #b88230;
    font-size: 13px;
    line-height: 1.9;
    max-height: 220px;
    overflow-y: auto;
    white-space: pre-line;
    border-radius: 8px;
}

.sy-top-3col .col-gg-title {
    font-size: 14px;
    font-weight: bold;
    color: #b9731b;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #faecd8;
}

.sy-top-3col .col-gg-title i {
    margin-right: 6px;
}

.sy-top-3col .col-ad {
    background: #f4f7fb;
    border: 1px solid #e5e7eb;
    min-height: 150px;
    max-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s;
}

.sy-top-3col .col-ad:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sy-top-3col .col-ad img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sy-top-3col .col-ad.empty {
    color: #c0c4cc;
    font-size: 14px;
}

@media (max-width: 900px) {
    .sy-top-3col {
        grid-template-columns: 1fr;
    }
    
    .sy-top-3col .col-ad {
        min-height: 120px;
    }
}

/* 公告条 */
.sy-gg {
    background: #fdf6ec;
    border: 1px solid #faecd8;
    padding: 16px 20px;
    color: #b88230;
    font-size: 13px;
    line-height: 2;
    margin-bottom: 20px;
    white-space: pre-line;
    border-radius: 8px;
}

/* 横幅区域 */
.sy-banner {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 8px;
}

.sy-banner-inner {
    height: 160px;
    background: #f4f7fb;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #909399;
    font-size: 16px;
    flex-direction: column;
    border-radius: 6px;
}

.sy-banner-inner i {
    font-size: 36px;
    color: #409eff;
    margin-bottom: 10px;
}

/* 首页三个快捷入口 */
.sy-entry-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.sy-entry-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: #fff;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: #606266;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.3s;
}

.sy-entry-btn i {
    font-size: 32px;
    margin-bottom: 8px;
}

.sy-entry-btn .t {
    font-size: 15px;
}

.sy-entry-btn .num {
    display: inline-block;
    min-width: 22px;
    height: 22px;
    line-height: 22px;
    padding: 0 6px;
    background: #f56c6c;
    color: #fff;
    font-size: 12px;
    margin-left: 6px;
    border-radius: 11px;
    text-align: center;
}

.sy-entry-btn.e1 i {
    color: #409eff;
}

.sy-entry-btn.e2 i {
    color: #e6a23c;
}

.sy-entry-btn.e3 i {
    color: #67c23a;
}

.sy-entry-btn.e2 .num {
    background: #e6a23c;
}

.sy-entry-btn.e3 .num {
    background: #67c23a;
}

.sy-entry-btn:hover {
    background: #f5f7fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

@media (max-width: 800px) {
    .sy-entry-3 {
        grid-template-columns: 1fr;
    }
    
    .sy-entry-btn {
        height: 90px;
    }
}

/* 卡片统计区 */
.sy-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.sy-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.2s;
}

.sy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.sy-card .label {
    color: #909399;
    font-size: 13px;
    margin-bottom: 10px;
}

.sy-card .value {
    font-size: 22px;
    color: #303133;
    font-weight: bold;
}

.sy-card .action {
    margin-top: 12px;
    font-size: 13px;
    display: flex;
    gap: 14px;
}

.sy-card .action a {
    color: #409eff;
    cursor: pointer;
    transition: color 0.2s;
}

.sy-card .action a:hover {
    color: #66b1ff;
}

.sy-card .bot-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 12px;
}

/* 账户概览表格 */
.sy-block {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.sy-block-title {
    font-size: 15px;
    color: #303133;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ebeef5;
    font-weight: 500;
}

.sy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.sy-table td {
    padding: 12px 14px;
    border: 1px solid #ebeef5;
}

.sy-table td.th {
    background: #f5f7fa;
    color: #606266;
    width: 120px;
    font-weight: 500;
}

/* 底部 */
.sy-foot {
    text-align: center;
    padding: 14px;
    color: #909399;
    font-size: 12px;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

/* 浮动客服按钮 */
.sy-kf-fab {
    position: fixed;
    right: 24px;
    bottom: 20px;
    background: linear-gradient(135deg, #409eff 0%, #6366f1 100%);
    color: #ffffff;
    padding: 10px 16px;
    font-size: 13px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(64, 158, 255, 0.3);
    transition: all 0.3s;
    z-index: 100;
}

.sy-kf-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 158, 255, 0.4);
}

.sy-kf-fab i {
    margin-right: 6px;
}

/* =========================
   响应式调整 (最终版)
   ========================= */
@media (max-width: 900px) {
    /* 侧边栏默认折叠 */
    .sy-aside {
        width: 60px;
        padding: 20px 0;
        align-items: center;
    }

    /* 展开时恢复正常 */
    .sy-aside.show {
        width: 200px;
        padding: 20px 12px;
        align-items: stretch;
    }

    /* 折叠时隐藏文字 */
    .sy-aside:not(.show) .sy-logo span,
    .sy-aside:not(.show) .sy-menu-item span {
        display: none;
    }

    /* 折叠时Logo居中 */
    .sy-aside:not(.show) .sy-logo {
        justify-content: center;
        padding: 0;
    }

    .sy-aside:not(.show) .sy-logo .logo-icon {
        margin-right: 0;
    }

    /* 折叠时菜单图标居中 */
    .sy-aside:not(.show) .sy-menu-item {
        justify-content: center;
        padding: 0;
    }

    .sy-aside:not(.show) .sy-menu-item i {
        margin-right: 0;
    }

    /* 主内容区自适应 */
    .sy-main {
        margin-left: 60px;
    }

    /* 显示汉堡包按钮 */
    .menu-toggle-btn {
        display: inline-flex;
    }
    
    .sy-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .sy-stats {
        grid-template-columns: 1fr;
    }
    
    .sy-head {
        height: auto;
        min-height: 72px;
        padding: 8px 10px;
        gap: 8px;
        align-items: center;
    }

    .sy-head-left {
        flex: 1 1 auto;
        gap: 8px;
        min-width: 0;
        overflow: hidden;
    }

    .sy-head-title {
        display: block;
        min-width: 0;
        max-width: 100%;
        font-size: 14px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: keep-all;
    }

    .sy-head-right {
        flex: 0 1 auto;
        gap: 8px;
        max-width: 58vw;
        min-width: 0;
    }

    .sy-head-right .tool-btn {
        display: none;
    }

    .sy-head-user {
        gap: 7px;
        padding: 6px 7px;
        max-width: min(154px, 44vw);
        border-radius: 12px;
    }

    .sy-head-user .info {
        min-width: 0;
        max-width: 102px;
    }

    .sy-head-user .info .name {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sy-head-user .tx {
        width: 28px;
        height: 28px;
    }

    .sy-head-user .info .role {
        display: none;
    }

    .sy-head-user .head-balance-line {
        gap: 3px;
    }

    .sy-head-user .head-balance-line b,
    .sy-head-user .head-balance-line em {
        padding: 1px 4px;
        font-size: 10px;
    }

    .sy-head-user .head-rent-time {
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 10px;
    }

    .sy-head-user .drop {
        margin-left: 0;
    }
    
    .sy-body {
        padding: 15px;
    }
}

/* =========================
   选号页面样式
   ========================= */
.xh-notice {
    background: #fff8e6;
    border: 1px solid #f0c36d;
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 8px;
}

.xh-notice-title {
    font-size: 14px;
    font-weight: bold;
    color: #b9731b;
    margin-bottom: 8px;
}

.xh-notice-title i {
    margin-right: 6px;
}

.xh-notice-body {
    font-size: 13px;
    color: #7a5316;
    line-height: 1.8;
}

/* 标签切换 */
.xh-tab-bar {
    background: #fff;
    padding: 0 16px;
    border: 1px solid #e5e7eb;
    border-bottom: none;
    display: flex;
    border-radius: 8px 8px 0 0;
}

.xh-tab {
    display: inline-block;
    padding: 10px 22px;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.xh-tab.on {
    color: #409eff;
    border-bottom-color: #409eff;
    font-weight: bold;
}

.xh-tab:hover {
    color: #409eff;
}

/* 选号表格 */
.xh-table-wrap {
    background: #fff;
    border: 1px solid #e5e7eb;
    overflow-x: auto;
    border-radius: 0 0 8px 8px;
}

.xh-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.xh-table th,
.xh-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #eef0f3;
    text-align: center;
    white-space: nowrap;
}

.xh-table thead th {
    background: #f4f7fb;
    color: #333;
    font-weight: bold;
}

.xh-table tbody tr:hover {
    background: #fafcff;
}

.xh-table td.bh {
    color: #409eff;
    font-weight: bold;
}

.xh-table td.jg {
    color: #e6a23c;
    font-weight: bold;
}

.xh-table td.bz {
    color: #666;
    max-width: 160px;
    white-space: normal;
}

.xh-empty {
    padding: 40px 0;
    color: #999;
    text-align: center;
}

.xh-tag {
    display: inline-block;
    padding: 2px 10px;
    font-size: 12px;
    border: 1px solid;
    border-radius: 12px;
}

.xh-tag.ok {
    color: #21a05a;
    border-color: #21a05a;
    background: #f0fbf5;
}

.xh-tag.no {
    color: #a33;
    border-color: #d89292;
    background: #fdf2f2;
}

.xh-tag.warn {
    color: #b9731b;
    border-color: #f0c36d;
    background: #fff8e6;
}

.xh-op-btn {
    display: inline-block;
    padding: 4px 14px;
    background: #409eff;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: background 0.2s;
}

.xh-op-btn:hover {
    background: #2e8ae6;
}

.xh-op-disabled {
    color: #999;
    font-size: 13px;
}

/* =========================
   订单页面样式
   ========================= */
.dd-flash {
    padding: 14px 18px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    font-size: 14px;
    color: #333;
    border-radius: 8px;
}

.dd-flash.ok {
    border-color: #b7eb8f;
    background: #f6ffed;
    color: #389e0d;
}

.dd-flash.err {
    border-color: #ffa39e;
    background: #fff1f0;
    color: #cf1322;
}

.dd-flash .fa {
    margin-right: 6px;
}

.dd-qhcg {
    margin-top: 10px;
    padding: 12px 14px;
    background: #fff;
    border: 1px dashed #c0c4cc;
    font-family: Consolas, "Courier New", monospace;
    font-size: 13px;
    color: #333;
    white-space: pre-wrap;
    word-break: break-all;
    line-height: 1.7;
    border-radius: 4px;
}

.dd-flash-tip {
    margin-top: 8px;
    font-size: 13px;
}

.dd-empty {
    padding: 60px 0;
    text-align: center;
    color: #999;
    background: #fff;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    border-radius: 8px;
}

.dd-empty .fa {
    font-size: 40px;
    color: #ccc;
    display: block;
    margin-bottom: 10px;
}

.dd-empty p {
    margin: 0;
}

.dd-wrap {}

.dd-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    margin-bottom: 14px;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.dd-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.dd-card-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 10px 16px;
    background: #fafbfc;
    border-bottom: 1px solid #e5e7eb;
    font-size: 13px;
    color: #555;
}

.dd-card-head .dd-dh {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.dd-card-head .dd-bh {
    display: inline-block;
    padding: 2px 10px;
    background: #409eff;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
}

.dd-card-head .dd-jg {
    color: #f5222d;
    font-weight: bold;
}

.dd-card-body {
    padding: 14px 16px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.dd-col {
    flex: 1 1 300px;
    min-width: 280px;
}

.dd-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    color: #555;
}

.dd-row:last-child {
    margin-bottom: 0;
}

.dd-row .k {
    width: 84px;
    color: #888;
    flex-shrink: 0;
}

.dd-row .v {
    flex: 1;
    color: #333;
    word-break: break-all;
}

.dd-row .v.mono {
    font-family: Consolas, "Courier New", monospace;
    padding: 4px 10px;
    background: #fff;
    border: 1px solid #ffe58f;
    font-size: 13px;
    border-radius: 4px;
}

.dd-zh-box {
    padding: 12px 14px;
    background: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 6px;
}

.dd-zh-title {
    font-size: 13px;
    font-weight: bold;
    color: #d48806;
    margin-bottom: 10px;
}

.dd-card-foot {
    padding: 10px 16px;
    background: #fafbfc;
    border-top: 1px solid #e5e7eb;
    text-align: right;
}

/* =========================
   对话框样式
   ========================= */
.zu-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.zu-mask.show {
    display: flex;
}

.zu-dialog {
    width: 420px;
    max-width: calc(100% - 40px);
    background: #fff;
    border: 1px solid #d9d9d9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    animation: dialogFadeIn 0.3s ease;
}

@keyframes dialogFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zu-dialog-head {
    padding: 12px 18px;
    background: #409eff;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zu-dialog-head .fa {
    margin-right: 8px;
}

.zu-dialog-head.ok {
    background: linear-gradient(135deg, #409eff 0%, #6366f1 100%);
}

.zu-dialog-head.err {
    background: linear-gradient(135deg, #f56c6c 0%, #ff7875 100%);
}

.zu-dialog-body {
    padding: 20px 18px;
    color: #333;
    font-size: 14px;
}

.zu-dialog-body p {
    margin: 0 0 10px 0;
}

.zu-dialog-body p:last-child {
    margin-bottom: 0;
}

.zu-dialog-body b {
    color: #f5222d;
    font-weight: bold;
}

.zu-dialog-body .tip {
    color: #666;
    font-size: 13px;
}

.zu-dialog-body .tip.small {
    color: #999;
    font-size: 12px;
}

.zu-dialog-foot {
    padding: 10px 18px;
    border-top: 1px solid #eee;
    text-align: right;
    background: #fafbfc;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.zu-dialog-foot button {
    display: inline-block;
    padding: 6px 18px;
    font-size: 13px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.zu-btn-cancel {
    background: #fff;
    color: #555;
    border: 1px solid #d9d9d9 !important;
}

.zu-btn-cancel:hover {
    color: #409eff;
    border-color: #409eff !important;
}

.zu-btn-ok {
    background: #409eff;
    color: #fff;
}

.zu-btn-ok:hover {
    background: #2e8ae6;
}

.zu-btn-ok:disabled {
    background: #a0cfff;
    cursor: not-allowed;
}

/* 提示弹框加宽版 + 状态色 */
.zu-dialog.zu-dialog-lg {
    width: 520px;
}

.zu-dialog-body .flash-msg {
    padding: 8px 12px;
    background: #ecf5ff;
    border: 1px solid #b3d8ff;
    color: #0958d9;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 12px;
    border-radius: 6px;
}

.zu-dialog-head.err + .zu-dialog-body .flash-msg {
    background: #fef0f0;
    border-color: #fbc4c4;
    color: #c45656;
}

.zu-dialog-body .flash-tip {
    margin-top: 10px;
    padding: 8px 10px;
    background: #fafbfc;
    border-left: 3px solid #409eff;
    font-size: 12px;
    color: #555;
    border-radius: 0 4px 4px 0;
}

.zu-dialog-body .flash-tip a {
    color: #409eff;
    text-decoration: underline;
}
/* ===== Logo 区域 ===== */
.sy-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Logo 图片 */
.sy-logo-img {
    height: 34px;
    width: auto;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

/* hover 动画 */
.sy-logo:hover {
    opacity: 0.85;
}

.sy-logo:hover .sy-logo-img {
    transform: scale(1.08);
}

/* ===== 移动端：只显示图标 ===== */
@media (max-width: 768px) {
    .sy-logo {
        justify-content: center;
    }

    .sy-logo-img {
        margin-right: 0;
    }

    .sy-logo-text {
        display: none;
    }
}

/* =========================
   UI V2 统一视觉覆盖层
   ========================= */
:root {
    --ui-primary: #4f7cff;
    --ui-primary-2: #6f5cff;
    --ui-success: #22c55e;
    --ui-warning: #f59e0b;
    --ui-danger: #ef4444;
    --ui-bg: #f3f6fb;
    --ui-card: #ffffff;
    --ui-text: #172033;
    --ui-muted: #718096;
    --ui-border: #e7edf6;
    --ui-radius: 16px;
    --ui-shadow: 0 10px 30px rgba(24, 39, 75, .08);
    --ui-shadow-soft: 0 5px 18px rgba(24, 39, 75, .06);
}

body {
    background: radial-gradient(circle at top right, rgba(79, 124, 255, .10), transparent 32%), linear-gradient(180deg, #f8fbff 0%, var(--ui-bg) 100%);
    color: var(--ui-text);
}

.sy-aside {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-right: 1px solid var(--ui-border);
    box-shadow: 8px 0 30px rgba(24, 39, 75, .04);
}

.sy-logo {
    border-bottom-color: var(--ui-border);
}

.sy-menu-item {
    margin: 7px 10px;
    border-radius: 14px;
    color: #334155;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.sy-menu-item:hover {
    background: #eef4ff;
    color: var(--ui-primary);
    transform: translateX(2px);
}

.sy-menu-item.on {
    background: linear-gradient(135deg, var(--ui-primary) 0%, var(--ui-primary-2) 100%);
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(79, 124, 255, .28);
}

.sy-main {
    background: transparent;
}

.sy-head {
    height: 64px;
    border-bottom-color: rgba(231, 237, 246, .9);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(24, 39, 75, .06);
}

.sy-head-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--ui-text);
}

.sy-head-right .tool-btn,
.menu-toggle-btn,
.sy-head .back {
    border-radius: 12px;
}

.sy-head-right .tool-btn:hover,
.menu-toggle-btn:hover,
.sy-head .back:hover {
    background: #eef4ff;
    color: var(--ui-primary);
}

.sy-head-user {
    border-color: #eaf0fb;
    background: rgba(255, 255, 255, .95);
    box-shadow: var(--ui-shadow-soft);
}

.sy-body {
    padding: 22px;
}

.sy-entry-btn,
.sy-wallet-card,
.col-gg,
.col-ad,
.xh-notice,
.filter-container,
.available-filter,
.jd-filters-container,
.mobile-card,
.dd-card,
.dd-wrap,
.order-stats {
    border: 1px solid var(--ui-border);
    border-radius: var(--ui-radius);
    box-shadow: var(--ui-shadow-soft);
}

.sy-entry-btn,
.mobile-card,
.dd-card,
.col-ad {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.sy-entry-btn:hover,
.mobile-card:hover,
.dd-card:hover,
.col-ad:hover {
    transform: translateY(-2px);
    box-shadow: var(--ui-shadow);
    border-color: rgba(79, 124, 255, .28);
}

.xh-notice {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0f9ff 100%);
    border-left: 0;
    color: #14532d;
}

.xh-notice-title {
    color: #047857;
    font-weight: 800;
}

.filter-container,
.available-filter,
.jd-filters-container {
    background: rgba(255, 255, 255, .92);
}

.filter-select,
.filter-input,
.form-input,
.form-select,
select,
input[type="text"],
input[type="number"],
input[type="password"],
textarea {
    border-radius: 12px !important;
    border-color: var(--ui-border) !important;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.filter-select:focus,
.filter-input:focus,
.form-input:focus,
.form-select:focus,
select:focus,
input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
textarea:focus {
    border-color: var(--ui-primary) !important;
    box-shadow: 0 0 0 3px rgba(79, 124, 255, .12);
}

.xh-tab,
.zu-btn,
.zu-btn-ok,
.zu-btn-cancel,
.sy-wallet-btn {
    border-radius: 999px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.xh-tab.on,
.zu-btn,
.zu-btn-ok,
.sy-wallet-btn.primary {
    background: linear-gradient(135deg, var(--ui-primary) 0%, var(--ui-primary-2) 100%) !important;
    box-shadow: 0 8px 18px rgba(79, 124, 255, .22);
}

.zu-btn:hover,
.zu-btn-ok:hover,
.sy-wallet-btn:hover {
    transform: translateY(-1px);
}

.xh-table-responsive {
    border: 1px solid var(--ui-border);
    border-radius: var(--ui-radius);
    box-shadow: var(--ui-shadow-soft);
}

.xh-table {
    border-collapse: separate;
    border-spacing: 0;
}

.xh-table th {
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%) !important;
    color: #334155 !important;
    border-color: var(--ui-border) !important;
}

.xh-table td {
    border-color: #edf2f7 !important;
}

.xh-table tr:hover {
    background: #f8fbff !important;
}

.xh-tag,
.card-status .xh-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.xh-tag.ok {
    color: #047857;
    background: #dcfce7;
}

.xh-tag.no {
    color: #b91c1c;
    background: #fee2e2;
}

.xh-tag.warn {
    color: #b45309;
    background: #fef3c7;
}

.xh-free-tag,
.xh-free-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    color: #52525b;
    background: linear-gradient(135deg, #f4f4f5 0%, #e4e4e7 100%);
    border: 1px solid #d4d4d8;
    white-space: nowrap;
}

.xh-free-tag {
    min-height: 24px;
    padding: 3px 10px;
}

.xh-free-inline {
    padding: 2px 7px;
    margin-left: 5px;
    vertical-align: middle;
}

.mobile-card {
    background: rgba(255, 255, 255, .96);
    overflow: hidden;
}

.card-header {
    border-bottom-color: #edf2f7;
}

.card-price {
    color: var(--ui-danger);
    font-weight: 900;
}

.dd-qhcg,
.dd-xh-tip,
.dd-upload-box,
.skip-image-panel {
    border-radius: var(--ui-radius);
}

@media (max-width: 768px) {
    .sy-body {
        padding: 14px;
    }

    .sy-head {
        min-height: 66px;
        padding: 8px 10px;
    }

    .filter-container,
    .available-filter,
    .jd-filters-container,
    .xh-notice {
        border-radius: 14px;
    }
}

/* 选号筛选抽屉 V2 */
.xh-filter-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 12px 0;
}

.xh-filter-open,
.xh-filter-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 34px;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid var(--ui-border);
    background: #ffffff;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: var(--ui-shadow-soft);
}

.xh-filter-open {
    background: linear-gradient(135deg, var(--ui-primary) 0%, var(--ui-primary-2) 100%);
    color: #ffffff;
    border-color: transparent;
}

.xh-filter-mask,
.xh-filter-panel-head {
    display: none;
}

.xh-filter-panel-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--ui-text);
}

.xh-filter-panel-sub {
    color: var(--ui-muted);
    font-size: 12px;
    margin-top: 3px;
}

.xh-filter-close {
    border: 0;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 20px;
}

@media (min-width: 769px) {
    .xh-filter-open {
        display: none;
    }
}

@media (max-width: 768px) {
    .xh-filter-toolbar {
        position: sticky;
        top: 66px;
        z-index: 120;
        padding: 8px 0;
        background: rgba(243, 246, 251, .92);
        backdrop-filter: blur(10px);
    }

    .xh-filter-mask {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9000;
        background: rgba(15, 23, 42, .42);
    }

    .xh-filter-mask.show {
        display: block;
    }

    .xh-filter-panel {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9001;
        max-height: 86vh;
        overflow-y: auto;
        padding: 16px;
        border-radius: 22px 22px 0 0;
        background: #ffffff;
        box-shadow: 0 -18px 40px rgba(15, 23, 42, .22);
        transform: translateY(105%);
        transition: transform .24s ease;
    }

    .xh-filter-panel.show {
        transform: translateY(0);
    }

    .xh-filter-panel-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .xh-filter-panel .filter-container,
    .xh-filter-panel .jd-filters-container {
        box-shadow: none;
        border-radius: 14px;
        margin-bottom: 12px;
    }

    body.xh-filter-lock {
        overflow: hidden;
    }
}

/* =========================
   前台流畅动效补丁 V1
   ========================= */
:root {
    --motion-fast: 140ms;
    --motion-normal: 220ms;
    --motion-slow: 320ms;
    --motion-ease: cubic-bezier(.2, .8, .2, 1);
}

body.ui-motion-ready .sy-main,
body.ui-motion-ready .dl-wrap {
    animation: uiPageIn var(--motion-slow) var(--motion-ease) both;
}

body.ui-motion-leaving .sy-main,
body.ui-motion-leaving .dl-wrap {
    animation: uiPageOut var(--motion-fast) ease both;
}

@keyframes uiPageIn {
    from {
        opacity: 0;
        transform: translateY(8px);
        filter: saturate(.96);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: saturate(1);
    }
}

@keyframes uiPageOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(6px);
    }
}

.ui-page-loader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 3px;
    pointer-events: none;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, #409eff, #7c3aed, #22c55e);
    box-shadow: 0 0 18px rgba(64, 158, 255, .45);
    transition: transform var(--motion-normal) var(--motion-ease), opacity var(--motion-fast) ease;
}

body.ui-motion-leaving .ui-page-loader,
body.ui-loading .ui-page-loader {
    opacity: 1;
    transform: scaleX(.82);
}

body.ui-motion-ready .sy-card,
body.ui-motion-ready .sy-block,
body.ui-motion-ready .sy-entry-btn,
body.ui-motion-ready .xh-notice,
body.ui-motion-ready .xh-table-wrap,
body.ui-motion-ready .mobile-card,
body.ui-motion-ready .dd-card,
body.ui-motion-ready .dd-flash,
body.ui-motion-ready .filter-container,
body.ui-motion-ready .available-filter,
body.ui-motion-ready .jd-filters-container {
    animation: uiFloatIn var(--motion-slow) var(--motion-ease) both;
}

body.ui-motion-ready .sy-entry-btn:nth-child(2),
body.ui-motion-ready .sy-card:nth-child(2),
body.ui-motion-ready .mobile-card:nth-child(2),
body.ui-motion-ready .dd-card:nth-child(2) {
    animation-delay: 35ms;
}

body.ui-motion-ready .sy-entry-btn:nth-child(3),
body.ui-motion-ready .sy-card:nth-child(3),
body.ui-motion-ready .mobile-card:nth-child(3),
body.ui-motion-ready .dd-card:nth-child(3) {
    animation-delay: 70ms;
}

@keyframes uiFloatIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sy-menu-item,
.sy-entry-btn,
.sy-card,
.xh-tab,
.xh-op-btn,
.mobile-card,
.dd-card,
.dd-card-foot a,
.dd-card-foot button,
.filter-chip,
.role-filter,
.rank-filter,
.jd-filter,
.xh-filter-open,
.xh-filter-mini,
.dl-btn,
.btn {
    transition:
        transform var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) ease,
        border-color var(--motion-fast) ease,
        color var(--motion-fast) ease,
        opacity var(--motion-fast) ease;
}

.sy-menu-item:active,
.sy-entry-btn:active,
.xh-tab:active,
.xh-op-btn:active,
.dd-card-foot a:active,
.dd-card-foot button:active,
.filter-chip:active,
.role-filter:active,
.rank-filter:active,
.jd-filter:active,
.xh-filter-open:active,
.xh-filter-mini:active,
.dl-btn:active,
.btn:active {
    transform: scale(.98);
}

.mobile-card:hover,
.dd-card:hover,
.sy-card:hover {
    transform: translateY(-3px);
}

.xh-table tbody tr,
.sy-table tr {
    transition: background-color var(--motion-fast) ease, transform var(--motion-fast) var(--motion-ease);
}

.xh-table tbody tr:hover,
.sy-table tr:hover {
    transform: translateX(2px);
}

.ui-click-ripple {
    position: relative;
    overflow: hidden;
}

.ui-click-ripple::after {
    content: '';
    position: absolute;
    left: var(--ripple-x, 50%);
    top: var(--ripple-y, 50%);
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(64, 158, 255, .18);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
}

.ui-click-ripple.rippling::after {
    animation: uiRipple 420ms ease-out;
}

@keyframes uiRipple {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(18);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }

    body.ui-motion-ready .sy-main,
    body.ui-motion-ready .dl-wrap,
    body.ui-motion-ready .sy-card,
    body.ui-motion-ready .sy-block,
    body.ui-motion-ready .sy-entry-btn,
    body.ui-motion-ready .xh-notice,
    body.ui-motion-ready .xh-table-wrap,
    body.ui-motion-ready .mobile-card,
    body.ui-motion-ready .dd-card {
        animation: none !important;
    }
}

/* 动效稳定性补丁：不再用离场动画阻断页面跳转，避免快速切换时卡住 */
body.ui-motion-leaving .sy-main,
body.ui-motion-leaving .dl-wrap {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

/* 动效稳定性补丁 V2：彻底关闭页面级动效，只保留按钮/卡片微交互 */
body.ui-motion-ready .sy-main,
body.ui-motion-ready .dl-wrap,
body.ui-motion-ready .sy-card,
body.ui-motion-ready .sy-block,
body.ui-motion-ready .sy-entry-btn,
body.ui-motion-ready .xh-notice,
body.ui-motion-ready .xh-table-wrap,
body.ui-motion-ready .mobile-card,
body.ui-motion-ready .dd-card,
body.ui-motion-ready .dd-flash,
body.ui-motion-ready .filter-container,
body.ui-motion-ready .available-filter,
body.ui-motion-ready .jd-filters-container {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

.ui-page-loader {
    display: none !important;
}

body:not(.ui-motion-ready) .sy-main,
body:not(.ui-motion-ready) .dl-wrap,
body:not(.ui-motion-ready) .sy-card,
body:not(.ui-motion-ready) .sy-block,
body:not(.ui-motion-ready) .sy-entry-btn,
body:not(.ui-motion-ready) .xh-notice,
body:not(.ui-motion-ready) .xh-table-wrap,
body:not(.ui-motion-ready) .mobile-card,
body:not(.ui-motion-ready) .dd-card,
body:not(.ui-motion-ready) .dd-flash,
body:not(.ui-motion-ready) .filter-container,
body:not(.ui-motion-ready) .available-filter,
body:not(.ui-motion-ready) .jd-filters-container {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

/* 动效恢复 V4：轻量、不拦截跳转，只做视觉反馈 */
.ui-page-loader {
    display: block !important;
}

body.ui-loading .ui-page-loader,
body.ui-motion-leaving .ui-page-loader {
    opacity: 1 !important;
    transform: scaleX(.82) !important;
}

body.ui-motion-ready .sy-main,
body.ui-motion-ready .dl-wrap {
    animation: uiPageSoftIn 220ms cubic-bezier(.22, 1, .36, 1) both !important;
}

body.ui-motion-leaving .sy-main,
body.ui-motion-leaving .dl-wrap {
    animation: none !important;
    opacity: .985 !important;
    transform: translateY(0) !important;
    filter: none !important;
}

body.ui-motion-ready .sy-card,
body.ui-motion-ready .sy-block,
body.ui-motion-ready .sy-entry-btn,
body.ui-motion-ready .xh-notice,
body.ui-motion-ready .xh-table-wrap,
body.ui-motion-ready .mobile-cards,
body.ui-motion-ready .dd-wrap,
body.ui-motion-ready .filter-container,
body.ui-motion-ready .available-filter,
body.ui-motion-ready .jd-filters-container {
    animation: uiPanelSoftIn 260ms cubic-bezier(.22, 1, .36, 1) both !important;
}

body.ui-motion-ready .mobile-card,
body.ui-motion-ready .dd-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

@keyframes uiPageSoftIn {
    from {
        opacity: .96;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes uiPanelSoftIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 动效舒适版 V5：轻、顺、不拦截跳转、不批量动画长列表 */
:root {
    --motion-fast: 120ms;
    --motion-normal: 190ms;
    --motion-slow: 280ms;
    --motion-spring: cubic-bezier(.2, .9, .25, 1);
    --motion-soft: cubic-bezier(.22, 1, .36, 1);
}

html {
    scroll-behavior: smooth;
}

body.ui-motion-ready .sy-main,
body.ui-motion-ready .dl-wrap {
    animation: uiPageComfortIn var(--motion-slow) var(--motion-soft) both !important;
    will-change: opacity, transform;
}

body.ui-motion-leaving .sy-main,
body.ui-motion-leaving .dl-wrap {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

body.ui-motion-ready .sy-body > *,
body.ui-motion-ready .dl-box,
body.ui-motion-ready .dl-hero {
    animation: uiSectionComfortIn var(--motion-slow) var(--motion-soft) both !important;
}

body.ui-motion-ready .sy-body > *:nth-child(2) { animation-delay: 28ms !important; }
body.ui-motion-ready .sy-body > *:nth-child(3) { animation-delay: 56ms !important; }
body.ui-motion-ready .sy-body > *:nth-child(4) { animation-delay: 84ms !important; }

body.ui-motion-ready .mobile-card,
body.ui-motion-ready .dd-card,
body.ui-motion-ready .xh-table-wrap,
body.ui-motion-ready .dd-wrap,
body.ui-motion-ready .mobile-cards {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.ui-page-loader {
    display: block !important;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #22c55e, #f59e0b);
    box-shadow: 0 6px 18px rgba(59, 130, 246, .2);
    opacity: 0;
    transform: scaleX(.08);
    transform-origin: left center;
    transition: opacity var(--motion-fast) ease, transform var(--motion-normal) var(--motion-soft);
    pointer-events: none;
}

body.ui-loading .ui-page-loader,
body.ui-motion-leaving .ui-page-loader {
    opacity: 1 !important;
    transform: scaleX(.88) !important;
}

body.ui-motion-ready .ui-page-loader {
    opacity: 0;
    transform: scaleX(1);
}

.sy-menu-item,
.sy-entry-btn,
.sy-card,
.xh-tab,
.xh-op-btn,
.zu-btn,
.zu-btn-ok,
.zu-btn-cancel,
.copy-btn,
.jjl-refresh-btn,
.tool-btn,
.xh-filter-open,
.xh-filter-mini,
.dl-btn {
    transition:
        transform var(--motion-fast) var(--motion-spring),
        box-shadow var(--motion-normal) var(--motion-soft),
        background-color var(--motion-fast) ease,
        border-color var(--motion-fast) ease,
        color var(--motion-fast) ease,
        opacity var(--motion-fast) ease !important;
}

.sy-entry-btn:hover,
.sy-card:hover,
.mobile-card:hover,
.dd-card:hover {
    transform: translateY(-2px) !important;
}

.sy-menu-item:hover,
.xh-tab:hover,
.tool-btn:hover,
.copy-btn:hover,
.jjl-refresh-btn:hover,
.xh-filter-open:hover,
.xh-filter-mini:hover {
    transform: translateY(-1px);
}

.sy-menu-item:active,
.sy-entry-btn:active,
.xh-tab:active,
.xh-op-btn:active,
.zu-btn:active,
.zu-btn-ok:active,
.zu-btn-cancel:active,
.copy-btn:active,
.jjl-refresh-btn:active,
.tool-btn:active,
.xh-filter-open:active,
.xh-filter-mini:active,
.dl-btn:active {
    transform: scale(.985) !important;
}

.sy-menu-item.on,
.xh-tab.on {
    box-shadow: inset 3px 0 0 rgba(64, 158, 255, .75);
}

.xh-table tbody tr,
.sy-table tr {
    transition: background-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease !important;
}

.xh-table tbody tr:hover,
.sy-table tr:hover {
    transform: none !important;
    box-shadow: inset 3px 0 0 rgba(64, 158, 255, .25);
}

.zu-mask.show .zu-dialog,
.flash-mask.show .flash-dialog {
    animation: uiDialogComfortIn 210ms var(--motion-soft) both;
}

.xh-filter-mask,
.zu-mask,
.flash-mask {
    transition: opacity var(--motion-normal) ease !important;
}

.xh-filter-panel {
    transition: transform 240ms var(--motion-soft), opacity 180ms ease !important;
    will-change: transform;
}

.xh-notice,
.available-filter,
.filter-summary,
.xh-filter-toolbar,
.sy-block,
.sy-card,
.dd-card,
.mobile-card {
    backface-visibility: hidden;
}

.ui-click-ripple::after {
    background: radial-gradient(circle, rgba(59, 130, 246, .2) 0%, rgba(59, 130, 246, 0) 68%) !important;
}

.ui-click-ripple.rippling::after {
    animation: uiRippleComfort 360ms ease-out !important;
}

@keyframes uiPageComfortIn {
    from {
        opacity: .985;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes uiSectionComfortIn {
    from {
        opacity: 0;
        transform: translateY(7px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes uiDialogComfortIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes uiRippleComfort {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(14);
    }
}

@media (max-width: 768px) {
    body.ui-motion-ready .sy-body > * {
        animation-duration: 220ms !important;
        animation-delay: 0ms !important;
    }

    .sy-entry-btn:hover,
    .sy-card:hover,
    .mobile-card:hover,
    .dd-card:hover {
        transform: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    body.ui-motion-ready .sy-main,
    body.ui-motion-ready .dl-wrap,
    body.ui-motion-ready .sy-body > *,
    body.ui-motion-ready .dl-box,
    body.ui-motion-ready .dl-hero,
    .zu-mask.show .zu-dialog,
    .flash-mask.show .flash-dialog {
        animation: none !important;
    }
}

/* 登录/注册电竞玻璃拟态 V2 */
.dl-page {
    min-height: 100vh;
    padding: 42px 22px 64px;
    align-items: center;
    background:
        radial-gradient(circle at 18% 18%, rgba(54, 211, 255, .20), transparent 30%),
        radial-gradient(circle at 82% 16%, rgba(139, 92, 246, .25), transparent 32%),
        radial-gradient(circle at 70% 88%, rgba(34, 197, 94, .12), transparent 28%),
        linear-gradient(135deg, #07111f 0%, #0d1b35 42%, #171038 100%);
    isolation: isolate;
}

.dl-bg-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, .08) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
    pointer-events: none;
}

.dl-orb {
    position: absolute;
    z-index: 0;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(2px);
    opacity: .58;
    pointer-events: none;
}

.dl-orb.orb-a {
    left: -110px;
    top: 10%;
    background: radial-gradient(circle, rgba(56, 189, 248, .34), transparent 68%);
    animation: dlOrbFloat 8s ease-in-out infinite;
}

.dl-orb.orb-b {
    right: -130px;
    bottom: 6%;
    background: radial-gradient(circle, rgba(168, 85, 247, .34), transparent 68%);
    animation: dlOrbFloat 10s ease-in-out infinite reverse;
}

.dl-wrap {
    width: min(1080px, 100%);
    min-height: 620px;
    border-radius: 28px;
    background: rgba(15, 23, 42, .52);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(22px);
}

.dl-hero {
    flex: 1.08;
    padding: 54px 50px;
    background:
        linear-gradient(145deg, rgba(59, 130, 246, .28), rgba(124, 58, 237, .16)),
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}

.dl-hero::before {
    width: 360px;
    height: 360px;
    top: -160px;
    right: -150px;
    background: radial-gradient(circle, rgba(56,189,248,.28), transparent 70%);
}

.dl-hero::after {
    width: 260px;
    height: 260px;
    left: auto;
    right: 28px;
    bottom: 32px;
    border: 1px solid rgba(255,255,255,.10);
    background:
        linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.02)),
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.16), transparent 42%);
    border-radius: 30px;
    transform: rotate(-8deg);
}

.dl-hero-logo {
    width: fit-content;
    padding: 9px 13px 9px 9px;
    margin-bottom: 44px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 12px 30px rgba(0,0,0,.14);
    backdrop-filter: blur(10px);
}

.dl-hero-logo i {
    border-radius: 999px;
    background: linear-gradient(135deg, #38bdf8, #8b5cf6);
    box-shadow: 0 0 24px rgba(56, 189, 248, .42);
}

.dl-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #93c5fd;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.dl-hero-kicker::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 16px rgba(34,197,94,.9);
}

.dl-hero-h1 {
    margin-bottom: 18px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.4px;
    text-shadow: 0 10px 36px rgba(0,0,0,.24);
}

.dl-hero-desc {
    max-width: 420px;
    color: rgba(226, 232, 240, .86);
    font-size: 15px;
}

.dl-hero-list {
    display: grid;
    gap: 12px;
    margin-top: 4px;
}

.dl-hero-list li {
    width: fit-content;
    padding: 10px 13px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(15, 23, 42, .22);
    color: rgba(241, 245, 249, .9);
    backdrop-filter: blur(10px);
}

.dl-hero-list li i {
    background: rgba(34,197,94,.15);
    color: #86efac;
}

.dl-hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 430px;
    margin-top: 28px;
}

.dl-hero-stats div {
    padding: 14px 12px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 16px;
    background: rgba(255,255,255,.08);
}

.dl-hero-stats b,
.dl-hero-stats span {
    display: block;
}

.dl-hero-stats b {
    color: #fff;
    font-size: 20px;
    line-height: 1.1;
}

.dl-hero-stats span {
    margin-top: 4px;
    color: rgba(226,232,240,.72);
    font-size: 12px;
}

.dl-hero-foot {
    position: relative;
    z-index: 2;
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    background: rgba(15, 23, 42, .24);
    color: rgba(226,232,240,.72);
    font-size: 11px;
    letter-spacing: 1px;
}

.dl-box {
    width: 420px;
    margin: 22px;
    padding: 36px 34px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 20px 70px rgba(0,0,0,.20);
    backdrop-filter: blur(18px);
}

.dl-panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
}

.dl-title {
    color: #0f172a;
    font-size: 30px;
    letter-spacing: -.8px;
}

.dl-title::after {
    content: '';
    display: block;
    width: 44px;
    height: 4px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.dl-sub {
    margin: 14px 0 26px;
    color: #64748b;
}

.dl-label {
    color: #334155;
    font-weight: 800;
}

.dl-input-wrap {
    min-height: 48px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.dl-input-wrap:hover {
    border-color: #bfdbfe;
    background: #ffffff;
}

.dl-input-wrap:focus-within {
    border-color: #60a5fa;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, .12), inset 0 1px 0 rgba(255,255,255,.9);
}

.dl-input-icon {
    width: 42px;
    color: #94a3b8;
    text-align: center;
    font-size: 15px;
}

.dl-input {
    padding-left: 0;
    color: #0f172a;
    background: transparent;
}

.dl-toggle {
    margin-right: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #2563eb;
    background: #eff6ff;
    font-weight: 800;
}

.dl-check-row {
    color: #475569;
}

.dl-check-row input {
    accent-color: #3b82f6;
}

.dl-btn {
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    box-shadow: 0 16px 34px rgba(37, 99, 235, .30);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
}

.dl-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, .36);
}

.dl-mini-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 2px;
}

.dl-mini-tips span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 9px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

.dl-foot {
    margin-top: 20px;
    color: #64748b;
}

.dl-foot a {
    color: #2563eb;
    font-weight: 900;
}

.dl-tip {
    border-radius: 12px;
}

.dl-beian {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: min(1080px, calc(100% - 32px));
    transform: translateX(-50%);
    color: rgba(226,232,240,.62);
    font-size: 12px;
    flex-wrap: wrap;
}

.dl-beian a,
.dl-beian span {
    color: rgba(226,232,240,.72);
}

.dl-beian a:hover {
    color: #bfdbfe;
}

.dl-beian img {
    width: 15px;
    height: 15px;
    margin-right: 4px;
    vertical-align: -3px;
}

@keyframes dlOrbFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(18px, -14px, 0) scale(1.05);
    }
}

@media (max-width: 860px) {
    .dl-page {
        align-items: flex-start;
        padding: 18px 14px 92px;
        overflow-y: auto;
    }

    .dl-wrap {
        display: block;
        min-height: 0;
        border-radius: 24px;
    }

    .dl-hero {
        padding: 28px 24px 22px;
        min-height: auto;
    }

    .dl-hero-logo {
        margin-bottom: 22px;
    }

    .dl-hero-h1 {
        font-size: 31px;
    }

    .dl-hero-desc {
        margin-bottom: 18px;
    }

    .dl-hero-list {
        display: none;
    }

    .dl-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 16px;
    }

    .dl-hero-stats div {
        padding: 10px 8px;
    }

    .dl-hero-stats b {
        font-size: 16px;
    }

    .dl-box {
        width: auto;
        margin: 12px;
        padding: 26px 20px 24px;
        border-radius: 22px;
    }

    .dl-title {
        font-size: 26px;
    }

    .dl-mini-tips {
        gap: 6px;
    }

    .dl-beian {
        bottom: 16px;
        gap: 7px 12px;
        font-size: 11px;
    }
}

@media (max-width: 420px) {
    .dl-hero-stats span {
        display: none;
    }

    .dl-box {
        padding: 24px 16px 22px;
    }

    .dl-input-wrap {
        min-height: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dl-orb {
        animation: none !important;
    }
}

/* 登录/注册输入框布局修复 V3：图标、输入、显示按钮保持单行 */
.dl-box .dl-input-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    min-height: 50px;
    height: 50px;
    padding: 0 8px 0 0 !important;
    overflow: hidden;
}

.dl-box .dl-input-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 50px;
    line-height: 50px;
    margin: 0;
}

.dl-box .dl-input {
    flex: 1 1 auto;
    min-width: 0;
    height: 50px;
    line-height: 50px;
    padding: 0 10px 0 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.dl-box .dl-toggle {
    flex: 0 0 auto;
    position: static !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    min-width: 52px;
    margin: 0 !important;
    padding: 0 12px !important;
    white-space: nowrap;
    transform: none !important;
}

.dl-box .dl-form-item {
    margin-bottom: 18px;
}

@media (max-width: 420px) {
    .dl-box .dl-input-wrap {
        height: 48px;
        min-height: 48px;
    }

    .dl-box .dl-input,
    .dl-box .dl-input-icon {
        height: 48px;
        line-height: 48px;
    }

    .dl-box .dl-toggle {
        min-width: 48px;
        padding: 0 10px !important;
    }
}

/* 登录后护眼控制台主题 V1：浅暗混合、专业、少刺眼 */
:root {
    --console-bg: #edf3fb;
    --console-bg-2: #f5f8fd;
    --console-panel: rgba(248, 251, 255, .92);
    --console-panel-strong: #f8fbff;
    --console-card: #fbfdff;
    --console-line: #dce6f3;
    --console-line-soft: rgba(148, 163, 184, .22);
    --console-text: #172033;
    --console-sub: #64748b;
    --console-muted: #8a98ad;
    --console-primary: #4f7cff;
    --console-primary-2: #7c5cff;
    --console-cyan: #38bdf8;
    --console-green: #22c55e;
    --console-warn: #f59e0b;
    --console-danger: #ef4444;
    --console-shadow: 0 12px 34px rgba(20, 35, 66, .08);
    --console-shadow-soft: 0 6px 18px rgba(20, 35, 66, .06);
}

.sy-layout {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 10%, rgba(79, 124, 255, .13), transparent 28%),
        radial-gradient(circle at 88% 6%, rgba(124, 92, 255, .10), transparent 30%),
        linear-gradient(180deg, var(--console-bg-2) 0%, var(--console-bg) 100%) !important;
    color: var(--console-text);
}

.sy-layout::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(79, 124, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 124, 255, .035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.8), transparent 72%);
}

.sy-aside,
.sy-main {
    position: relative;
    z-index: 1;
}

.sy-aside {
    background:
        radial-gradient(circle at 20% 0%, rgba(56, 189, 248, .14), transparent 34%),
        linear-gradient(180deg, #0d172b 0%, #111d35 54%, #0b1324 100%) !important;
    border-right: 1px solid rgba(255,255,255,.08) !important;
    box-shadow: 12px 0 34px rgba(15, 23, 42, .12) !important;
}

.sy-logo {
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    color: #f8fafc !important;
}

.sy-logo-text {
    color: #f8fafc !important;
    text-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.sy-menu-item {
    margin: 8px 10px !important;
    border: 1px solid transparent !important;
    border-radius: 15px !important;
    color: rgba(226,232,240,.82) !important;
    background: transparent !important;
}

.sy-menu-item:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,.08) !important;
    border-color: rgba(255,255,255,.08) !important;
    transform: translateX(2px);
}

.sy-menu-item.on {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(79, 124, 255, .96), rgba(124, 92, 255, .92)) !important;
    border-color: rgba(255,255,255,.18) !important;
    box-shadow: 0 14px 28px rgba(79, 124, 255, .24), inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.sy-main {
    background: transparent !important;
}

.sy-head {
    height: 66px !important;
    border-bottom: 1px solid rgba(220, 230, 243, .9) !important;
    background: rgba(248, 251, 255, .86) !important;
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(20, 35, 66, .07) !important;
}

.sy-head-title {
    color: var(--console-text) !important;
    font-weight: 900 !important;
    letter-spacing: .2px;
}

.sy-head .back,
.menu-toggle-btn,
.tool-btn {
    background: rgba(255,255,255,.72) !important;
    border: 1px solid var(--console-line) !important;
    color: #53627a !important;
    box-shadow: var(--console-shadow-soft);
}

.sy-head .back:hover,
.menu-toggle-btn:hover,
.tool-btn:hover {
    color: var(--console-primary) !important;
    border-color: rgba(79, 124, 255, .28) !important;
    background: #ffffff !important;
}

.sy-head-user {
    border: 1px solid var(--console-line) !important;
    background: rgba(255,255,255,.82) !important;
    box-shadow: var(--console-shadow-soft) !important;
}

.sy-head-user .tx {
    background: linear-gradient(135deg, var(--console-primary), var(--console-primary-2)) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 18px rgba(79, 124, 255, .22);
}

.sy-head-user .name {
    color: var(--console-text) !important;
    font-weight: 900;
}

.sy-head-user .role,
.head-rent-time {
    color: var(--console-sub) !important;
}

.head-balance-line b {
    color: #1d4ed8 !important;
}

.head-balance-line em {
    color: #b45309 !important;
}

.sy-head-user .drop {
    color: #64748b !important;
}

.sy-head-user .drop:hover {
    color: var(--console-danger) !important;
}

.sy-body {
    padding: 24px !important;
}

.sy-entry-btn,
.sy-card,
.sy-block,
.col-gg,
.col-ad,
.xh-notice,
.available-filter,
.filter-summary,
.filter-container,
.jd-filters-container,
.xh-table-wrap,
.mobile-card,
.dd-card,
.dd-wrap,
.order-stats {
    border: 1px solid var(--console-line) !important;
    background: var(--console-panel) !important;
    box-shadow: var(--console-shadow-soft) !important;
    backdrop-filter: blur(12px);
}

.sy-entry-btn:hover,
.sy-card:hover,
.col-ad:hover,
.mobile-card:hover,
.dd-card:hover {
    border-color: rgba(79, 124, 255, .26) !important;
    box-shadow: var(--console-shadow) !important;
}

.sy-entry-btn {
    position: relative !important;
    overflow: hidden;
    color: var(--console-text) !important;
}

.sy-entry-btn::after {
    content: '';
    position: absolute;
    inset: auto -30% -45% 35%;
    height: 90px;
    background: radial-gradient(circle, rgba(79, 124, 255, .16), transparent 70%);
    pointer-events: none;
}

.sy-entry-btn i {
    color: var(--console-primary) !important;
}

.sy-entry-btn .t,
.sy-card .value,
.sy-block-title,
.col-gg-title {
    color: var(--console-text) !important;
}

.sy-entry-btn .num {
    background: linear-gradient(135deg, var(--console-primary), var(--console-primary-2)) !important;
    color: #fff !important;
}

.sy-card .label,
.sy-table .th,
.dd-row .k,
.card-rank-title {
    color: var(--console-sub) !important;
}

.sy-card .value {
    font-weight: 900 !important;
}

.sy-card .action a,
.sy-wallet-btn,
.zu-btn,
.zu-btn-ok,
.xh-op-btn,
.xh-filter-open {
    background: linear-gradient(135deg, var(--console-primary), var(--console-primary-2)) !important;
    color: #ffffff !important;
    border: 0 !important;
    box-shadow: 0 10px 22px rgba(79, 124, 255, .22) !important;
}

.sy-card .action a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 999px;
}

.sy-table,
.xh-table {
    background: transparent !important;
    color: var(--console-text) !important;
}

.sy-table td,
.xh-table td,
.xh-table th {
    border-color: var(--console-line-soft) !important;
}

.xh-table thead th {
    background: #eef4ff !important;
    color: #31415d !important;
    font-weight: 900 !important;
}

.xh-table tbody tr:hover,
.sy-table tr:hover {
    background: rgba(79, 124, 255, .045) !important;
}

.col-gg {
    background:
        linear-gradient(135deg, rgba(236, 253, 245, .96), rgba(239, 246, 255, .94)) !important;
}

.col-gg-title {
    color: #047857 !important;
}

.col-gg-body {
    color: #31504a !important;
}

.col-ad.empty {
    background: linear-gradient(135deg, #eef4ff, #f7f3ff) !important;
    color: var(--console-muted) !important;
}

.xh-notice {
    background:
        linear-gradient(135deg, rgba(236, 253, 245, .96), rgba(239, 246, 255, .94)) !important;
    color: #14532d !important;
}

.xh-notice-title {
    color: #047857 !important;
}

.xh-tab {
    border: 1px solid var(--console-line) !important;
    background: rgba(255,255,255,.72) !important;
    color: #53627a !important;
}

.xh-tab.on {
    border-color: transparent !important;
    background: linear-gradient(135deg, var(--console-primary), var(--console-primary-2)) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(79, 124, 255, .24) !important;
}

.available-filter,
.filter-summary,
.filter-container,
.jd-filters-container {
    background: rgba(248, 251, 255, .88) !important;
}

.filter-pill,
.xh-filter-mini {
    border: 1px solid var(--console-line) !important;
    background: rgba(255,255,255,.76) !important;
    color: #53627a !important;
}

.filter-pill.warn {
    background: #fff7ed !important;
    color: #9a3412 !important;
    border-color: #fed7aa !important;
}

.filter-pill.clear {
    background: #fef2f2 !important;
    color: #b91c1c !important;
    border-color: #fecaca !important;
}

.filter-select,
.filter-input,
.form-input,
.form-select,
select,
input[type="text"],
input[type="number"],
input[type="password"],
textarea {
    background-color: rgba(255,255,255,.86) !important;
    border-color: var(--console-line) !important;
    color: var(--console-text) !important;
}

.filter-select:focus,
.filter-input:focus,
.form-input:focus,
.form-select:focus,
select:focus,
input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
textarea:focus {
    border-color: rgba(79, 124, 255, .72) !important;
    box-shadow: 0 0 0 4px rgba(79, 124, 255, .12) !important;
}

.mobile-card,
.dd-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,251,255,.92)) !important;
}

.card-header,
.dd-card-head {
    border-color: var(--console-line-soft) !important;
}

.card-bh,
.dd-bh {
    color: var(--console-text) !important;
    font-weight: 900 !important;
}

.card-price,
.dd-jg {
    color: #1d4ed8 !important;
}

.card-remark,
.dd-dh,
.dd-row .v {
    color: #475569 !important;
}

.dd-zh-box {
    background: #f1f6fd !important;
    border: 1px solid var(--console-line) !important;
    border-radius: 16px !important;
}

.dd-zh-title,
.dd-rank-title {
    color: var(--console-text) !important;
    font-weight: 900 !important;
}

.dd-rank-box {
    background: linear-gradient(135deg, #eef4ff, #f7f3ff) !important;
    border: 1px solid var(--console-line) !important;
    border-radius: 16px !important;
}

.dd-rank-item {
    background: rgba(255,255,255,.76) !important;
    border: 1px solid rgba(220,230,243,.9) !important;
}

.copy-btn,
.jjl-refresh-btn,
.flash-copy-btn {
    background: #eaf1ff !important;
    color: #2557c7 !important;
    border: 1px solid rgba(79,124,255,.18) !important;
}

.copy-btn:hover,
.jjl-refresh-btn:hover,
.flash-copy-btn:hover {
    background: #dbe8ff !important;
    color: #1d4ed8 !important;
}

.xh-tag.ok {
    background: #dcfce7 !important;
    color: #15803d !important;
}

.xh-tag.no {
    background: #fee2e2 !important;
    color: #b91c1c !important;
}

.xh-tag.warn {
    background: #fef3c7 !important;
    color: #a16207 !important;
}

.rank-badge {
    box-shadow: 0 4px 12px rgba(20,35,66,.06);
}

.sy-foot {
    color: #7b889c !important;
}

.zu-mask,
.flash-mask,
.xh-filter-mask {
    background: rgba(15, 23, 42, .48) !important;
    backdrop-filter: blur(8px);
}

.zu-dialog,
.flash-dialog,
.xh-filter-panel {
    background: rgba(248, 251, 255, .96) !important;
    border: 1px solid rgba(255,255,255,.72) !important;
    box-shadow: 0 24px 80px rgba(15, 23, 42, .28) !important;
}

@media (max-width: 768px) {
    .sy-aside {
        box-shadow: 16px 0 42px rgba(15, 23, 42, .26) !important;
    }

    .sy-body {
        padding: 14px !important;
    }

    .sy-head {
        background: rgba(248,251,255,.93) !important;
    }

    .sy-head-user {
        background: rgba(255,255,255,.78) !important;
    }
}

/* 控制台布局修复 V2：侧栏固定，避免主内容二次左移产生空白条 */
.sy-layout .sy-aside {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 210px !important;
    height: 100vh !important;
    z-index: 1000 !important;
    flex: none !important;
}

.sy-layout .sy-main {
    position: relative !important;
    z-index: 1 !important;
    width: calc(100% - 210px) !important;
    min-height: 100vh !important;
    margin-left: 210px !important;
}

@media (max-width: 768px) {
    .sy-layout .sy-aside {
        width: 250px !important;
        transform: translateX(-100%);
        transition: transform .24s ease !important;
    }

    .sy-layout .sy-aside.show {
        transform: translateX(0);
    }

    .sy-layout .sy-main {
        width: 100% !important;
        margin-left: 0 !important;
    }
}

/* 浅底可读性修复 V3：筛选、开关、统计胶囊文字不再发白 */
.available-filter {
    background: rgba(248, 251, 255, .92) !important;
    color: var(--console-text) !important;
}

.available-filter-label {
    color: #334155 !important;
    font-weight: 800 !important;
}

.available-filter-label i {
    color: #22c55e !important;
}

.available-filter .counts {
    color: #475569 !important;
}

.available-count,
.total-count {
    background: #ffffff !important;
    border: 1px solid var(--console-line) !important;
    color: #64748b !important;
    box-shadow: 0 4px 12px rgba(20, 35, 66, .04);
}

.available-count strong {
    color: #15803d !important;
}

.total-count strong {
    color: #475569 !important;
}

.switch .slider {
    background-color: #cbd5e1 !important;
    box-shadow: inset 0 1px 4px rgba(15, 23, 42, .12);
}

.switch .slider:before {
    background-color: #ffffff !important;
    box-shadow: 0 3px 9px rgba(15, 23, 42, .18);
}

.switch input:checked + .slider {
    background: linear-gradient(135deg, #3181d1, #4f7cff) !important;
}

.filter-summary-title,
.filter-label,
.jd-filters-header,
.xh-filter-panel-title {
    color: #334155 !important;
    font-weight: 900 !important;
}

.filter-summary-title i,
.jd-filters-header i {
    color: #64748b !important;
}

.xh-filter-panel-sub {
    color: #64748b !important;
}

.filter-container .filter-group,
.jd-filters-container .filter-group {
    color: #334155 !important;
}

.filter-select,
.filter-input,
.xh-filter-mini,
.filter-pill {
    font-weight: 700;
}

.xh-filter-mini:hover,
.filter-pill:hover {
    opacity: 1 !important;
    border-color: rgba(79, 124, 255, .32) !important;
    color: #2557c7 !important;
    background: #f8fbff !important;
}

.filter-pill.warn:hover {
    color: #9a3412 !important;
    background: #fff7ed !important;
    border-color: #fdba74 !important;
}

.filter-pill.clear:hover {
    color: #b91c1c !important;
    background: #fef2f2 !important;
    border-color: #fca5a5 !important;
}

.xh-table-wrap,
.filter-container,
.jd-filters-container {
    color: var(--console-text) !important;
}

.xh-empty,
.xh-op-disabled {
    color: #64748b !important;
}

.sy-head .back {
    color: #64748b !important;
}

.sy-head .back:hover {
    color: #2557c7 !important;
}

@media (max-width: 768px) {
    .available-filter {
        gap: 10px !important;
    }

    .available-count,
    .total-count {
        padding: 4px 9px !important;
    }
}

/* 前台细节统一 V4：返回按钮、订单编号、下号页 */
.sy-head .back,
.menu-toggle-btn {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
}

.menu-toggle-btn {
    display: none !important;
}

@media (max-width: 900px) {
    .menu-toggle-btn {
        display: inline-flex !important;
    }
}

.sy-head .back i {
    line-height: 1 !important;
}

.dd-card-head {
    align-items: center !important;
    padding: 14px 16px !important;
    border: 1px solid var(--console-line) !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%) !important;
}

.dd-card-head-left {
    gap: 8px !important;
}

.dd-bh {
    display: inline-flex !important;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 7px 12px !important;
    border-radius: 999px !important;
    background: #eaf1ff !important;
    border: 1px solid rgba(79, 124, 255, .22) !important;
    color: #16346b !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    box-shadow: 0 5px 14px rgba(79, 124, 255, .10);
}

.dd-dh {
    color: #52627a !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.dd-jg {
    color: #1d4ed8 !important;
    font-size: 17px !important;
}

body.xh-close-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 10%, rgba(79, 124, 255, .13), transparent 28%),
        radial-gradient(circle at 88% 6%, rgba(124, 92, 255, .10), transparent 30%),
        linear-gradient(180deg, var(--console-bg-2) 0%, var(--console-bg) 100%) !important;
    color: var(--console-text);
}

body.xh-close-page::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(79, 124, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 124, 255, .035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.78), transparent 76%);
}

body.xh-close-page .xh-page {
    width: min(880px, calc(100% - 28px)) !important;
    max-width: none !important;
    margin: 34px auto !important;
    padding: 0 !important;
}

body.xh-close-page .xh-card {
    border: 1px solid var(--console-line) !important;
    border-radius: 26px !important;
    background: rgba(248, 251, 255, .94) !important;
    box-shadow: var(--console-shadow) !important;
    backdrop-filter: blur(14px);
    padding: 28px !important;
}

body.xh-close-page .xh-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: -4px 0 22px !important;
    padding: 0 0 18px !important;
    color: var(--console-text) !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    border-bottom: 1px solid var(--console-line) !important;
}

body.xh-close-page .xh-card-title i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--console-primary), var(--console-primary-2));
    box-shadow: 0 10px 22px rgba(79, 124, 255, .24);
}

body.xh-close-page .xh-info {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
}

body.xh-close-page .xh-info > div {
    padding: 13px 14px;
    border: 1px solid var(--console-line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 5px 16px rgba(20, 35, 66, .04);
}

body.xh-close-page .xh-info .k {
    display: block;
    margin-bottom: 5px;
    color: var(--console-sub) !important;
    font-size: 12px;
    font-weight: 800;
}

body.xh-close-page .xh-info .v {
    color: var(--console-text) !important;
    font-size: 14px;
    font-weight: 900 !important;
    word-break: break-all;
}

body.xh-close-page .xh-tip {
    border: 1px solid #bfdbfe !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%) !important;
    color: #1e4f86 !important;
    padding: 16px 18px !important;
}

body.xh-close-page .xh-tip b {
    color: #1d4ed8 !important;
}

body.xh-close-page .example-carousel,
body.xh-close-page .skip-switch,
body.xh-close-page .skip-reason-panel,
body.xh-close-page .preview-wrapper {
    border: 1px solid var(--console-line) !important;
    border-radius: 20px !important;
    background: rgba(255,255,255,.82) !important;
    box-shadow: var(--console-shadow-soft);
}

body.xh-close-page .example-carousel {
    padding: 16px !important;
}

body.xh-close-page .carousel-container {
    border-radius: 16px;
    background: #f1f6fd;
}

body.xh-close-page .carousel-slide img {
    border-radius: 14px !important;
}

body.xh-close-page .carousel-btn {
    background: rgba(15, 23, 42, .58) !important;
    box-shadow: 0 8px 18px rgba(15,23,42,.18);
}

body.xh-close-page .carousel-indicator.active {
    background: var(--console-primary) !important;
}

body.xh-close-page .auto-play-toggle,
body.xh-close-page .xh-example .lbl,
body.xh-close-page .paste-hint {
    color: var(--console-sub) !important;
    font-weight: 700;
}

body.xh-close-page .skip-switch {
    padding: 14px 16px !important;
}

body.xh-close-page .skip-switch label {
    color: #334155 !important;
    font-weight: 800;
}

body.xh-close-page .skip-reason-panel {
    margin: 0 0 18px !important;
    padding: 16px !important;
}

body.xh-close-page .skip-reason-title {
    color: var(--console-text) !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

body.xh-close-page .skip-reason-option {
    border: 1px solid var(--console-line) !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #334155 !important;
    font-weight: 800;
    padding: 10px 12px !important;
}

body.xh-close-page .skip-reason-option:hover {
    border-color: rgba(79,124,255,.34) !important;
    background: #f8fbff !important;
}

body.xh-close-page .skip-reason-option input,
body.xh-close-page .auto-play-toggle input {
    accent-color: var(--console-primary);
}

body.xh-close-page .skip-extra label {
    color: #475569 !important;
    font-weight: 800;
}

body.xh-close-page .skip-extra select,
body.xh-close-page .skip-extra input {
    border: 1px solid var(--console-line) !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: var(--console-text) !important;
    padding: 11px 12px !important;
}

body.xh-close-page .upload-btn,
body.xh-close-page .btn-submit {
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--console-primary), var(--console-primary-2)) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 26px rgba(79, 124, 255, .24) !important;
}

body.xh-close-page .btn-cancel {
    border: 1px solid var(--console-line) !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #475569 !important;
    font-weight: 800;
}

body.xh-close-page .btn-cancel:hover {
    color: #2557c7 !important;
    border-color: rgba(79,124,255,.32) !important;
    background: #f8fbff !important;
}

body.xh-close-page .xh-preview {
    border: 1px solid var(--console-line) !important;
    border-radius: 18px !important;
}

body.xh-close-page .modal {
    background: rgba(15, 23, 42, .86) !important;
    backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
    .sy-head .back,
    .menu-toggle-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
    }

    .dd-card-head {
        align-items: flex-start !important;
        padding: 12px !important;
    }

    body.xh-close-page .xh-page {
        width: calc(100% - 20px) !important;
        margin: 14px auto !important;
    }

    body.xh-close-page .xh-card {
        padding: 18px !important;
        border-radius: 22px !important;
    }

    body.xh-close-page .xh-info,
    body.xh-close-page .skip-reason-grid {
        grid-template-columns: 1fr !important;
    }

    body.xh-close-page .xh-btns {
        flex-direction: column;
        gap: 10px !important;
    }

    body.xh-close-page .btn-submit,
    body.xh-close-page .btn-cancel {
        width: 100%;
        text-align: center;
    }
}

/* 首页公告空白修复 V5：只让正文保留换行，容器不保留 HTML 缩进 */
.sy-top-3col .col-gg,
.col-gg {
    white-space: normal !important;
}

.sy-top-3col .col-gg-body,
.col-gg-body {
    display: block;
    margin-top: 0 !important;
    padding-top: 0 !important;
    white-space: pre-line !important;
}

.sy-top-3col .col-gg-title,
.col-gg-title {
    margin-bottom: 8px !important;
}

/* 侧栏品牌 Logo 优化 V6：头像徽标 + 深色玻璃品牌卡 */
.sy-aside .sy-logo {
    position: relative !important;
    height: auto !important;
    min-height: 78px !important;
    margin: 4px 6px 18px !important;
    padding: 12px !important;
    gap: 12px !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 22px !important;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 232, 92, .16), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035)) !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.12) !important;
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.sy-aside .sy-logo::before {
    content: '';
    position: absolute;
    inset: auto -22px -30px auto;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(79,124,255,.20), transparent 68%);
    pointer-events: none;
}

.sy-aside .sy-logo-img {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    margin: 0 !important;
    border-radius: 18px !important;
    object-fit: cover !important;
    background: #fff6be;
    box-shadow: 0 10px 22px rgba(0,0,0,.24), 0 0 0 2px rgba(255, 230, 70, .58);
}

.sy-aside .sy-logo-text {
    position: relative;
    z-index: 1;
    display: block !important;
    margin: 0 !important;
    max-height: none !important;
    color: #f8fafc !important;
    font-size: 17px !important;
    font-weight: 950 !important;
    line-height: 1.18 !important;
    letter-spacing: -.4px;
    word-break: normal !important;
    white-space: normal !important;
    text-shadow: 0 8px 22px rgba(0,0,0,.25) !important;
}

.sy-aside .sy-logo-text::after {
    content: 'OW RENTAL';
    display: block;
    width: fit-content;
    margin-top: 6px;
    padding: 2px 7px;
    border-radius: 999px;
    color: #ffe85c;
    background: rgba(255, 232, 92, .10);
    font-size: 10px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: .8px;
}

.sy-aside .sy-logo:hover {
    opacity: 1 !important;
    transform: translateY(-1px);
    border-color: rgba(255, 232, 92, .24) !important;
}

.sy-aside .sy-logo:hover .sy-logo-img {
    transform: scale(1.04) rotate(-1deg);
}

@media (max-width: 768px) {
    .sy-aside .sy-logo {
        justify-content: flex-start !important;
        min-height: 72px !important;
    }

    .sy-aside .sy-logo-img {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
    }

    .sy-aside .sy-logo-text {
        display: block !important;
        font-size: 16px !important;
    }
}

/* 侧栏 logo 排版与选号容器圆角优化 V7 */
.sy-aside .sy-logo {
    min-height: 86px !important;
    padding: 13px 12px !important;
    gap: 11px !important;
}

.sy-aside .sy-logo-img {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    border-radius: 19px !important;
}

.sy-aside .sy-logo-text {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 116px !important;
    font-size: 18px !important;
    line-height: 1.08 !important;
    letter-spacing: -.6px;
}

.sy-aside .sy-logo-text b,
.sy-aside .sy-logo-text em {
    display: block;
    font-style: normal;
}

.sy-aside .sy-logo-text b {
    color: #ffffff;
    white-space: nowrap;
}

.sy-aside .sy-logo-text em {
    margin-top: 2px;
    color: rgba(226, 232, 240, .86);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .2px;
}

.sy-aside .sy-logo-text::after {
    margin-top: 7px !important;
    padding: 3px 8px !important;
    font-size: 9px !important;
    letter-spacing: .9px !important;
    white-space: nowrap;
    max-width: 78px;
    overflow: hidden;
    text-overflow: clip;
}

.filter-container,
.jd-filters-container,
.xh-table-wrap,
.xh-table-responsive {
    border-radius: 22px !important;
    overflow: hidden !important;
}

.filter-container,
.jd-filters-container {
    padding: 14px !important;
    border: 1px solid var(--console-line) !important;
    background: rgba(248, 251, 255, .92) !important;
    box-shadow: var(--console-shadow-soft) !important;
}

.jd-filters-header {
    border-radius: 16px !important;
    background: rgba(255,255,255,.78) !important;
    border: 1px solid var(--console-line) !important;
    padding: 14px 16px !important;
}

.jd-filters {
    border-radius: 0 0 18px 18px !important;
}

.xh-table-wrap {
    border: 1px solid var(--console-line) !important;
    background: rgba(248, 251, 255, .92) !important;
    box-shadow: var(--console-shadow) !important;
    padding: 0 !important;
}

.xh-table-responsive {
    margin-bottom: 0 !important;
    border-radius: 22px !important;
    box-shadow: none !important;
}

.xh-table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
    background: #ffffff !important;
}

.xh-table thead th:first-child {
    border-top-left-radius: 20px !important;
}

.xh-table thead th:last-child {
    border-top-right-radius: 20px !important;
}

.xh-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 20px !important;
}

.xh-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 20px !important;
}

@media (max-width: 768px) {
    .sy-aside .sy-logo {
        min-height: 78px !important;
    }

    .sy-aside .sy-logo-img {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
    }

    .sy-aside .sy-logo-text {
        max-width: 126px !important;
        font-size: 17px !important;
    }

    .filter-container,
    .jd-filters-container,
    .xh-table-wrap,
    .xh-table-responsive {
        border-radius: 18px !important;
    }
}

/* Logo 文字裁切与桌面筛选直角修复 V8 */
.sy-aside .sy-logo {
    padding: 12px 10px !important;
    gap: 9px !important;
}

.sy-aside .sy-logo-img {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
}

.sy-aside .sy-logo-text {
    max-width: none !important;
    width: 118px !important;
    overflow: visible !important;
    font-size: 17px !important;
    letter-spacing: -.8px !important;
}

.sy-aside .sy-logo-text b {
    font-size: 17px !important;
    transform: scaleX(.94);
    transform-origin: left center;
}

.sy-aside .sy-logo-text em {
    font-size: 13px !important;
}

.sy-aside .sy-logo-text::after {
    max-width: none !important;
    padding: 2px 7px !important;
    font-size: 8px !important;
}

@media (min-width: 769px) {
    .xh-filter-panel {
        position: static !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }

    .xh-filter-panel-head,
    .xh-filter-close,
    .xh-filter-mask {
        display: none !important;
    }

    .filter-container,
    .jd-filters-container {
        position: relative;
        z-index: 1;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .filter-container::before,
    .jd-filters-container::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: -1;
        border-radius: inherit;
        background: rgba(248, 251, 255, .92);
        pointer-events: none;
    }
}

/* 20260613 折叠屏/触屏筛选修复：确保筛选控件可点、可滚动，并避免遮罩误挡 */
@media (pointer: coarse) {
    .filter-select {
        pointer-events: auto !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(37, 99, 235, .16);
    }

    .filter-container,
    .jd-filters-container,
    .xh-filter-panel {
        pointer-events: auto !important;
    }
}

@media (min-width: 769px) {
    .xh-filter-mask {
        pointer-events: none !important;
    }
}
/* 20260613 V2：修复移动端/折叠屏选号筛选框默认弹出、关闭无效 */
@media (max-width: 768px), (pointer: coarse) {
    .xh-filter-mask:not(.show) {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .xh-filter-mask.show {
        display: block !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .xh-filter-panel {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 9001 !important;
        width: auto !important;
        max-width: none !important;
        max-height: 86vh !important;
        height: auto !important;
        overflow-y: auto !important;
        padding: 16px !important;
        border-radius: 22px 22px 0 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translate3d(0, 105%, 0) !important;
        transition: transform .24s cubic-bezier(.22, 1, .36, 1), opacity .18s ease, visibility .18s ease !important;
    }

    .xh-filter-panel.show {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .xh-filter-panel-head {
        display: flex !important;
    }

    .xh-filter-close {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        touch-action: manipulation !important;
    }
}
/* 20260613 V3：折叠屏展开宽度下也保留筛选入口 */
@media (min-width: 769px) and (pointer: coarse) {
    .xh-filter-toolbar {
        display: flex !important;
    }

    .xh-filter-open {
        display: inline-flex !important;
    }

    .xh-filter-panel-head,
    .xh-filter-close {
        display: flex !important;
    }

    .xh-filter-mask:not(.show) {
        display: none !important;
        pointer-events: none !important;
    }

    .xh-filter-mask.show {
        display: block !important;
        pointer-events: auto !important;
    }
}
/* 20260613 V4：触屏/折叠屏专用筛选抽屉，避免桌面内嵌样式压住弹层 */
body.xh-filter-touch-mode .xh-filter-toolbar {
    display: flex !important;
}

body.xh-filter-touch-mode .xh-filter-open {
    display: inline-flex !important;
}

body.xh-filter-touch-mode .xh-filter-mask {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10000 !important;
    background: rgba(15, 23, 42, .48) !important;
    backdrop-filter: blur(8px) !important;
}

body.xh-filter-touch-mode .xh-filter-mask:not(.show),
body.xh-filter-touch-mode:not(.xh-filter-drawer-active) .xh-filter-mask {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

body.xh-filter-touch-mode .xh-filter-panel {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    z-index: 10001 !important;
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    max-height: min(86vh, 760px) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding: 16px !important;
    margin: 0 !important;
    border-radius: 22px 22px 0 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate3d(0, 105%, 0) !important;
    transition: transform .24s cubic-bezier(.22, 1, .36, 1), opacity .18s ease, visibility .18s ease !important;
}

body.xh-filter-touch-mode .xh-filter-panel.show,
body.xh-filter-touch-mode.xh-filter-drawer-active .xh-filter-panel {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) !important;
}

body.xh-filter-touch-mode .xh-filter-panel-head {
    display: flex !important;
}

body.xh-filter-touch-mode .xh-filter-close {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
}

body.xh-filter-touch-mode .xh-filter-panel .filter-container,
body.xh-filter-touch-mode .xh-filter-panel .jd-filters-container {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
}

body.xh-filter-touch-mode.xh-filter-lock {
    overflow: hidden !important;
}
/* 20260613 V5：PC宽屏强制恢复桌面筛选，避免触控笔记本误判成移动抽屉 */
@media (min-width: 1181px) {
    body.xh-filter-touch-mode .xh-filter-open,
    .xh-filter-open {
        display: none !important;
    }

    body.xh-filter-touch-mode .xh-filter-mask,
    .xh-filter-mask {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.xh-filter-touch-mode .xh-filter-panel,
    .xh-filter-panel {
        position: static !important;
        display: block !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
    }

    body.xh-filter-touch-mode .xh-filter-panel-head,
    body.xh-filter-touch-mode .xh-filter-close,
    .xh-filter-panel-head,
    .xh-filter-close {
        display: none !important;
    }

    body.xh-filter-touch-mode.xh-filter-lock {
        overflow: auto !important;
    }
}

/* 20260613 V6：筛选抽屉重复打开由JS强制内联状态接管 */


/* 20260613 V7：筛选弹层打开时由JS挂载到body，脱离父容器裁剪 */

/* 20260614：登录页将军令工具入口卡片 */
.dl-jjl-entry {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 14px 0 2px;
    padding: 13px 14px;
    border-radius: 18px;
    text-decoration: none;
    color: #eaf2ff;
    overflow: hidden;
    border: 1px solid rgba(125, 146, 255, .42);
    background:
        radial-gradient(circle at 18% 18%, rgba(34, 197, 94, .32), transparent 26%),
        linear-gradient(135deg, rgba(37, 99, 235, .95), rgba(124, 92, 255, .92));
    box-shadow: 0 16px 34px rgba(48, 83, 220, .30);
    transform: translateZ(0);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.dl-jjl-entry::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.28) 42%, transparent 64%);
    transform: translateX(-115%);
    transition: transform .65s ease;
}

.dl-jjl-entry:hover {
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .55);
    box-shadow: 0 20px 42px rgba(48, 83, 220, .38);
}

.dl-jjl-entry:hover::before {
    transform: translateX(115%);
}

.dl-jjl-icon {
    position: relative;
    z-index: 1;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #172554;
    background: rgba(255, 255, 255, .90);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 22px rgba(15,23,42,.16);
}

.dl-jjl-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
    flex: 1;
    display: grid;
    gap: 3px;
}

.dl-jjl-copy b {
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: .2px;
}

.dl-jjl-copy em {
    font-style: normal;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(239, 246, 255, .82);
}

.dl-jjl-arrow {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    font-size: 20px;
    color: rgba(255, 255, 255, .86);
}

@media (max-width: 520px) {
    .dl-jjl-entry {
        padding: 12px;
        border-radius: 16px;
    }

    .dl-jjl-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }

    .dl-jjl-copy b {
        font-size: 13px;
    }

    .dl-jjl-copy em {
        font-size: 11px;
    }
}

.dl-jjl-float {
    position: fixed;
    top: 22px;
    right: 24px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: #0f172a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 1000;
    letter-spacing: .2px;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(224,242,254,.94));
    border: 1px solid rgba(255,255,255,.78);
    box-shadow: 0 14px 34px rgba(15,23,42,.24), inset 0 1px 0 rgba(255,255,255,.88);
    backdrop-filter: blur(12px);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.dl-jjl-float i {
    color: #2563eb;
    font-size: 15px;
}

.dl-jjl-text {
    white-space: nowrap;
}

.dl-jjl-free {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    color: #ecfdf5;
    font-size: 11px;
    font-weight: 1000;
    line-height: 1;
    letter-spacing: .4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #22c55e, #06b6d4);
    border: 1px solid rgba(255, 255, 255, .58);
    box-shadow: 0 7px 16px rgba(14, 165, 145, .26), inset 0 1px 0 rgba(255, 255, 255, .42);
}

.dl-jjl-float:hover {
    color: #0f172a;
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffffff, #dbeafe);
    box-shadow: 0 18px 42px rgba(37,99,235,.28), inset 0 1px 0 rgba(255,255,255,.9);
}

@media (max-width: 520px) {
    .dl-page {
        padding-top: 64px;
    }

    .dl-jjl-float {
        top: 12px;
        right: 12px;
        min-height: 38px;
        padding: 0 10px 0 12px;
        font-size: 12px;
        gap: 6px;
    }

    .dl-jjl-free {
        min-width: 31px;
        height: 18px;
        padding: 0 7px;
        font-size: 10px;
    }
}
