/* =========================
   提现弹窗容器
========================= */

/* 遮罩层 */
.withdraw-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
}

.withdraw-overlay.active {
    display: block;
}

/* 弹窗主体 - 全屏模式 */
.withdraw-modal {
    background-color: #1a1a1a;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    border-radius: 0;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-animation: slideUp 0.3s ease;
    animation: slideUp 0.3s ease;
}

/* 头部 */
.withdraw-header {
    position: relative;
    padding: 16px 56px;
    background-color: #2d2d2d;
    border-bottom: 1px solid #404040;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.withdraw-title {
    font-size: 18px;
    font-weight: bold;
    color: #e0e0e0;
    text-align: center;
    line-height: 1.4;
}

/* 关闭按钮 */
.withdraw-close {
    position: absolute;
    top: 50%;
    right: 14px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: #999;
    font-size: 30px;
    line-height: 30px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 50%;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.withdraw-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.withdraw-close:active {
    background-color: rgba(255, 255, 255, 0.15);
    -webkit-transform: translateY(-50%) scale(0.95);
    -ms-transform: translateY(-50%) scale(0.95);
    transform: translateY(-50%) scale(0.95);
}

/* 弹窗主体内容区 */
.withdraw-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #1a1a1a;
}

/* 隐藏radio */
.withdraw-tab-radio {
    display: none;
}

/* Tab导航 */
.withdraw-tabs {
    padding: 0;
    background-color: #2d2d2d;
    border-bottom: 1px solid #505050;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.withdraw-tab-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.withdraw-tab-btn {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    position: relative;
    color: #999;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    border-bottom: 2px solid transparent;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
}

.withdraw-tab-btn:active {
    background-color: rgba(255, 255, 255, 0.05);
}

.withdraw-tab-btn .tab-text {
    font-size: 15px;
    font-weight: 500;
}

/* Tab选中状态 */
.withdraw-body #withdraw-tab-apply:checked ~ .withdraw-tabs .withdraw-tab-btn[data-tab="apply"],
.withdraw-body #withdraw-tab-records:checked ~ .withdraw-tabs .withdraw-tab-btn[data-tab="records"] {
    color: #FFD54F;
    border-bottom-color: #FFD54F;
}

/* Tab内容显示控制 */
.withdraw-tab-content {
    display: none;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.withdraw-body #withdraw-tab-apply:checked ~ #applyContent,
.withdraw-body #withdraw-tab-records:checked ~ #recordsContent {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

/* 申请提现表单 */
.withdraw-form-container {
    padding: 16px;
}

/* 余额卡片 */
.withdraw-balance-card {
    background-color: #2d2d2d;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #404040;
}

.balance-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}

.balance-label {
    font-size: 14px;
    color: #999;
}

.balance-value,
.bet-volume-value {
    font-size: 20px;
    font-weight: bold;
    color: #FFD54F;
}

.bet-volume-label {
    font-size: 14px;
    color: #999;
}

.bet-volume-tip {
    margin-top: 10px;
    font-size: 12px;
    color: #9e9e9e;
}

.bet-volume-tip.warning {
    color: #FF8A65;
}

/* 提现方式选择 */
.withdraw-type-section {
    margin-bottom: 20px;
}

.section-title {
    font-size: 15px;
    font-weight: 500;
    color: #e0e0e0;
    margin-bottom: 12px;
}

.withdraw-type-list {
    width: 100%;
}

/* 下拉选择框样式 */
.withdraw-type-select {
    width: 100%;
    height: 48px;
    background-color: #2d2d2d;
    border: 2px solid #404040;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 15px;
    color: #e0e0e0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    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='%23e0e0e0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.withdraw-type-select:focus {
    outline: none;
    border-color: #FFD54F;
    background-color: rgba(255, 213, 79, 0.1);
}

.withdraw-type-select option {
    background-color: #2d2d2d;
    color: #e0e0e0;
    padding: 10px;
}

/* 无绑定提示样式 */
.withdraw-no-bindings {
    padding: 40px 20px;
    text-align: center;
}

.no-bindings-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.no-bindings-text {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-weight: 500;
}

.no-bindings-hint {
    font-size: 14px;
    color: #999;
}

