/* feedback.css (feedback.html 专属样式) */

.contact-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.report-instructions {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #2c7a3e;
}

.report-instructions ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.report-instructions li {
    margin-bottom: 0.5rem;
}

.feedback-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.3rem;
}

.submit-btn {
    background-color: #2c7a3e;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #1e5631;
}

.status-message {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 4px;
    text-align: center;
}

.status-message.success {
    background-color: #e6f7e6;
    color: #2e7d32;
}

.status-message.error {
    background-color: #ffebee;
    color: #c62828;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .contact-container {
        width: 90%;
        margin: 1.5rem auto;
    }
}

