/* 反馈管理页面样式 */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-top: 24px;
}

.data-table:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.data-table th {
    background-color: #f5f5f7;
    font-weight: 600;
    color: #1d1d1f;
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid #d2d2d7;
    font-size: 14px;
}

.data-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid #d2d2d7;
    font-size: 14px;
    transition: all 0.3s ease;
}

.data-table td button {
    display: inline-block;
    margin: 0 4px;
}

.data-table tr:hover {
    background-color: #f9f9f9;
}

.data-table td img {
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.data-table td img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 按钮样式 */
.btn {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
    text-decoration: none;
    display: inline-block;
    margin: 0 4px;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-view {
    background-color: #34c759;
    color: #ffffff;
}

.btn-view:hover {
    background-color: #30b755;
}

.btn-process {
    background-color: #0071e3;
    color: #ffffff;
}

.btn-process:hover {
    background-color: #0077ed;
}

.btn-back {
    background-color: #9e9e9e;
    color: #ffffff;
}

.btn-back:hover {
    background-color: #757575;
}

.status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.status-pending {
    background-color: #ffebee;
    color: #d32f2f;
    box-shadow: 0 2px 4px rgba(211, 47, 47, 0.2);
}

.status-pending:hover {
    background-color: #ffcdd2;
}

.status-processed {
    background-color: #e3f2fd;
    color: #1976d2;
    box-shadow: 0 2px 4px rgba(25, 118, 210, 0.2);
}

.status-processed:hover {
    background-color: #bbdefb;
}

.feedback-detail {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-top: 24px;
}

.feedback-detail:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.detail-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-item label {
    width: 120px;
    font-weight: 600;
    color: #1d1d1f;
    font-size: 14px;
    flex-shrink: 0;
}

.detail-item span {
    flex: 1;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.feedback-content {
    flex: 1;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
    min-height: 120px;
    white-space: pre-wrap;
    line-height: 1.6;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feedback-content:hover {
    background-color: #f5f5f7;
    border-color: #d2d2d7;
}

.detail-actions {
    margin-top: 24px;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .data-table th,
    .data-table td {
        padding: 8px;
        font-size: 12px;
    }
    
    .data-table td img {
        width: 30px;
        height: 30px;
    }
    
    .btn {
        padding: 4px 8px;
        font-size: 11px;
        margin-right: 4px;
    }
    
    .feedback-detail {
        padding: 15px;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .detail-item label {
        width: 100%;
    }
    
    .detail-actions {
        flex-direction: column;
        gap: 5px;
    }
    
    .detail-actions .btn {
        width: 100%;
        text-align: center;
    }
}