.withdraw-type-item {
    background-color: #2d2d2d;
    border: 2px solid #404040;
    border-radius: 10px;
    padding: 14px 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.withdraw-type-item:active {
    background-color: rgba(255, 255, 255, 0.05);
}

.withdraw-type-item.active {
    border-color: #FFD54F;
    background-color: rgba(255, 213, 79, 0.1);
}

.withdraw-type-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.type-icon {
    font-size: 24px;
    margin-right: 12px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.type-info {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.type-name {
    font-size: 15px;
    font-weight: 500;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.type-account {
    font-size: 13px;
    color: #999;
}

.type-unbound {
    color: #F44336;
}

.type-radio {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.type-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* 提现金额输入 */
.withdraw-amount-section {
    margin-bottom: 20px;
}

.amount-input-wrapper {
    margin-bottom: 12px;
}

.amount-input {
    width: 100%;
    padding: 14px 16px;
    background-color: #2d2d2d;
    border: 2px solid #404040;
    border-radius: 10px;
    font-size: 18px;
    color: #e0e0e0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.amount-input:focus {
    outline: none;
    border-color: #FFD54F;
    background-color: rgba(255, 213, 79, 0.05);
}

.amount-hint {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
    padding: 0 4px;
}

/* 手续费显示 */
.withdraw-fee-section {
    background-color: #2d2d2d;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #404040;
}

.fee-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 12px;
}

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

.fee-label {
    font-size: 14px;
    color: #999;
}

.fee-value {
    font-size: 16px;
    font-weight: 500;
    color: #e0e0e0;
}

.fee-value-highlight {
    font-size: 18px;
    color: #FFD54F;
}

/* 安全密码输入 */
.withdraw-password-section {
    margin-bottom: 20px;
}

.password-input {
    width: 100%;
    padding: 14px 16px;
    background-color: #2d2d2d;
    border: 2px solid #404040;
    border-radius: 10px;
    font-size: 16px;
    color: #e0e0e0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.password-input:focus {
    outline: none;
    border-color: #FFD54F;
    background-color: rgba(255, 213, 79, 0.05);
}

/* 备注输入 */
.withdraw-remark-section {
    margin-bottom: 20px;
}

.remark-input {
    width: 100%;
    padding: 14px 16px;
    background-color: #2d2d2d;
    border: 2px solid #404040;
    border-radius: 10px;
    font-size: 14px;
    color: #e0e0e0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.remark-input:focus {
    outline: none;
    border-color: #FFD54F;
    background-color: rgba(255, 213, 79, 0.05);
}

/* 提交按钮 */
.withdraw-submit-section {
    margin-bottom: 20px;
}

.withdraw-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #1a1a1a;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-box-shadow: 0 2px 8px rgba(255, 213, 79, 0.3);
    box-shadow: 0 2px 8px rgba(255, 213, 79, 0.3);
}

.withdraw-submit-btn:active {
    -webkit-transform: scale(0.98);
    -ms-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-box-shadow: 0 1px 4px rgba(255, 213, 79, 0.3);
    box-shadow: 0 1px 4px rgba(255, 213, 79, 0.3);
}

.withdraw-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* 筛选栏 */
.withdraw-filters {
    padding: 12px 16px;
    background-color: #2d2d2d;
    border-bottom: 1px solid #404040;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    /* 低版本iOS兼容：gap不支持时的负margin */
    margin: -5px;
}

/* 低版本iOS兼容：为子元素添加margin */
.withdraw-filters > * {
    margin: 5px;
}

/* 提现记录列表 */
.withdraw-list-container {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.withdraw-list {
    padding: 12px 16px;
}

/* 提现记录项 */
.withdraw-item {
    background-color: #2d2d2d;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #404040;
}

.withdraw-item-header {
    padding: 14px 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.withdraw-item-left {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.withdraw-item-title {
    font-size: 15px;
    font-weight: 500;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.withdraw-item-subtitle {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.withdraw-item-account {
    font-size: 12px;
    color: #999;
}

.withdraw-item-right {
    text-align: right;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 12px;
}

.withdraw-item-amount {
    font-size: 16px;
    font-weight: bold;
    color: #FFD54F;
    margin-bottom: 4px;
}

.withdraw-item-status {
    font-size: 12px;
}

.withdraw-item-remark {
    padding: 12px 16px;
    background-color: rgba(244, 67, 54, 0.1);
    border-top: 1px solid rgba(244, 67, 54, 0.2);
    border-bottom: 1px solid rgba(244, 67, 54, 0.2);
}

.withdraw-item-remark-label {
    font-size: 12px;
    color: #F44336;
    font-weight: 500;
    margin-bottom: 6px;
}

.withdraw-item-remark-content {
    font-size: 13px;
    color: #e0e0e0;
    line-height: 1.5;
    word-break: break-word;
}

.withdraw-item-footer {
    padding: 10px 16px;
    background-color: rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.withdraw-item-time {
    font-size: 12px;
    color: #999;
}

.withdraw-cancel-btn {
    padding: 6px 12px;
    background-color: transparent;
    border: 1px solid #F44336;
    border-radius: 6px;
    font-size: 12px;
    color: #F44336;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.withdraw-cancel-btn:active {
    background-color: rgba(244, 67, 54, 0.1);
}

/* 加载中 */
.withdraw-loading {
    padding: 40px 20px;
    text-align: center;
}

.withdraw-loading p {
    margin-top: 16px;
    font-size: 15px;
    color: #999;
}

/* 空状态 */
.withdraw-empty {
    padding: 60px 20px;
    text-align: center;
    color: #999;
}

.withdraw-empty svg {
    margin-bottom: 16px;
}

.withdraw-empty p {
    font-size: 15px;
}

/* 加载更多 */
.withdraw-load-more {
    padding: 16px;
    background-color: #2d2d2d;
    border-top: 1px solid #404040;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: center;
}

/* =========================
   提现弹窗 - 白色主题
========================= */

#theme-light:checked ~ * .withdraw-modal {
    background-color: #ffffff;
}

#theme-light:checked ~ * .withdraw-header {
    background-color: #f5f5f5;
    border-bottom-color: #e0e0e0;
}

#theme-light:checked ~ * .withdraw-title {
    color: #333333;
}

#theme-light:checked ~ * .withdraw-close {
    color: #999999;
}

#theme-light:checked ~ * .withdraw-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #333333;
}

#theme-light:checked ~ * .withdraw-close:active {
    background-color: rgba(0, 0, 0, 0.1);
}

#theme-light:checked ~ * .withdraw-body {
    background-color: #f5f5f5;
}

#theme-light:checked ~ * .withdraw-tabs {
    background-color: #ffffff;
    border-bottom-color: #d0d0d0;
}

#theme-light:checked ~ * .withdraw-tab-btn {
    color: #999999;
}

