  /* 自定义样式：修复移动端表格和卡片间距 */
        .touchable {
            touch-action: manipulation;
            -webkit-tap-highlight-color: rgba(0,0,0,0);
        }
        /* 响应式表格样式 - 修复语录文字重叠 */
        @media (max-width: 768px) {
            .responsive-table thead {
                display: none;
            }
            .responsive-table tr {
                display: block;
                margin-bottom: 1rem;
                border: 1px solid #e5e7eb;
                border-radius: 0.5rem;
            }
            .responsive-table td {
                display: block;
                text-align: right;
                padding: 0.75rem 1rem;
                position: relative;
                border-bottom: 1px solid #f3f4f6;
                word-break: break-all; /* 强制换行，解决文字重叠 */
            }
            .responsive-table td:last-child {
                border-bottom: 0;
            }
            .responsive-table td::before {
                content: attr(data-label);
                position: absolute;
                left: 1rem;
                font-weight: 600;
                text-align: left;
                white-space: nowrap; /* 标签不换行 */
                flex-shrink: 0;
            }
            /* 语录列单独优化 - 增加内边距，优先展示 */
            .responsive-table td.quote-col {
                padding-top: 1rem;
                padding-bottom: 1rem;
                font-size: 0.95rem;
            }
        }
        /* 卡片渐变背景类 - 不同颜色区分 */
        .card-bg-1 { background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); }
        .card-bg-2 { background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%); }
        .card-bg-3 { background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%); }
        .card-bg-4 { background: linear-gradient(135deg, #f7f9fb 0%, #e2e8f0 100%); }
        .card-bg-5 { background: linear-gradient(135deg, #fff8e6 0%, #ffeaa7 100%); }
        .card-bg-6 { background: linear-gradient(135deg, #f8f0fb 0%, #e5d3f0 100%); }
        
        /* 微博视图样式 */
        .weibo-item {
            background: white;
            border-radius: 8px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.1);
            margin-bottom: 15px;
            overflow: hidden;
        }
        .weibo-header {
            padding: 12px 15px;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .weibo-category {
            font-size: 14px;
            color: #fff;
            font-weight: 500;
        }
        .weibo-time {
            font-size: 12px;
            color: #000;
        }
        .weibo-content {
            padding: 15px;
            font-size: 16px;
            line-height: 1.6;
        }
         .weibo-remark {
            padding: 15px;
            font-size: 12px;
            line-height: 1.6;
        }
        .weibo-media {
            padding: 0 15px 15px;
        }
        .weibo-media-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 5px;
        }
        .weibo-media-item {
           // aspect-ratio: 1/1;
            aspect-ratio:auto;
            overflow: hidden;
            border-radius: 4px;
        }
        .weibo-media-item img, .weibo-media-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .weibo-actions {
            padding: 10px 15px;
            border-top: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
        }
        .weibo-action-btn {
            display: flex;
            align-items: center;
            color: #888;
            font-size: 14px;
            cursor: pointer;
        }
        .weibo-action-btn i {
            margin-right: 5px;
        }
        .weibo-action-btn.liked {
            color: #e6162d;
        }
        
 
        
        
        
        .weibo-comments {
            padding: 0 15px 15px;
            border-top: 1px solid #f0f0f0;
        }
        .weibo-comment-item {
            padding: 8px 0;
            border-bottom: 1px solid #f5f5f5;
        }
        .weibo-comment-author {
            font-weight: 500;
            font-size: 13px;
            margin-bottom: 4px;
        }
        .weibo-comment-content {
            font-size: 14px;
            line-height: 1.4;
        }
        .weibo-comment-time {
            font-size: 12px;
            color: #999;
            margin-top: 4px;
        }
        .weibo-comment-form {
            margin-top: 10px;
            display: flex;
            gap: 8px;
        }
        .weibo-comment-input {
            flex: 1;
            padding: 8px 10px;
            border: 1px solid #ddd;
            border-radius: 20px;
            font-size: 14px;
        }
        .weibo-comment-submit {
            padding: 8px 15px;
            background: #1d9bf0;
            color: white;
            border: none;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
        }
        
        /* 媒体上传区域样式 */
        .media-toolbar {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 10px 0;
            padding: 8px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .media-tool-btn {
            display: flex;
            align-items: center;
            color: #666;
            cursor: pointer;
            font-size: 14px;
        }
        .media-tool-btn i {
            font-size: 18px;
            margin-right: 5px;
        }
        .media-preview {
            margin: 15px 0;
        }
        .media-preview-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }
        .media-preview-item {
            position: relative;
            aspect-ratio: 1/1;
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid #eee;
        }
        .media-preview-item img, .media-preview-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .media-preview-remove {
            position: absolute;
            top: 5px;
            right: 5px;
            width: 24px;
            height: 24px;
            background: rgba(0,0,0,0.6);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 12px;
        }
        .media-add-more {
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 1/1;
            border: 1px dashed #ddd;
            border-radius: 4px;
            color: #999;
            cursor: pointer;
        }
        .media-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
        .media-modal-content {
        
            background: white;
            padding: 20px;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
        }
        .media-modal-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .media-modal-close {
            cursor: pointer;
            color: #666;
        }
        .media-modal-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .media-modal-input {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }
        .media-modal-btn {
            padding: 10px;
            background: #1d9bf0;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
        }
        
        /* 表情选择器样式 */
        .emoji-picker {
      
             /* 关键：让表情自动换行排列 */
		  display: flex;
		  flex-wrap: wrap;
		  gap: 8px;       /* 表情之间的间距 */
		  padding: 10px;
		  width: 250px;   /* 控制总宽度，一行刚好放5个 */
            gap: 5px;
        }
        .emoji-item {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .emoji-item:hover {
            background: #f0f0f0;
        }
        
        /* 加载更多样式 */
        .loading-more {
            text-align: center;
            padding: 20px;
            color: #888;
            font-size: 14px;
        }
        .no-more-data {
            text-align: center;
            padding: 20px;
            color: #aaa;
            font-size: 14px;
        }
        