/* ===== 全局修复 2025-12-26 ===== */

/* 1. 底部导航栏新颜色 - 深蓝色 */
.tabbar, nav.tabbar, .bottom-nav {
    background: linear-gradient(135deg, #0a4d8c 0%, #1565a0 50%, #0a4d8c 100%) !important;
    border-top: 1px solid rgba(100, 180, 255, 0.3) !important;
}

/* 2. 页面内容不被遮挡 */
.main, .content, #app, .scrollable-content {
    padding-top: 60px !important;
    padding-bottom: 80px !important;
}

/* 3. 头像不被遮住 */
.avatar, .user-avatar, .profile-avatar {
    position: relative !important;
    z-index: 10 !important;
    overflow: visible !important;
}

/* 4. 表单内容完整显示 */
.form-container, .kyc-form, .verification-form, .settings-form {
    padding-bottom: 100px !important;
}

/* 5. 优化页面切换性能 */
* {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

html, body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 6. 禁用过度动画减少卡顿 */
.tabbar *, .header *, .nav-bar * {
    transition: none !important;
    animation: none !important;
}
