/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}

body {
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 头部样式 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #0e2b46;
}

.user-info {
    display: flex;
    align-items: center;
}

.user-info span {
    margin-right: 15px;
    color: #666;
}

.logout-btn {
    background-color: #ff4d4f;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.logout-btn:hover {
    background-color: #ff7875;
    box-shadow: 0 2px 8px rgba(255, 77, 79, 0.2);
}

/* 底部导航栏样式（代练端） */
.bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px calc(8px + env(safe-area-inset-bottom, 0)) 20px;
    height: 64px;
    min-height: calc(64px + env(safe-area-inset-bottom, 0));
    background: rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
}

.bottom-nav .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #111827;
    transition: color 0.22s ease;
    padding: 6px 0;
    min-width: 0;
    flex-shrink: 0;
    position: relative;
}

.bottom-nav .bottom-nav__icon-wrap {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1);
    transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}
.bottom-nav .bottom-nav__icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    color: #f9fafb;
}

/* 钱包等页空状态：小众插画 SVG */
.empty-state-icon--illu {
    font-size: unset !important;
    line-height: 0;
    margin-bottom: 16px;
    color: inherit;
}

.empty-state-icon--illu .pr-empty-svg {
    width: 76px;
    height: 76px;
    display: block;
    margin: 0 auto;
}
.bottom-nav .bottom-nav__label {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
    line-height: 1.2;
}

.bottom-nav .nav-item:hover {
    color: #16a34a;
}

/* 彩色圆卡片：各入口不同色 */
.bottom-nav .nav-item:nth-child(1) .bottom-nav__icon-wrap {
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
}
.bottom-nav .nav-item:nth-child(2) .bottom-nav__icon-wrap {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
}
.bottom-nav .nav-item:nth-child(3) .bottom-nav__icon-wrap {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}
/* 代练端底部栏：第 3 项「我的订单」图标底透明，仅描边（与其它实心圆区分） */
body.practitioner-page .bottom-nav .nav-item:nth-child(3) .bottom-nav__icon-wrap {
    background: transparent;
    border: 2px solid rgba(168, 85, 247, 0.78);
    box-shadow: none;
}
body.practitioner-page .bottom-nav .nav-item:nth-child(3) .bottom-nav__icon {
    color: #a855f7;
}
body.practitioner-page .bottom-nav .nav-item:nth-child(3).active .bottom-nav__icon-wrap {
    background: rgba(22, 163, 74, 0.14);
    border-color: #16a34a;
    box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.2);
    transform: scale(1.18);
}
body.practitioner-page .bottom-nav .nav-item:nth-child(3).active .bottom-nav__icon {
    color: #15803d;
}
.bottom-nav .nav-item:nth-child(4) .bottom-nav__icon-wrap {
    background: linear-gradient(135deg, #f97316 0%, #facc15 100%);
}
.bottom-nav .nav-item:nth-child(5) .bottom-nav__icon-wrap {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
}
.bottom-nav .nav-item:nth-child(6) .bottom-nav__icon-wrap {
    background: linear-gradient(135deg, #6366f1 0%, #22d3ee 100%);
}

.bottom-nav__badge {
    position: absolute;
    top: -4px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.45);
    pointer-events: none;
}

.bottom-nav .nav-item.active {
    color: #16a34a;
}

.bottom-nav .nav-item.active::after {
    content: none;
}

.bottom-nav .nav-item.active .bottom-nav__icon-wrap {
    background: #16a34a;
    transform: scale(1.18);
}
.bottom-nav .nav-item.active .bottom-nav__icon {
    color: #f9fafb;
}

.bottom-nav .nav-item:active {
    opacity: 0.8;
}

/* 侧边栏样式（管理员端保留） */
.sidebar {
    position: fixed;
    width: 220px;
    height: 100%;
    background-color: #001529;
    padding-top: 80px;
    color: #fff;
    overflow-y: auto;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 2px;
}

.sidebar-menu a {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
    border-left: 3px solid transparent;
}

.sidebar-menu a:hover, .sidebar-menu a.active {
    background-color: #1890ff;
    color: #fff;
    border-left: 3px solid #fff;
}

.sidebar-menu a i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

/* 主要内容区域 */
.main-content {
    margin-left: 0;
    padding: 80px 20px 20px 20px;
    min-height: calc(100vh - 80px);
    transition: all 0.3s;
    padding-bottom: 80px;
    margin-bottom: 0;
}

/* 打手端：隐藏滚动条，但仍可滚动 */
body.practitioner-page {
    scrollbar-width: none;           /* Firefox */
}
body.practitioner-page::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;                   /* Chrome / Edge / Safari */
}

/* 管理员端主内容区域（有侧边栏时） */
.sidebar ~ .main-content {
    margin-left: 220px;
    padding-bottom: 20px;
}

.page-title {
    margin-bottom: 20px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}

/* 卡片样式 */
.card {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.card-header {
    padding: 12px 20px;
    border-bottom: 1px solid #e8e8e8;
    background-color: #fafafa;
}

.card-title {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.card-body {
    padding: 20px;
}

/* 表单样式 */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: normal;
    color: #666;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
    background-color: #fff;
}

.form-control:hover {
    border-color: #40a9ff;
}

.form-control:focus {
    border-color: #1890ff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.form-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
}

/* 输入组样式 */
.input-group {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #d9d9d9;
    border-radius: 4px 0 0 4px;
    border-right: none;
}

.input-group .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
    border-radius: 0 4px 4px 0;
    border-left: none;
}

.input-group .form-control:focus {
    border-left: 1px solid #1890ff;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s;
    
    line-height: 1.5;
}

.btn-primary {
    background-color: #1890ff;
    color: white;
    border-color: #1890ff;
}

.btn-primary:hover {
    background-color: #40a9ff;
    border-color: #40a9ff;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
}

.btn-success {
    background-color: #52c41a;
    color: white;
    border-color: #52c41a;
}

.btn-success:hover {
    background-color: #73d13d;
    border-color: #73d13d;
    box-shadow: 0 2px 8px rgba(82, 196, 26, 0.2);
}

.btn-danger {
    background-color: #ff4d4f;
    color: white;
    border-color: #ff4d4f;
}

.btn-danger:hover {
    background-color: #ff7875;
    border-color: #ff7875;
    box-shadow: 0 2px 8px rgba(255, 77, 79, 0.2);
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #666;
    border-color: #d9d9d9;
}

.btn-secondary:hover {
    background-color: #fafafa;
    border-color: #000000;
    color: #40a9ff;
}

/* 表格样式 */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid #e8e8e8;
}

.table th, .table td {
    padding: 12px 8px;
    text-align: center;
    border: 1px solid #e8e8e8;
    vertical-align: middle;
}

.table th {
    background-color: #fafafa;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
}

.table tr:nth-child(even) {
    background-color: #fafafa;
}

.table tr:hover {
    background-color: #e6f7ff;
}

/* 添加链接样式 */
.table a {
    color: #000203;
    text-decoration: none;
}

.table a:hover {
    color: #000000;
    text-decoration: underline;
}

/* 添加状态标签样式 */
.status-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 12px;
    line-height: 20px;
}

.status-success {
    background-color: #f6ffed;
    color: #52c41a;
    border: 1px solid #b7eb8f;
}

.status-pending {
    background-color: #fffbe6;
    color: #faad14;
    border: 1px solid #ffe58f;
}

.status-processing {
    background-color: #e6f7ff;
    color: #1890ff;
    border: 1px solid #91d5ff;
}

.status-failed {
    background-color: #fff1f0;
    color: #ff4d4f;
    border: 1px solid #ffa39e;
}

.status-reviewing {
    background-color: #f9f0ff;
    color: #722ed1;
    border: 1px solid #d3adf7;
}

/* 订单类型标签 */
.status-type-hall {
    background-color: #e6f7ff;
    color: #1890ff;
    border: 1px solid #91d5ff;
}

.status-type-assigned {
    background-color: #fff0f6;
    color: #c41d7f;
    border: 1px solid #ffadd2;
}

/* 金额样式 */
.amount {
    font-weight: 500;
    color: #ff4d4f;
}

.text-success {
    color: #52c41a !important;
}

.text-danger {
    color: #ff4d4f !important;
}

/* 操作按钮样式 */
.action-btn {
    padding: 4px 8px;
    font-size: 12px;
    margin: 0 2px;

    line-height: 1;
}

/* 搜索区域 */
.search-area {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8e8;
}

.search-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
}

.search-row .form-control {
    min-width: 260px;
    flex: 1;
}

.search-row .form-control-short {
    width: 200px;
}

.search-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* 统计卡片（管理员端 - 默认flex布局） */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 20px;
}

/* 代练端统计卡片（2列布局） */
.practitioner-stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 0 20px 0;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin: 0 10px 20px;
    text-align: center;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
}

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

.stat-card .stat-value {
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0;
    color: #333;
}

.stat-card .stat-title {
    font-size: 14px;
    color: #999;
}

.stat-card.primary {
    border-top: none;
}

.stat-card.success {
    border-top: none;
}

.stat-card.danger {
    border-top: none;
}

.stat-card.warning {
    border-top: none;
}

.stat-card.purple {
    border-top: none;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.pagination-info {
    color: #666;
    font-size: 14px;
}

.pagination-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.pagination-controls {
    display: flex;
    gap: 6px;
}

.pagination-controls .pagination-btn {
    color: #666;
    padding: 8px 12px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #d9d9d9;
    font-size: 14px;
    border-radius: 4px;
}

.pagination-controls .pagination-btn.active {
    background: #1890ff;
    color: #fff;
    border-color: #1890ff;
}

.pagination-controls .pagination-btn:hover:not(.active):not(.disabled) {
    border-color: #1890ff;
    color: #1890ff;
}

.pagination-controls .pagination-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.pagination-jump {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-jump-input {
    width: 50px;
    height: 36px;
    padding: 0 8px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.pagination-jump-btn {
    height: 36px;
    padding: 0 14px;
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #666;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.pagination-jump-btn:hover {
    background: #1890ff;
    border-color: #1890ff;
    color: #fff;
}

/* 卡片列表容器 */
.mobile-order-list {
    display: none;
}
.card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    margin-top: 10px;
}
.desktop-only {
    display: none;
}
.mobile-only {
    display: block;
}

/* 卡片通用样式（桌面/移动） */
.mobile-order-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 14px 16px 12px;
    margin-bottom: 8px;
    border: 1px solid #f1f1f1;
}
.mobile-order-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 10px;
}
.mobile-order-title .order-code {
    font-size: 13px;
    color: #666;
    margin-bottom: 2px;
}
.mobile-order-title .order-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}
.mobile-order-card .order-amount {
    font-size: 18px;
    font-weight: 700;
    color: #ff4d4f;
    white-space: nowrap;
}
.mobile-order-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}
.mobile-order-meta .badge,
.mobile-order-tags .badge,
.mobile-order-footer .badge {
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 12px;
    border: 1px solid transparent;
    line-height: 18px;
}
.mobile-order-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}
.mobile-order-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.mobile-order-footer .footer-left {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
    font-size: 12px;
}
.mobile-order-footer .order-time {
    display: flex;
    align-items: center;
    gap: 4px;
}
.mobile-order-footer .footer-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-wrap: wrap;
}
.mobile-order-footer .mobile-btn {
    padding: 6px 12px;
    min-width: 80px;
    text-align: center;
    border-radius: 6px;
    font-size: 12px;
    border: 1px solid #d9d9d9;
    color: #333;
    background: #f7f7f7;
}
.mobile-order-footer .mobile-btn.btn-primary {
    background: #333;
    border-color: #333;
    color: #fff;
}
.mobile-order-footer .mobile-btn.btn-primary:hover {
    background: #000;
    border-color: #000;
}
.mobile-order-footer .mobile-btn.order-accept-btn {
    padding: 10px 20px;
    min-width: 100px;
    font-size: 15px;
    font-weight: 500;
}
.mobile-order-footer .mobile-btn:hover {
    opacity: 0.85;
}
.mobile-order-footer .status-pill {
    margin-left: 4px;
}

@media (max-width: 768px) {
    .orders-table {
        display: none;
    }
    .mobile-order-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .card-list {
        grid-template-columns: 1fr;
    }
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}

.pagination a.disabled {
    color: #d9d9d9;
    pointer-events: none;
    border-color: #f5f5f5;
}

/* 提示框样式 */
.alert {
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
}

.alert-success {
    color: #52c41a;
    background-color: #f6ffed;
    border-color: #b7eb8f;
}

.alert-danger {
    color: #ff4d4f;
    background-color: #fff1f0;
    border-color: #ffa39e;
}

