* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }
        
        body {
            margin: 0 auto;
        }
        
        /* 状态栏 */
        .status-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fff;
            padding: 0 15px;
            height: 24px;
            font-size: 12px;
        }
        
        /* 导航栏 */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fff;
            padding: 10px 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .back-btn {
            font-size: 24px;
            color: #333;
        }
        
        .title {
            font-size: 17px;
            font-weight: 500;
        }
        
        .right-icons {
            display: flex;
            align-items: center;
        }
        
        .more-icon {
            margin-right: 20px;
            font-size: 24px;
        }
        
        .circle-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 2px solid #333;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        /* 用户信息区域 */
        .user-info {
            background-color: #333;
            color: #fff;
            padding: 15px;
            display: flex;
            align-items: center;
        }
        
        .user-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #ccc;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .user-name-container {
            display: flex;
            align-items: center;
            flex: 1;
        }
        
        .user-name {
            font-size: 18px;
            margin-right: 10px;
        }
        
        .vip-badge {
            display: inline-block;
            background-color: #ffc107;
            color: #333;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
        }
        
        .user-id {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .shop-tabs {
            display: flex;
            background-color: #ff4d4f;
            color: #fff;
        }
        
        .tab {
            flex: 1;
            text-align: center;
            padding: 12px 0;
            font-size: 14px;
            cursor: pointer;
        }
        
        .tab.active {
            position: relative;
            font-weight: 500;
        }
        
        .tab.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #fff;
        }
        
        .stats-card {
            background-color: #ff4d4f;
            color: #fff;
        }
        
        .stats-row {
            display: flex;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .stats-row:last-child {
            border-bottom: none;
        }
        
        .stats-cell {
            flex: 1;
            text-align: center;
            padding: 15px 5px;
            font-size: 14px;
        }
        
        .stats-label {
            font-size: 12px;
            margin-bottom: 5px;
        }
        
        .stats-value {
            font-size: 18px;
            font-weight: 500;
        }
        
        .pending-info {
            background-color: #fff;
            padding: 15px;
            margin: 10px 0;
        }
        
        .pending-item {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
        }
        
        .pending-item:last-child {
            margin-bottom: 0;
        }
        
        .pending-value {
            color: #ff4d4f;
        }
        
        .record-section {
            background-color: #fff;
            padding: 15px;
        }
        
        .record-tabs {
            display: flex;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .record-tab {
            padding: 10px 0;
            margin-right: 20px;
            position: relative;
            font-size: 14px;
            cursor: pointer;
        }
        
        .record-tab.active {
            color: #ff4d4f;
            font-weight: 500;
        }
        
        .record-tab.active::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #ff4d4f;
        }
        .orders1 {
            max-height: 1000px;overflow-y: auto;
        }
        
        .date-filter {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 15px 0;
            background-color: #fff;
            padding: 10px 15px;
            border-radius: 4px;
        }
        
        .date-range {
            display: flex;
            align-items: center;
        }
        
        .date-picker {
            width: 140px;
            text-align: center;
            font-size: 14px;
            color: #999;
        }
        
        .arrow-icon {
            margin: 0 10px;
            font-size: 18px;
        }
        
        .order-number {
            padding: 15px 0;
            border-top: 1px solid #f0f0f0;
            font-size: 14px;
            color: #666;
        }
        
        .bottom-navbar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50px;
            background-color: #fff;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #f0f0f0;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .menu-icon {
            font-size: 24px;
        }
        
        .home-icon {
            font-size: 24px;
        }
        
        .back-to-top {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
        }
        .modal-overlay {
            display: none; /* 默认隐藏 */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            width: 240px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .modal-title {
            margin-top: 0;
            font-size: 18px;
            color: #333;
        }

        .balance {
            margin: 15px 0;
            font-size: 16px;
            color: #666;
        }

        .withdraw-input {
            width: 100%;
            padding: 8px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }

        .button-group {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        /* 确认按钮 */
        .confirm-btn {
            padding: 8px 16px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .confirm-btn:hover {
            background-color: #45a049;
        }
        .show-withdraw {text-decoration: none;}
        .cancel-btn {
            padding: 8px 16px;
            background-color: #f44336;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .cancel-btn:hover {
            background-color: #d32f2f;
        }
        .bold{ font-weight:bold}