#theme-light:checked ~ * .withdraw-body #withdraw-tab-apply:checked ~ .withdraw-tabs .withdraw-tab-btn[data-tab="apply"],
#theme-light:checked ~ * .withdraw-body #withdraw-tab-records:checked ~ .withdraw-tabs .withdraw-tab-btn[data-tab="records"] {
    color: #4CAF50;
    border-bottom-color: #4CAF50;
}

#theme-light:checked ~ * .withdraw-balance-card {
    background-color: #ffffff;
    border-color: #e0e0e0;
}

#theme-light:checked ~ * .balance-value {
    color: #4CAF50;
}

#theme-light:checked ~ * .section-title {
    color: #333333;
}

#theme-light:checked ~ * .withdraw-type-item {
    background-color: #ffffff;
    border-color: #e0e0e0;
}

#theme-light:checked ~ * .withdraw-type-item:active {
    background-color: rgba(0, 0, 0, 0.03);
}

#theme-light:checked ~ * .withdraw-type-item.active {
    border-color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
}

/* 浅色主题下拉选择框 */
#theme-light:checked ~ * .withdraw-type-select {
    background-color: #ffffff;
    border-color: #e0e0e0;
    color: #333333;
    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='%23333333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

#theme-light:checked ~ * .withdraw-type-select:focus {
    border-color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
}

#theme-light:checked ~ * .withdraw-type-select option {
    background-color: #ffffff;
    color: #333333;
}

#theme-light:checked ~ * .no-bindings-text {
    color: #333333;
}

