NEW_FILE_CODE
/* UM Extensions 样式 */

/* === 我的作品 === */
.um-creations-container { padding: 20px 0; }
.um-creations-stats { margin-bottom: 20px; padding: 10px 15px; background: #f9f9f9; border-radius: 5px; }
.um-creations-count { font-weight: 600; color: #333; }
.um-creations-list { display: flex; flex-direction: column; gap: 20px; }
.um-creation-item { padding: 20px; background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; transition: box-shadow 0.3s ease; }
.um-creation-item:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.um-creation-title { margin: 0 0 10px 0; font-size: 18px; }
.um-creation-title a { color: #333; text-decoration: none; }
.um-creation-title a:hover { color: #0073aa; }
.um-creation-meta { display: flex; gap: 20px; margin-bottom: 10px; font-size: 13px; color: #666; }
.um-creation-meta span { display: flex; align-items: center; gap: 5px; }
.um-creation-meta i { font-size: 14px; }
.um-creation-excerpt { color: #555; line-height: 1.6; font-size: 14px; }
.um-creations-pagination { margin-top: 30px; text-align: center; }
.um-creations-pagination .page-numbers { display: inline-block; padding: 8px 12px; margin: 0 3px; border: 1px solid #ddd; border-radius: 4px; text-decoration: none; color: #333; }
.um-creations-pagination .page-numbers.current,
.um-creations-pagination .page-numbers:hover { background: #0073aa; color: #fff; border-color: #0073aa; }
.um-creations-empty { padding: 40px 20px; text-align: center; color: #999; }

/* === 我的痛点 === */
.my-painpoints-container { max-width: 910px; margin: 0 auto; }
.painpoints-section { margin-bottom: 40px; background: white; border-radius: 8px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.section-title { font-size: 1.3rem; color: #2D3748; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #4A90D9; }
.painpoint-item { padding: 15px; margin-bottom: 15px; background: #f8fafc; border-radius: 6px; border-left: 4px solid #4A90D9; transition: all 0.3s ease; }
.painpoint-item:hover { background: #e2e8f0; transform: translateX(5px); }
.painpoint-title { font-size: 1.1rem; font-weight: 600; color: #2D3748; margin-bottom: 8px; }
.painpoint-title a { color: #2D3748; text-decoration: none; }
.painpoint-title a:hover { color: #4A90D9; }
.painpoint-meta { font-size: 0.85rem; color: #718096; display: flex; gap: 15px; }
.painpoint-comment { margin-top: 8px; padding: 10px; background: white; border-radius: 4px; font-size: 0.9rem; color: #4A5568; line-height: 1.6; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 20px; padding-top: 15px; border-top: 1px solid #e2e8f0; }
.pagination a, .pagination span { padding: 8px 12px; border: 1px solid #cbd5e0; border-radius: 4px; text-decoration: none; color: #4A5568; transition: all 0.2s; }
.pagination a:hover { background: #4A90D9; color: white; border-color: #4A90D9; }
.pagination .current { background: #4A90D9; color: white; border-color: #4A90D9; }
.no-data { text-align: center; padding: 30px; color: #718096; font-size: 0.95rem; }

/* === 我的评论 === */
.my-comments-container { max-width: 910px; margin: 0 auto; }
.comment-item { display: flex; gap: 15px; padding: 15px; margin-bottom: 15px; background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: all 0.3s ease; }
.comment-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.15); transform: translateY(-2px); }
.comment-post-image { flex-shrink: 0; width: 120px; height: 90px; overflow: hidden; border-radius: 6px; }
.comment-post-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.comment-post-image:hover .comment-post-thumb { transform: scale(1.05); }
.comment-content-wrapper { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.comment-post-title { font-size: 1.1rem; margin: 0 0 8px 0; line-height: 1.4; }
.comment-post-title a { color: #2D3748; text-decoration: none; transition: color 0.2s; }
.comment-post-title a:hover { color: #4A90D9; }
.comment-text { font-size: 0.9rem; color: #4A5568; line-height: 1.6; margin-bottom: 8px; }
.comment-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: #718096; }
.comment-reply-link a { color: #4A90D9; text-decoration: none; }
.comment-reply-link a:hover { text-decoration: underline; }
.no-comments { text-align: center; padding: 40px; color: #718096; font-size: 1rem; }

@media (max-width: 768px) {
    .comment-item { flex-direction: column; }
    .comment-post-image { width: 100%; height: 180px; }
}