/* ========== 基础变量与重置 ========== */
:root {
    /* 颜色系统 */
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --primary-dark: #2563eb;
    --success: #10b981;
    --success-light: #34d399;
    --success-dark: #059669;
    --danger: #ef4444;
    --danger-light: #f87171;
    --danger-dark: #dc2626;
    --warning: #f59e0b;
    --warning-light: #fbbf24;
    --warning-dark: #d97706;
    --purple: #8b5cf6;
    --purple-light: #a78bfa;
    --purple-dark: #7c3aed;
    --cyan: #06b6d4;
    --pink: #ec4899;
    
    /* 中性色 */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* 圆角 */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    
    /* 阴影 */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.03);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
    
    /* 过渡动画 */
    --transition-fast: 150ms;
    --transition-normal: 300ms;
    --transition-slow: 500ms;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: #f8fafc;
    color: var(--gray-800);
    line-height: 1.5;
    min-height: 100vh;
    position: relative;
    overflow-y: auto;
}

/* 背景遮罩层 */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3); /* 透明度调整为30% */
    z-index: -1;
}

/* 工具类 */
.hidden { display: none !important; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

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

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

.flex-col {
    display: flex;
    flex-direction: column;
}

.gap-sm { gap: 8px; }
.gap-md { gap: 12px; }
.gap-lg { gap: 16px; }

.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 12px; }
.mt-lg { margin-top: 16px; }
.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 12px; }
.mb-lg { margin-bottom: 16px; }

.p-sm { padding: 8px; }
.p-md { padding: 12px; }
.p-lg { padding: 16px; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.text-sm { font-size: 12px; }
.text-base { font-size: 14px; }
.text-lg { font-size: 16px; }
.text-xl { font-size: 18px; }
.text-2xl { font-size: 20px; }
.text-3xl { font-size: 24px; }
.text-4xl { font-size: 28px; }
.text-5xl { font-size: 32px; }

.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-800 { color: var(--gray-800); }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-purple { color: var(--purple); }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* ========== 页面样式 ========== */

/* 错误页面 */
.error-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-content {
    text-align: center;
    max-width: 300px;
    padding: 20px;
}

.error-icon {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 20px;
}

.error-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.error-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* 绑定页面 */
.bind-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.bind-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px 0;
}

.bind-header {
    text-align: center;
    margin-bottom: 40px;
}

.bind-subtitle {
    color: var(--gray-500);
    margin-top: 12px;
    font-size: 14px;
}

/* 登录标签页 */
.login-tabs {
    display: flex;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 30px;
    gap: 20px;
}

.login-tab {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-500);
    position: relative;
    transition: color var(--transition-fast);
}

.login-tab i {
    margin-right: 8px;
}

.login-tab.active {
    color: var(--primary);
    font-weight: 500;
}

.login-tab.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

/* 登录表单 */
.login-form {
    display: none;
}

.login-form.active {
    display: block;
    animation: fadeIn var(--transition-normal);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input-group {
    display: flex;
    gap: 10px;
}

.form-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--gray-800);
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
    color: var(--gray-400);
}

/* 二维码容器 */
.qrcode-container {
    text-align: center;
}

.qrcode-box {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.qrcode-loading {
    color: var(--gray-500);
    font-size: 14px;
}

.qrcode-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qrcode-tips {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 10px;
}

/* 按钮样式 */
.btn {
    padding: 10px 16px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn i {
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, var(--success), var(--success-dark));
    color: white;
    border: none;
}

.btn-success:hover {
    background: linear-gradient(135deg, var(--success-dark), var(--success));
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger), var(--danger-dark));
    color: white;
    border: none;
}

.btn-danger:hover {
    background: linear-gradient(135deg, var(--danger-dark), var(--danger));
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(59, 130, 246, 0.1);
}

.btn-purple {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: white;
    border: none;
}

.btn-purple:hover {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* 主应用容器 */
.app-container {
    position: relative;
    min-height: 100vh;
    padding-bottom: 70px; /* TabBar高度 */
    overflow-y: auto;
}

/* 顶部品牌栏 */
.brand-header {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
}
.logo-icon img {
    width: 36px;  /* 与原来一致 */
    height: 36px;
    border-radius: 10px;
    object-fit: contain; /* 保持图片比例 */
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
    letter-spacing: 0.5px;
}

.action-buttons {
    display: flex;
    gap: 6px;
}

.action-btn {
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    white-space: nowrap;
    height: 36px;
}

.action-btn i {
    font-size: 13px;
}

.action-btn.renew {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.action-btn.invite {
    background: linear-gradient(135deg, var(--purple), #7c3aed);
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.action-btn:active {
    transform: translateY(0);
}

/* 玩家信息卡片 */
.player-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 18px;
    margin: 10px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.player-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 8px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 4px;
    font-weight: 500;
}

.info-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
}

.info-value.highlight {
    color: var(--primary);
}

.info-value.danger {
    color: var(--danger);
}

/* 标签页内容 */
.tab-content {
    display: none;
    padding: 16px;
    animation: fadeIn var(--transition-normal);
    overflow-y: auto;
    max-height: calc(100vh - 130px);
}

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

/* 网格布局容器 */
.grid-container {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    margin-bottom: 16px;
}

.grid-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--gray-100);
    transition: background-color var(--transition-fast);
}