#theme-light:checked ~ * .no-bindings-hint {
    color: #999999;
}

#theme-light:checked ~ * .type-name {
    color: #333333;
}

#theme-light:checked ~ * .type-account {
    color: #999999;
}

#theme-light:checked ~ * .amount-input,
#theme-light:checked ~ * .password-input,
#theme-light:checked ~ * .remark-input {
    background-color: #ffffff;
    border-color: #e0e0e0;
    color: #333333;
}

#theme-light:checked ~ * .amount-input:focus,
#theme-light:checked ~ * .password-input:focus,
#theme-light:checked ~ * .remark-input:focus {
    border-color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.05);
}

#theme-light:checked ~ * .withdraw-fee-section {
    background-color: #ffffff;
    border-color: #e0e0e0;
}

#theme-light:checked ~ * .fee-value {
    color: #333333;
}

#theme-light:checked ~ * .fee-value-highlight {
    color: #4CAF50;
}

#theme-light:checked ~ * .withdraw-submit-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #ffffff;
    -webkit-box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

#theme-light:checked ~ * .withdraw-filters {
    background-color: #ffffff;
    border-bottom-color: #e0e0e0;
}

#theme-light:checked ~ * .withdraw-item {
    background-color: #ffffff;
    border-color: #e0e0e0;
}

#theme-light:checked ~ * .withdraw-item-title {
    color: #333333;
}

#theme-light:checked ~ * .withdraw-item-amount {
    color: #4CAF50;
}

#theme-light:checked ~ * .withdraw-item-footer {
    background-color: #f5f5f5;
}

#theme-light:checked ~ * .withdraw-load-more {
    background-color: #ffffff;
    border-top-color: #e0e0e0;
}

#theme-light:checked ~ * .load-more-btn {
    background-color: #f5f5f5;
    color: #4CAF50;
    border-color: #e0e0e0;
}

#theme-light:checked ~ * .load-more-btn:active {
    background-color: #eeeeee;
    border-color: #4CAF50;
}

#theme-light:checked ~ * .withdraw-empty {
    color: #999999;
}

#theme-light:checked ~ * .withdraw-loading p {
    color: #999999;
}

/* 白色主题 - 备注区域 */
#theme-light:checked ~ * .withdraw-item-remark {
    background-color: rgba(244, 67, 54, 0.08);
    border-top-color: rgba(244, 67, 54, 0.2);
    border-bottom-color: rgba(244, 67, 54, 0.2);
}

#theme-light:checked ~ * .withdraw-item-remark-label {
    color: #d32f2f;
}

#theme-light:checked ~ * .withdraw-item-remark-content {
    color: #666666;
}

/* =========================
   提现弹窗 - 蓝色主题
========================= */

#theme-blue:checked ~ * .withdraw-modal {
    background-color: #ffffff;
}

#theme-blue:checked ~ * .withdraw-header {
    background-color: #e3f2fd;
    border-bottom-color: #bbdefb;
}

#theme-blue:checked ~ * .withdraw-title {
    color: #1565c0;
}

#theme-blue:checked ~ * .withdraw-close {
    color: #64b5f6;
}

#theme-blue:checked ~ * .withdraw-close:hover {
    background-color: rgba(33, 150, 243, 0.1);
    color: #1565c0;
}

#theme-blue:checked ~ * .withdraw-close:active {
    background-color: rgba(33, 150, 243, 0.15);
}

#theme-blue:checked ~ * .withdraw-body {
    background-color: #f3f9ff;
}

#theme-blue:checked ~ * .withdraw-tabs {
    background-color: #ffffff;
    border-bottom-color: #90caf9;
}

#theme-blue:checked ~ * .withdraw-tab-btn {
    color: #90caf9;
}

#theme-blue:checked ~ * .withdraw-body #withdraw-tab-apply:checked ~ .withdraw-tabs .withdraw-tab-btn[data-tab="apply"],
#theme-blue:checked ~ * .withdraw-body #withdraw-tab-records:checked ~ .withdraw-tabs .withdraw-tab-btn[data-tab="records"] {
    color: #2196F3;
    border-bottom-color: #2196F3;
}

