/* =====================================================
   狐蒂云维权系统 - 样式表
   响应式设计，支持PC和移动端
   ===================================================== */

/* CSS变量 */
:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* 加载遮罩层 */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 主容器 */
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

/* 头部 */
.header {
    text-align: center;
    color: white;
    padding: 40px 20px;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.header .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* =====================================================
   实时统计信息栏（前台展示）
   ===================================================== */

.stats-banner {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.stats-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-refresh-stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-refresh-stats:hover {
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* 统计卡片网格 */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 15px;
}

.pub-stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pub-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.pub-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.2);
}

/* 不同卡片的主题色 */
.card-total::before { background: linear-gradient(90deg, #667eea, #764ba2); }
.card-processed::before { background: linear-gradient(90deg, #10b981, #059669); }
.card-reviewing::before { background: linear-gradient(90deg, #f59e0b, #d97706); }
.card-refund::before { background: linear-gradient(90deg, #ef4444, #dc2626); }

.pub-stat-icon {
    font-size: 48px;
    line-height: 1;
    opacity: 0.9;
    flex-shrink: 0;
}

.pub-stat-info {
    flex: 1;
    min-width: 0;
}

.pub-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.pub-stat-label {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 2px;
    font-weight: 500;
}

.pub-stat-trend,
.pub-stat-rate,
.pub-stat-extra {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    white-space: nowrap;
}

.pub-stat-trend.trend-up {
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
}

.pub-stat-rate {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 13px;
    font-weight: 700;
}

.pub-stat-extra {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    font-size: 11px;
}

/* 统计底部 */
.stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    color: var(--text-secondary);
}

.update-time {
    opacity: 0.8;
}

.link-detail {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.link-detail:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* 详细信息区域（可折叠） */
.stats-detail {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed #e5e7eb;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.detail-section {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 18px;
}

.detail-section.full-width {
    grid-column: span 2;
}

.detail-section h4 {
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 700;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
}

.detail-item label {
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-item span {
    font-weight: 700;
    color: var(--text-primary);
}

/* 状态分布条形图 */
.status-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-bar-item {
    width: 100%;
}

.bar-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 13px;
}

.bar-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
}

.bar-label {
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.bar-count {
    font-weight: 700;
    color: var(--text-secondary);
}

.bar-track {
    height: 10px;
    background: #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 1s ease;
    position: relative;
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* 温馨提示区域 */
.tips-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    margin-top: 20px;
}

.tips-section p {
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 8px;
}

.tips-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-section li {
    padding: 4px 0;
    color: #3b82f6;
    font-size: 13px;
    padding-left: 16px;
    position: relative;
}

.tips-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* 加载和错误状态 */
.stat-card-loading,
.stat-card-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px;
    color: var(--text-secondary);
    font-size: 14px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.stat-card-loading {
    color: var(--primary-color);
    font-weight: 600;
}

.stat-card-error {
    color: var(--danger-color);
    background: #fef2f2;
}

/* 登录提示栏 */
.login-banner {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: 15px 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

#user-status-text {
    color: var(--success-color);
    font-weight: 600;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: underline;
    font-size: 14px;
    padding: 5px 10px;
}

.btn-link:hover {
    color: var(--primary-hover);
}

/* 面板 */
.panel {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    margin-bottom: 20px;
}

.panel-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.panel-header h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.panel-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* 表单样式 */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group .required {
    color: var(--danger-color);
    margin-right: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error {
    border-color: var(--danger-color);
}

.form-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* 字段集 */
.fieldset {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 25px;
}

.fieldset-legend {
    font-weight: 700;
    color: var(--primary-color);
    padding: 0 10px;
}

/* 表单行（多列） */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-hover);
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-success:hover:not(:disabled) {
    background: #059669;
}

.btn-warning {
    background: var(--warning-color);
    color: white;
}

.btn-warning:hover:not(:disabled) {
    background: #d97706;
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover:not(:disabled) {
    background: #4b5563;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-remove-image {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--danger-color);
    color: white;
    border: 2px solid white;
    cursor: pointer;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.btn-remove-image:hover {
    background: #dc2626;
}

/* 图片上传区域 */
.upload-section {
    display: grid;
    gap: 20px;
}

.upload-item {
    position: relative;
}

.upload-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.upload-label .required {
    color: var(--danger-color);
}

.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.02);
}

.upload-area.dragover {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
    transform: scale(1.02);
}

.upload-placeholder {
    pointer-events: none;
}

.upload-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.upload-placeholder p {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 5px;
}

.upload-placeholder small {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.upload-preview {
    position: relative;
    width: 100%;
    max-height: 300px;
    overflow: hidden;
}

.upload-preview img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.upload-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* 提示信息 */
.notice {
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.notice-info {
    background: #eff6ff;
    border-left: 4px solid var(--primary-color);
}

.notice-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.notice-content strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.notice-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

/* 表单消息 */
.form-message {
    padding: 15px;
    border-radius: var(--radius-md);
    margin-top: 20px;
    font-weight: 500;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #34d399;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
}

/* 已提交信息展示 */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.info-item {
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.info-item label {
    font-weight: 600;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.info-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.status-badge.status-0 {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.status-1 {
    background: #dbeafe;
    color: #1e40af;
}

.status-badge.status-2 {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.status--1 {
    background: #fee2e2;
    color: #991b1b;
}

.submitted-images h4 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.images-grid img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.images-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* 页脚 */
.footer {
    text-align: center;
    color: white;
    padding: 30px 20px;
    margin-top: 30px;
}

.footer p {
    margin-bottom: 5px;
}

.text-muted {
    opacity: 0.8;
}

.text-sm {
    font-size: 0.875rem;
}

/* 辅助类 */
.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.hidden {
    display: none !important;
}

/* 响应式设计 - 平板 */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        margin: 10px auto;
    }

    .header h1 {
        font-size: 2rem;
    }

    .header {
        padding: 30px 15px;
    }

    .panel {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .images-grid {
        grid-template-columns: 1fr;
    }

    .upload-area {
        padding: 20px;
        min-height: 150px;
    }

    .upload-icon {
        font-size: 36px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .header h1 {
        font-size: 1.6rem;
    }

    .header .subtitle {
        font-size: 0.95rem;
    }

    .panel {
        padding: 15px;
        border-radius: var(--radius-md);
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .fieldset {
        padding: 15px;
    }

    .upload-area {
        padding: 15px;
        min-height: 120px;
    }
}

/* 弹窗样式 */
.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-header {
    padding: 20px 24px 10px;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}
.modal-header h3 { margin: 0; font-size: 18px; }
.modal-close {
    position: absolute;
    right: 20px; top: 18px;
    font-size: 28px;
    cursor: pointer;
    color: #9ca3af;
    line-height: 1;
    background: none;
    border: none;
}
.modal-close:hover { color: #374151; }
.modal-body { padding: 24px; }

/* 退出登录按钮 */
.btn-logout-custom {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-logout-custom:hover {
    background: #fecaca;
    border-color: #f87171;
}

/* 用户实时反馈 */
.feedback-list {
    max-height: 420px;
    overflow-y: auto;
}
.feedback-table {
    width: 100%;
    border-collapse: collapse;
}
.feedback-table th {
    background: #f1f5f9;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 12px;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
}
.feedback-table td {
    padding: 10px 12px;
    font-size: 14px;
    color: #334155;
    border-bottom: 1px solid #f0f0f0;
}
.feedback-table tbody tr:hover { background: #f8fafc; }
.td-nick { font-weight: 600; color: #1e293b; }
.td-amount { font-weight: 700; color: #dc2626; }

/* 图片上传区域 */
.upload-area-simple {
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fafafa;
}
.upload-area-simple:hover { border-color:#3b82f6; background: #eff6ff; }
.upload-ph p { margin:4px 0; color:#6b7280;font-size:14px; }
.upload-ph small { color:#9ca3af;font-size:12px; }

/* 查看证据按钮 */
.btn-evidence {
    padding:3px 10px;
    background:#dbeafe;
    color:#1d4ed8;
    border:1px solid #93c5fd;
    border-radius:5px;
    cursor:pointer;
    font-size:12px;
    font-weight:500;
    margin-left:6px;
    transition:all 0.15s;
}
.btn-evidence:hover { background:#bfdbfe;border-color:#60a5fa; }

/* 紧凑表单 */
.form-compact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 8px;
}
.form-group-compact label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 3px;
}
.form-group-compact input,
.form-group-compact select,
.form-group-compact textarea {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
    box-sizing: border-box;
}

/* 我的数据表格 */
.my-data-table td { padding:8px 12px;border-bottom:1px solid #f0f0f0;font-size:13px;color:#374151; }
.my-data-table .mdl { width:90px; color:#6b7280;font-weight:500;font-size:12px;background:#f9fafb; }

/* 下载按钮 */
.btn-download-mydata {
    padding:6px 14px;
    background:#f0fdf4;
    color:#166534;
    border:1px solid #86efac;
    border-radius:6px;
    cursor:pointer;
    font-size:13px;
    font-weight:600;
    transition:all 0.15s;
}
.btn-download-mydata:hover { background:#dcfce7;border-color:#4ade80; }
.feedback-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}
.page-btn {
    padding: 6px 16px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s;
}
.page-btn:hover { background: #f3f4f6; border-color: #9ca3af; }
.page-info { font-size: 13px; color: #6b7280; font-weight: 500; }
