* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    background-color: #fff;
    min-height: 100vh;
    position: relative;
}

.header {
    padding: 30px 20px 6px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: flex-end;
    position: sticky;
    top: 0;
    background-color: #f5f5f5;
    z-index: 100;
}

.back-button {
    font-size: 24px;
    cursor: pointer;
    margin-right: 15px;
}

.page-title {
    font-size: 12px;
    font-family: SimSun, serif;
    font-weight: normal;
}

.menu-list {
    padding: 0;
}

.menu-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    height: 60px;
    box-sizing: border-box;
}

.menu-item:hover {
    background-color: #f5f5f5;
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.arrow {
    font-size: 16px;
    color: #999;
}

.footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    margin-top: 20px;
}

.footer-link {
    color: #007aff;
    text-decoration: none;
    font-size: 14px;
}

.form-container {
    padding: 20px;
}

.form-item {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-required {
    color: #ff3b30;
}

.form-hint {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.evidence-item {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.evidence-count {
    color: #999;
    font-size: 14px;
}

.image-upload {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.upload-box {
    width: 80px;
    height: 80px;
    border: 1px dashed #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: #999;
}

.upload-box:hover {
    border-color: #007aff;
    color: #007aff;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    margin-top: 8px;
}

.textarea-container {
    margin-top: 10px;
}

textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    resize: none;
    font-size: 14px;
    font-family: inherit;
    min-height: 100px;
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #007aff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.submit-button:hover:not(:disabled) {
    background-color: #0066cc;
}

.submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 48px;
    color: #4cd964;
    margin-bottom: 20px;
}

.success-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.success-subtext {
    color: #999;
    font-size: 14px;
}

.back-home-button {
    width: 80%;
    padding: 12px;
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 30px;
}

.back-home-button:hover {
    background-color: #e0e0e0;
}