.grid-item:last-child {
    border-bottom: none;
}

.grid-item:hover {
    background-color: var(--gray-50);
}

.item-left {
    flex: 1;
    padding-right: 16px;
}

.item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.4;
}

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

/* 配置按钮 */
.config-btn {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 13px;
}

.config-btn:hover {
    background: var(--gray-200);
    color: var(--gray-800);
}

.config-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 开关样式 */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: .3s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

/* 队列表格 */
.queue-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.queue-table th,
.queue-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.queue-table th {
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-50);
}

.queue-table th:last-child {
    text-align: right;
}

.queue-table td:last-child {
    text-align: right;
    font-size: 13px;
    color: var(--gray-700);
}

.queue-table tr:last-child td {
    border-bottom: none;
}

.queue-header {
    padding: 16px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 帮助内容 */
.help-section {
    margin-bottom: 24px;
}

.help-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.help-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 18px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.help-content p {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

.help-content ul, .help-content ol {
    margin-left: 20px;
    margin-bottom: 12px;
}

.help-content li {
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--gray-700);
}

/* 底部TabBar */
.tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 33.33%;
    height: 100%;
    color: var(--gray-500);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab-item.active {
    color: var(--primary);
}

.tab-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.tab-label {
    font-size: 11px;
    font-weight: 500;
}

/* 模态框 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none;
    animation: fadeIn var(--transition-normal);
}

.modal-content {
    background: white;
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp var(--transition-normal);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-500);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

.modal-body {
    padding: 20px;
}

/* 配置表单 */
.config-item {
    margin-bottom: 16px;
}

.config-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.config-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--gray-800);
    background: white;
    transition: all var(--transition-fast);
}

.config-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.config-tips {
    background: var(--gray-50);
    border-left: 3px solid var(--primary);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--gray-700);
    margin-top: 20px;
}

/* 续费相关 */
.renew-card {
    background: #fef7fb;
    border-left: 4px solid var(--purple);
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

.renew-packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.package-item {
    padding: 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-fast);
}

.package-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

/* Toast提示 */
#toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    z-index: 695029883;
    display: none;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    max-width: 80%;
    text-align: center;
    animation: toastFadeIn var(--transition-normal);
}

#toast.success {
    background: rgba(16, 185, 129, 0.95);
}

#toast.error {
    background: rgba(239, 68, 68, 0.95);
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes toastFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

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

.fade-in {
    animation: fadeIn var(--transition-normal) forwards;
}

/* 响应式调整 */
@media (max-width: 380px) {
    .player-card {
        margin: 12px;
        padding: 16px;
    }
    
    .player-info-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    
    .grid-item {
        padding: 14px;
    }
    
    .item-right {
        gap: 10px;
    }
    
    .tab-bar {
        height: 65px;
    }
    
    .tab-icon {
        font-size: 18px;
    }
    
    .tab-label {
        font-size: 10px;
    }
}

/* 电脑端竖屏固定比例 */
@media (min-width: 768px) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        background: #f8fafc;
        background-size: cover;
        background-position: center;
        margin: 0;
        padding: 20px;
    }
    
    .app-container {
        width: 480px;
        max-width: 480px;
        margin: 0;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        position: relative;
        background: white;
        overflow-y: auto;
        /* 移除min-height或设为0 */
        min-height: 0;
        /* 或者完全不设置高度，由内容决定 */
    }
    
    .background-overlay {
        border-radius: 24px;
    }
    
    .tab-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 480px;
        border-radius: 0 0 24px 24px;
        margin: 0;
    }
    
    /* 移除这个固定高度限制 */
    .tab-content {
        max-height: calc(900px - 130px);
    }
}

/* 手机端保持原有样式 */
@media (max-width: 767px) {
    .app-container {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 0;
        /* 移除 background: white; 或者改为半透明 */
        background: rgba(255, 255, 255, 0.3); /* 半透明白色 */
    }

    .tab-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
}

/* 调整玩家卡片在第一个标签页内的边距 */
#tab-account .player-card {
    margin-top: 8px;
}

/* 空状态提示 */
.empty-state {
    padding: 40px 20px;
    text-align: center;
    color: var(--gray-500);
}

.empty-state i {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--gray-300);
}

/* ========== 资源采集配置布局优化 ========== */
#resource-config-modal #resource-config-list {
    display: grid;
    grid-template-columns: 1fr; /* 默认一列 */
    gap: 10px;
}

#resource-config-modal .config-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px;
}

@media (min-width: 400px) {
    #resource-config-modal #resource-config-list {
        grid-template-columns: repeat(2, 1fr); /* 宽度足够时显示两列 */
    }
}

#resource-config-modal .config-label {
    font-size: 13px;
    white-space: nowrap;
    margin-bottom: 0;
}

#resource-config-modal .config-select {
    width: 100%;
}