/* 登录页面样式 */
@keyframes loginSlideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes loginSlideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes loginFadeInUp {
    from {
        transform: translateY(24px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.login-container {
    display: flex;
    min-height: 100vh;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.login-left {
    flex: 2;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    display: grid;
    grid-template-rows: 1fr;
    align-content: stretch;
    padding: 24px 32px 20px;
    position: relative;
    overflow: hidden;
    min-width: 0;
    animation: loginSlideInLeft 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.login-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.login-logo-icon {
    width: 32px;
    height: 32px;
    background: #000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    gap: 2px;
    position: relative;
}

.login-logo-icon .fa-gamepad {
    font-size: 16px;
}

.login-logo-icon .fa-plus {
    font-size: 10px;
    position: absolute;
    top: 2px;
    right: 2px;
}

.login-title-section {
    text-align: center;
    color: #fff;
    margin: 0;
    width: 100%;
    align-self: center;
    justify-self: center;
}

.login-brand-logo-wrap {
    margin-bottom: 16px;
}

.login-brand-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    vertical-align: middle;
}

.login-title-section h1 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.login-title-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* 注册说明样式 */
.register-info-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 40px 40px 40px;
    height: 100%;
}

.register-info-content {
    max-width: 500px;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.register-info-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: left;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.register-info-text {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.register-info-text p {
    margin: 0;
    text-align: justify;
}

/* 手机端注册说明按钮 */
.register-info-toggle-mobile {
    display: none;
    padding: 8px 16px;
    background: #042747;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    margin-left: 15px;
}

.register-info-toggle-mobile:hover {
    background: #000000;
}

.register-info-toggle-mobile i {
    margin-right: 6px;
}

/* 手机端注册说明弹窗 */
.register-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.register-info-modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.register-info-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.register-info-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.register-info-modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #8c8c8c;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.register-info-modal-close:hover {
    color: #333;
}

.register-info-modal-body {
    padding: 24px;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.register-info-modal-body p {
    margin: 0;
    text-align: justify;
}

.login-right {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 50px 48px;
    overflow-y: auto;
    position: relative;
    min-width: 0;
    max-width: 100%;
    animation: loginSlideInRight 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.login-form-header {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    visibility: visible;
}

.login-form-header h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    display: block;
    visibility: visible;
    flex: 1;
}

.login-form {
    width: 100%;
}

.login-form .form-group {
    margin-bottom: 24px;
}

.login-form .form-label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.login-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.login-form .form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.login-form .form-control.is-invalid {
    border-color: #ff4d4f;
}

.login-form .password-input-wrapper {
    position: relative;
}

.login-form .password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #8c8c8c;
    font-size: 16px;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form .password-toggle:hover {
    color: #333;
}

.login-form .btn-primary {
    width: 100%;
    padding: 12px;
    background: #1e3a8a;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.login-form .btn-primary:hover {
    background: #1e40af;
}

.theme-toggle {
    display: none;
}

.login-form .text-danger {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.login-form .text-muted {
    color: #8c8c8c;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.login-form .alert {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.login-form .alert-danger {
    background: #fff1f0;
    border: 1px solid #ffccc7;
    color: #ff4d4f;
}

.login-form .alert-success {
    background: #f6ffed;
    border: 1px solid #b7eb8f;
    color: #52c41a;
}

.login-link {
    text-align: center;
    margin-top: 20px;
}

.login-link a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
}

.login-link a:hover {
    text-decoration: underline;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #8c8c8c;
    font-size: 20px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.theme-toggle:hover {
    color: #333;
}

/* 大屏幕优化 */
@media (min-width: 1920px) {
    .login-left {
        flex: 2.5;
    }
    
    .login-right {
        flex: 1.5;
        padding: 40px 70px 56px;
    }
    
    .login-form-header h2 {
        font-size: 32px;
    }
    
    .register-info-section {
        padding: 80px 60px 60px 60px;
    }
    
    .register-info-content {
        padding: 50px;
    }
    
    .register-info-content h2 {
        font-size: 32px;
    }
}

/* 中等屏幕 */
@media (max-width: 1440px) and (min-width: 1025px) {
    .login-left {
        flex: 2;
    }
    
    .login-right {
        flex: 1;
        padding: 28px 40px 44px;
    }
}

/* 平板和小屏幕 */
@media (max-width: 1024px) and (min-width: 769px) {
    .login-container {
        flex-direction: row;
    }
    
    .login-left {
        flex: 1.5;
        padding: 30px 20px;
    }
    
    .register-info-section {
        padding: 40px 20px 30px 20px;
    }
    
    .register-info-content {
        padding: 30px 25px;
    }
    
    .register-info-content h2 {
        font-size: 22px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .register-info-item {
        font-size: 14px;
        gap: 12px;
        padding: 10px;
    }
    
    .register-info-item i {
        font-size: 16px;
    }
    
    .login-title-section h1 {
        font-size: 24px;
    }
    
    .login-title-section p {
        font-size: 14px;
    }
    
    .login-right {
        flex: 1;
        padding: 28px 30px 36px;
    }
    
    .login-form-header h2 {
        font-size: 24px;
    }
}

/* 移动设备 */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        min-height: 100vh;
    }
    
    .login-left {
        display: none;
    }
    
    .register-info-section {
        display: none;
    }
    
    .login-right {
        flex: 1;
        width: 100%;
        padding: 30px 20px;
        justify-content: flex-start;
        padding-top: 40px;
        animation: loginFadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    
    .register-info-toggle-mobile {
        display: inline-block;
    }
    
    .login-form-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    
    .login-form-header h2 {
        font-size: 22px;
        margin: 0;
        flex: 1;
    }
    
    .register-info-modal-content {
        max-width: 90%;
    }
    
    .login-form .form-group {
        margin-bottom: 20px;
    }
}

/* 小屏幕手机 */
@media (max-width: 480px) {
    .login-right {
        padding: 20px 15px;
        padding-top: 30px;
    }
    
    .login-form-header {
        margin-bottom: 25px;
    }
    
    .login-form-header h2 {
        font-size: 20px;
    }
    
    .login-form .form-group {
        margin-bottom: 18px;
    }
    
    .form-label {
        font-size: 14px;
    }
    
    .form-control {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.login-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.login-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s;
}

.login-tab.active {
    color: #1890ff;
    border-bottom: 2px solid #1890ff;
}

/* 下拉菜单样式 */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8.825L1.763 4.5 2.8 3.45 6 6.75l3.2-3.3L10.237 4.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

/* 文本域样式 */
textarea.form-control {
    min-height: 80px;
    resize: vertical;
}

/* 图片样式 */
.image-preview {
    max-width: 100px;
    max-height: 100px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    margin-right: 10px;
    margin-bottom: 10px;
}

.image-large {
    max-width: 200px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
}

/* 图表容器 */
.chart-container {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e8e8e8;
    height: 400px;
}

/* 文件上传样式 */
.file-upload {
    position: relative;
    overflow: hidden;
    margin: 10px 0;
}

.file-upload input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: pointer;
    display: block;
}

.file-upload-btn {
    border: 1px solid #d9d9d9;
    color: #666;
    background-color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.file-upload-btn:hover {
    border-color: #1890ff;
    color: #1890ff;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 20px;
    list-style: none;
    background-color: transparent;
}

.breadcrumb-item {
    font-size: 14px;
    color: #666;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 8px;
    color: #ccc;
}

.breadcrumb-item a {
    color: #1890ff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #333;
}

/* 图片预览区域 */
.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-content {
        padding: 80px 15px 80px 15px;
    }
    
    .bottom-nav {
        height: 60px;
    }
    .bottom-nav .bottom-nav__icon-wrap {
        width: 30px;
        height: 30px;
    }
    
    .form-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .practitioner-stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        margin-bottom: 10px;
    }
    
    /* 管理员端侧边栏响应式 */
    .sidebar {
        width: 60px;
    }
    
    .sidebar-menu a {
        padding: 15px 10px;
        text-align: center;
    }
    
    .sidebar-menu a span {
        display: none;
    }
    
    .sidebar-menu a i {
        margin-right: 0;
    }
    
    /* 管理员端主内容区域（如果有侧边栏） */
    .sidebar ~ .main-content {
        margin-left: 60px;
    }
}

/* 订单大厅刷新按钮 */
.refresh-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #1890ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 999;
}

.refresh-btn:hover {
    background-color: #40a9ff;
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.5);
    transform: none;
}

/* 日期选择器样式 */
.date-range {
    display: flex;
    align-items: center;
}

.date-range input[type="date"] {
    padding: 6px 10px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    margin-right: 10px;
}

.date-range span {
    margin: 0 10px;
}

/* 钱包余额显示 */
.wallet-balance {
    font-size: 28px;
    font-weight: bold;
    color: #ff4d4f;
    margin: 20px 0;
    text-align: center;
}

/* 标签页样式 */
.tabs {
    display: flex;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.tab.active {
    color: #1890ff;
    border-bottom-color: #1890ff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 我的订单页 - 参考图布局与样式 */
.my-orders-page {
    padding-bottom: 24px;
}
.my-orders-page .page-title {
    margin-bottom: 16px;
}

/* 接单大厅等：压缩标题栏与滚动条、滚动条与下方内容的间距 */
body.pr-page--compact-top .pr-page-topbar {
    margin-bottom: 4px !important;
}
@media (max-width: 768px) {
    body.pr-page--compact-top .pr-page-topbar {
        margin-bottom: 2px !important;
    }
}
body.pr-page--compact-top .pr-ticker-wrap {
    margin-top: 0;
    margin-bottom: 4px;
    padding-top: 6px;
    padding-bottom: 6px;
    min-height: 34px;
}
@media (max-width: 768px) {
    body.pr-page--compact-top .pr-ticker-wrap {
        margin-bottom: 2px;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}
body.pr-page--compact-top .pr-ticker-text {
    font-size: 12.5px;
}

/* 代练端多页顶部滚动公告（后台公告管理勾选各页 ticker） */
.pr-ticker-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 -20px 12px -20px;
    padding: 9px 14px;
    background: #f0f2f5;
    border-bottom: 1px solid #e8e8e8;
    min-height: 40px;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .pr-ticker-wrap {
        margin-left: -15px;
        margin-right: -15px;
    }
}
.pr-ticker-ico {
    flex-shrink: 0;
    color: #07c160;
    font-size: 18px;
    line-height: 1;
}
.pr-ticker-window {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.pr-ticker-track {
    display: inline-flex;
    width: max-content;
    animation: prTickerMarquee var(--pr-ticker-sec, 36s) linear infinite;
}
.pr-ticker-text {
    display: inline-block;
    white-space: nowrap;
    padding-right: 3rem;
    font-size: 13px;
    color: #333;
    line-height: 1.45;
}
@keyframes prTickerMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media (prefers-reduced-motion: reduce) {
    .pr-ticker-track {
        animation: none;
    }
    .pr-ticker-text:last-child {
        display: none;
    }
    .pr-ticker-window {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* 登录后公告弹窗 */
.pr-login-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: rgba(0, 0, 0, 0.45);
    box-sizing: border-box;
}
.pr-login-popup-dialog {
    width: 100%;
    max-width: 400px;
    max-height: min(78vh, 560px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}
.pr-login-popup-head {
    padding: 14px 16px 8px;
    flex-shrink: 0;
}
.pr-login-popup-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0e2b46;
    text-align: center;
}
.pr-login-popup-body {
    padding: 4px 16px 12px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}
.pr-login-popup-block {
    margin-top: 12px;
}
.pr-login-popup-block:first-child {
    margin-top: 0;
}
.pr-login-popup-block__t {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}
.pr-login-popup-block__c {
    font-size: 14px;
    line-height: 1.55;
    color: #555;
    word-break: break-word;
}
.pr-login-popup-foot {
    padding: 12px 16px 16px;
    flex-shrink: 0;
    border-top: 1px solid #f0f0f0;
}
.pr-login-popup-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #156b38;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.pr-login-popup-btn:active {
    opacity: 0.92;
}

/* 顶部标签：下划线样式，等分 */
.my-orders-nav {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 16px;
    -webkit-tap-highlight-color: transparent;
}
.my-orders-nav-item {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    font-size: 14px;
    color: #8c8c8c;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
}
.my-orders-nav-item.active {
    color: #333;
    font-weight: 500;
    border-bottom-color: #1890ff;
}

/* 订单卡片列表 */
.my-orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.my-orders-card {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(228, 9, 9, 0.06);
    border: 1px solid #f0f0f0;
}

/* 卡片顶部：订单类型 + 标题（左），订单状态 + 拍单价（右） */
.my-orders-card {
    cursor: pointer;
}
.my-orders-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.my-orders-card-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.my-orders-card-type {
    display: inline-block;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}
.my-orders-card-type-hall {
    background: #e6f7ff;
    color: #1890ff;
    border: 1px solid #91d5ff;
}
.my-orders-card-type-assigned {
    background: #fff0f6;
    color: #c41d7f;
    border: 1px solid #ffadd2;
}
.my-orders-card-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}
.my-orders-card-price {
    font-size: 16px;
    font-weight: 600;
    color: #ff6b35;
}

.my-orders-meta-label {
    color: #8c8c8c;
    font-size: 13px;
}
.my-orders-meta-value {
    color: #333;
    font-size: 13px;
}

/* 卡片描述 */
.my-orders-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* 订单状态行：左侧订单时间，右侧订单状态 */
.my-orders-card-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}
.my-orders-card-time {
    font-size: 13px;
    color: #8c8c8c;
}
.my-orders-card-time i {
    margin-right: 4px;
}
.my-orders-card-status-row .my-orders-card-status {
    display: inline-block;
    font-size: 13px;
    padding: 2px 8px;
    background: #e6f7ff;
    color: #1890ff;
    border: 1px solid #91d5ff;
    border-radius: 4px;
}
.my-orders-card-status-row .my-orders-card-status.my-orders-card-status-rejected {
    background: #fff2e8;
    color: #d4380d;
    border-color: #ffbb96;
}

/* 提交审核单独按钮时占满宽 */
.my-orders-card-actions .my-orders-btn-submit {
    width: 100%;
}

/* 卡片底部：双按钮 */
.my-orders-card-actions {
    display: flex;
    gap: 10px;
}
.my-orders-btn {
    flex: 1;
    display: block;
    text-align: center;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    min-height: 44px;
    line-height: 1.3;
    box-sizing: border-box;
}
.my-orders-btn-outline {
    background: #fff;
    color: #666;
    border: 1px solid #d9d9d9;
}
.my-orders-btn-outline:hover {
    border-color: #1890ff;
    color: #1890ff;
}
.my-orders-btn-primary {
    background: #000000;
    color: #fff;
    border: none;
    font-weight: 500;
}
.my-orders-btn-primary:hover {
    background: #000;
    color: #fff;
}

/* 空状态 */
.my-orders-empty {
    text-align: center;
    padding: 48px 20px;
    color: #8c8c8c;
}
.my-orders-empty i {
    font-size: 48px;
    color: #d9d9d9;
    margin-bottom: 12px;
}
.my-orders-empty p {
    font-size: 14px;
}

/* 分页 */
.my-orders-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.my-orders-pagination .pagination { margin: 0; }

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #1890ff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 代练端刷新图标样式 */
body.practitioner-page .btn-refresh-icon {
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    box-shadow: 0 2px 10px rgba(79, 195, 247, 0.3);
}

body.practitioner-page .btn-refresh-icon:hover {
    background: linear-gradient(135deg, #29b6f6 0%, #03a9f4 100%);
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.5);
}

body.practitioner-page .refresh-btn {
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.4);
}

body.practitioner-page .refresh-btn:hover {
    background: linear-gradient(135deg, #29b6f6 0%, #03a9f4 100%);
    box-shadow: 0 6px 16px rgba(79, 195, 247, 0.6);
    transform: none;
}

/* 薄荷主题：刷新 FAB 与浅色渐变/磨砂卡统一（替代亮蓝圆钮） */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .refresh-btn {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(120, 175, 140, 0.5) !important;
    color: #1a5c38 !important;
    box-shadow: 0 10px 28px rgba(35, 75, 55, 0.14), 0 2px 10px rgba(35, 75, 55, 0.08) !important;
    text-decoration: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .refresh-btn:hover {
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(90, 155, 115, 0.55) !important;
    color: #134a2d !important;
    box-shadow: 0 12px 32px rgba(35, 75, 55, 0.18) !important;
    transform: translateY(-1px);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .refresh-btn i {
    color: inherit !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .btn-refresh-icon {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(120, 175, 140, 0.45) !important;
    color: #1a5c38 !important;
    box-shadow: 0 8px 22px rgba(35, 75, 55, 0.12) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .btn-refresh-icon:hover {
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(90, 155, 115, 0.5) !important;
    color: #134a2d !important;
    box-shadow: 0 10px 26px rgba(35, 75, 55, 0.16) !important;
}

/* 代练端标签切换器 - 卡片形式 */
body.practitioner-page .tab-switcher {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
    display: flex !important;
    gap: 16px !important;
    box-shadow: none !important;
}

body.practitioner-page .tab-switcher .tab-item {
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%) !important;
    border: 1px solid rgba(79, 195, 247, 0.4) !important;
    color: #b0bec5 !important;
    padding: 18px 28px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    flex: 1 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    min-height: 70px !important;
    cursor: pointer !important;
}

body.practitioner-page .tab-switcher .tab-item i {
    font-size: 18px !important;
}

body.practitioner-page .tab-switcher .tab-item.active {
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%) !important;
    border-color: #4fc3f7 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 25px rgba(79, 195, 247, 0.5) !important;
    transform: translateY(-2px) !important;
}

body.practitioner-page .tab-switcher .tab-item:hover {
    border-color: #4fc3f7 !important;
    color: #4fc3f7 !important;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.2) 0%, rgba(79, 195, 247, 0.1) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.3) !important;
}

body.practitioner-page .tab-switcher .tab-item.active:hover {
    background: linear-gradient(135deg, #29b6f6 0%, #03a9f4 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* 代练端隐藏顶部栏 */
body.practitioner-page .header {
    display: none !important;
}

body.practitioner-page .main-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* 透明弹出提示样式 */
.toast-message {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: toastSlideIn 0.3s ease;
}

.toast-success {
    background: rgba(102, 187, 106, 0.9);
    color: #ffffff;
    border: 1px solid rgba(102, 187, 106, 0.5);
}

.toast-error {
    background: rgba(239, 83, 80, 0.9);
    color: #ffffff;
    border: 1px solid rgba(239, 83, 80, 0.5);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* 透明弹窗提醒（不阻挡操作，2秒自动关闭） */
.toast-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.toast-overlay-nonblock .toast-popup {
    pointer-events: auto;
}
.toast-popup {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 20px 28px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    max-width: 90%;
    min-width: 280px;
    text-align: center;
}
.toast-popup-text {
    margin: 0;
    font-size: 14px;
    color: #1e3a5f;
    line-height: 1.5;
}
.toast-popup-error .toast-popup-text {
    color: #c62828;
}
.toast-popup-error {
    background: rgba(255, 240, 240, 0.95);
    border: 1px solid rgba(255, 170, 170, 0.55);
}

/* 打手端：提交审核成功弹窗（异形磨砂卡，与 pr-theme-unified 表单卡一致） */
.pr-submit-success-landing {
    min-height: 50vh;
    position: relative;
}
.pr-submit-success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(22, 48, 32, 0.42);
    z-index: 2400;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-submit-success-overlay {
    background: rgba(35, 65, 45, 0.38);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.pr-submit-success-modal {
    position: fixed;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    width: min(340px, calc(100vw - 48px));
    padding: 52px 22px 26px;
    border-radius: 14px 40px 32px 26px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    box-shadow:
        0 18px 48px rgba(35, 65, 45, 0.14),
        0 4px 16px rgba(35, 55, 40, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    z-index: 2401;
    text-align: center;
    box-sizing: border-box;
    overflow: visible;
}
.pr-submit-success-modal__mascot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -46%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(160deg, #9fe86a 0%, #6bc94a 55%, #4caf50 100%);
    border: 4px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 28px rgba(60, 140, 70, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pr-submit-success-modal__mascot-inner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #2d9d3e;
    line-height: 1;
}
.pr-submit-success-modal__title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 800;
    color: #141a15;
}
.pr-submit-success-modal__desc {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.55;
    color: #5c6d62;
}
.pr-submit-success-modal__btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
}
.pr-submit-success-modal__btn:last-child {
    margin-bottom: 0;
}
.pr-submit-success-modal__btn--primary,
.pr-submit-success-modal__btn--dark {
    background: linear-gradient(180deg, #daf6b8 0%, #b8e994 48%, #a5dc82 100%);
    color: #141a15;
    border: 1px solid rgba(90, 170, 70, 0.35);
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
    box-shadow: 0 2px 10px rgba(55, 120, 60, 0.12);
}
.pr-submit-success-modal__btn--primary:active,
.pr-submit-success-modal__btn--dark:active {
    transform: translateY(1px);
    box-shadow: 0 1px 6px rgba(55, 120, 60, 0.1);
}

/* 打手端 / 玻璃登录页：深色居中信息提示（勾号 + 半透明黑底） */
body.practitioner-page .toast-overlay,
body.auth-splash.auth-splash--glass .toast-overlay {
    z-index: 3000;
    background: transparent;
}
body.practitioner-page .toast-overlay .toast-popup,
body.auth-splash.auth-splash--glass .toast-overlay .toast-popup {
    min-width: 148px;
    max-width: min(78vw, 220px);
    padding: 22px 20px 18px;
    border-radius: 12px;
    border: none;
    background: rgba(48, 48, 48, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
body.practitioner-page .toast-overlay .toast-popup::before,
body.auth-splash.auth-splash--glass .toast-overlay .toast-popup::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 36px;
    line-height: 1;
    color: #fff;
}
body.practitioner-page .toast-overlay .toast-popup-error,
body.auth-splash.auth-splash--glass .toast-overlay .toast-popup-error {
    background: rgba(48, 48, 48, 0.9);
    border: none;
}
body.practitioner-page .toast-overlay .toast-popup-error::before,
body.auth-splash.auth-splash--glass .toast-overlay .toast-popup-error::before {
    content: "\f06a";
}
body.practitioner-page .toast-overlay .toast-popup-text,
body.practitioner-page .toast-overlay .toast-popup-error .toast-popup-text,
body.auth-splash.auth-splash--glass .toast-overlay .toast-popup-text,
body.auth-splash.auth-splash--glass .toast-overlay .toast-popup-error .toast-popup-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

/* 订单详情页 */
.order-detail-page {
    padding-bottom: 130px; /* 底部操作栏 + 底部导航高度 */
}
.order-detail-back {
    margin-bottom: 12px;
}
.order-detail-back .back-link {
    color: #1890ff;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.order-detail-back .back-link:hover {
    color: #40a9ff;
}
.order-detail-page .page-title {
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 600;
}

/* 订单详情单卡片 */
.order-detail-card-single {
    margin-bottom: 16px;
}
.order-detail-card-head {
    padding-bottom: 12px;
}
.order-detail-card-title-main {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
}
.order-detail-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}
.order-detail-card-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 0 0 14px 0;
}

/* 订单详情卡片 */
.order-detail-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}
.order-detail-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

/* 信息列表（左标签右值） */
.order-detail-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.order-detail-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}
.order-detail-info-row.order-detail-info-row-block {
    flex-direction: column;
    align-items: stretch;
}
.order-detail-info-label {
    color: #8c8c8c;
    flex-shrink: 0;
    min-width: 80px;
}
.order-detail-info-value {
    color: #333;
    text-align: right;
    word-break: break-all;
}
.order-detail-info-value.order-detail-price {
    color: #ff4d4f;
    font-weight: 600;
}
.order-detail-info-value.order-detail-desc {
    text-align: left;
    white-space: pre-wrap;
}
.order-detail-info-value-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}
.order-detail-copy-btn {
    flex-shrink: 0;
    padding: 4px 10px;
    font-size: 12px;
    color: #1890ff;
    background: transparent;
    border: 1px solid #1890ff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}
.order-detail-copy-btn:hover {
    background: #e6f7ff;
}
.order-detail-info-row-copy .order-detail-info-value {
    flex: 1;
    min-width: 0;
    text-align: right;
}
.order-detail-info-row-copy .order-detail-info-value-wrap {
    flex: 1;
    min-width: 0;
    justify-content: flex-end;
}
.order-detail-card-actions {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

/* 底部操作栏（位于底部导航之上） */
.order-detail-actions {
    position: fixed;
    bottom: 60px; /* 底部导航高度 */
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0));
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: 12px;
}
.order-detail-actions-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 400px;
}
.order-detail-btn-accept {
    flex: 1;
    padding: 14px 24px;
    font-size: 18px;
    min-height: 52px;
    font-weight: 500;
}
.order-detail-btn-back {
    padding: 12px 20px;
    font-size: 14px;
    min-height: 44px;
}
@media (max-width: 480px) {
    .order-detail-summary-value {
        font-size: 20px;
    }
    .order-detail-actions {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* 提交审核页 */
.submit-review-page {
    padding-bottom: 24px;
}
.submit-review-page .page-title {
    margin-bottom: 16px;
}
.submit-review-form-card {
    margin-top: 16px;
}
.submit-review-form .submit-review-field {
    margin-bottom: 20px;
}
.submit-review-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}
.submit-review-textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    font-size: 14px;
    resize: vertical;
    transition: border-color 0.2s;
}
.submit-review-textarea:focus {
    border-color: #1890ff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.15);
}
.submit-review-textarea.is-invalid {
    border-color: #ff4d4f;
}
.submit-review-upload-wrap {
    position: relative;
}
.submit-review-file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}
.submit-review-upload-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 20px;
    border: 2px dashed #d9d9d9;
    border-radius: 10px;
    background: #fafafa;
    color: #8c8c8c;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.submit-review-upload-btn:hover {
    border-color: #1890ff;
    background: #e6f7ff;
    color: #1890ff;
}
.submit-review-upload-btn i {
    font-size: 28px;
    margin-bottom: 8px;
    color: #bfbfbf;
}
.submit-review-upload-btn:hover i {
    color: #1890ff;
}
.submit-review-upload-btn small {
    font-size: 12px;
    margin-top: 4px;
    color: #bfbfbf;
}
.submit-review-upload-btn:hover small {
    color: #1890ff;
}
.submit-review-preview {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}
.submit-review-preview-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    background: #fafafa;
}
.submit-review-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.submit-review-preview-tip {
    width: 100%;
    margin: 4px 0 0;
    font-size: 13px;
    color: #8c8c8c;
}

/* 打手端：统一图片上传（方框 + 相机 + 点击上传，与资料页收款码一致） */
.practitioner-page .qrcode-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.practitioner-page .qrcode-item {
    flex: 1;
    min-width: 200px;
}
.practitioner-page .qrcode-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    display: block;
}
.practitioner-page .qrcode-upload-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.practitioner-page .qrcode-preview-label {
    cursor: pointer;
    display: inline-block;
}
.practitioner-page .qrcode-preview {
    width: 150px;
    height: 150px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
    box-sizing: border-box;
}
.practitioner-page .qrcode-preview--avatar {
    width: 96px;
    height: 96px;
    border-radius: 10px;
}
.practitioner-page .qrcode-preview:hover {
    border-color: #1e3a5f;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.2);
}
.practitioner-page .qrcode-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.practitioner-page .qrcode-preview--avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.practitioner-page .qrcode-placeholder {
    flex-direction: column;
    gap: 8px;
    color: #999;
}
.practitioner-page .qrcode-placeholder i {
    font-size: 32px;
}
.practitioner-page .qrcode-placeholder span {
    font-size: 12px;
}
.practitioner-page .qrcode-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

@media (max-width: 768px) {
    .practitioner-page .profile-edit-main-content {
        padding: 15px;
    }
    .practitioner-page .profile-edit-section {
        padding: 20px;
    }
    .practitioner-page .qrcode-row {
        flex-direction: row;
        gap: 15px;
    }
    .practitioner-page .qrcode-item {
        flex: 1;
        min-width: 0;
    }
    .practitioner-page .qrcode-preview {
        width: 100%;
        max-width: 120px;
        height: 120px;
    }
    .practitioner-page .qrcode-preview--avatar {
        width: 96px;
        height: 96px;
        max-width: 96px;
    }
    .practitioner-page .profile-edit-form .form-text {
        font-size: 11px;
    }
}

.submit-review-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}
.submit-review-submit-btn {
    flex: 1;
    padding: 14px 24px;
    font-size: 16px;
    min-height: 48px;
    font-weight: 500;
}
.submit-review-cancel-btn {
    padding: 14px 20px;
    min-height: 48px;
}
.mt-1 { margin-top: 4px; }

/* ========== 打手端主色：深绿色 ========== */
.practitioner-page .btn-primary {
    background-color: #156b38;
    border-color: #156b38;
}
.practitioner-page .btn-primary:hover {
    background-color: #1a7d44;
    border-color: #1a7d44;
    box-shadow: 0 2px 8px rgba(21, 107, 56, 0.25);
}
.practitioner-page .bottom-nav .nav-item.active {
    color: #156b38;
}
.practitioner-page .bottom-nav .nav-item.active::after {
    background: #156b38;
}
.practitioner-page .bottom-nav .nav-item:hover {
    color: #1a7d44;
}
.practitioner-page .form-control:focus {
    border-color: #156b38;
}
.practitioner-page .input-group .form-control:focus {
    border-left-color: #156b38;
}
.practitioner-page .form-control:hover {
    border-color: #1a7d44;
}
.practitioner-page .pagination-controls .pagination-btn.active {
    background: #156b38;
    border-color: #156b38;
}
.practitioner-page .pagination-controls .pagination-btn:hover:not(.active):not(.disabled) {
    border-color: #156b38;
    color: #156b38;
}
.practitioner-page .pagination-jump-btn:hover {
    background: #156b38;
    border-color: #156b38;
}
.practitioner-page .login-tab.active {
    color: #156b38;
    border-bottom-color: #156b38;
}
.practitioner-page .file-upload-btn:hover {
    border-color: #156b38;
    color: #156b38;
}
.practitioner-page .my-orders-btn-outline:hover {
    border-color: #156b38;
    color: #156b38;
}
.practitioner-page .loading {
    border-top-color: #156b38;
}
.practitioner-page .order-detail-back .back-link {
    color: #156b38;
}
.practitioner-page .order-detail-back .back-link:hover {
    color: #1a7d44;
}
.practitioner-page .order-detail-btn-accept,
.practitioner-page .order-detail-actions-form .btn-primary {
    background-color: #156b38;
    border-color: #156b38;
}
.practitioner-page .order-detail-btn-accept:hover,
.practitioner-page .order-detail-actions-form .btn-primary:hover {
    background-color: #1a7d44;
    border-color: #1a7d44;
}
.practitioner-page .submit-review-textarea:focus {
    border-color: #156b38;
}
.practitioner-page .submit-review-upload-btn:hover {
    border-color: #156b38;
    background: #e8f5e9;
    color: #156b38;
}
.practitioner-page .submit-review-upload-btn:hover i,
.practitioner-page .submit-review-upload-btn:hover small {
    color: #156b38;
}
.practitioner-page .submit-review-submit-btn {
    background-color: #156b38;
    border-color: #156b38;
}
.practitioner-page .submit-review-submit-btn:hover {
    background-color: #1a7d44;
    border-color: #1a7d44;
}
.practitioner-page .wallet-modal-actions .btn-primary {
    background-color: #156b38;
    border-color: #156b38;
}
.practitioner-page .wallet-modal-actions .btn-primary:hover {
    background-color: #1a7d44;
    border-color: #1a7d44;
}
.practitioner-page .mobile-order-footer .mobile-btn.btn-primary {
    background: #156b38;
    border-color: #156b38;
}
.practitioner-page .mobile-order-footer .mobile-btn.btn-primary:hover {
    background: #1a7d44;
    border-color: #1a7d44;
}
.practitioner-page .filter-reset-btn {
    color: #156b38;
}
.practitioner-page .filter-reset-btn:hover {
    color: #156b38;
    background-color: #e8f5e9;
}
.practitioner-page .tab.active {
    color: #156b38;
    border-bottom-color: #156b38;
}
.practitioner-page .refresh-btn {
    background-color: #156b38;
    border-color: #156b38;
}
.practitioner-page .refresh-btn:hover {
    background-color: #1a7d44;
    border-color: #1a7d44;
    transform: none;
}
.practitioner-page .breadcrumb-item a {
    color: #156b38;
}
.practitioner-page .status-pill.status-type-hall,
.practitioner-page .status-pill.status-type-assigned {
    color: #156b38;
    border-color: #156b38;
}
.practitioner-page .order-accept-btn.btn-primary {
    background: #156b38;
    border-color: #156b38;
}
.practitioner-page .order-accept-btn.btn-primary:hover {
    background: #1a7d44;
    border-color: #1a7d44;
}
.practitioner-page .my-orders-btn-primary {
    background: #156b38;
    border: none;
}
.practitioner-page .my-orders-btn-primary:hover {
    background: #1a7d44;
}

/* 打手端字体与按钮形态（按需求：更换字体、按钮无圆角） */
body.practitioner-page,
body.practitioner-page * {
    font-family: "SimHei", "Microsoft YaHei", Arial, sans-serif;
}
.practitioner-page .fa,
.practitioner-page .fas,
.practitioner-page .far,
.practitioner-page .fal,
.practitioner-page .fab {
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands" !important;
}
.practitioner-page .fa,
.practitioner-page .fas {
    font-weight: 900 !important;
}
.practitioner-page .far,
.practitioner-page .fab {
    font-weight: 400 !important;
}
.practitioner-page .btn,
.practitioner-page button,
.practitioner-page input[type="submit"],
.practitioner-page .my-orders-btn,
.practitioner-page .wallet-withdraw-btn,
.practitioner-page .submit-review-submit-btn,
.practitioner-page .submit-review-cancel-btn,
.practitioner-page .wallet-reapply-btn {
    border-radius: 0 !important;
}

/* 提交成功弹窗：<a> 与 <button> 需同为胶囊角（否则 button 会被上一段全局规则压成直角） */
.practitioner-page .pr-submit-success-modal .pr-submit-success-modal__btn {
    border-radius: 999px !important;
}

/* 登录/注册玻璃页：胶囊按钮需覆盖全局 button 直角规则 */
body.auth-splash.auth-splash--glass.practitioner-page .auth-glass-submit,
body.auth-splash.auth-splash--glass.practitioner-page .auth-glass-invite-btn {
    border-radius: 999px !important;
}

/* 提现详情页「重新申请提现」按钮 */
.practitioner-page .wallet-detail-card .wallet-reapply-btn,
.practitioner-page .order-detail-card .wallet-reapply-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    background-color: #156b38;
    border: 1px solid #156b38;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    margin-top: 8px;
    box-sizing: border-box;
}
.practitioner-page .wallet-detail-card .wallet-reapply-btn:hover,
.practitioner-page .order-detail-card .wallet-reapply-btn:hover {
    background-color: #1a7d44;
    border-color: #1a7d44;
    color: #fff;
}