#theme-blue:checked ~ * .withdraw-balance-card {
    background-color: #ffffff;
    border-color: #bbdefb;
}

#theme-blue:checked ~ * .balance-value {
    color: #1565c0;
}

#theme-blue:checked ~ * .section-title {
    color: #0d47a1;
}

#theme-blue:checked ~ * .withdraw-type-item {
    background-color: #ffffff;
    border-color: #bbdefb;
}

#theme-blue:checked ~ * .withdraw-type-item:active {
    background-color: rgba(33, 150, 243, 0.05);
}

#theme-blue:checked ~ * .withdraw-type-item.active {
    border-color: #2196F3;
    background-color: rgba(33, 150, 243, 0.1);
}

/* 蓝色主题下拉选择框 */
#theme-blue:checked ~ * .withdraw-type-select {
    background-color: #ffffff;
    border-color: #bbdefb;
    color: #0d47a1;
    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='%230d47a1' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

#theme-blue:checked ~ * .withdraw-type-select:focus {
    border-color: #2196F3;
    background-color: rgba(33, 150, 243, 0.1);
}

#theme-blue:checked ~ * .withdraw-type-select option {
    background-color: #ffffff;
    color: #0d47a1;
}

#theme-blue:checked ~ * .no-bindings-text {
    color: #0d47a1;
}

#theme-blue:checked ~ * .no-bindings-hint {
    color: #90caf9;
}

#theme-blue:checked ~ * .type-name {
    color: #0d47a1;
}

#theme-blue:checked ~ * .type-account {
    color: #90caf9;
}

#theme-blue:checked ~ * .amount-input,
#theme-blue:checked ~ * .password-input,
#theme-blue:checked ~ * .remark-input {
    background-color: #ffffff;
    border-color: #bbdefb;
    color: #0d47a1;
}

#theme-blue:checked ~ * .amount-input:focus,
#theme-blue:checked ~ * .password-input:focus,
#theme-blue:checked ~ * .remark-input:focus {
    border-color: #2196F3;
    background-color: rgba(33, 150, 243, 0.05);
}

#theme-blue:checked ~ * .withdraw-fee-section {
    background-color: #ffffff;
    border-color: #bbdefb;
}

#theme-blue:checked ~ * .fee-value {
    color: #0d47a1;
}

#theme-blue:checked ~ * .fee-value-highlight {
    color: #1565c0;
}

#theme-blue:checked ~ * .withdraw-submit-btn {
    background: linear-gradient(135deg, #2196F3 0%, #1976d2 100%);
    color: #ffffff;
    -webkit-box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
}

#theme-blue:checked ~ * .withdraw-filters {
    background-color: #ffffff;
    border-bottom-color: #bbdefb;
}

#theme-blue:checked ~ * .withdraw-item {
    background-color: #ffffff;
    border-color: #bbdefb;
}

#theme-blue:checked ~ * .withdraw-item-title {
    color: #0d47a1;
}

#theme-blue:checked ~ * .withdraw-item-amount {
    color: #1565c0;
}

#theme-blue:checked ~ * .withdraw-item-footer {
    background-color: #f3f9ff;
}

#theme-blue:checked ~ * .withdraw-load-more {
    background-color: #ffffff;
    border-top-color: #bbdefb;
}

#theme-blue:checked ~ * .load-more-btn {
    background-color: #f3f9ff;
    color: #2196F3;
    border-color: #bbdefb;
}

#theme-blue:checked ~ * .load-more-btn:active {
    background-color: #e3f2fd;
    border-color: #2196F3;
}

#theme-blue:checked ~ * .withdraw-empty {
    color: #90caf9;
}

#theme-blue:checked ~ * .withdraw-loading p {
    color: #90caf9;
}

/* 蓝色主题 - 备注区域 */
#theme-blue:checked ~ * .withdraw-item-remark {
    background-color: rgba(244, 67, 54, 0.08);
    border-top-color: rgba(244, 67, 54, 0.25);
    border-bottom-color: rgba(244, 67, 54, 0.25);
}

#theme-blue:checked ~ * .withdraw-item-remark-label {
    color: #c62828;
}

#theme-blue:checked ~ * .withdraw-item-remark-content {
    color: #424242;
}

