        .account-dashboard {
            max-width: 1400px;
            margin: 2rem auto;
        }

        .section-group {
            margin-bottom: 3rem;
        }

        .section-title-group {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 1.2rem;
            padding-left: 0.75rem;
            border-left: 4px solid var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .section-title-group i {
            font-size: 1.4rem;
            color: var(--primary);
        }

        /* 重新设计的value-card网格 —— 更清晰的分组 */
        .account-card {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 0;
        }

        .account-item {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.2rem 1rem 1rem 1.2rem;
            transition: all 0.25s ease;
            border: 1px solid var(--border);
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .account-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 20px rgba(154,31,28,0.08);
            border-color: var(--secondary);
        }

        .account-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: rgba(154,31,28,0.08);
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.6rem;
            transition: all 0.2s;
        }

        .account-item:hover .account-icon {
            background: var(--primary);
            color: white;
        }

        .account-content {
            flex: 1;
        }

        .account-content h3 {
            margin: 0 0 0.25rem 0;
            font-size: 1.2rem;
            font-weight: 600;
            border-bottom: none;
            padding: 0;
        }

        .account-content h3 a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
        }

        .account-content h3 a:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        .account-content p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin: 0;
            line-height: 1.4;
        }

        /* 消息中心/通知栏样式 */
        .notification-banner {
            background: #FFF8F0;
            border-left: 4px solid var(--primary);
            padding: 0.9rem 1.2rem;
            border-radius: 16px;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .notify-text {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 500;
            color: #5a3e2b;
        }

        .notify-text i {
            font-size: 1.5rem;
            color: var(--primary);
        }

        .notify-btn {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 0.4rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            transition: all 0.2s;
            cursor: pointer;
        }

        .notify-btn:hover {
            background: var(--primary);
            color: white;
        }

        /* 快速入口辅助 */
        .quick-links {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 1rem;
            justify-content: flex-end;
        }

        /* 新增健康小贴士或助理模块 (医生关注/收藏) */
        .favorite-doctors {
            background: var(--background-alt);
            border-radius: 24px;
            padding: 1.2rem 1.5rem;
            margin-top: 2rem;
        }

        .fav-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .fav-doctors-list {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            padding-bottom: 0.5rem;
        }

        .doctor-card-sm {
            background: white;
            border-radius: 32px;
            padding: 0.5rem 1rem;
            min-width: 140px;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            border: 1px solid #eee;
            box-shadow: var(--shadow);
        }

        .doctor-avatar {
            width: 36px;
            height: 36px;
            background: #e9dcd2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        /* 移除ul,li默认点 (已全局控制) 确保导航正常 */
        #nav {
            background-color: #9A1F1C;
        }

        /* 药事追踪简易模块 */
        .tracking-card {
            background: white;
            border-radius: 20px;
            padding: 1rem;
            margin-top: 1.2rem;
            border: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        /* 小屏幕优化 */
        @media (max-width: 640px) {
            .account-item {
                padding: 0.9rem;
            }
            .account-icon {
                width: 40px;
                height: 40px;
                font-size: 1.3rem;
            }
            .account-content h3 {
                font-size: 1rem;
            }
            .section-title-group {
                font-size: 1.3rem;
            }
        }

        /* 辅助分割线 */
        .divider-light {
            height: 1px;
            background: linear-gradient(to right, #e2e8f0, transparent);
            margin: 1.8rem 0;
        }