
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            text-decoration: none;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.5;
        }
        
        /* 顶部导航栏 */
        .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            background-color: #fff;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .back-button {
            color: #333;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        /* 标题+下拉触发区域（合并为可点击区域） */
        .title-container {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }
        
        .title {
            font-size: 18px;
            font-weight: 500;
        }
        
        .dropdown-arrow {
            color: #666;
            font-size: 16px;
        }
        
        /* 下拉菜单（匹配截图样式） */
        .dropdown-menu {
            position: absolute;
            top: 60px;
            width: 100%;
            /* left: 20px;
            right: 20px; */
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            /* border-radius: 8px; */
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 99;
        }
        
        .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .menu-item {
            padding: 12px 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
        }
        
        .menu-item.active {
            color: #2d8cf0;
        }
        
        .menu-item .icon {
            font-size: 18px;
        }
        
        .menu-item .check {
            margin-left: auto;
            color: #2d8cf0;
            display: none;
        }
        
        .menu-item.active .check {
            display: inline-block;
        }
        
        /* 消息列表遮罩（菜单展开时显示） */
        .messages-mask {
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 98;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .messages-mask.show {
            opacity: 1;
            visibility: visible;
        }
        
        /* 消息列表容器 */
        .messages-container {
            padding: 10px 0;
            max-width: 600px;
            margin: 0 auto;
            transition: all 0.3s ease;
        }
        
        /* 菜单展开时，消息列表置灰 */
        .messages-container.blur {
            filter: blur(2px);
            pointer-events: none;
        }
        
        /* 消息项包装器 - 支持左滑删除 */
        .message-wrapper {
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid #eee;
        }
        
        .message-item {
            display: flex;
            padding: 15px 20px;
            background-color: #fff;
            transition: transform 0.3s ease;
            position: relative;
            z-index: 2;
        }
        
        /* 删除按钮 */
        .delete-btn {
            position: absolute;
            right: 0;
            top: 0;
            width: 80px;
            height: 100%;
            background-color: #f44336;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            font-size: 16px;
            cursor: pointer;
            z-index: 1;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }
        
        /* 消息项被左滑时的样式 */
        .message-wrapper.swiped .message-item {
            transform: translateX(-80px);
        }
        
        .message-wrapper.swiped .delete-btn {
            transform: translateX(0);
        }
        .avatar_right{
                width: 50px;
            height: 50px;
            border-radius: 5%;
            margin-left: 10px;
            overflow: hidden;
            flex-shrink: 0;
        }
        .avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            overflow: hidden;
            flex-shrink: 0;
        }
          .avatar_right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .message-content {
            flex: 1;
            min-width: 0; /* 防止内容溢出 */
        }
        
        .user-info {
            display: flex;
            /* justify-content: space-between; */
            margin-bottom: 4px;
        }
        
        .username {
           /* font-family: PingFang SC, PingFang SC; */
                font-weight: 500;
                font-size: 14px;
                color: rgba(0,0,0,0.9);
                text-align: left;
                font-style: normal;
                text-transform: none;
        }
        
        .time {
            color: #999;
            font-size: 13px;
            /*margin-left: 10px;*/
        }
        
        .message-text {
            font-size: 14px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
                color: rgba(0, 0, 0, 0.6);
        }
        
        .system-badge {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            text-align: center;
            line-height: 20px;
            font-size: 12px;
            margin-right: 8px;
        }
        
        .action-btn {
            align-self: center;
            padding: 6px 12px;
            border: none;
            border-radius: 12px;
            background-color: #FF658B;
            color: white;
            font-size: 13px;
            cursor: pointer;
            white-space: nowrap;
            width: 69px;
            height: 33px;
        }
        
        .action-btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }
        
        /* 底部区域 - PC端显示 */
        .bottom-area {
            display: none;
            padding: 20px;
            text-align: center;
        }
        
        /* 响应式设计 */
                      /* 移动端容器 */
        .container_pc{
            width: 100%;
            min-height: 100vh;
            background: #F6F6F6;
            position: relative;
            padding-bottom: 60px;
        }
        .points_all1 {
            display: none;
        }

        /* 顶部导航 */
        .header {
            display: flex;
         
            align-items: center;
            padding: 12px 16px;
            background: var(--bg-card);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .header .logo {
   width: 35px;
    height: 35px;
    background: #0da76b;
    padding: 4px;
    border-radius: 20px;
        }

        .header .title {
            color: var(--text-main);
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .header .status-icons {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header .status-icons span {
            font-size: 14px;
            color: var(--text-secondary);
        }

        

        .user-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /*          
               background: linear-gradient( 180deg, rgba(255,255,255,0) 0%, #FFFFFF 100%); */
            height: 184px;
        }

        .user-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .bianji {
            background-color: white;
            color: #02AF67;
            width: 78px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .user-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.4);
            margin-right: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .user-avatar:hover {
            transform: scale(1.1) rotate(5deg);
            border-color: rgba(255, 255, 255, 0.8);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        .user-details {
            flex: 1;
        }

        .user-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 4px;
            letter-spacing: 0.5px;
        }

        .user-id {
            font-size: 13px;
            opacity: 0.9;
            font-weight: 300;
        }

        .edit-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 10px 20px;
            border-radius: var(--radius-md);
            font-size: 13px;
            font-weight: 500;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .edit-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .points-area {
            background-image: linear-gradient(to right, #3E4B5C, #363243);
            padding: 16px 20px;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 1;
        }

        .points {
            display: flex;
            align-items: center;
        }

        .img_jifen {
            max-width: 30%;
            height: auto;
            object-fit: cover;
            display: block;
        }

        .points-icon {
            color: #ffd700;
            /* margin-right: 12px; */
            font-size: 20px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .points-num {
            font-weight: 600;
            font-size: 14px;
            background-color: #FFFFFF;
            /* letter-spacing: 1px; */

            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .get-btn {
            background: #02AF67;
            color: #fff;
            padding: 10px 24px;
            border-radius: var(--radius-lg);
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
            border: 1px solid #F2F2F2;
        }

        .get-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(243, 156, 18, 0.4);
        }

        /* 功能按钮区 */
        .points_all {
            /* background-color: #363243; */
            padding: 0 16px 20px;
            /* border-radius: var(--radius-lg); */
            background-color: transparent;
            margin-top: -40px;

        }


        .func-btns {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            padding: 20px 16px;

            background: #FFFFFF !important;
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            /* 左下+右下圆角 */
        }

        .func-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-main);
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 16px 8px;
            border-radius: var(--radius-lg);
            background: var(--bg-card);
            /* border: 1px solid var(--border-color); */
        }

        .func-btn:hover {
            color: var(--primary-color);
            background: var(--primary-light);
            border-color: var(--primary-color);
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .func-btn-icon {
            width: 50px;
            height: 50px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            font-size: 22px;
            transition: all 0.3s ease;
        }

        /* .icon1 {
            background: linear-gradient(135deg, #ffeaa7, #fab1a0);
        }

        .icon2 {
            background: linear-gradient(135deg, #a29bfe, #74b9ff);
        }

        .icon3 {
            background: linear-gradient(135deg, #81ecec, #55efc4);
        }

        .icon4 {
            background: linear-gradient(135deg, #fd79a8, #e84393);
        } */

        /* 功能列表 */
        .func-list-wrap {
            padding: 0 16px 20px;
        }

        .func-list {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .func-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            border-bottom: 1px solid var(--border-color);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .func-item:hover {
            background: var(--primary-light);
            transform: translateX(4px);
        }

        .func-item:last-child {
            border-bottom: none;
        }

        .func-item-text {
            display: flex;
            align-items: center;
            color: var(--text-main);
            font-size: 15px;
            font-weight: 500;
            color: rgba(0, 0, 0, 0.6);
        }

        .func-item-text::before {
            content: "";
            /* 清空content */
            display: inline-block;
            width: 20px;
            /* 设置图片宽度 */
            height: 20px;
            /* 设置图片高度 */
                  background-image: url("../../qietu/my/zhannei.svg");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            margin-right: 16px;
            opacity: 0.8;
        }

        .func-item-text.cash::before {
            content: "";
            /* 清空content */
            display: inline-block;
            width: 20px;
            /* 设置图片宽度 */
            height: 20px;
            /* 设置图片高度 */
            background-image: url("./qietu/my/guize.svg");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            margin-right: 16px;
            opacity: 0.8;
        }

        .func-item-text.exchange::before {
            content: "";
            /* 清空content */
            display: inline-block;
            width: 20px;
            /* 设置图片宽度 */
            height: 20px;
            /* 设置图片高度 */
            background-image: url("./qietu/my/duihuan.svg");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            margin-right: 16px;
            opacity: 0.8;
        }

        .func-item-arrow {
            color: var(--text-light);
            font-size: 16px;
            transition: all 0.3s ease;
            display: flex;
            font-display: row;
        }

        .func-item:hover .func-item-arrow {
            color: var(--primary-color);
            transform: translateX(6px);
        }

        .badge {
            background: linear-gradient(135deg, var(--danger-color), #ff7675);
            color: #fff;
            font-size: 11px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 8px;
            animation: badgePulse 2s infinite;
            box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
        }

        @keyframes badgePulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        /* 底部导航 */
        .footer-nav {
            display: flex;
            justify-content: space-around;
            background: var(--bg-card);
            padding: 12px 0;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            border-top: 1px solid var(--border-color);
            box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
            z-index: 1000;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--text-light);
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: var(--radius-sm);
            position: relative;
        }

        .nav-item:hover {
            color: var(--primary-color);
            background: var(--primary-light);
        }

        .nav-item.active {
            color: var(--primary-color);
            font-weight: 600;
        }

         

        .nav-icon {
            margin-bottom: 4px;
            font-size: 22px;
            max-height: 30px;
        }

        /* 退出登录按钮 */
        .logout-btn {
            background: #02AF67;
            color: #fff;
            width: calc(100% - 32px);
            margin: 80px 16px 20px;
            padding: 16px 0;
            border-radius: var(--radius-lg);
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            box-shadow: var(--shadow-md);
        }

        .logout-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .logout-btn:active {
            transform: translateY(0);
        }
            .func-btn_all{
                        display: none;
                    }
                    .duihuan{
                        display: none;
                    }
                    .main-content{
                         display: none;
                    }
                    .container_all{
                        display: none;
                    }
     
        /* PC端适配：优化布局和交互体验（仅改这里） */
       /* ========== PC端布局优化 ========== */
        @media (min-width: 768px) {
            .header {
                  all: unset; /* 清除所有继承的样式 */

    }  
       .back-button {
            position: absolute;
            left: 5%;
            top: 50%;
            transform: translate(-50%, -50%);
            color: #333;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
        }
     .messages-container {
        min-width:560px;
     }
         .header_ru{
                display: flex;
    justify-content: center;
    /* justify-content: space-between; */
    padding: 12px 16px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
         }
            .header{
                    display: flex;
    justify-content: center;
    align-items: center;
    
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px)
            }

            .yincang{
                display: none;
            }

            :root {
    --primary-color: #4cd964;
    --primary-light: rgba(76, 217, 100, 0.1);
    --primary-dark: #3cc054;
    --secondary-color: #5ac8fa;
    --danger-color: #ff4444;
    --warning-color: #ff9500;
    --text-main: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-main: #f9f9f9;
    --bg-card: #ffffff;
    --border-color: #eeeeee;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 28px rgba(76, 217, 100, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}
             .container_pc{
                display: block;
                            max-width: 900px;
        width: 100%;
        min-height: auto;
         
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        position: relative;
        padding-bottom: 40px;
        display: grid;
        grid-template-columns: 300px 1fr;
        grid-template-rows: auto auto 1fr auto;
        grid-template-areas:
        "header header"
        "sidebar main"
        "logout logout";
        gap: 0;
             }
            
           
            .points_all1 {
                display: block;
            }

            .points-area {
                border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) var(--radius-lg);
            }

             .container_all{
                   display: flex;
                margin: 0 auto;
                width: 900px;
            }


            


            .user-info {
                /* 完全重置所有属性 */
                all: unset;
                position: relative !important;


            }

            .bianji {
                position: absolute !important;
                right: 0;
                top: 0;

            }

            .container_pc {
                max-width: 900px;
                width: 100%;
                min-height: auto;
                 
                overflow: hidden;
                box-shadow: var(--shadow-lg);
                position: relative;
                padding-bottom: 40px;
                display: grid;
                grid-template-columns: 300px 1fr;
                grid-template-rows: auto auto 1fr auto;
                /* 增加一行 */
                grid-template-areas:
                    "header header"
                    "sidebar main"
                    "logout logout";
                gap: 0;
            }

            /* 将功能按钮区从侧边栏移动到主内容区顶部 */
            .sidebar .points_all {
                display: none;
                /* 在侧边栏隐藏 */
            }
             
            /* 侧边栏区域 */
            .sidebar {
                grid-area: sidebar;
                background: var(--bg-card);
                border-right: 1px solid var(--border-color);
                padding: 30px 0;
                display: flex;
                flex-direction: column;


            }

            /* 用户卡片调整到侧边栏 */
            .user-card {
                background: linear-gradient(135deg, var(--primary-color), #2ecc71);
                margin: 0 20px 30px;
                padding: 25px;
                border-radius: var(--radius-xl);
                box-shadow: var(--shadow-md);
                flex-shrink: 0;
            }

            .user-avatar {
                width: 80px;
                height: 80px;
            }

            .user-name {
                font-size: 22px;
            }

            .user-name {
                font-size: 22px;
                max-width: 80px;
                text-align: center; 
            }
          .user-info {
            display: flex;
            flex-direction: column;
            margin-bottom: 0px;
            position: relative;
            z-index: 1;
        }

            /* 功能按钮区移到侧边栏 */
            .func-btns {
                margin-top: 20px;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                background: transparent;
                box-shadow: none;
                border-radius: 0;
                padding: 0;
            }
                .dropdown-menu {
                    top: 170px;
                    width: 700px;
                }
            .func-btn {
                background: var(--bg-card);
                border-radius: var(--radius-lg);
                border: 1px solid var(--border-color);
                padding: 24px;
                margin: 0;
                box-shadow: var(--shadow-sm);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                border-left: 4px solid var(--primary-color);
                display: flex;
                  justify-content: left;
              flex-direction: row;
            }

            .func-btn:hover {
                transform: translateX(8px);
                box-shadow: var(--shadow-md);
            }

            .func-btn-icon {
                width: 44px;
                height: 44px;
                margin-bottom: 0;
                margin-right: 16px;
                font-size: 20px;
                color: white;
            }

            /* 主内容区域 */
            .main-content {
                grid-area: main;
                padding: 30px;
                display: flex;
                flex-direction: column;
                /* gap: 30px; */
            }

            /* 功能列表 */
            .func-list-wrap {
                padding: 0;
                flex: 1;
            }
       
            .func-list {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                background: transparent;
                box-shadow: none;
                border-radius: 0;
                padding: 0;
            }

            .func-item {
                background: var(--bg-card);
                border-radius: var(--radius-lg);
                border: 1px solid var(--border-color);
                padding: 24px;
                margin: 0;
                box-shadow: var(--shadow-sm);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                border-left: 4px solid var(--primary-color);
            }

            .func-item:hover {
                transform: translateY(-4px);
                box-shadow: var(--shadow-lg);
                border-left-color: var(--warning-color);
            }

            .func-item-text {
                font-size: 16px;
                font-weight: 600;
            }

            .func-item-arrow {
                font-size: 18px;
            }

            /* 顶部导航 */
            .header {
               grid-area: header;
               
                border-bottom: 1px solid var(--border-color);
                justify-content: center;
                gap: 20px;
            }

            .header .logo {
                width: 32px;
                height: 32px;
                font-size: 16px;
                border-radius: 8px;
            }

            .header .title {
                font-size: 22px;
                font-weight: 700;
                background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                margin-right: auto;
            }

            .header .status-icons {
                gap: 12px;
            }

            .header .status-icons span {
                font-size: 16px;
            }

            /* 底部导航移到侧边栏底部 */
            .footer-nav {
                position: static;
                grid-area: auto;
                flex-direction: column;
                justify-content: flex-start;
                background: transparent;
                border-top: none;
                box-shadow: none;
                padding: 20px 0;
                border-top: 1px solid var(--border-color);
                margin-top: auto;
            }

            .nav-item {
                flex-direction: row;
                justify-content: flex-start;
                padding: 18px 20px;
                margin: 4px 0;
                border-radius: var(--radius-md);
                font-size: 14px;
            }

            .nav-item.active {
                background: var(--primary-light);
                color: var(--primary-color);
                font-weight: 600;
            }

            .nav-item.active::before {
                display: none;
            }

            .nav-icon {
                margin-bottom: 0;
                margin-right: 12px;
                font-size: 20px;
            }

            .func-btns {
                flex-direction: row;
                background: #F6F6F6 !important;
            }

            /* 退出登录按钮 */
            .logout-btn {
                border: 1px solid #e7e7e7;
                width: calc(100% - 60px);
                margin: 20px auto 30px;
                max-width: 300px;
                padding: 18px 0;
                font-size: 16px;
                border-radius: var(--radius-lg);
            }
                 .main-content_1{
                display: none;
            }
               .container{
                display: none;
               }
        }

        /* 大屏PC优化 */
        @media (min-width: 1200px) {
            .container_pc {
                max-width:900px;
                grid-template-columns: 320px 1fr;
                grid-template-rows: auto 1fr auto;
                gap: 0;
            }

            .sidebar {
                padding: 40px 0;
            }

            .user-card {
                margin: 0 25px 40px;
                padding: 30px;
            }

            .func-btns {
                padding: 0 25px;
                gap: 15px;
            }

            .func-btn {
                padding: 22px 25px;
            }

            .func-btn-icon {
                width: 48px;
                height: 48px;
                font-size: 22px;
            }

            .main-content {
                padding:12px;
                gap: 0px;
            }

            .func-list {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .func-item {
                padding: 28px 30px;
            }

            .func-item-text {
                font-size: 17px;
            }
        }

        /* 深色模式适配（可选） */
        @media (prefers-color-scheme: dark) {
            :root {
                --primary-color: #34d399;
                --primary-light: #064e3b;
                --border-color: #444;
                --text-main: #f5f5f5;
                --text-secondary: #d1d5db;
                --text-light: #9ca3af;
            }
            body {
                background-color: #111827;
            }
            .container_pc{
                background-color: #1f2937;
            }
            .form-input {
                background-color: #273040;
                color: var(--text-main);
            }
            .phone-wrap .form-input {
                background-color: rgba(52, 211, 153, 0.1);
            }
        }


.header .logoTitle {
    color: #0da76b;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    -webkit-text-fill-color: #0da76b;
}
.duxie{cursor:pointer;}

.user-info {
  
    margin-bottom: 5px;
   
}