        .content {
            padding: 4px 4px;
        }
        /* 分行列表项样式 - 手机优化 */
        .li-item {
            --primary-color: #6c757d;
            --secondary-color:#6c757d;
            --background: #6c757d;
            --hover-background: #6c757d;
            --icon-bg: #6c757d;
 						height: 60px;
            display: flex;
            align-items: center;
            padding: 10px;
            margin: 12px 0;
            background: var(--background);
            border-radius: 10px;
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            position: relative;
            width:99%;
        }
       .li-item:active {
            transform: scale(0.98);
            background: var(--hover-background);
        }
       .content-wrapper {
					width:100%;
        }
        .line1 {
        	 max-width:98%;
					  white-space: nowrap; /* 防止文本换行 */
					  overflow: hidden; /* 超出部分隐藏 */
					  text-overflow: ellipsis; /* 显示省略号 */
            font-weight: 900;
            font-size: 0.31rem;
            color: var(--primary-color);
            margin-bottom: 12px;
        }
       .line2 {
            color: var(--primary-color);
            font-size: 0.26rem;
            line-height: 0.4;
        }
        /* 不同颜色的列表项变体 */
        .li-item.primary {
            --primary-color: #383838;
            --icon-bg: #383838;
        }