/* 提交加载状态（打手端及通用） */
button.is-loading,
input[type=submit].is-loading,
.btn.is-loading {
    pointer-events: none;
    opacity: 0.85;
}
.btn-loading-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    vertical-align: middle;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.7s linear infinite;
}
@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

/* 打手端 UI 升级：深蓝(#1f2d3d) + 绿色主题 */
body.practitioner-page {
    --pr-primary: #1f2d3d;
    --pr-accent: #156b38;
    --pr-accent-hover: #1a7d44;
    --pr-soft-accent: rgba(21, 107, 56, 0.1);
    --pr-soft-primary: rgba(31, 45, 61, 0.08);
}

/* 页面入场过渡：短时轻微淡入，避免从全透明+位移造成「卡住再出来」感 */
body.practitioner-page .main-content {
    animation: pr-page-fade-in 0.12s ease-out;
}
@keyframes pr-page-fade-in {
    from {
        opacity: 0.92;
    }
    to {
        opacity: 1;
    }
}
@media (prefers-reduced-motion: reduce) {
    body.practitioner-page .main-content,
    body.practitioner-page .order-detail-actions {
        animation: none;
    }
}

/* 卡片与链接轻微动效 */
body.practitioner-page .card,
body.practitioner-page .mobile-order-card,
body.practitioner-page .my-orders-card,
body.practitioner-page .wallet-detail-card,
body.practitioner-page .profile-stat-card {
    border-color: var(--pr-soft-primary);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
body.practitioner-page .card:hover,
body.practitioner-page .mobile-order-card:hover,
body.practitioner-page .my-orders-card:hover,
body.practitioner-page .wallet-detail-card:hover,
body.practitioner-page .profile-stat-card:hover {
    border-color: var(--pr-soft-accent);
    box-shadow: 0 4px 14px rgba(31, 45, 61, 0.12);
    transform: translateY(-1px);
}

/* 统一按钮和标签交互动效 */
body.practitioner-page .btn,
body.practitioner-page .my-orders-btn,
body.practitioner-page .wallet-tab,
body.practitioner-page .tab,
body.practitioner-page .bottom-nav .nav-item {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

/* 主色与强调色统一 */
body.practitioner-page .pr-page-topbar-title,
body.practitioner-page .page-title,
body.practitioner-page .card-title,
body.practitioner-page .section-title,
body.practitioner-page .order-name {
    color: var(--pr-primary);
}
body.practitioner-page .btn-success,
body.practitioner-page .btn-primary,
body.practitioner-page .my-orders-btn-primary,
body.practitioner-page .order-accept-btn.btn-primary,
body.practitioner-page .wallet-withdraw-btn,
body.practitioner-page .submit-review-submit-btn {
    background-color: var(--pr-accent);
    border-color: var(--pr-accent);
}
body.practitioner-page .btn-success:hover,
body.practitioner-page .btn-primary:hover,
body.practitioner-page .my-orders-btn-primary:hover,
body.practitioner-page .order-accept-btn.btn-primary:hover,
body.practitioner-page .wallet-withdraw-btn:hover,
body.practitioner-page .submit-review-submit-btn:hover {
    background-color: var(--pr-accent-hover);
    border-color: var(--pr-accent-hover);
}
body.practitioner-page .tab.active,
body.practitioner-page .wallet-tab.active,
body.practitioner-page .bottom-nav .nav-item.active {
    color: var(--pr-accent);
}

/* 订单详情（打手端）内容样式优化 */
body.practitioner-page .order-detail-page .order-detail-card {
    border: 1px solid var(--pr-soft-primary);
}

/* 订单详情：圆形状态水印（随订单状态变色，不挡操作） */
body.practitioner-page .order-detail-page .order-detail-card-single {
    position: relative;
    overflow: hidden;
}
body.practitioner-page .order-detail-page .order-detail-watermark {
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%) rotate(-13deg);
    z-index: 4;
    pointer-events: none;
    width: min(228px, 58vw);
    height: min(228px, 58vw);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.52;
    color: rgba(100, 116, 139, 0.65);
}
body.practitioner-page .order-detail-page .order-detail-watermark__ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}
body.practitioner-page .order-detail-page .order-detail-watermark__text {
    display: block;
    max-width: 90%;
    text-align: center;
    font-weight: 900;
    font-size: clamp(15px, 5.2vw, 26px);
    line-height: 1.3;
    letter-spacing: 0.08em;
    color: inherit;
    word-break: keep-all;
    text-shadow: 0 0.5px 0 currentColor, 0 1px 0 rgba(0, 0, 0, 0.04);
}
body.practitioner-page .order-detail-page .order-detail-watermark--completed {
    color: rgba(21, 163, 74, 0.62);
    opacity: 0.48;
}
body.practitioner-page .order-detail-page .order-detail-watermark--rejected {
    color: rgba(220, 38, 38, 0.58);
    opacity: 0.5;
}
body.practitioner-page .order-detail-page .order-detail-watermark--reviewing {
    color: rgba(37, 99, 235, 0.55);
    opacity: 0.48;
}
body.practitioner-page .order-detail-page .order-detail-watermark--progress {
    color: rgba(14, 165, 233, 0.58);
    opacity: 0.46;
}
body.practitioner-page .order-detail-page .order-detail-watermark--pending {
    color: rgba(217, 119, 6, 0.58);
    opacity: 0.48;
}
body.practitioner-page .order-detail-page .order-detail-watermark--cancelled {
    color: rgba(71, 85, 105, 0.55);
    opacity: 0.44;
}
body.practitioner-page .order-detail-page .order-detail-watermark--default {
    color: rgba(100, 116, 139, 0.55);
    opacity: 0.42;
}

body.practitioner-page .order-detail-page .order-detail-card-single .order-detail-info-list {
    padding: 6px 0;
}
body.practitioner-page .order-detail-page .order-detail-info-row {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(31, 45, 61, 0.08);
}
body.practitioner-page .order-detail-page .order-detail-info-row:last-child {
    border-bottom: none;
}
body.practitioner-page .order-detail-page .order-detail-info-label {
    color: rgba(31, 45, 61, 0.72);
    font-size: 13px;
    white-space: nowrap;
}
body.practitioner-page .order-detail-page .order-detail-info-value,
body.practitioner-page .order-detail-page .order-detail-desc {
    color: var(--pr-primary);
    font-size: 14px;
    line-height: 1.45;
    word-break: break-word;
}

/* 订单标题：完整展示、无横向滚动条（自动换行） */
body.practitioner-page .order-detail-page .order-detail-info-row--title {
    align-items: flex-start;
}
body.practitioner-page .order-detail-page .order-detail-info-value--title {
    display: block;
    min-width: 0;
    white-space: normal;
    overflow: visible;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: right;
    line-height: 1.55;
}

/* 类型标签更“UI化” */
body.practitioner-page .order-detail-page .status-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(21, 107, 56, 0.35);
    background: rgba(21, 107, 56, 0.08);
    color: var(--pr-accent);
    font-size: 12px;
    line-height: 1;
}

/* 价格突出但不刺眼 */
body.practitioner-page .order-detail-page .order-detail-price {
    color: var(--pr-accent);
    font-weight: 800;
}

