* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'SF Pro Display', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
        }
        
        :root {
            --primary: #43c7bc;
            --primary-dark: #4bc7d1;
            --primary-light: #e8fcfd;
            --secondary: #2497c5;
            --success: #00C853;
            --danger: #FF5252;
            --warning: #FFB74D;
            --text-primary: #1A1D29;
            --text-secondary: #6C7688;
            --text-light: #A0A8B8;
            --bg-primary: #FFFFFF;
            --bg-secondary: #F8F9FC;
            --bg-card: rgba(255, 255, 255, 0.9);
            --bg-transparent: rgba(255, 255, 255, 0.7);
            --border: #E8ECF2;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --radius-sm: 8px;
        }
        
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 80px;
            transition: all 0.3s ease;
        }
        
        body.page-active {
            overflow: hidden;
        }
        
        .container {
            max-width: 480px;
            margin: 0 auto;
            padding: 0 16px;
        }
        
        /* 顶部导航栏 */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px;
            background-color: var(--bg-primary);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
            width: 100%;
        }
        
        .wallet-address {
            font-size: 14px;
            color: var(--primary);
            padding: 6px 12px;
            border-radius: 20px;
            background-color: var(--primary-light);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .wallet-address i {
            font-size: 12px;
        }
        
        .header-icons {
            display: flex;
            gap: 16px;
        }
        
        .icon-btn {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.3s;
            position: relative;
        }
        
        .icon-btn:hover {
            background-color: var(--bg-secondary);
            color: var(--primary);
        }
        
        .notification-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 8px;
            height: 8px;
            background-color: var(--danger);
            border-radius: 50%;
        }
        
        /* 语言选择 */
        .language-selector {
            position: absolute;
            top: 60px;
            right: 16px;
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            padding: 16px;
            width: 200px;
            box-shadow: var(--shadow-lg);
            display: none;
            z-index: 101;
            border: 1px solid var(--border);
        }
        
        .language-option {
            padding: 12px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: background-color 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .language-option:hover {
            background-color: var(--bg-secondary);
        }
        
        .language-option.active {
            background-color: var(--primary-light);
            color: var(--primary);
        }
        
        .language-flag {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: white;
            font-weight: bold;
        }
        
        .language-confirm {
            margin-top: 12px;
            width: 100%;
            padding: 12px;
            background-color: var(--primary);
            border: none;
            border-radius: var(--radius-sm);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .language-confirm:hover {
            background-color: var(--primary-dark);
        }
        
        /* 资产概览 */
        .assets-overview {
            background: linear-gradient(280deg, var(--primary) 0%, var(--secondary) 100%);
            /*background: linear-gradient(280deg, #172d83 0%, #2497c5 100%)*/
            border-radius: var(--radius);
            padding: 24px;
            margin: 20px 0;
            box-shadow: var(--shadow);
            color: white;
            margin-top: 80px;
        }
        
        .assets-label {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 8px;
        }
        
        .total-assets {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .assets-change {
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        /* 快捷操作 */
        .quick-actions {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin: 24px 0;
        }
        
        .action-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .action-item:hover {
            transform: translateY(-5px);
        }
        
        .action-icon {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bg-transparent);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            font-size: 24px;
            color: var(--primary);
            transition: all 0.3s;
        }
        
        .action-item:hover .action-icon {
            background-color: var(--primary-light);
            transform: scale(1.05);
        }
        
        .action-name {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
        }
        
        /* 资产列表 - 理财产品模块半透明 */
        .assets-list {
            margin-top: 24px;
        }
        
        .section-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .see-all {
            font-size: 14px;
            color: var(--primary);
            cursor: pointer;
            font-weight: 500;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        
        .product-card {
            background-color: var(--bg-transparent);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .product-header {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .product-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            /*background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);*/
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 12px;
        }
        
        .product-name {
            font-size: 16px;
            font-weight: 550;
        }
        
        .product-value {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 4px;
        }
        
        .product-rate {
            font-size: 14px;
            /*color: var(--success);*/
            color: #1f3191;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        /* 购买记录 */
        .purchase-history {
            margin-top: 24px;
        }
        
        .history-list {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            padding: 16px;
            max-height: 200px;
            overflow-y: auto;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        
        .history-item {
            display: flex;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
        }
        
        .history-item:last-child {
            border-bottom: none;
        }
        
        .history-product {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .history-icon {
            /*width: 24px;*/
            height: 24px;
            border-radius: 6px;
            /*background-color: var(--primary-light);*/
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        .history-icon img{
            width: 24px;
            height: 24px;
            
        }
        
        .history-details {
            text-align: right;
        }
        
        .history-amount {
            font-size: 16px;
            font-weight: 600;
            color: var(--success);
        }
        
        .history-date {
            font-size: 12px;
            color: var(--text-light);
        }
        
        .history-period {
            font-size: 12px;
            margin-top: 4px;
        }
        
        .history-period.ended {
            color: var(--danger);
        }
        
        .no-history {
            text-align: center;
            padding: 40px 0;
            color: var(--text-light);
        }
        
        /* 底部导航 */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--bg-primary);
            display: flex;
            justify-content: space-around;
            padding: 12px 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.04);
            z-index: 100;
        }
        
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            cursor: pointer;
            color: var(--text-light);
            transition: color 0.3s;
            flex: 1;
            max-width: 80px;
        }
        
        .nav-item.active {
            color: var(--primary);
        }
        
        .nav-icon {
            font-size: 20px;
            margin-bottom: 2px;
        }
        
        .nav-text {
            font-size: 12px;
            font-weight: 500;
        }
        
        /* 页面样式 */
        .page {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 70px;
            background-color: var(--bg-primary);
            z-index: 99;
            overflow-y: auto;
            padding: 20px 16px;
        }
        
        .page.active {
            display: block;
            margin-top: 66px;
        }
        
        .page-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .back-btn {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 20px;
            cursor: pointer;
            margin-right: 12px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .back-btn:hover {
            background-color: var(--bg-secondary);
        }
        
        .page-title {
            font-size: 18px;
            font-weight: 600;
        }
        
        /* 通知页面 */
        .notification-item {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            padding: 20px;
            margin-bottom: 16px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .notification-item:hover {
            background-color: var(--bg-secondary);
        }
        
        .notification-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .notification-title {
            font-size: 16px;
            font-weight: 600;
        }
        
        .notification-badge-small {
            width: 8px;
            height: 8px;
            background-color: var(--primary);
            border-radius: 50%;
        }
        
        .notification-content {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 8px;
            line-height: 1.5;
        }
        
        .notification-time {
            font-size: 12px;
            color: var(--text-light);
            text-align: right;
        }
        
        /* 通知详情弹窗 */
        .notification-detail-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            display: none;
        }
        
        .notification-detail-content {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            padding: 24px;
            width: 90%;
            max-width: 400px;
            box-shadow: var(--shadow-lg);
        }
        
        .notification-detail-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        
        .notification-detail-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .notification-detail-time {
            font-size: 12px;
            color: var(--text-light);
            text-align: right;
        }
        
        .notification-detail-close {
            width: 100%;
            padding: 12px;
            background-color: var(--primary);
            border: none;
            border-radius: var(--radius-sm);
            color: white;
            font-weight: 600;
            cursor: pointer;
            margin-top: 16px;
        }
        
        /* 收款页面 - 改进复制按钮 */
        .qr-code-container {
            background-color: var(--bg-primary);
            padding: 24px;
            border-radius: var(--radius);
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        
        .qr-code {
            width: 200px;
            height: 200px;
            background-color: #000;
            border-radius: 8px;
        }
        
        .address-container {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            padding: 20px;
            margin: 20px 0;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        
        .address-label {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }
        
        .address-value-container {
            display: flex;
            align-items: center;
            background-color: var(--bg-secondary);
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            gap: 10px;
        }
        
        .address-value {
            font-size: 14px;
            word-break: break-all;
            flex: 1;
        }
        
        .copy-btn {
            background-color: var(--primary);
            border: none;
            color: white;
            cursor: pointer;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 6px 12px;
            border-radius: 4px;
            white-space: nowrap;
            transition: background-color 0.3s;
        }
        
        .copy-btn:hover {
            background-color: var(--primary-dark);
        }
        
        /* 提现页面 */
        .input-group {
            margin-bottom: 20px;
        }
        
        .input-label {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .input-field {
            width: 100%;
            padding: 16px;
            background-color: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-size: 10px;
            transition: border-color 0.3s;
        }
        
        .input-field:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .input-field:disabled {
            background-color: var(--bg-secondary);
            color: var(--text-light);
            cursor: not-allowed;
        }
        
        .currency-selector {
            display: flex;
            align-items: center;
            background-color: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 16px;
            margin-bottom: 20px;
        }
        
        .currency-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 50%;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .currency-name {
            font-weight: 600;
        }
        
        .submit-btn {
            width: 100%;
            padding: 16px;
            background-color: var(--primary);
            border: none;
            border-radius: var(--radius-sm);
            color: white;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            margin-top: 20px;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background-color: var(--primary-dark);
        }
        
        .submit-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        /* 划转页面 */
        .transfer-container {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            padding: 20px;
            margin: 20px 0;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        
        .transfer-direction {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
            font-size: 24px;
            color: var(--primary);
        }
        
        /* 安全页面 - 修改后的样式 */
        .security-option {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            padding: 20px;
            margin-bottom: 16px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        
        .security-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }
        
        .security-title {
            font-size: 16px;
            font-weight: 600;
        }
        
        .security-content {
            display: block;
        }
        
        /* 绑定提现地址样式 */
        .bind-address-status {
            font-size: 14px;
            color: var(--success);
            margin-top: 10px;
            font-weight: 500;
        }
        
        /* 理财产品页面 */
        .product-detail {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            padding: 20px;
            margin-bottom: 16px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        
        .product-period {
            display: inline-block;
            background-color: var(--primary-light);
            color: var(--primary);
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            margin-left: 8px;
        }
        
        .chart-container {
            height: 200px;
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            margin: 20px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            position: relative;
        }
        
        .chart-canvas {
            width: 100%;
            height: 100%;
        }
        
        .investment-info {
            display: flex;
            justify-content: space-between;
            margin: 20px 0;
            gap: 12px;
        }
        
        .investment-box {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            padding: 16px;
            flex: 1;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        
        .investment-label {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }
        
        .investment-value {
            font-size: 18px;
            font-weight: 600;
        }
        
        .product-description {
            margin: 20px 0;
            line-height: 1.6;
            color: var(--text-secondary);
            font-size: 14px;
        }
        
        .purchase-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 20px 0;
            gap: 16px;
        }
        
        .quantity-control {
            display: flex;
            align-items: center;
            background-color: var(--bg-primary);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
            border: 1px solid var(--border);
            height: 50px;
        }
        
        .quantity-btn {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 18px;
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            transition: background-color 0.3s;
        }
        
        .quantity-btn:hover {
            background-color: var(--bg-secondary);
        }
        
        .quantity-input {
            width: 50px;
            text-align: center;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 16px;
            margin: 0 8px;
        }
        
        .purchase-btn {
            flex: 1;
            padding: 16px;
            background-color: var(--primary);
            border: none;
            border-radius: var(--radius-sm);
            color: white;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .purchase-btn:hover {
            background-color: var(--primary-dark);
        }
        
        /* 支付密码弹窗 */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            display: none;
        }
        
        .modal-content {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            padding: 24px;
            width: 90%;
            max-width: 400px;
            box-shadow: var(--shadow-lg);
        }
        
        .modal-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            text-align: center;
        }
        
        .password-input {
            width: 100%;
            padding: 16px;
            background-color: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-size: 12px;
            transition: border-color 0.3s;
            margin: 20px 0;
            text-align: center;
            /*letter-spacing: 8px;*/
            font-weight: 600;
        }
        
        .password-input:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .modal-actions {
            display: flex;
            gap: 12px;
        }
        
        .modal-btn {
            flex: 1;
            padding: 14px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: background-color 0.3s;
        }
        
        .modal-cancel {
            background-color: var(--bg-secondary);
            color: var(--text-primary);
        }
        
        .modal-cancel:hover {
            background-color: #e8e8e8;
        }
        
        .modal-confirm {
            background-color: var(--primary);
            color: white;
        }
        
        .modal-confirm:hover {
            background-color: var(--primary-dark);
        }
        
        /* 我的页面 */
        .profile-header {
            display: flex;
            align-items: center;
            padding: 20px 0;
            margin-bottom: 20px;
        }
        
        .profile-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            margin-right: 16px;
        }
        
        .profile-info {
            flex: 1;
        }
        
        .profile-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 4px;
        }
        
        .profile-id {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 4px;
        }
        
        /* 团队等级颜色 */
        .team-level {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .team-level.l0 { background-color: #adb1bd8a; color: white; }
        .team-level.l1 { background-color: #FF6B6B; color: white; }
        .team-level.l2 { background-color: #FF9E6B; color: white; }
        .team-level.l3 { background-color: #FFD166; color: #333; }
        .team-level.l4 { background-color: #06D6A0; color: white; }
        .team-level.l5 { background-color: #118AB2; color: white; }
        .team-level.l6 { background-color: #073B4C; color: white; }
        .team-level.l7 { background-color: #7209B7; color: white; }
        .team-level.l8 { background-color: #3A0CA3; color: white; }
        
        .menu-list {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        
        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 16px;
            border-bottom: 1px solid var(--border);
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .menu-item:last-child {
            border-bottom: none;
        }
        
        .menu-item:hover {
            background-color: var(--bg-secondary);
        }
        
        .menu-left {
            display: flex;
            align-items: center;
        }
        
        .menu-icon {
            width: 40px;
            height: 40px;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: var(--primary-light);
            color: var(--primary);
        }
        
        .menu-text {
            font-size: 16px;
            font-weight: 500;
        }
        
        .menu-arrow {
            color: var(--text-light);
        }
        
        /* 个人信息页面 */
        .profile-detail-card {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            text-align: center;
        }
        
        .profile-detail-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            margin: 0 auto 16px;
        }
        
        .profile-detail-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .profile-detail-address {
            font-size: 14px;
            color: var(--text-secondary);
            word-break: break-all;
            margin-bottom: 16px;
        }
        
        .profile-edit-btn {
            background-color: var(--primary);
            border: none;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
        }
        
        /* 个人信息菜单项 */
        .profile-menu-list {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        
        .profile-menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px;
            border-bottom: 1px solid var(--border);
            cursor: pointer;
        }
        
        .profile-menu-item:last-child {
            border-bottom: none;
        }
        
        .profile-menu-left {
            display: flex;
            align-items: center;
            flex: 1;
        }
        
        .profile-menu-text {
            font-size: 16px;
            font-weight: 500;
            flex: 1;
        }
        
        .profile-menu-status {
            font-size: 14px;
            color: var(--text-secondary);
            margin-right: 12px;
        }
        
        .profile-menu-status.bound {
            color: var(--success);
        }
        
        .profile-menu-arrow {
            color: var(--text-light);
        }
        
        /* 修改昵称弹窗 */
        .nickname-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            display: none;
        }
        
        .nickname-modal-content {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            padding: 24px;
            width: 90%;
            max-width: 400px;
            box-shadow: var(--shadow-lg);
        }
        
        .nickname-modal-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            text-align: center;
        }
        
        .nickname-input {
            width: 100%;
            padding: 16px;
            background-color: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .nickname-input:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .nickname-modal-actions {
            display: flex;
            gap: 12px;
        }
        
        .nickname-modal-btn {
            flex: 1;
            padding: 14px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: background-color 0.3s;
        }
        
        .nickname-modal-cancel {
            background-color: var(--bg-secondary);
            color: var(--text-primary);
        }
        
        .nickname-modal-cancel:hover {
            background-color: #e8e8e8;
        }
        
        .nickname-modal-confirm {
            background-color: var(--primary);
            color: white;
        }
        
        .nickname-modal-confirm:hover {
            background-color: var(--primary-dark);
        }
        
        /* 我的团队页面 */
        .team-stats {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: var(--radius);
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            color: white;
            text-align: center;
        }
        
        .team-stat-item {
            margin-bottom: 16px;
        }
        
        .team-stat-item:last-child {
            margin-bottom: 0;
        }
        
        .team-stat-label {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 4px;
        }
        
        .team-stat-value {
            font-size: 24px;
            font-weight: 700;
        }
        
        .team-member-list {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        
        .team-member-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px;
            border-bottom: 1px solid var(--border);
        }
        
        .team-member-item:last-child {
            border-bottom: none;
        }
        
        .team-member-info {
            flex: 1;
        }
        
        .team-member-address {
            font-weight: 600;
            margin-bottom: 4px;
            font-size: 14px;
        }
        
        .team-member-details {
            font-size: 12px;
            color: var(--text-secondary);
        }
        
        .team-member-generation {
            font-size: 14px;
            color: var(--primary);
            font-weight: 600;
            width: 40px;
            text-align: right;
        }
        
        /* 邀请奖励页面 */
        .invite-card {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            text-align: center;
        }
        
        .invite-code {
            font-size: 32px;
            font-weight: 700;
            letter-spacing: 4px;
            margin: 20px 0;
            color: var(--primary);
        }
        
        .invite-link-container {
            display: flex;
            align-items: center;
            background-color: var(--bg-secondary);
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            margin: 20px 0;
        }
        
        .invite-link {
            flex: 1;
            font-size: 14px;
            word-break: break-all;
        }
        
        .invite-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin: 20px 0;
        }
        
        .invite-stat-item {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            padding: 16px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        
        .invite-stat-value {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        
        .invite-stat-label {
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        /* 用户反馈页面 */
        .feedback-input {
            width: 100%;
            min-height: 120px;
            padding: 16px;
            background-color: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-size: 14px;
            resize: vertical;
            margin-bottom: 16px;
        }
        
        .feedback-input:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .contact-email {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        
        /* 交易明细页面 */
        .balance-overview {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: var(--radius);
            padding: 24px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            color: white;
        }
        
        .balance-amount {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .balance-label {
            font-size: 14px;
            opacity: 0.9;
        }
        
        .balance-details {
            display: flex;
            justify-content: space-between;
            margin-top: 16px;
        }
        
        .balance-item {
            text-align: center;
            flex: 1;
        }
        
        .balance-item-value {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 4px;
        }
        
        .balance-item-label {
            font-size: 12px;
            opacity: 0.9;
        }
        
        .transaction-tabs {
            display: flex;
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin-bottom: 20px;
        }
        
        .transaction-tab {
            flex: 1;
            padding: 14px;
            text-align: center;
            cursor: pointer;
            transition: background-color 0.3s;
            font-weight: 500;
        }
        
        .transaction-tab.active {
            background-color: var(--primary);
            color: white;
        }
        
        /*#security-page {
            overflow-y: auto;
            -webkit-overflow-scrolling: touch; 
            
        }*/
        .transaction-list {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            /*overflow: hidden;*/
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            max-height: 600px;
            overflow-y: auto;
            /*-webkit-overflow-scrolling: touch;  添加这个让移动端滚动更流畅 */
        }
        
        .transaction-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px;
            border-bottom: 1px solid var(--border);
        }
        
        .transaction-item:last-child {
            border-bottom: none;
        }
        
        .transaction-info {
            flex: 1;
        }
        
        .transaction-type {
            font-weight: 600;
            margin-bottom: 4px;
        }
        
        .transaction-date {
            font-size: 12px;
            color: var(--text-light);
        }
        
        .transaction-amount {
            font-size: 16px;
            font-weight: 600;
        }
        
        .transaction-amount.positive {
            color: var(--success);
        }
        
        .transaction-amount.negative {
            color: var(--danger);
        }
        
        /* 谷歌验证器绑定页面 */
        .step-indicator {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        .step-indicator::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: var(--border);
            z-index: 1;
        }
        
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-number {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--bg-secondary);
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-bottom: 8px;
            border: 2px solid var(--border);
        }
        
        .step.active .step-number {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .step.completed .step-number {
            background-color: var(--success);
            color: white;
            border-color: var(--success);
        }
        
        .step-text {
            font-size: 12px;
            color: var(--text-secondary);
            text-align: center;
        }
        
        .step.active .step-text {
            color: var(--primary);
            font-weight: 500;
        }
        
        .step-content {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            padding: 24px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            text-align: center;
        }
        
        .step-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            text-align: center;
        }
        
        .step-description {
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .app-store-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin: 20px 0;
        }
        
        .app-store-btn {
            display: flex;
            align-items: center;
            background-color: var(--bg-secondary);
            border-radius: var(--radius-sm);
            padding: 12px 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .app-store-btn:hover {
            background-color: #e8e8e8;
        }
        
        .app-store-icon {
            font-size: 24px;
            margin-right: 10px;
        }
        
        .app-store-text {
            text-align: left;
        }
        
        .app-store-name {
            font-size: 12px;
        }
        
        .app-store-platform {
            font-size: 14px;
            font-weight: 600;
        }
        
        .google-auth-qr {
            width: 200px;
            height: 200px;
            background-color: #f5f5f5;
            border-radius: 8px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-light);
        }
        
        .manual-key {
            background-color: var(--bg-secondary);
            padding: 16px;
            border-radius: var(--radius-sm);
            margin: 20px 0;
            text-align: left;
        }
        
        .manual-key-label {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }
        
        .manual-key-value {
            font-size: 16px;
            font-weight: 600;
            word-break: break-all;
        }
        
        .verification-input {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        
        .verification-digit {
            width: 50px;
            height: 50px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            text-align: center;
            font-size: 18px;
            font-weight: 600;
        }
        
        .verification-digit:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .step-actions {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }
        
        .step-btn {
            flex: 1;
            padding: 14px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: background-color 0.3s;
        }
        
        .step-btn.prev {
            background-color: var(--bg-secondary);
            color: var(--text-primary);
        }
        
        .step-btn.prev:hover {
            background-color: #e8e8e8;
        }
        
        .step-btn.next {
            background-color: var(--primary);
            color: white;
        }
        
        .step-btn.next:hover {
            background-color: var(--primary-dark);
        }
        
        .step-btn.complete {
            background-color: var(--success);
            color: white;
        }
        
        .step-btn.complete:hover {
            background-color: #00b347;
        }

        /* 自定义提示弹窗 */
        .custom-alert {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1001;
            display: none;
        }
        
        .custom-alert-content {
            background-color: var(--bg-primary);
            border-radius: var(--radius);
            padding: 24px;
            width: 80%;
            max-width: 300px;
            box-shadow: var(--shadow-lg);
            text-align: center;
        }
        
        .custom-alert-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        
        .custom-alert-message {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.5;
        }
        
        .custom-alert-confirm {
            width: 100%;
            padding: 12px;
            background-color: var(--primary);
            border: none;
            border-radius: var(--radius-sm);
            color: white;
            font-weight: 600;
            cursor: pointer;
        }
        a {
            text-decoration: none;
            color: inherit; /* 或者指定其他颜色，如 color: #000; */
        }
        
        
        /* 在产品图标样式中添加图片支持 */
        .product-icon img {
            /*width: 100%;*/
            height: 100%;
            border-radius: 12px;
            object-fit: cover;
        }
        
        /* 确保原有的图标样式仍然有效 */
        .product-icon i {
            font-size: 20px;
        }
        
        
        /* 添加加载更多样式 */
        .load-more {
            text-align: center;
            padding: 16px;
            color: var(--text-light);
            cursor: pointer;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .load-more:hover {
            color: var(--primary);
        }
        
        .load-more.loading {
            pointer-events: none;
        }
        
        .load-more.loading i {
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .no-more-data {
            text-align: center;
            padding: 16px;
            color: var(--text-light);
            font-size: 14px;
        }
        /* 添加二维码图片样式 */
        .qr-code img {
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }
        /* 面包屑导航样式 */
        .breadcrumb {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        .breadcrumb-item {
            color: var(--primary);
            cursor: pointer;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb-item:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        
        .breadcrumb-current {
            color: var(--text-primary);
            font-weight: 500;
        }