 /* MD3 全局样式 */
        :root {
            --md-primary: #6750A4;
            --md-primary-dark: #4A3A85;
            --md-surface: #FFFFFF;
            --md-background: #FAFAFA;
            --md-on-surface: #1D1B20;
            --md-on-surface-variant: #6B7280;
            --md-outline: #E5E7EB;
            --md-shadow-1: 0 1px 3px rgba(0,0,0,0.08);
            --md-shadow-2: 0 3px 6px rgba(0,0,0,0.12);
            --md-shadow-3: 0 8px 24px rgba(0,0,0,0.08);
            --md-easing: cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--md-background);
            color: var(--md-on-surface);
            line-height: 1.5;
        }

        /* 顶部导航栏 - MD3 Medium Top App Bar */
        .uni-navbar {
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            background: var(--md-surface);
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
            transition: box-shadow 0.2s var(--md-easing);
        }

        .uni-navbar.scrolled {
            box-shadow: 0 3px 6px rgba(0,0,0,0.12);
        }

        .uni-navbar__content {
            background: var(--md-surface) !important;
            border-bottom: none !important;
        }

        .uni-navbar__header {
            color: var(--md-on-surface) !important;
            background: transparent !important;
            height: 64px !important;
            display: flex;
            align-items: center;
            padding: 0 16px;
        }

        .uni-navbar__header-btns {
            min-width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 24px;
            transition: background-color 0.2s var(--md-easing);
        }

        .uni-navbar__header-btns:active {
            background-color: rgba(103, 80, 164, 0.08);
        }

        .uni-navbar__header-container {
            flex: 1;
            text-align: center;
            font-size: 24px;
            font-weight: 500;
            line-height: 32px;
            color: var(--md-on-surface);
        }

        .uni-icons svg path {
            fill: var(--md-primary);
        }

        /* 主容器 */
        .container {
            padding-top: 64px;
            min-height: 100vh;
        }

        .agency {
            padding: 0 16px;
        }

        /* 用户信息卡片 */
        .above {
            margin: 24px 0;
        }

        .user {
            background: var(--md-surface);
            border-radius: 16px;
            padding: 20px;
            box-shadow: var(--md-shadow-2);
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 2px solid #E9D5FF;
            overflow: hidden;
            position: relative;
        }

        .photo::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #F3EDF7;
            background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12C14.21 12 16 10.21 16 8C16 5.79 14.21 4 12 4C9.79 4 8 5.79 8 8C8 10.21 9.79 12 12 12ZM12 14C9.33 14 4 15.34 4 18V20H20V18C20 15.34 14.67 14 12 14Z' fill='%236750A4'/%3E%3C/svg%3E");
            background-position: center;
            background-repeat: no-repeat;
            background-size: 24px;
        }

        .photo > div {
            position: relative;
            z-index: 1;
        }

        .name {
            font-size: 18px;
            font-weight: 500;
            line-height: 24px;
            color: var(--md-on-surface);
        }

        /* 奖励统计区域 */
        .info {
            background: transparent;
            margin-bottom: 24px;
        }

        .left {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .mr, .left > div > div {
            background: var(--md-surface);
            border-radius: 16px;
            padding: 20px;
            box-shadow: var(--md-shadow-2);
            height: 120px;
            position: relative;
            overflow: hidden;
        }

        .mr::before, .left > div > div::before {
            content: "";
            position: absolute;
            top: -16px;
            right: -16px;
            width: 64px;
            height: 64px;
            background: #E9D5FF;
            border-radius: 50%;
            opacity: 0.6;
        }

        .text {
            font-size: 14px;
            line-height: 20px;
            color: var(--md-on-surface-variant);
            margin-bottom: 8px;
        }

        .sum {
            font-size: 32px;
            font-weight: 600;
            line-height: 40px;
            color: var(--md-on-surface);
            position: relative;
            z-index: 1;
        }

        .sum::after {
            content: "元";
            font-size: 14px;
            font-weight: 400;
            color: var(--md-on-surface-variant);
            margin-left: 4px;
        }

        .view-details {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: var(--md-primary);
            font-size: 14px;
            font-weight: 500;
            line-height: 20px;
            padding: 12px 24px;
            margin: 16px auto;
            border: none;
            background: transparent;
            border-radius: 20px;
            transition: all 0.2s var(--md-easing);
            text-decoration: none;
        }

        .view-details:active {
            background: rgba(103, 80, 164, 0.08);
            color: var(--md-primary-dark);
        }

        .view-details svg {
            width: 16px;
            height: 16px;
        }

        /* Tab 切换区域 */
        .tab {
            background: transparent;
        }

        .scroll {
            margin-bottom: 16px;
        }

        .uni-scroll-view-content {
            display: flex;
            gap: 8px;
            padding: 4px 0;
        }

        .item {
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 500;
            line-height: 20px;
            color: var(--md-on-surface-variant);
            border-radius: 20px;
            white-space: nowrap;
            transition: all 0.2s var(--md-easing);
            cursor: pointer;
            position: relative;
            background: transparent;
        }

        .item.activate {
            color: var(--md-primary);
            background: rgba(103, 80, 164, 0.08);
        }

        .item.activate::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 20px;
            right: 20px;
            height: 3px;
            background: var(--md-primary);
            border-radius: 3px;
        }

        /* 数据列表区域 */
        .agency_center_list {
            background: transparent;
        }

        .agency_center_list .item {
            background: var(--md-surface);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 8px;
            box-shadow: var(--md-shadow-1);
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.2s var(--md-easing);
        }

        .agency_center_list .item:active {
            background: rgba(103, 80, 164, 0.04);
        }

        .agency_center_list .icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            background: #F3F4F6;
        }

        .agency_center_list .icon::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #F3F4F6;
            background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12C14.21 12 16 10.21 16 8C16 5.79 14.21 4 12 4C9.79 4 8 5.79 8 8C8 10.21 9.79 12 12 12ZM12 14C9.33 14 4 15.34 4 18V20H20V18C20 15.34 14.67 14 12 14Z' fill='%239CA3AF'/%3E%3C/svg%3E");
            background-position: center;
            background-repeat: no-repeat;
            background-size: 20px;
        }

        .agency_center_list .icon > div {
            position: relative;
            z-index: 1;
        }

        .agency_center_list .right {
            flex: 1;
        }

        .agency_center_list .bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2px;
        }

        .agency_center_list .bar:last-child {
            margin-bottom: 0;
        }

        .agency_center_list .title {
            font-size: 16px;
            font-weight: 500;
            line-height: 24px;
            color: var(--md-on-surface);
        }

        .agency_center_list .text {
            font-size: 14px;
            line-height: 20px;
            color: var(--md-on-surface-variant);
        }

        .agency_center_list .unit {
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
            color: var(--md-primary);
        }

        /* 空状态 */
        .uni-load-more.more {
            text-align: center;
            padding: 48px 20px;
            color: var(--md-on-surface-variant);
        }

        .uni-load-more.more::before {
            content: "";
            display: block;
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6H12L10 4H4C2.9 4 2.01 4.9 2.01 6L2 18C2 19.1 2.9 20 4 20H20C21.1 20 22 19.1 22 18V8C22 6.9 21.1 6 20 6ZM20 18H4V8H20V18Z' fill='%23D1D5DB'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

        .uni-load-more__text span {
            font-size: 16px;
            line-height: 24px;
            color: var(--md-on-surface-variant);
        }

        /* 响应式设计 */
        @media (min-width: 600px) {
            .agency {
                padding: 0 24px;
                max-width: 1200px;
                margin: 0 auto;
            }
            
            .left {
                display: flex;
                gap: 16px;
            }
            
            .mr, .left > div > div {
                flex: 1;
            }
            
            .view-details {
                margin: 0;
                align-self: center;
            }
            
            .info {
                display: flex;
                align-items: center;
                gap: 24px;
            }
        }

        @media (min-width: 905px) {
            .agency {
                padding: 0 32px;
            }
        }

        .pb150 {
            padding-bottom: 150px;
        }
        
        .flexJA {
            display: flex;
            justify-content: space-around;
        }
        
        .flexFs {
            align-items: flex-start;
        }
        
        .flexSb {
            justify-content: space-between;
        }
        
        .flexDc {
            flex-direction: column;
        }
        
        .flexAis {
            align-items: stretch;
        }