/* 订单详情：邀请队友入口（表单在弹窗内） */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .order-detail-page .order-detail-invite-lead {
    font-size: 13px;
    line-height: 1.55;
    color: #5c6d62;
    margin: 0 0 12px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .order-detail-page #order-detail-open-double-invite {
    border-radius: 999px !important;
    border: 1px solid #252e28 !important;
    background: #141a15 !important;
    color: #e8f7dc !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(20, 26, 21, 0.2) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .order-detail-page #order-detail-open-double-invite:hover {
    filter: brightness(1.06);
    color: #f0ffe8 !important;
}

/* 邀请队友弹层：默认必须隐藏（仅钱包页曾内联 .wallet-modal{display:none}，列表/详情未引入） */
body.practitioner-page .pr-double-invite-modal.wallet-modal {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 10060 !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px !important;
    box-sizing: border-box !important;
}
body.practitioner-page .pr-double-invite-modal.wallet-modal.is-open {
    display: flex !important;
}
body.practitioner-page .pr-double-invite-modal .wallet-modal-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
}
body.practitioner-page .pr-double-invite-modal .wallet-modal-content {
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    max-width: 400px !important;
    max-height: 90vh !important;
    overflow: auto !important;
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}
/* 与钱包页内联 .wallet-modal-* 一致：列表/详情未引入钱包页时才生效 */
body.practitioner-page .pr-double-invite-modal .wallet-modal-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
body.practitioner-page .pr-double-invite-modal .wallet-modal-title {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    color: #1a1a1a !important;
}
body.practitioner-page .pr-double-invite-modal .wallet-modal-close {
    flex-shrink: 0 !important;
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    font-size: 24px !important;
    line-height: 1 !important;
    color: #8c8c8c !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    border-radius: 4px !important;
}
body.practitioner-page .pr-double-invite-modal .wallet-modal-close:hover {
    color: #333 !important;
    background: #f5f5f5 !important;
}
body.practitioner-page .pr-double-invite-modal .wallet-modal-body {
    padding: 20px !important;
}
body.practitioner-page .pr-double-invite-modal .wallet-modal-body .form-group {
    margin-bottom: 16px !important;
}
body.practitioner-page .pr-double-invite-modal .wallet-modal-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-top: 20px !important;
    padding-top: 16px !important;
    border-top: 1px solid #f0f0f0 !important;
}
body.practitioner-page .pr-double-invite-modal .wallet-modal-actions .btn {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

/* 邀请队友弹层（双人单）：薄荷主题细化 + 底部波浪线 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-double-invite-modal .wallet-modal-overlay {
    /* 对齐注册页 mint 说明弹层氛围 */
    background: rgba(15, 40, 28, 0.45) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-double-invite-modal .wallet-modal-content {
    position: relative !important;
    border-radius: 20px !important;
    border: 3px solid #141a15 !important;
    background: #fff !important;
    box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.12) !important;
    overflow: visible !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-double-invite-modal .wallet-modal-content::after {
    content: "" !important;
    position: absolute !important;
    left: 8px !important;
    right: 8px !important;
    bottom: -6px !important;
    height: 10px !important;
    background:
        radial-gradient(8px 8px at 8px 0, transparent 7px, rgba(24, 43, 74, 0.1) 7.2px),
        radial-gradient(8px 8px at 24px 0, transparent 7px, rgba(24, 43, 74, 0.08) 7.2px) !important;
    background-size: 32px 10px !important;
    background-repeat: repeat-x !important;
    opacity: 0.55 !important;
    pointer-events: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-double-invite-modal .wallet-modal-header {
    border-bottom: 1px solid #eef1f5 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-double-invite-modal .wallet-modal-title {
    color: #1f2d3d !important;
    font-weight: 800 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-double-invite-modal .wallet-modal-close {
    color: #8c9cb3 !important;
    border-radius: 10px !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-double-invite-modal .wallet-modal-close:hover {
    color: #1f2d3d !important;
    background: #f3f6fb !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-double-invite-modal .pr-double-invite-modal__hint {
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: #6f7d90 !important;
    margin: 0 0 14px !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-double-invite-modal .form-label {
    color: #3d4f66 !important;
    font-weight: 700 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-double-invite-modal .form-control {
    border-color: #e2e8f0 !important;
    border-radius: 12px !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-double-invite-modal .wallet-modal-actions {
    border-top: 1px solid #eef1f5 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-double-invite-modal .pr-double-invite-modal__submit {
    width: 100% !important;
    border-radius: 999px !important;
    border: 1px solid #252e28 !important;
    background: #141a15 !important;
    color: #e8f7dc !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(20, 26, 21, 0.2) !important;
}

/* 说明块：更像信息块 */
body.practitioner-page .order-detail-page .order-detail-info-row-block {
    grid-template-columns: 92px 1fr;
}
body.practitioner-page .order-detail-page .order-detail-info-row-block .order-detail-info-value {
    background: transparent;
    border: none;
    padding: 0;
}

/* 底部操作条更顺滑 */
body.practitioner-page .order-detail-actions {
    animation: pr-page-fade-in 0.12s ease-out;
}

/* 接单页：底部按钮上移一点 */
body.practitioner-page .order-detail-actions {
    bottom: 72px;
    padding-top: 10px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0));
}
body.practitioner-page .order-detail-actions .btn {
    transform: translateY(0);
}
body.practitioner-page .order-detail-actions .btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    body.practitioner-page .order-detail-page .order-detail-info-row {
        grid-template-columns: 84px 1fr;
        padding: 11px 12px;
    }
}

/* ========== 认证页：居中卡片 · 月夜氛围（参考游戏登录式 UI） ========== */
:root {
    --auth-gold: #c9a962;
    --auth-gold-soft: #d4bc8e;
    --auth-gold-muted: rgba(201, 169, 98, 0.35);
    --auth-charcoal: #2f3338;
    --auth-charcoal-deep: #23262a;
    --auth-btn-text: #e8d5a3;
}

body.auth-splash {
    margin: 0;
    min-height: 100vh;
    color: #1a1a1a;
}

body.auth-splash .auth-splash-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 100% 70% at 12% 8%, rgba(160, 195, 255, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse 80% 60% at 88% 78%, rgba(55, 160, 170, 0.16) 0%, transparent 48%),
        radial-gradient(ellipse 60% 45% at 50% 100%, rgba(30, 80, 120, 0.22) 0%, transparent 55%),
        linear-gradient(168deg, #0b101c 0%, #121c2e 38%, #0e1828 72%, #080e18 100%);
}

body.auth-splash .auth-splash-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 1;
    pointer-events: none;
}

body.auth-splash .auth-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(20px, env(safe-area-inset-top)) 16px max(24px, env(safe-area-inset-bottom));
    box-sizing: border-box;
}

body.auth-splash .auth-card {
    width: 100%;
    max-width: 420px;
    background: #fdfcfb;
    border-radius: 0;
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    padding: 34px 36px 38px;
    box-sizing: border-box;
    max-height: min(92vh, 900px);
    overflow-y: auto;
    animation: loginFadeInUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.auth-splash .auth-card--register {
    max-width: 500px;
    padding: 28px 32px 34px;
}

body.auth-splash .auth-card-brand {
    position: relative;
    margin-bottom: 6px;
}

body.auth-splash .auth-card-brand__center {
    text-align: center;
    padding: 0;
}

body.auth-splash .auth-card-brand-logo-wrap {
    margin: 0 auto 12px;
}

body.auth-splash .auth-card-brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    vertical-align: middle;
}

body.auth-splash .auth-card-brand__title {
    font-size: clamp(18px, 4.2vw, 22px);
    font-weight: 600;
    color: #2a2a2a;
    margin: 0 0 6px;
    letter-spacing: 0.02em;
    line-height: 1.35;
}

body.auth-splash .auth-card-brand__tagline {
    margin: 0;
    font-size: 13px;
    color: #7a756c;
    letter-spacing: 0.04em;
}

body.auth-splash .auth-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--auth-gold-muted), transparent);
    margin: 22px 0 20px;
}

body.auth-splash .auth-page-heading {
    font-size: clamp(17px, 3.5vw, 22px);
    font-weight: 600;
    color: #222;
    margin: 0 0 22px;
    text-align: center;
}

body.auth-splash .auth-page-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

body.auth-splash .auth-page-heading-row .auth-page-heading {
    margin: 0;
    text-align: left;
    flex: 1;
}

body.auth-splash .auth-register-notice--desktop {
    display: block;
    max-height: 132px;
    overflow-y: auto;
    padding: 12px 14px;
    margin: 0 0 20px;
    background: linear-gradient(180deg, #faf8f4 0%, #f3efe6 100%);
    border: 1px solid var(--auth-gold-muted);
    border-radius: 10px;
    font-size: 13px;
    color: #5a544c;
    line-height: 1.65;
    -webkit-overflow-scrolling: touch;
}

body.auth-splash .auth-register-notice--desktop p {
    margin: 0;
    text-align: justify;
}

body.auth-splash .login-form .form-label {
    color: #3d3d3d;
    font-weight: 500;
}

body.auth-splash .login-form .form-control {
    border-radius: 8px;
    border-color: #d8d4cd;
    background: #fff;
}

body.auth-splash .login-form .form-control::placeholder {
    color: #a8a29a;
}

body.auth-splash .login-form .form-control:focus {
    outline: none;
    border-color: var(--auth-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.18);
}

body.auth-splash .login-form .password-toggle {
    color: #9c958b;
}

body.auth-splash .login-form .password-toggle:hover {
    color: var(--auth-gold);
}

body.auth-splash .auth-remember-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin-bottom: 8px;
    margin-top: -6px;
}

body.auth-splash .auth-remember-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #4a4640;
    user-select: none;
}

body.auth-splash .auth-remember-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--auth-gold);
    cursor: pointer;
}

body.auth-splash .auth-remember-hint {
    font-size: 12px;
    color: #9c958b;
    flex: 1 1 100%;
}

@media (min-width: 400px) {
    body.auth-splash .auth-remember-hint {
        flex: 0 1 auto;
        margin-left: auto;
    }
}

body.auth-splash .auth-login-link-row {
    margin-top: 18px;
}

body.auth-splash .auth-login-link-row a,
body.auth-splash .login-link a {
    color: #a67c32;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

body.auth-splash .auth-login-link-row a:hover,
body.auth-splash .login-link a:hover {
    color: var(--auth-gold);
    text-decoration: underline;
}

body.auth-splash .auth-card .btn-primary.auth-submit-btn,
body.auth-splash .auth-card .auth-submit-btn,
body.auth-splash .auth-modal-card .btn-primary.auth-submit-btn,
body.auth-splash .auth-modal-card .auth-submit-btn {
    width: 100%;
    margin-top: 6px;
    padding: 14px 16px;
    border-radius: 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    background: linear-gradient(180deg, #3d4249 0%, var(--auth-charcoal) 100%);
    border: 1px solid #1a1d21;
    color: var(--auth-btn-text);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

body.auth-splash .auth-card .btn-primary.auth-submit-btn:hover,
body.auth-splash .auth-card .auth-submit-btn:hover,
body.auth-splash .auth-modal-card .btn-primary.auth-submit-btn:hover,
body.auth-splash .auth-modal-card .auth-submit-btn:hover {
    background: linear-gradient(180deg, #4a5058 0%, #383d44 100%);
    color: #f2e9cc;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

body.auth-splash .auth-card .auth-submit-btn:disabled,
body.auth-splash .auth-modal-card .auth-submit-btn:disabled {
    opacity: 0.72;
    cursor: not-allowed;
}

body.auth-splash .auth-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10050;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(6, 10, 18, 0.62);
    backdrop-filter: blur(4px);
}

body.auth-splash .auth-modal-card {
    background: #fdfcfb;
    border-radius: 14px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

body.auth-splash .auth-modal-card__body {
    padding: 36px 28px 24px;
    text-align: center;
}

body.auth-splash .auth-modal-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

body.auth-splash .auth-modal-card__icon--ok {
    background: linear-gradient(145deg, #3d5a40, #2d4a32);
    color: var(--auth-btn-text);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

body.auth-splash .auth-modal-card__title {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

body.auth-splash .auth-modal-card__text {
    margin: 0;
    font-size: 15px;
    color: #5c5650;
    line-height: 1.65;
}

body.auth-splash .auth-modal-card__actions {
    padding: 0 28px 32px;
    text-align: center;
}

body.auth-splash .auth-modal-card__btn-link {
    display: inline-block;
    text-decoration: none;
    padding: 12px 36px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    body.auth-splash .auth-register-notice--desktop {
        display: none;
    }

    body.auth-splash .auth-card {
        padding: 28px 22px 32px;
        border-radius: 0;
    }

    body.auth-splash .auth-card--register {
        max-height: none;
    }

    body.auth-splash .register-info-toggle-mobile {
        display: inline-flex;
        align-items: center;
        background: rgba(201, 169, 98, 0.12);
        color: #7a5e28;
        border: 1px solid var(--auth-gold-muted);
    }

    body.auth-splash .register-info-toggle-mobile:hover {
        background: rgba(201, 169, 98, 0.2);
        color: #5c471e;
    }
}

@media (min-width: 769px) {
    body.auth-splash .auth-page-heading-row .register-info-toggle-mobile {
        display: none;
    }
}

/* ========== 认证页：左右分栏 + 波浪分隔 · 深蓝/白/玫红（协同办公风） ========== */
body.auth-splash--split {
    --auth-split-page-bg: #1f2633;
    --auth-split-left-bg: #252a35;
    --auth-split-accent: #e84393;
    --auth-split-btn-bg: #1e2a3d;
    --auth-split-btn-hover: #2a3a52;
}

body.auth-splash--split .auth-splash-bg {
    background: var(--auth-split-page-bg);
}

body.auth-splash--split .auth-splash-bg::after {
    display: none;
}

body.auth-splash--split .auth-shell--split {
    align-items: center;
    justify-content: center;
    padding: max(20px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
    min-height: 100vh;
    box-sizing: border-box;
}

body.auth-splash--split .auth-split-card {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 0;
    border: none;
    outline: none;
    box-shadow: none;
    overflow: hidden;
    min-height: 520px;
    animation: loginFadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.auth-splash--split .auth-split-card--register {
    max-width: 1040px;
    min-height: 480px;
}

body.auth-splash--split .auth-split-left {
    position: relative;
    flex: 0 0 42%;
    max-width: 420px;
    min-width: 0;
    background: var(--auth-split-left-bg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body.auth-splash--split .auth-split-left__content {
    position: relative;
    z-index: 2;
    padding: 48px 28px 48px 44px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.auth-splash--split .auth-split-logo {
    margin-bottom: 20px;
}

body.auth-splash--split .auth-split-logo img {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 0;
    object-fit: contain;
}

body.auth-splash--split .auth-split-welcome {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

body.auth-splash--split .auth-split-brand {
    margin: 0 0 14px;
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

body.auth-splash--split .auth-split-tag {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.5;
}

body.auth-splash--split .auth-split-bridge {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 56px;
    z-index: 4;
    transform: translateX(0);
    pointer-events: none;
}

body.auth-splash--split .auth-split-bridge__svg {
    display: block;
    width: 100%;
    height: 100%;
}

body.auth-splash--split .auth-split-right {
    flex: 1;
    min-width: 0;
    padding: 40px 48px 44px 36px;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

body.auth-splash--split .auth-split-right--scroll {
    max-height: min(92vh, 900px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body.auth-splash--split .auth-split-right--scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

body.auth-splash--split .auth-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 32px;
    margin-bottom: 28px;
    padding-bottom: 0;
    border-bottom: 1px solid #ececec;
}

body.auth-splash--split .auth-tabs--register {
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

body.auth-splash--split .auth-tabs--single {
    gap: 0;
}

body.auth-splash--split .auth-tab {
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: -1px;
    font-size: 16px;
    color: #9a9a9a;
    border-bottom: 3px solid transparent;
    cursor: default;
    transition: color 0.2s;
}

body.auth-splash--split .auth-tab--active {
    color: #1f1f1f;
    font-weight: 600;
    border-bottom-color: var(--auth-split-accent);
}

body.auth-splash--split .auth-tab-side.register-info-toggle-mobile {
    margin: 0 0 0 auto;
    padding: 8px 14px;
    font-size: 13px;
    color: var(--auth-split-accent);
    background: rgba(232, 67, 147, 0.08);
    border: 1px solid rgba(232, 67, 147, 0.25);
    border-radius: 0;
    cursor: pointer;
    margin-bottom: -1px;
    padding-bottom: 10px;
}

body.auth-splash--split .auth-tab-side.register-info-toggle-mobile:hover {
    background: rgba(232, 67, 147, 0.14);
}

body.auth-splash--split .auth-register-notice--desktop {
    max-height: 120px;
    overflow-y: auto;
    padding: 12px 14px;
    margin: 0 0 22px;
    background: #f7f8fa;
    border-left: none;
    font-size: 13px;
    color: #555;
    line-height: 1.65;
}

body.auth-splash--split .auth-register-notice--desktop p {
    margin: 0;
    text-align: justify;
}

body.auth-splash--split .auth-alert--error {
    padding: 12px 14px;
    margin: 0 0 20px;
    font-size: 14px;
    color: #cf1322;
    background: #fff2f0;
    border: 1px solid #ffccc7;
    border-radius: 0;
}

body.auth-splash--split .auth-field-group {
    margin-bottom: 22px;
}

body.auth-splash--split .auth-field-group--submit {
    margin-top: 8px;
    margin-bottom: 0;
}

body.auth-splash--split .auth-field-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #5c5c5c;
}

body.auth-splash--split .auth-req {
    color: var(--auth-split-accent);
    font-weight: 600;
}

body.auth-splash--split .auth-field-line {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #c8c8c8;
    transition: border-color 0.2s;
}

body.auth-splash--split .auth-field-line:focus-within {
    border-bottom-color: var(--auth-split-accent);
}

body.auth-splash--split .auth-field-line.is-invalid {
    border-bottom-color: #ff4d4f;
}

body.auth-splash--split .auth-input-line {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 12px 8px 10px 0;
    font-size: 15px;
    background: transparent;
    color: #222;
}

body.auth-splash--split .auth-input-line::placeholder {
    color: #b0b0b0;
}

body.auth-splash--split .auth-field-line--toggle .auth-input-line {
    padding-right: 4px;
}

body.auth-splash--split .auth-line-toggle {
    flex-shrink: 0;
    border: none;
    background: none;
    padding: 8px;
    color: #a0a0a0;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
}

body.auth-splash--split .auth-line-toggle:hover {
    color: var(--auth-split-accent);
}

body.auth-splash--split .auth-field-error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #ff4d4f;
}

body.auth-splash--split .auth-field-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #999;
    line-height: 1.45;
}

body.auth-splash--split .auth-invite-row__inner {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

body.auth-splash--split .auth-invite-field-line {
    flex: 1;
    min-width: 0;
}

body.auth-splash--split .auth-invite-verify-btn {
    flex-shrink: 0;
    align-self: flex-end;
    height: 42px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    background: #ffffff;
    color: var(--auth-split-accent);
    border: 1px solid var(--auth-split-accent);
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

body.auth-splash--split .auth-invite-verify-btn:hover {
    background: rgba(232, 67, 147, 0.08);
}

body.auth-splash--split .auth-invite-verify-msg {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.45;
    min-height: 1.2em;
}

body.auth-splash--split .auth-invite-verify-msg.is-ok {
    color: #389e0d;
}

body.auth-splash--split .auth-invite-verify-msg.is-bad {
    color: #cf1322;
}

body.auth-splash--split .auth-remember-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin: 4px 0 22px;
}

body.auth-splash--split .auth-remember-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #4a4a4a;
    user-select: none;
}

body.auth-splash--split .auth-remember-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--auth-split-accent);
    cursor: pointer;
}

body.auth-splash--split .auth-remember-hint {
    font-size: 12px;
    color: #aaa;
    flex: 1 1 100%;
}

@media (min-width: 400px) {
    body.auth-splash--split .auth-remember-hint {
        flex: 0 1 auto;
        margin-left: auto;
    }
}

body.auth-splash--split .auth-split-submit,
body.auth-splash--split .auth-modal-overlay--split .auth-split-submit {
    width: 100%;
    margin-top: 0;
    padding: 14px 16px !important;
    border-radius: 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.18em !important;
    background: var(--auth-split-btn-bg) !important;
    border: 1px solid #121a28 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

body.auth-splash--split .auth-split-submit:hover,
body.auth-splash--split .auth-modal-overlay--split .auth-split-submit:hover {
    background: var(--auth-split-btn-hover) !important;
    color: #ffffff !important;
}

body.auth-splash--split.practitioner-page .auth-split-submit,
body.auth-splash--split.practitioner-page .auth-modal-overlay--split .auth-split-submit {
    background: var(--auth-split-btn-bg) !important;
    border-color: #121a28 !important;
    color: #ffffff !important;
}

body.auth-splash--split.practitioner-page .auth-split-submit:hover,
body.auth-splash--split.practitioner-page .auth-modal-overlay--split .auth-split-submit:hover {
    background: var(--auth-split-btn-hover) !important;
}

body.auth-splash--split .auth-split-footer-link {
    text-align: center;
    margin-top: 22px;
}

body.auth-splash--split .auth-split-footer-link a {
    font-size: 14px;
    font-weight: 500;
    color: var(--auth-split-accent);
    text-decoration: none;
}

body.auth-splash--split .auth-split-footer-link a:hover {
    text-decoration: underline;
}

body.auth-splash--split .auth-modal-overlay--split {
    z-index: 10050;
    background: rgba(20, 24, 32, 0.65);
    backdrop-filter: blur(3px);
}

body.auth-splash--split .auth-modal-card--split {
    border-radius: 0;
    border-top: 4px solid var(--auth-split-accent);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

body.auth-splash--split .auth-modal-card__icon--split {
    background: var(--auth-split-accent) !important;
    color: #fff !important;
    border-radius: 0 !important;
}

body.auth-splash--split .auth-modal-card__btn-full {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
}

@media (max-width: 860px) {
    body.auth-splash--split .auth-split-card {
        flex-direction: column;
        max-width: 440px;
        min-height: 0;
    }

    body.auth-splash--split .auth-split-left {
        flex: none;
        max-width: none;
        min-height: 200px;
    }

    body.auth-splash--split .auth-split-left__content {
        padding: 32px 28px 28px;
    }

    body.auth-splash--split .auth-split-bridge {
        display: none;
    }

    body.auth-splash--split .auth-split-right,
    body.auth-splash--split .auth-split-right--scroll {
        max-height: none;
        padding: 28px 24px 32px;
    }
}

/* ========== 代练端登录/注册 · 薄荷绿手机风（auth-splash--mint） ========== */
body.auth-splash.auth-splash--mint {
    --auth-mint-accent: #00e676;
    --auth-mint-accent-bright: #1aff8c;
    --auth-mint-ink: #0a0a0a;
}

body.auth-splash.auth-splash--mint .auth-splash-bg {
    background: linear-gradient(180deg, #e8f9ee 0%, #eef9f3 40%, #f5fcf7 75%, #ffffff 100%);
}

body.auth-splash.auth-splash--mint .auth-splash-bg::after {
    display: none;
}

body.auth-splash.auth-splash--mint .auth-mint-shell {
    align-items: flex-start;
    justify-content: center;
    padding: max(12px, env(safe-area-inset-top)) 18px max(28px, env(safe-area-inset-bottom));
}

body.auth-splash.auth-splash--mint .auth-mint-layout {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

body.auth-splash.auth-splash--mint .auth-mint-layout--register {
    max-width: 440px;
    gap: 6px;
}

/* 注册页：整体上移、卡片内不滚动，说明区完整展示 */
body.auth-page-register.auth-splash--mint .auth-mint-shell {
    align-items: flex-start;
    padding: max(4px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
}

body.auth-page-register.auth-splash--mint .auth-mint-layout--register {
    gap: 4px;
}

body.auth-page-register.auth-splash--mint .auth-mint-layout--register .auth-mint-hero--solo {
    padding: 2px 0 4px;
}

body.auth-page-register.auth-splash--mint .auth-mint-layout--register .auth-mint-hero__img--upload {
    width: min(200px, 70vw);
    max-height: 160px;
}

body.auth-page-register.auth-splash--mint .auth-mint-panel--register {
    max-height: none;
    overflow: visible;
    padding: 14px 16px 18px;
}

body.auth-splash.auth-splash--mint .auth-mint-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 8px 4px 4px;
}

body.auth-splash.auth-splash--mint .auth-mint-brand__mark {
    display: flex;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

body.auth-splash.auth-splash--mint .auth-mint-brand__mark-l {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--auth-mint-accent-bright) 0%, var(--auth-mint-accent) 100%);
    color: #fff;
    font-size: 18px;
}

body.auth-splash.auth-splash--mint .auth-mint-brand__mark-r {
    flex: 1;
    background: var(--auth-mint-ink);
}

body.auth-splash.auth-splash--mint .auth-mint-brand__wordmark {
    flex: 1;
    min-width: 0;
}

body.auth-splash.auth-splash--mint .auth-mint-brand__mascot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, #fef3c7 0%, #fde047 42%, #facc15 72%, #eab308 100%);
    box-shadow: 0 4px 14px rgba(234, 179, 8, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

body.auth-splash.auth-splash--mint .auth-mint-brand__mascot img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

body.auth-splash.auth-splash--mint .auth-mint-brand__title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: var(--auth-mint-ink);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

body.auth-splash.auth-splash--mint .auth-mint-brand__slogan {
    margin: 6px 0 0;
    font-size: 13px;
    color: #8a9394;
    font-weight: 500;
}

body.auth-splash.auth-splash--mint .auth-mint-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 4px 0 8px;
}

body.auth-splash.auth-splash--mint .auth-mint-hero--compact {
    padding: 0 0 4px;
}

body.auth-splash.auth-splash--mint .auth-mint-hero__img {
    width: min(200px, 70vw);
    height: auto;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 230, 118, 0.15));
}

body.auth-splash.auth-splash--mint .auth-mint-hero--compact .auth-mint-hero__img {
    max-height: 120px;
}

/* 登录页：去掉顶栏品牌后仅保留后台上传的大图 */
body.auth-splash.auth-splash--mint .auth-mint-hero--solo {
    padding: 12px 0 10px;
}

body.auth-splash.auth-splash--mint .auth-mint-hero__img--upload {
    width: min(220px, 78vw);
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 26px rgba(20, 60, 40, 0.12));
}

body.auth-splash.auth-splash--mint .auth-mint-panel {
    width: 100%;
    padding: 20px 18px 22px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 18px 50px rgba(20, 60, 40, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

body.auth-splash.auth-splash--mint .auth-mint-panel--scroll {
    max-height: min(64vh, 560px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* 注册卡片：浅绿渐变底、无描边，与登录白卡区分 */
body.auth-splash.auth-splash--mint .auth-mint-panel--register {
    background: linear-gradient(165deg, #ffffff 0%, #f0fdf6 48%, #ecfdf5 100%);
    border: none;
    border-radius: 16px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.65) inset,
        0 14px 40px rgba(5, 120, 80, 0.14),
        0 4px 12px rgba(0, 0, 0, 0.05);
}

body.auth-splash.auth-splash--mint .auth-mint-panel--register .auth-mint-form__title {
    color: #047857;
}

body.auth-splash.auth-splash--mint .auth-mint-tabbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

body.auth-splash.auth-splash--mint .auth-mint-tabbar--register {
    justify-content: space-between;
}

body.auth-splash.auth-splash--mint .auth-mint-tabbar__item {
    font-size: 15px;
    font-weight: 800;
    color: #9ca3af;
    padding: 6px 14px;
    border-radius: 999px;
}

body.auth-splash.auth-splash--mint .auth-mint-tabbar__item.is-active {
    color: var(--auth-mint-ink);
    background: rgba(0, 230, 118, 0.16);
}

body.auth-splash.auth-splash--mint .auth-mint-tabbar__side {
    border: none;
    background: rgba(0, 230, 118, 0.12);
    color: #047857;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body.auth-splash.auth-splash--mint .auth-mint-alert {
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

body.auth-splash.auth-splash--mint .auth-mint-alert--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

body.auth-splash.auth-splash--mint .auth-mint-form__title {
    margin: 0 0 20px;
    font-size: 21px;
    font-weight: 800;
    color: var(--auth-mint-ink);
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

body.auth-splash.auth-splash--mint .auth-mint-form .auth-field-label {
    display: block;
    margin-bottom: 8px;
    color: #4b5563;
    font-weight: 700;
    font-size: 14px;
}

/* 登录/注册 mint 表单：无外层色块、无阴影，仅底框线输入（注册页仍保留显示密码按钮样式） */
body.auth-splash.auth-splash--mint .auth-mint-form .auth-field-line {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: transparent;
    border: none !important;
    border-bottom: none !important;
    box-sizing: border-box;
    box-shadow: none;
}

body.auth-splash.auth-splash--mint .auth-mint-form .auth-field-line:focus-within {
    box-shadow: none;
}

body.auth-splash.auth-splash--mint .auth-mint-form .auth-field-line.is-invalid {
    box-shadow: none;
}

body.auth-splash.auth-splash--mint .auth-mint-form .auth-input-line {
    flex: 1;
    min-width: 0;
    border: none;
    border-bottom: 1px solid #9ca3af;
    background: transparent;
    border-radius: 0;
    padding: 12px 4px 10px 0;
    font-size: 15px;
    color: var(--auth-mint-ink);
    outline: none;
    box-sizing: border-box;
    box-shadow: none;
}

body.auth-splash.auth-splash--mint .auth-mint-form .auth-field-line:focus-within .auth-input-line {
    border-bottom-color: var(--auth-mint-accent);
}

body.auth-splash.auth-splash--mint .auth-mint-form .auth-field-line.is-invalid .auth-input-line {
    border-bottom-color: #ef4444;
}

body.auth-splash.auth-splash--mint .auth-mint-form .auth-field-line--toggle .auth-input-line {
    padding-right: 4px;
}

body.auth-splash.auth-splash--mint .auth-mint-form .auth-input-line::placeholder {
    color: #9ca3af;
}

body.auth-splash.auth-splash--mint .auth-mint-form .auth-line-toggle {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--auth-mint-accent);
    background: transparent;
    border-radius: 10px !important;
    color: #059669;
    font-size: 18px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    box-shadow: none;
}

body.auth-splash.auth-splash--mint .auth-mint-form .auth-line-toggle:hover {
    background: rgba(0, 230, 118, 0.08);
    color: #047857;
}

body.auth-splash.auth-splash--mint .auth-mint-remember {
    margin-top: 4px;
}

body.auth-splash.auth-splash--mint .auth-mint-remember .auth-remember-label {
    color: #4b5563;
}

body.auth-splash.auth-splash--mint .auth-mint-remember .auth-remember-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ea580c;
}

body.auth-splash.auth-splash--mint .auth-mint-remember .auth-remember-hint {
    color: #9ca3af;
}

body.auth-splash.auth-splash--mint a.auth-mint-btn-pill {
    text-decoration: none;
    box-sizing: border-box;
}

body.auth-splash.auth-splash--mint .auth-mint-btn-pill {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    border: none;
    border-radius: 999px;
    background: var(--auth-mint-ink);
    color: var(--auth-mint-accent-bright);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.15s, box-shadow 0.15s;
}

body.auth-splash.auth-splash--mint .auth-mint-btn-pill i {
    font-size: 18px;
    color: var(--auth-mint-accent);
}

body.auth-splash.auth-splash--mint .auth-mint-btn-pill .auth-mint-btn-emoji {
    font-size: 20px;
    line-height: 1;
}

body.auth-splash.auth-splash--mint .auth-mint-btn-pill:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

body.auth-splash.auth-splash--mint .auth-mint-btn-pill:active {
    transform: scale(0.99);
}

body.auth-splash.auth-splash--mint .auth-mint-btn-pill:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

body.auth-splash.auth-splash--mint.practitioner-page .auth-mint-btn-pill {
    border-radius: 999px !important;
}

body.auth-splash.auth-splash--mint .auth-mint-footer-link {
    text-align: center;
    margin-top: 18px;
}

body.auth-splash.auth-splash--mint .auth-mint-footer-link a {
    color: var(--auth-mint-accent);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

body.auth-splash.auth-splash--mint .auth-mint-footer-link a:hover {
    text-decoration: underline;
}

body.auth-splash.auth-splash--mint .auth-mint-form .auth-invite-row__inner {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

body.auth-splash.auth-splash--mint .auth-mint-form .auth-invite-field-line {
    flex: 1;
    min-width: 0;
}

body.auth-splash.auth-splash--mint .auth-mint-form .auth-invite-verify-btn {
    flex-shrink: 0;
    align-self: center;
    height: 44px;
    padding: 0 16px;
    background: var(--auth-mint-ink);
    color: var(--auth-mint-accent);
    border: none;
    font-weight: 800;
    border-radius: 10px !important;
    cursor: pointer;
}

body.auth-splash.auth-splash--mint .auth-field-group--submit {
    margin-top: 18px;
}

/* 注册成功弹层在 mint 主题下略提亮背景 */
body.auth-splash.auth-splash--mint .auth-modal-overlay--split {
    background: rgba(15, 40, 28, 0.45);
    backdrop-filter: blur(6px);
}

body.auth-splash.auth-splash--mint .auth-modal-card--split {
    border-radius: 20px;
    border: 3px solid var(--auth-mint-ink);
    box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.12);
}

body.auth-splash.auth-splash--mint .auth-mint-register-notice-card .auth-modal-card__body {
    padding: 22px 22px 10px;
}

body.auth-splash.auth-splash--mint .auth-mint-register-notice-body {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #4b5563;
    text-align: left;
    max-height: min(52vh, 380px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

body.auth-splash.auth-splash--mint .auth-mint-register-notice-card .auth-modal-card__actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    padding: 8px 22px 22px;
}

body.auth-splash.auth-splash--mint .auth-mint-register-notice-close {
    border: none !important;
    background: transparent !important;
    color: #047857 !important;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    padding: 10px;
    border-radius: 999px !important;
}

@media (min-width: 480px) {
    body.auth-splash.auth-splash--mint .auth-mint-brand__title {
        font-size: 24px;
    }
}

/* ================= 打手端统一主题（pr-theme-unified） ================= */
body.practitioner-page.pr-theme-unified:not(.auth-splash) {
    --pr-blue-1: #3ea5ff;
    --pr-blue-2: #2f93f4;
    --pr-blue-3: #2688ea;
    --pr-border: #b9dcff;
    --pr-shadow: rgba(28, 110, 190, 0.28);
    --pr-text-strong: rgba(255, 255, 255, 0.98);
    --pr-text-mid: rgba(255, 255, 255, 0.78);
    --pr-text-weak: rgba(255, 255, 255, 0.7);
    /* 整页浅青柠→淡黄绿→薄荷底，与透明顶栏连成一体（参考用户提供的浅绿氛围截图） */
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(
        180deg,
        #e6f7c8 0%,
        #edf9d4 14%,
        #f2fae6 32%,
        #f5faf0 55%,
        #f4f9f4 100%
    );
}

body.practitioner-page.pr-theme-unified:not(.auth-splash) .main-content {
    background: transparent !important;
}

body.practitioner-page.pr-theme-unified:not(.auth-splash) .bottom-nav .bottom-nav__label {
    font-size: 13px;
}

/* 顶栏：双人单邀请消息入口 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-slot {
    position: relative !important;
    z-index: 120 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-toggle {
    position: relative !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: #1f2937 !important;
    box-shadow: none !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    -webkit-tap-highlight-color: transparent !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-toggle:hover {
    background: rgba(255, 255, 255, 0.55) !important;
    color: #0f172a !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-toggle:active {
    background: rgba(255, 255, 255, 0.75) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-toggle__inner {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-toggle__icon {
    font-size: 22px !important;
    line-height: 1 !important;
    color: inherit !important;
    font-weight: 400 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-badge {
    position: absolute !important;
    top: -5px !important;
    right: -9px !important;
    min-width: 17px !important;
    height: 17px !important;
    padding: 0 5px !important;
    border-radius: 999px !important;
    background: #ef4444 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 17px !important;
    text-align: center !important;
    box-sizing: border-box !important;
    border: 2px solid rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-panel {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    width: min(320px, calc(100vw - 32px)) !important;
    max-height: min(70vh, 420px) !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    border: 2px solid rgba(20, 40, 30, 0.12) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 16px 40px rgba(35, 65, 45, 0.18) !important;
    z-index: 200 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-panel.is-open {
    display: block !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-panel__head {
    padding: 12px 14px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #141a15 !important;
    border-bottom: 1px solid rgba(20, 40, 30, 0.08) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-panel__body {
    padding: 8px 0 !important;
    max-height: min(58vh, 360px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-empty {
    margin: 0 !important;
    padding: 16px 14px !important;
    font-size: 13px !important;
    color: #64748b !important;
    text-align: center !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-item {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 10px 14px !important;
    border-bottom: 1px solid rgba(20, 40, 30, 0.06) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-item:last-child {
    border-bottom: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-item__title {
    flex: 1 !important;
    min-width: 0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    line-height: 1.45 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-go {
    flex-shrink: 0 !important;
    padding: 6px 12px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    background: #141a15 !important;
    color: #e8f7dc !important;
    border: 1px solid #252e28 !important;
    box-shadow: 0 2px 8px rgba(20, 26, 21, 0.18) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-invite-notice-go:hover {
    filter: brightness(1.06) !important;
    color: #f0ffe8 !important;
}

/* 订单详情：确认加入（与 mint 主按钮气质一致） */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .order-detail-confirm-join-btn {
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 4px !important;
    padding: 14px 20px !important;
    border-radius: 999px !important;
    border: 3px solid #141a15 !important;
    background: linear-gradient(180deg, #243028 0%, #141a15 100%) !important;
    color: #e8f7dc !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em !important;
    cursor: pointer !important;
    box-shadow: 6px 8px 0 rgba(0, 0, 0, 0.12) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .order-detail-confirm-join-btn:hover {
    filter: brightness(1.06) !important;
    color: #f0ffe8 !important;
}

/* 详情/表单页顶栏：仅保留小箭头返回，不要大块色底 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-page-topbar--back-only .pr-page-topbar-back {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    padding: 0 !important;
    border-radius: 8px !important;
    font-size: 17px !important;
    line-height: 1 !important;
    color: #1f2d3d !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-page-topbar--back-only .pr-page-topbar-back:hover {
    background: rgba(0, 0, 0, 0.05) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-page-topbar--back-only .pr-page-topbar-back-placeholder {
    width: 28px !important;
}

/* 列表卡片：半透明白 + 轻磨砂（参考浅色活动卡/信息卡） */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .mobile-order-card {
    border: 1px solid rgba(255, 255, 255, 0.78) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    box-shadow: 0 10px 32px rgba(35, 65, 45, 0.08), 0 2px 10px rgba(35, 55, 40, 0.05) !important;
    position: relative !important;
    overflow: hidden !important;
}

body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card::before,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .mobile-order-card::before {
    display: none !important;
}

/* 浅色列表卡 hover：避免沿用全局蓝描边 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card:hover,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .mobile-order-card:hover {
    border-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 12px 36px rgba(35, 65, 45, 0.11), 0 4px 14px rgba(35, 55, 40, 0.06) !important;
    transform: translateY(-1px);
}

/* 接单大厅分割线 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .mobile-order-sep {
    background: rgba(20, 40, 30, 0.08) !important;
}

/* 浅色卡片文字层级 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .mobile-order-code {
    color: #141a15 !important;
    text-shadow: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-title-row,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .order-name,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-title {
    color: #141a15 !important;
    text-shadow: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-code {
    color: #5c6d62 !important;
    text-shadow: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-time,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .mobile-order-desc {
    color: #5c6d62 !important;
    text-shadow: none !important;
}

/* 金额强调 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-price,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .order-amount {
    color: #166534 !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}

/* 标签：柔和胶囊，无底纹尖角/Biu */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-type,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-status,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .status-pill {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 26px !important;
    height: auto !important;
    padding: 5px 12px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    border: none !important;
    box-shadow: none !important;
    vertical-align: middle !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-type::after,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-status::after,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .status-pill::after,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-type::before,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-status::before,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .status-pill::before {
    content: none !important;
    display: none !important;
}

/* 订单类型（淡色底 + 同色字） */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-type-hall {
    background: #ede9fe !important;
    color: #5b21b6 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-type-assigned {
    background: #dbeafe !important;
    color: #1e40af !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-type-double {
    background: #d1fae5 !important;
    color: #047857 !important;
}

/* 订单状态 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-status-pending {
    background: #e0f2fe !important;
    color: #0369a1 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-status-pending_start {
    background: #ffedd5 !important;
    color: #c2410c !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-status-invite_waiting {
    background: #fce7f3 !important;
    color: #9d174d !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-status-pending_join {
    background: #e0f2fe !important;
    color: #0369a1 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-status-in_progress {
    background: #dcfce7 !important;
    color: #166534 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-status-reviewing {
    background: #fef9c3 !important;
    color: #a16207 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-status-rejected {
    background: #fee2e2 !important;
    color: #b91c1c !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-status-completed {
    background: #cffafe !important;
    color: #0e7490 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card-status-cancelled {
    background: #f3f4f6 !important;
    color: #4b5563 !important;
}

/* 列表卡内主操作：深色胶囊 + 浅字（与参考浅色信息卡一致；避免仅绿 btn-primary） */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .mobile-order-card .order-accept-btn.btn-primary,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .mobile-order-card .btn-primary.my-orders-btn-submit,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card .my-orders-btn-submit.btn-primary,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card a.my-orders-btn-submit {
    background: #141a15 !important;
    border-color: #252e28 !important;
    color: #e8f7dc !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(20, 26, 21, 0.2) !important;
    text-decoration: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .mobile-order-card .order-accept-btn.btn-primary:hover,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .mobile-order-card .btn-primary.my-orders-btn-submit:hover,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card .my-orders-btn-submit.btn-primary:hover,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-card a.my-orders-btn-submit:hover {
    background: #1c2520 !important;
    border-color: #2a352e !important;
    color: #f0ffe8 !important;
    text-decoration: none !important;
}

/* 接单主按钮为 <a class="btn"> 时取消链接默认下划线（含 visited / focus） */
body.practitioner-page.pr-theme-unified:not(.auth-splash) a.order-accept-btn.btn-primary,
body.practitioner-page.pr-theme-unified:not(.auth-splash) a.order-accept-btn.my-orders-btn-submit,
body.practitioner-page.pr-theme-unified:not(.auth-splash) a.btn-primary.order-accept-btn {
    text-decoration: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) a.order-accept-btn.btn-primary:visited,
body.practitioner-page.pr-theme-unified:not(.auth-splash) a.order-accept-btn.my-orders-btn-submit:visited,
body.practitioner-page.pr-theme-unified:not(.auth-splash) a.btn-primary.order-accept-btn:visited,
body.practitioner-page.pr-theme-unified:not(.auth-splash) a.order-accept-btn.btn-primary:focus,
body.practitioner-page.pr-theme-unified:not(.auth-splash) a.order-accept-btn.my-orders-btn-submit:focus,
body.practitioner-page.pr-theme-unified:not(.auth-splash) a.order-accept-btn.btn-primary:focus-visible,
body.practitioner-page.pr-theme-unified:not(.auth-splash) a.order-accept-btn.my-orders-btn-submit:focus-visible {
    text-decoration: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) a.order-accept-btn.btn-primary:hover,
body.practitioner-page.pr-theme-unified:not(.auth-splash) a.order-accept-btn.my-orders-btn-submit:hover,
body.practitioner-page.pr-theme-unified:not(.auth-splash) a.btn-primary.order-accept-btn:hover,
body.practitioner-page.pr-theme-unified:not(.auth-splash) a.order-accept-btn.btn-primary:active,
body.practitioner-page.pr-theme-unified:not(.auth-splash) a.order-accept-btn.my-orders-btn-submit:active,
body.practitioner-page.pr-theme-unified:not(.auth-splash) a.btn-primary.order-accept-btn:active {
    text-decoration: none !important;
}

/* 接单大厅列表内「待接单」等 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .status-pill.status-pending {
    background: #e0f2fe !important;
    color: #0369a1 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .status-type-assigned {
    background: #fce7f3 !important;
    color: #9d174d !important;
}

/* —— 代练端统一：顶部横向标签（我的订单 / 排行榜等共用） —— */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-tabs {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2px;
    padding: 8px 0 14px;
    margin-bottom: 6px;
    background: transparent;
    border-bottom: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-tabs::-webkit-scrollbar {
    display: none;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-tab {
    position: relative;
    flex: 1 1 auto;
    min-width: 4.5em;
    text-align: center;
    padding: 8px 6px 16px;
    font-size: 17px;
    font-weight: 500;
    color: #5c6d62;
    text-decoration: none;
    white-space: nowrap;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-tab.active {
    color: #141a15;
    font-weight: 800;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-tab.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4px;
    width: 56%;
    max-width: 48px;
    height: 4px;
    border-radius: 4px;
    background: #a8ff96;
    box-shadow: 0 1px 0 rgba(100, 160, 80, 0.2);
}

/* 资料编辑页：磨砂白卡 + 薄荷焦点（与列表卡一致） */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-profile-edit-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px 96px;
    box-sizing: border-box;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-profile-edit-page .profile-edit-main-content {
    padding: 12px 0 0;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-profile-edit-page .profile-edit-section {
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    box-shadow: 0 10px 32px rgba(35, 65, 45, 0.08), 0 2px 10px rgba(35, 55, 40, 0.05);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-profile-edit-page .section-title {
    color: #141a15;
    border-bottom-color: rgba(20, 40, 30, 0.08);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-profile-edit-page .form-group label {
    color: #5c6d62;
    font-weight: 600;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-profile-edit-page .form-control {
    border-color: rgba(20, 40, 30, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: #141a15;
    border-radius: 12px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-profile-edit-page .form-control:focus {
    border-color: rgba(34, 120, 80, 0.45);
    box-shadow: 0 0 0 3px rgba(120, 200, 140, 0.22);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-profile-edit-page .form-text {
    color: #6b7a90;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-profile-edit-page .qrcode-label {
    color: #5c6d62;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-profile-edit-page .profile-edit-section .qrcode-preview {
    border-color: rgba(20, 40, 30, 0.1);
    background: rgba(248, 250, 252, 0.95);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-profile-edit-page .profile-edit-section .qrcode-preview:hover {
    border-color: rgba(72, 160, 100, 0.45);
    box-shadow: 0 4px 14px rgba(35, 90, 55, 0.12);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-profile-edit-page .qrcode-placeholder {
    color: #7a8a82;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-profile-edit-page .btn-submit {
    background: #141a15 !important;
    border: 1px solid #252e28 !important;
    color: #e8f7dc !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(20, 26, 21, 0.2) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-profile-edit-page .btn-submit:hover {
    background: #1c2520 !important;
    border-color: #2a352e !important;
    color: #f0ffe8 !important;
}

/* ---------- 个人资料列表页：左右铺满、无圆角 ---------- */
.pr-profile-page {
    max-width: none;
    margin: 0 -20px;
    padding: 0 0 96px;
    width: calc(100% + 40px);
    box-sizing: border-box;
}
.pr-profile-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}
.pr-profile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 52px;
    padding: 11px 16px;
    border: none;
    border-bottom: 1px solid #f0f2f1;
    background: #fff;
    text-align: left;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    box-sizing: border-box;
    font: inherit;
}
.pr-profile-row:last-child {
    border-bottom: none;
}
.pr-profile-row--static {
    cursor: default;
}
.pr-profile-row__label {
    flex-shrink: 0;
    font-size: 15px;
    color: #222;
    font-weight: 400;
}
.pr-profile-row__value {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
    flex: 1;
    color: #666;
    font-size: 14px;
}
.pr-profile-row__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 58vw;
}
.pr-profile-row__text.is-muted {
    color: #9aa8a0;
}
.pr-profile-row__chev {
    color: #c8cdd0;
    font-size: 12px;
    flex-shrink: 0;
}
.pr-profile-row__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: #eef3ef;
}
.pr-profile-row__thumb {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
    background: #eef3ef;
    border: 1px solid #e5ebe7;
}

/* 底部编辑弹层：贴底全宽，「标题 + 内容 + 保存」对齐参考截图 */
.pr-profile-sheet-mask {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(0, 0, 0, 0.4);
}
.pr-profile-sheet-mask[hidden],
.pr-profile-sheet[hidden] {
    display: none !important;
}
.pr-profile-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5001;
    padding: 0;
    box-sizing: border-box;
}
.pr-profile-sheet__panel {
    background: #fff;
    border-radius: 16px 16px 0 0;
    padding: 18px 20px calc(20px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
}
.pr-profile-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.pr-profile-sheet__head h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
}
.pr-profile-sheet__close {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #999;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.pr-profile-sheet__form {
    margin: 0;
}
.pr-profile-sheet__label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}
.pr-profile-sheet__input {
    display: block;
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #cfd6d2;
    border-radius: 8px;
    background: #fff;
    color: #222;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.pr-profile-sheet__input:focus {
    border-color: #1a7a4c;
    box-shadow: 0 0 0 3px rgba(26, 122, 76, 0.14);
}
.pr-profile-sheet__submit {
    margin-top: 18px;
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 10px;
    background: #1a7a4c;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
}
.pr-profile-sheet__submit:active {
    opacity: 0.92;
}
.pr-profile-media-form {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.pr-profile-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
body.pr-profile-sheet-open {
    overflow: hidden;
}
.pr-profile-sheet:not([hidden]) .pr-profile-sheet__panel {
    animation: prProfileSheetUp 0.22s ease-out;
}
@keyframes prProfileSheetUp {
    from { transform: translateY(24px); opacity: 0.9; }
    to { transform: translateY(0); opacity: 1; }
}

/* 固排队友页 */
.pr-fixed-page {
    max-width: 560px;
    margin: 0 auto;
    padding: 12px 14px 96px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pr-fixed-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(20, 40, 30, 0.06);
}
.pr-fixed-card__title {
    margin: 0 0 10px;
    font-size: 16px;
    color: #1f2d3d;
}
.pr-fixed-hint,
.pr-fixed-empty {
    margin: 0 0 12px;
    font-size: 13px;
    color: #6b7a72;
    line-height: 1.5;
}
.pr-fixed-current__name {
    font-size: 18px;
    font-weight: 700;
    color: #1f2d3d;
}
.pr-fixed-current__sub {
    margin-top: 4px;
    font-size: 13px;
    color: #6b7a72;
}
.pr-fixed-search {
    margin-bottom: 8px;
}
.pr-fixed-suggest {
    border: 1px solid #e5ebe7;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 10px;
}
.pr-fixed-suggest__item {
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    border-bottom: 1px solid #f0f2f1;
    background: #fff;
    padding: 12px 14px;
    font-size: 14px;
    color: #1f2d3d;
    cursor: pointer;
}
.pr-fixed-suggest__item:last-child {
    border-bottom: none;
}
.pr-fixed-suggest__item:hover {
    background: #f5faf7;
}
.pr-fixed-suggest__empty {
    padding: 12px 14px;
    color: #9aa8a0;
    font-size: 13px;
}
.pr-fixed-picked {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}
.pr-fixed-btn {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: #1a6b4a;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}
.pr-fixed-btn--danger {
    margin-top: 14px;
    background: #fff;
    color: #c0392b;
    border: 1px solid #f0c9c4;
}
.pr-fixed-unbind-form {
    margin: 0;
}

/* 修改密码：左右铺满、无圆角白底 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .change-password-page-unified {
    max-width: none;
    margin: 0 -20px;
    padding: 0 0 96px;
    width: calc(100% + 40px);
    box-sizing: border-box;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .change-password-page-unified .change-password-card {
    border-radius: 0;
    border: none;
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    overflow: hidden;
    color: #141a15;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .change-password-page-unified .change-password-card__head {
    background: transparent;
    border-bottom: 1px solid rgba(20, 40, 30, 0.08);
    padding: 16px 18px 12px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .change-password-page-unified .change-password-card__title {
    color: #141a15 !important;
    font-weight: 800;
    margin: 0;
    font-size: 18px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .change-password-page-unified .card-body {
    padding: 18px 18px 22px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .change-password-page-unified .form-label {
    color: #5c6d62 !important;
    font-weight: 600;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .change-password-page-unified .form-control {
    border-radius: 12px;
    border: 1px solid rgba(20, 40, 30, 0.12);
    background: rgba(255, 255, 255, 0.95);
    color: #141a15;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .change-password-page-unified .form-control:focus {
    border-color: rgba(34, 120, 80, 0.45);
    box-shadow: 0 0 0 3px rgba(120, 200, 140, 0.22);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .change-password-page-unified .form-group:last-of-type {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .change-password-page-unified .form-group:last-of-type .btn {
    flex: 1 1 auto;
    min-width: 120px;
    text-align: center;
    text-decoration: none;
    border-radius: 999px !important;
    font-weight: 700 !important;
    padding: 12px 18px !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .change-password-page-unified .btn.btn-primary {
    background: #141a15 !important;
    border: 1px solid #252e28 !important;
    color: #e8f7dc !important;
    box-shadow: 0 4px 14px rgba(20, 26, 21, 0.2) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .change-password-page-unified .btn.btn-primary:hover {
    background: #1c2520 !important;
    border-color: #2a352e !important;
    color: #f0ffe8 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .change-password-page-unified .text-danger {
    color: #b91c1c !important;
    font-weight: 600;
    font-size: 13px;
}

/* 接单排行榜：标签 + 磨砂列表 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-ranking-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px 96px;
    box-sizing: border-box;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-ranking-page .pr-ranking-list-card {
    margin-top: 4px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    box-shadow: 0 10px 32px rgba(35, 65, 45, 0.08), 0 2px 10px rgba(35, 55, 40, 0.05);
    overflow: hidden;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-ranking-page .pr-ranking-list-body {
    padding: 6px 14px 14px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-ranking-page .pr-ranking-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(20, 40, 30, 0.07);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-ranking-page .pr-ranking-row:last-child {
    border-bottom: none;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-ranking-page .pr-ranking-row-main {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-ranking-page .pr-ranking-rank {
    width: 26px;
    text-align: center;
    font-weight: 800;
    color: #141a15;
    flex-shrink: 0;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-ranking-page .pr-ranking-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(240, 244, 248, 0.95);
    flex-shrink: 0;
    border: 1px solid rgba(20, 40, 30, 0.08);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-ranking-page .pr-ranking-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-ranking-page .pr-ranking-name {
    font-weight: 700;
    color: #141a15;
    font-size: 15px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-ranking-page .pr-ranking-id {
    font-size: 12px;
    color: #5c6d62;
    margin-top: 2px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-ranking-page .pr-ranking-stats {
    text-align: right;
    flex-shrink: 0;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-ranking-page .pr-ranking-count {
    font-weight: 800;
    color: #166534;
    font-size: 15px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-ranking-page .pr-ranking-amount {
    font-size: 12px;
    color: #5c6d62;
    margin-top: 2px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-ranking-page .pr-ranking-empty {
    text-align: center;
    padding: 48px 16px;
    color: #6b7a90;
    font-size: 15px;
}

@media (max-width: 768px) {
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-tabs {
        justify-content: flex-start;
        gap: 6px;
        padding: 6px 0 12px;
    }
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .my-orders-tab {
        font-size: 16px;
        min-width: 4.2em;
        padding: 8px 8px 16px;
    }
}

/* 首页/大厅入口卡（大厅单/指定单）统一样式 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tabs-wrap {
    /* 和上方蓝色信息卡保持左右一致的留白 */
    margin: 0 10px 12px 10px !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tabs {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    grid-auto-rows: minmax(118px, auto) !important;
    gap: 10px !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tab {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    width: 100% !important;
    min-height: 132px !important;
    padding: 16px !important;
    border-radius: 14px !important;
    border: 1px solid #e8eef6 !important;
    background: #fff !important;
    color: #1f2d3d !important;
    text-decoration: none !important;
    box-shadow: 0 20px 22px rgba(22, 41, 74, 0.14), 0 3px 8px rgba(22, 41, 74, 0.08) !important;
    position: relative !important;
    overflow: visible !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tab::before {
    content: "" !important;
    position: absolute !important;
    top: -5px !important;
    left: 16px !important;
    width: 9px !important;
    height: 9px !important;
    border-radius: 50% !important;
    background: #2f81e6 !important;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tab::after {
    content: "" !important;
    position: absolute !important;
    left: 8px !important;
    right: 8px !important;
    bottom: -6px !important;
    height: 10px !important;
    background:
        radial-gradient(8px 8px at 8px 0, transparent 7px, rgba(24, 43, 74, 0.10) 7.2px),
        radial-gradient(8px 8px at 24px 0, transparent 7px, rgba(24, 43, 74, 0.08) 7.2px) !important;
    background-size: 32px 10px !important;
    background-repeat: repeat-x !important;
    opacity: 0.55 !important;
    pointer-events: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tab__main {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    min-width: 0 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tab__title {
    font-size: clamp(22px, 5.5vw, 38px) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tab__sub {
    margin-top: 8px !important;
    font-size: clamp(13px, 3.2vw, 22px) !important;
    color: #6b7889 !important;
    white-space: nowrap !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tab__icon {
    width: clamp(48px, 14vw, 82px) !important;
    height: clamp(48px, 14vw, 82px) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tab__icon img {
    width: clamp(44px, 13vw, 76px) !important;
    height: clamp(44px, 13vw, 76px) !important;
    object-fit: contain !important;
    display: block !important;
}
/* Bento：左「大厅单」跨两行，右「指定单」「双人单」上下各一格 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tab--hall {
    background: #ffffff !important;
    grid-row: 1 / span 2 !important;
    grid-column: 1 / 2 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tab--assigned {
    background: #e8f6ee !important;
    grid-row: 1 / 2 !important;
    grid-column: 2 / 3 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tab--multi {
    background: #e8f6ee !important;
    grid-row: 2 / 3 !important;
    grid-column: 2 / 3 !important;
}
@media (max-width: 900px) {
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tabs-wrap {
        margin: 0 10px 12px 10px !important;
    }
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tab {
        min-height: 112px !important;
        padding: 12px !important;
    }
}
@media (max-width: 768px) {
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tab {
        min-height: 118px !important;
        padding: 14px !important;
    }
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tab__title {
        font-size: clamp(20px, 5vw, 33px) !important;
    }
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-order-hall-tab__sub {
        font-size: clamp(12px, 3vw, 19px) !important;
    }
}

/* 窄屏：仅缩纸条宽度；底栏用 Grid 单行，禁止再把按钮挤到第二行（否则余额会悬在中间） */
@media (max-width: 520px) {
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-ribbon {
        width: min(calc(100vw - 36px), var(--pr-ribbon-w)) !important;
        max-width: min(calc(100vw - 36px), var(--pr-ribbon-w)) !important;
    }
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__foot {
        column-gap: 8px !important;
    }
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions {
        gap: 5px !important;
        flex-wrap: nowrap !important;
    }
}

/* 首页余额区：留白与区块间距（蓝卡实色在下方 pr-home-balance-shell 一段） */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .profile-main-content {
    padding-top: 12px !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .profile-section {
    margin-bottom: 20px !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__name,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__id,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__label {
    color: var(--pr-text-strong) !important;
    position: relative;
    z-index: 1;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-ribbon .pr-home-balance-card__name {
    color: #0e2b46 !important;
    text-shadow: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-ribbon .pr-home-balance-card__id {
    color: #5f7190 !important;
    text-shadow: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__amount {
    color: #fff08e !important;
    text-shadow: 0 1px 10px rgba(72, 123, 188, 0.38) !important;
    /* 长金额不占满一行：上限略降 + 随屏宽缩放 */
    font-size: clamp(26px, 5.8vw, 36px) !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em !important;
    line-height: 1.12 !important;
    font-variant-numeric: tabular-nums !important;
    display: inline-block !important;
    text-align: left !important;
    max-width: 100% !important;
    position: relative;
    z-index: 1;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__foot {
    border-top-color: rgba(232, 244, 255, 0.32) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card .profile-edit-icon-btn {
    background: rgba(255, 255, 255, 0.92) !important;
    color: #1e4b87 !important;
    border-color: rgba(255, 255, 255, 0.92) !important;
}
/* 首页蓝卡「提现 / 明细」：窄胶囊，少占宽度，给左侧余额留空间 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-shrink: 0 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions .btn {
    position: relative !important;
    overflow: hidden !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    min-height: 34px !important;
    line-height: 1.25 !important;
    box-sizing: border-box !important;
    padding: 6px 12px !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.btn-outline {
    padding: 6px 11px !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.btn-primary,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.my-orders-btn-submit {
    border: 1px solid #252e28 !important;
    background: #141a15 !important;
    color: #e8f7dc !important;
    box-shadow: 0 4px 14px rgba(20, 26, 21, 0.2) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.btn-primary::before,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.my-orders-btn-submit::before {
    display: none !important;
    content: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.btn-primary:hover,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.my-orders-btn-submit:hover {
    filter: brightness(1.06) !important;
    transform: translateY(-1px) !important;
    color: #f0ffe8 !important;
    text-decoration: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.btn-outline {
    background: rgba(255, 255, 255, 0.72) !important;
    color: #1f2d3d !important;
    border: 1px solid #b8c9bf !important;
    box-shadow: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.btn-outline::before {
    display: none !important;
    content: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.btn-outline:hover {
    background: rgba(255, 255, 255, 0.92) !important;
    border-color: #9aaf9f !important;
    color: #141a15 !important;
    text-decoration: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.btn-primary:active,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.my-orders-btn-submit:active,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.btn-outline:active {
    transform: translateY(1px) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.btn-primary:focus-visible,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.my-orders-btn-submit:focus-visible,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.btn-outline:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(167, 243, 208, 0.55), 0 4px 14px rgba(20, 26, 21, 0.12) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.btn-primary:visited,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.my-orders-btn-submit:visited {
    color: #e8f7dc !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__actions a.btn-outline:visited {
    color: #1f2d3d !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-notice-card {
    border-radius: 14px !important;
    border: 1px solid #e8eef6 !important;
    box-shadow: 0 4px 12px rgba(22, 41, 74, 0.06) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .profile-section > .section-title {
    margin-bottom: 12px !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .section-title.section-title--hall {
    position: relative !important;
    display: inline-block !important;
    padding-bottom: 6px !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .section-title.section-title--hall::after {
    content: "" !important;
    position: absolute !important;
    left: -2px !important;
    right: -18px !important;
    bottom: -6px !important;
    height: 14px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #00de7a 0%, #27ffb0 40%, #00deff 100%);
    box-shadow: 0 4px 10px rgba(0, 189, 152, 0.5) !important;
    transform: skewX(-10deg) !important;
    z-index: 0 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-notice-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 12px 0 !important;
    color: #0e2b46 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #eef1f5 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-notice-item__left {
    width: 20px !important;
    height: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-notice-item__icon {
    width: 18px !important;
    height: 18px !important;
    opacity: 0.95 !important;
    display: block !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-notice-item:last-child {
    border-bottom: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-notice-item__title {
    font-size: 18px !important;
    font-weight: 700 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-notice-item__date {
    font-size: 14px !important;
    color: #8ea1c2 !important;
}
    
/* 首页：贴纸挂边风格（参考图：人物=纸条） */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-shell {
    position: relative !important;
    margin-top: 0 !important; /* 不下压蓝卡，保留顶部蓝色区域 */
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-shell > .pr-home-ribbon {
    position: absolute !important;
    left: 14px !important;
    top: -26px !important; /* 纸条挂在蓝卡上沿，不制造大面积留白 */
    z-index: 10 !important;
}

/* 覆盖 dashboard 内联 .profile-stat-card 的 text-align:center，余额行贴底、整卡左对齐 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .profile-stat-card.pr-home-balance-card {
    text-align: left !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card {
    position: relative !important;
    isolation: isolate !important;
    --pr-ribbon-w: 338px;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 18px !important;
    padding-top: 26px !important;
    min-height: 216px !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    box-sizing: border-box !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card::before {
    /* 纯色蓝卡 + 右侧插画（无渐变） */
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    border-radius: 16px !important;
    border: 1px solid #5a9eeb !important;
    box-shadow: 0 14px 30px rgba(23, 81, 154, 0.2), 0 6px 14px rgba(12, 48, 96, 0.14) !important;
    background-color: #2f81e6 !important;
    background-image: url("../illustrations/pr_home_hero.svg") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px top 18px !important;
    background-size: 42% 66% !important;
    pointer-events: none !important;
    z-index: 1 !important;
}
/* 蓝卡底部：与接单入口卡一致的「波浪」装饰 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card::after {
    content: "" !important;
    position: absolute !important;
    left: 8px !important;
    right: 8px !important;
    bottom: -6px !important;
    height: 10px !important;
    background:
        radial-gradient(8px 8px at 8px 0, transparent 7px, rgba(24, 43, 74, 0.12) 7.2px),
        radial-gradient(8px 8px at 24px 0, transparent 7px, rgba(24, 43, 74, 0.09) 7.2px) !important;
    background-size: 32px 10px !important;
    background-repeat: repeat-x !important;
    opacity: 0.65 !important;
    pointer-events: none !important;
    z-index: 3 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__head,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__foot {
    position: relative !important;
    z-index: 4 !important;
}
/* 底栏：单行 Grid — 左余额、右「提现/明细」同一底边对齐（与截图一致） */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__foot {
    margin-top: auto !important;
    padding-top: 0 !important;
    padding-bottom: 4px !important;
    border-top: none !important; /* 去掉横线 */
    width: 100% !important;
    align-self: stretch !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: end !important;
    column-gap: 12px !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__foot .pr-home-balance-card__label {
    color: rgba(255, 255, 255, 0.92) !important;
    text-shadow: 0 1px 2px rgba(12, 48, 96, 0.35) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__foot > div:first-child {
    min-width: 0 !important;
    justify-self: start !important;
    align-self: end !important;
    text-align: left !important;
    margin-right: 0 !important;
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 10px !important;
    white-space: nowrap !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__foot > div:last-child {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    justify-self: end !important;
    align-self: end !important;
    gap: 10px !important;
    margin-left: 0 !important;
    flex-shrink: 0 !important;
    transform: none !important;
}

/* 纸条本体：保持白纸条 + 右侧内凹缺口 + 绿色点 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-ribbon {
    position: relative !important;
    z-index: 6 !important;
    background: #ffffff !important;
    border: 1px solid #d9e2f0 !important;
    box-shadow: 0 14px 30px rgba(13, 37, 76, 0.22), 0 4px 10px rgba(13, 37, 76, 0.12) !important;
    border-radius: 16px !important;
    padding: 18px 24px 18px 18px !important;
    min-width: 0 !important;
    width: var(--pr-ribbon-w) !important;
    max-width: var(--pr-ribbon-w) !important;
    min-height: 112px !important;
    overflow: visible !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-ribbon .avatar-circle-large {
    width: 84px !important;
    height: 84px !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-ribbon::after {
    content: "" !important;
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    background: #f4f7fb !important;
    box-shadow: inset 0 0 0 1px rgba(13, 37, 76, 0.06) !important;
    pointer-events: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-ribbon::before {
    content: "" !important;
    position: absolute !important;
    right: 9px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: #b8e06a !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.95), 0 6px 14px rgba(13, 37, 76, 0.14) !important;
    pointer-events: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-ribbon .pr-home-balance-card__name {
    color: #0e2b46 !important;
    text-shadow: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-ribbon .pr-home-balance-card__id {
    color: #6b7a90 !important;
    text-shadow: none !important;
}
@media (max-width: 768px) {
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-shell {
        margin-top: 0 !important;
    }
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-shell > .pr-home-ribbon {
        top: -24px !important;
        left: 10px !important;
    }
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card {
        --pr-ribbon-w: 300px;
        padding-top: 22px !important;
        min-height: 204px !important;
    }
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card::before {
        background-position: right 8px top 22px !important;
        background-size: 40% 58% !important;
    }
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-balance-card__foot {
        column-gap: 8px !important;
    }
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-home-ribbon {
        min-width: 0 !important;
    }
}

/* 代练首页：个人数据 — 与接单入口卡（pr-order-hall-tab）同一套视觉语言 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-personal-stats-card {
    position: relative !important;
    overflow: visible !important;
    width: 100% !important;
    padding: 18px 16px 16px !important;
    border-radius: 14px !important;
    border: 1px solid #e8eef6 !important;
    background: #fff !important;
    box-shadow: 0 20px 22px rgba(22, 41, 74, 0.14), 0 3px 8px rgba(22, 41, 74, 0.08) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-personal-stats-card::before {
    content: "" !important;
    position: absolute !important;
    top: -5px !important;
    left: 16px !important;
    width: 9px !important;
    height: 9px !important;
    border-radius: 50% !important;
    background: #2f81e6 !important;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95) !important;
    z-index: 1 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-personal-stats-card::after {
    content: "" !important;
    position: absolute !important;
    left: 8px !important;
    right: 8px !important;
    bottom: -6px !important;
    height: 10px !important;
    background:
        radial-gradient(8px 8px at 8px 0, transparent 7px, rgba(24, 43, 74, 0.10) 7.2px),
        radial-gradient(8px 8px at 24px 0, transparent 7px, rgba(24, 43, 74, 0.08) 7.2px) !important;
    background-size: 32px 10px !important;
    background-repeat: repeat-x !important;
    opacity: 0.55 !important;
    pointer-events: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-personal-stats-card__head {
    position: relative !important;
    z-index: 2 !important;
    margin-bottom: 8px !important;
}
/* 标题与时间范围同一行：左标题、右日期 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-personal-stats-card__head > div {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: baseline !important;
    justify-content: space-between !important;
    gap: 6px 12px !important;
    width: 100% !important;
    min-width: 0 !important;
    padding-left: 2px !important;
    box-sizing: border-box !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-personal-stats-card__title {
    margin: 0 !important;
    padding-left: 0 !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #1f2d3d !important;
    letter-spacing: 0.02em !important;
    flex-shrink: 0 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-personal-stats-card__hint {
    padding-left: 0 !important;
    margin: 0 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #6b7889 !important;
    line-height: 1.35 !important;
    text-align: right !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
}

/* 个人数据：接单大厅同款底部短条指示（薄荷绿圆角条） */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-stats-range-nav {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 2px !important;
    padding: 2px 0 10px !important;
    margin: 0 0 12px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    flex-wrap: nowrap !important;
    scrollbar-width: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-stats-range-nav::-webkit-scrollbar {
    display: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-stats-range-tab {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    text-align: center !important;
    text-decoration: none !important;
    color: #5c6d62 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 6px 2px 14px !important;
    position: relative !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    font-family: inherit !important;
    white-space: nowrap !important;
    -webkit-tap-highlight-color: transparent !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-stats-range-tab.active {
    color: #141a15 !important;
    font-weight: 800 !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-stats-range-tab.active::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 2px !important;
    width: 56% !important;
    max-width: 52px !important;
    height: 5px !important;
    border-radius: 4px !important;
    background: #a8ff96 !important;
    box-shadow: 0 1px 0 rgba(100, 160, 80, 0.2) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-stats-range-tab--btn.active::after {
    bottom: 2px !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-personal-stats-grid {
    position: relative !important;
    z-index: 2 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-personal-stat {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 76px !important;
    padding: 10px 4px !important;
    border-radius: 12px !important;
    border: 1px solid #cfe8d8 !important;
    background: #e8f6ee !important;
    text-decoration: none !important;
    color: inherit !important;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset !important;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-personal-stat:hover {
    background: #dff3e8 !important;
    border-color: #b8dcc8 !important;
    color: inherit !important;
    text-decoration: none !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-personal-stat:active {
    background: #d4efe0 !important;
    transform: scale(0.98) !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-personal-stat__val {
    font-size: clamp(11px, 2.9vw, 14px) !important;
    font-weight: 800 !important;
    color: #fa541c !important;
    line-height: 1.2 !important;
    text-align: center !important;
    white-space: nowrap !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-personal-stat__label {
    margin-top: 6px !important;
    font-size: clamp(10px, 2.5vw, 12px) !important;
    font-weight: 600 !important;
    color: #6b7889 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    text-align: center !important;
}
@media (max-width: 360px) {
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-personal-stats-grid {
        gap: 6px !important;
    }
    body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-dash-personal-stat {
        min-height: 70px !important;
        padding: 8px 2px !important;
    }
}

/* 个人数据：自定义日期底部弹层（黑底确定钮 + 薄荷字，与参考图一致） */
body.pr-dash-range-sheet-open {
    overflow: hidden !important;
}
.pr-dash-range-sheet[hidden] {
    display: none !important;
}
.pr-dash-range-sheet:not([hidden]) {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 10050 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}
.pr-dash-range-sheet__backdrop {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(15, 23, 42, 0.48) !important;
    cursor: pointer !important;
}
.pr-dash-range-sheet__panel {
    position: relative !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    background: #fff !important;
    border-radius: 18px 18px 0 0 !important;
    box-shadow: 0 -12px 40px rgba(15, 23, 42, 0.18) !important;
    padding: 20px 18px calc(16px + env(safe-area-inset-bottom, 0px)) !important;
    box-sizing: border-box !important;
    animation: pr-dash-range-sheet-in 0.28s ease-out both !important;
}
@keyframes pr-dash-range-sheet-in {
    from {
        transform: translateY(18px);
        opacity: 0.85;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.pr-dash-range-sheet__title {
    margin: 0 0 12px 0 !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #1f2d3d !important;
    text-align: center !important;
}

/* 月历区间（参考：起止实心薄荷圆 + 中间浅绿连通条 + 「今」） */
.pr-dash-cal {
    margin-bottom: 8px !important;
    user-select: none !important;
}
.pr-dash-cal__toolbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 10px !important;
    padding: 0 2px !important;
}
.pr-dash-cal__title {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #1f2d3d !important;
    letter-spacing: 0.02em !important;
}
.pr-dash-cal__nav {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    background: #fff !important;
    font-size: 22px !important;
    line-height: 1 !important;
    color: #1f2d3d !important;
    cursor: pointer !important;
    font-family: inherit !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    -webkit-tap-highlight-color: transparent !important;
}
.pr-dash-cal__nav:active {
    background: #f4f7fb !important;
}
.pr-dash-cal__weekdays {
    display: grid !important;
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
    text-align: center !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #8a9ba8 !important;
    margin-bottom: 6px !important;
}
.pr-dash-cal__weekdays span {
    padding: 4px 0 !important;
}
.pr-dash-cal__grid {
    display: grid !important;
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
    gap: 0 !important;
}
.pr-dash-cal__day {
    position: relative !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    font-family: inherit !important;
    -webkit-tap-highlight-color: transparent !important;
}
.pr-dash-cal__day--muted .pr-dash-cal__num {
    color: #c5ced6 !important;
    font-weight: 500 !important;
}
.pr-dash-cal__day-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 48px !important;
    padding: 2px 0 4px !important;
    position: relative !important;
}
.pr-dash-cal__num {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1f2d3d !important;
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease !important;
    position: relative !important;
    z-index: 2 !important;
}
.pr-dash-cal__day--in-range .pr-dash-cal__day-inner::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    height: 34px !important;
    background: rgba(168, 255, 150, 0.38) !important;
    z-index: 0 !important;
    pointer-events: none !important;
}
.pr-dash-cal__day--sel-start .pr-dash-cal__day-inner::before {
    left: 50% !important;
    right: 0 !important;
    border-radius: 999px 0 0 999px !important;
}
.pr-dash-cal__day--sel-end .pr-dash-cal__day-inner::before {
    left: 0 !important;
    right: 50% !important;
    border-radius: 0 999px 999px 0 !important;
}
.pr-dash-cal__day--sel-start.pr-dash-cal__day--sel-end .pr-dash-cal__day-inner::before,
.pr-dash-cal__day--only-anchor .pr-dash-cal__day-inner::before {
    display: none !important;
}
.pr-dash-cal__day--range-mid .pr-dash-cal__day-inner::before {
    border-radius: 0 !important;
    left: 0 !important;
    right: 0 !important;
}
.pr-dash-cal__day--sel-start .pr-dash-cal__num,
.pr-dash-cal__day--sel-end .pr-dash-cal__num {
    background: #5fd4a0 !important;
    color: #fff !important;
    font-weight: 800 !important;
    box-shadow: 0 2px 10px rgba(95, 212, 160, 0.45) !important;
}
.pr-dash-cal__day--today .pr-dash-cal__num {
    box-shadow: inset 0 0 0 1.5px rgba(95, 212, 160, 0.65) !important;
}
.pr-dash-cal__today-tag {
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    color: #3aaf78 !important;
    margin-top: 1px !important;
    position: relative !important;
    z-index: 2 !important;
}
.pr-dash-cal__day--today.pr-dash-cal__day--sel-start .pr-dash-cal__today-tag,
.pr-dash-cal__day--today.pr-dash-cal__day--sel-end .pr-dash-cal__today-tag {
    color: rgba(255, 255, 255, 0.92) !important;
}

.pr-dash-range-sheet__actions {
    display: flex !important;
    gap: 10px !important;
    align-items: stretch !important;
    margin-top: 6px !important;
}
.pr-dash-range-sheet__actions--split .pr-dash-range-sheet__reset {
    flex: 1 !important;
}
.pr-dash-range-sheet__actions--split .pr-dash-range-sheet__ok {
    flex: 2 !important;
}
.pr-dash-range-sheet__reset {
    padding: 12px 14px !important;
    border-radius: 999px !important;
    border: 1px solid #d7dbe1 !important;
    background: #fff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1f2d3d !important;
    cursor: pointer !important;
    font-family: inherit !important;
}
.pr-dash-range-sheet__ok {
    padding: 12px 14px !important;
    border-radius: 999px !important;
    border: none !important;
    background: #111826 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #a8ff96 !important;
    cursor: pointer !important;
    font-family: inherit !important;
    box-shadow: 0 4px 14px rgba(17, 24, 38, 0.25) !important;
}

@media (min-width: 861px) {
    body.auth-splash--split .auth-tabs--register .register-info-toggle-mobile.auth-tab-side {
        display: none;
    }
}

@media (max-width: 860px) {
    body.auth-splash--split .auth-register-notice--desktop {
        display: none;
    }

    body.auth-splash--split .auth-tabs--register .register-info-toggle-mobile.auth-tab-side {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
}

/* ========== 代练端：消息列表 messages.php（参考 IM 列表布局） ========== */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-page {
    margin: 0 -8px 8px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-hero {
    margin: 0 0 10px;
    padding: 0 0 2px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-search-wrap__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 14px;
    pointer-events: none;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-search {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 12px 14px 12px 40px;
    font-size: 14px;
    background: transparent;
    box-shadow: none;
    outline: none;
    box-sizing: border-box;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-search::placeholder {
    color: #9ca3af;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 14px 0 18px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-quick-grid--tabs .pr-msg-quick-card {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    margin: 0;
    width: 100%;
    text-align: left;
    font: inherit;
    cursor: pointer;
    color: inherit;
    box-sizing: border-box;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-quick-grid--tabs .pr-msg-quick-card:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 2px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-quick-grid--tabs .pr-msg-quick-card--active {
    transform: scale(1.02);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
    z-index: 1;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-quick-grid--tabs .pr-msg-quick-card:not(.pr-msg-quick-card--active) {
    opacity: 0.88;
    filter: saturate(0.92);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-quick-grid--tabs .pr-msg-quick-card:active {
    transform: scale(0.99);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-quick-grid--tabs .pr-msg-quick-card--active:active {
    transform: scale(1);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-quick-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    padding: 14px 14px 16px;
    border-radius: 16px;
    text-decoration: none;
    color: #0f172a;
    min-height: 96px;
    box-sizing: border-box;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-quick-card--invite {
    background: linear-gradient(145deg, #5eead4 0%, #22d3ee 55%, #38bdf8 100%);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-quick-card--book {
    background: linear-gradient(145deg, #bef264 0%, #a3e635 45%, #84cc16 100%);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-quick-card__watermark {
    position: absolute;
    right: -18px;
    bottom: -28px;
    width: 132px;
    height: 132px;
    opacity: 0.88;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-8deg);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-quick-card__watermark svg {
    width: 100%;
    height: 100%;
    display: block;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-quick-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    max-width: 78%;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-svg {
    display: block;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-svg--sm {
    width: 26px;
    height: 26px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-quick-card__t {
    font-size: 15px;
    font-weight: 800;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-quick-card__sub {
    font-size: 12px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.72);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-sections {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-block {
    margin: 0;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-center__title,
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-block__title {
    font-size: 15px;
    font-weight: 800;
    color: #1f2d3d;
    margin: 0 0 10px 4px;
    letter-spacing: 0.04em;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-block__empty {
    margin: 0 4px 8px;
    padding: 14px 12px;
    font-size: 13px;
    color: #94a3b8;
    background: transparent;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px 16px 24px;
    text-align: center;
    background: transparent;
    border-radius: 0;
    border: none;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-empty__illu {
    width: 76px;
    height: 76px;
    opacity: 0.38;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-empty__illu .pr-msg-svg {
    width: 100%;
    height: 100%;
    display: block;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-empty__txt {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #64748b;
    max-width: 260px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eef2f7;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-list li {
    border-bottom: 1px solid #f1f5f9;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-list li:last-child {
    border-bottom: none;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    text-decoration: none;
    color: inherit;
    min-height: 64px;
    box-sizing: border-box;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-row:active {
    background: #f8fafc;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-row__avatar {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f5f3ff 0%, #ecfeff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(196, 181, 253, 0.35);
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-row__unread-dot {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(239, 68, 68, 0.55);
    z-index: 2;
    pointer-events: none;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-row--read .pr-msg-row__unread-dot {
    display: none;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-row__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-row__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-row__name {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-row__time {
    font-size: 12px;
    color: #94a3b8;
    flex-shrink: 0;
}
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-msg-row__preview {
    font-size: 13px;
    color: #64748b;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 380px) {
    body.practitioner-page .bottom-nav .bottom-nav__label {
        font-size: 10px;
    }
}

/* 公告详情正文：与 pre-wrap 配合时避免模板空白渗入首行 */
body.practitioner-page.pr-theme-unified:not(.auth-splash) .pr-notice-detail__body {
    color: #333;
    line-height: 1.8;
    white-space: pre-wrap;
    word-break: break-word;
}

/* ========== 打手端登录 · 居中布局（背景与登录后 pr-theme-unified 一致） ========== */
body.auth-splash.auth-splash--glass {
    --auth-glass-ink: #0a0a0a;
    --auth-glass-muted: #6b7280;
    --auth-glass-fill: rgba(255, 255, 255, 0.72);
    --auth-glass-fill-strong: #0a0a0a;
    --auth-glass-border: rgba(0, 0, 0, 0.08);
    --auth-glass-font: "Outfit", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-family: var(--auth-glass-font);
    color: var(--auth-glass-ink);
    /* 与 body.practitioner-page.pr-theme-unified 同色 */
    background: linear-gradient(
        180deg,
        #e6f7c8 0%,
        #edf9d4 14%,
        #f2fae6 32%,
        #f5faf0 55%,
        #f4f9f4 100%
    );
}

body.auth-splash.auth-splash--glass .auth-splash-bg {
    background: linear-gradient(
        180deg,
        #e6f7c8 0%,
        #edf9d4 14%,
        #f2fae6 32%,
        #f5faf0 55%,
        #f4f9f4 100%
    );
    filter: none;
    overflow: hidden;
}

body.auth-splash.auth-splash--glass .auth-splash-bg::after {
    display: none;
}

body.auth-splash.auth-splash--glass .auth-glass-blob {
    display: none;
}

body.auth-splash.auth-splash--glass .auth-glass-shell {
    align-items: center;
    justify-content: center;
    padding: max(24px, env(safe-area-inset-top)) 22px max(28px, env(safe-area-inset-bottom));
}

body.auth-splash.auth-splash--glass .auth-glass-stack {
    width: min(100%, 340px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

body.auth-splash.auth-splash--glass .auth-glass-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 36px;
    animation: authGlassRise 0.7s ease-out both;
}

body.auth-splash.auth-splash--glass .auth-glass-logo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 26px rgba(20, 60, 40, 0.14);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

body.auth-splash.auth-splash--glass .auth-glass-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    box-sizing: border-box;
    display: block;
    background: transparent;
}

body.auth-splash.auth-splash--glass .auth-glass-logo__fallback {
    font-family: var(--auth-glass-font);
    font-size: 36px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: 0.04em;
    line-height: 1;
}

body.auth-splash.auth-splash--glass .auth-glass-title {
    margin: 0;
    font-family: var(--auth-glass-font);
    font-size: clamp(22px, 5.6vw, 28px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: 0.06em;
    line-height: 1.25;
    text-shadow: none;
}

body.auth-splash.auth-splash--glass .auth-glass-alert {
    width: 100%;
    margin: 0 0 14px;
    padding: 10px 14px;
    border-radius: 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    animation: authGlassRise 0.55s ease-out both;
}

body.auth-splash.auth-splash--glass .auth-glass-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
}

body.auth-splash.auth-splash--glass .auth-glass-field {
    width: 100%;
    animation: authGlassRise 0.65s ease-out both;
}

body.auth-splash.auth-splash--glass .auth-glass-field:nth-child(2) { animation-delay: 0.06s; }
body.auth-splash.auth-splash--glass .auth-glass-field:nth-child(3) { animation-delay: 0.12s; }

body.auth-splash.auth-splash--glass .auth-glass-input {
    width: 100%;
    height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--auth-glass-border);
    background: var(--auth-glass-fill);
    color: #0a0a0a;
    font-family: var(--auth-glass-font);
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    outline: none;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(20, 60, 40, 0.06);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.auth-splash.auth-splash--glass .auth-glass-input::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

body.auth-splash.auth-splash--glass .auth-glass-input:focus {
    background: #fff;
    border-color: rgba(0, 230, 118, 0.55);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.16);
}

body.auth-splash.auth-splash--glass .auth-glass-field.is-invalid .auth-glass-input {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
}

body.auth-splash.auth-splash--glass .auth-glass-field-error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #dc2626;
    text-align: center;
}

body.auth-splash.auth-splash--glass .auth-glass-remember {
    display: flex;
    justify-content: center;
    margin: 2px 0 4px;
    animation: authGlassRise 0.7s ease-out both;
    animation-delay: 0.16s;
}

body.auth-splash.auth-splash--glass .auth-glass-remember__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

body.auth-splash.auth-splash--glass .auth-glass-remember__label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #16a34a;
    cursor: pointer;
}

body.auth-splash.auth-splash--glass .auth-glass-submit {
    width: 100%;
    height: 48px;
    margin-top: 4px;
    border: none;
    border-radius: 999px !important;
    background: #0a0a0a;
    color: #1aff8c;
    font-family: var(--auth-glass-font);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-indent: 0.18em;
    cursor: pointer;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
    animation: authGlassRise 0.75s ease-out both;
    animation-delay: 0.2s;
}

body.auth-splash.auth-splash--glass .auth-glass-submit:hover {
    background: #171717;
    transform: translateY(-1px);
}

body.auth-splash.auth-splash--glass .auth-glass-submit:active {
    transform: translateY(0);
}

body.auth-splash.auth-splash--glass .auth-glass-submit.is-loading,
body.auth-splash.auth-splash--glass .auth-glass-submit:disabled {
    opacity: 0.75;
    cursor: wait;
    transform: none;
}

body.auth-splash.auth-splash--glass .auth-glass-footer {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    animation: authGlassRise 0.8s ease-out both;
    animation-delay: 0.24s;
}

body.auth-splash.auth-splash--glass .auth-glass-footer a {
    color: #047857;
    text-decoration: none;
    border-bottom: 1px solid rgba(4, 120, 87, 0.35);
}

body.auth-splash.auth-splash--glass .auth-glass-footer a:hover {
    color: #065f46;
    border-bottom-color: #065f46;
}

body.auth-splash.auth-splash--glass .auth-glass-footer span {
    color: #9ca3af;
}

body.auth-splash.auth-splash--glass .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

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

/* 注册页：水平仍居中，仅顶部对齐以便长表单滚动 */
body.auth-splash.auth-splash--glass.auth-page-register .auth-glass-shell {
    align-items: flex-start;
    justify-content: center;
    padding-top: max(16px, env(safe-area-inset-top));
    padding-bottom: max(24px, env(safe-area-inset-bottom));
}

body.auth-splash.auth-splash--glass .auth-glass-stack--register {
    width: min(100%, 360px);
    margin: 0 auto;
    padding-bottom: 8px;
}

body.auth-splash.auth-splash--glass .auth-glass-brand--compact {
    margin-bottom: 20px;
}

body.auth-splash.auth-splash--glass .auth-glass-brand--compact .auth-glass-logo {
    width: 72px;
    height: 72px;
    margin-bottom: 12px;
}

body.auth-splash.auth-splash--glass .auth-glass-brand--compact .auth-glass-title {
    font-size: clamp(20px, 5vw, 24px);
}

body.auth-splash.auth-splash--glass .auth-glass-subtitle {
    margin: 6px 0 0;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.08em;
}

body.auth-splash.auth-splash--glass .auth-glass-invite-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

body.auth-splash.auth-splash--glass .auth-glass-invite-row .auth-glass-input {
    flex: 1;
    min-width: 0;
}

body.auth-splash.auth-splash--glass .auth-glass-invite-btn {
    flex-shrink: 0;
    min-width: 72px;
    padding: 0 14px;
    border: none;
    border-radius: 999px !important;
    background: #0a0a0a;
    color: #1aff8c;
    font-family: var(--auth-glass-font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* 登录/注册 Toast 已由 body.practitioner-page 统一为深色信息提示 */

body.auth-splash.auth-splash--glass .auth-glass-invite-btn:hover {
    background: #171717;
}

body.auth-splash.auth-splash--glass .auth-glass-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    text-align: center;
    line-height: 1.4;
}

body.auth-splash.auth-splash--glass .auth-glass-verify-msg {
    margin: 6px 0 0;
    min-height: 1.2em;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: #6b7280;
}

body.auth-splash.auth-splash--glass .auth-glass-verify-msg.is-ok {
    color: #15803d;
}

body.auth-splash.auth-splash--glass .auth-glass-verify-msg.is-bad {
    color: #dc2626;
}

body.auth-splash.auth-splash--glass a.auth-glass-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
    body.auth-splash.auth-splash--glass .auth-glass-blob,
    body.auth-splash.auth-splash--glass .auth-glass-brand,
    body.auth-splash.auth-splash--glass .auth-glass-alert,
    body.auth-splash.auth-splash--glass .auth-glass-field,
    body.auth-splash.auth-splash--glass .auth-glass-remember,
    body.auth-splash.auth-splash--glass .auth-glass-submit,
    body.auth-splash.auth-splash--glass .auth-glass-footer {
        animation: none !important;
    }
}
