.form-container {
    padding: 20px 20px;
    padding-bottom: 80px; /* 增加底部内边距，确保能看到提交按钮 */
}

.form-group {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-label {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    width: 30%;
}

.form-input {
    width: 70%;
    border: none;
    outline: none;
    font-size: 16px;
    color: #999;
    text-align: right;
}

.form-input::placeholder {
    color: #ccc;
}

.location-select {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 70%;
}

.location-select-text {
    color: #999;
    padding-right: 15px;
}

.arrow-icon {
    color: #ccc;
    transition: transform 0.3s;
}

.location-select.active .arrow-icon {
    transform: rotate(90deg);
}

.dropdown-menu {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.dropdown-menu.show {
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.dropdown-title {
    font-size: 16px;
    font-weight: bold;
}

.dropdown-close {
    font-size: 18px;
    color: #999;
}

.dropdown-options {
    max-height: 60vh;
    overflow-y: auto;
    padding: 10px 0;
}

.dropdown-option {
    padding: 15px 20px;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
}

.dropdown-option.selected {
    color: #00c26d;
}

.dropdown-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.dropdown-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.upload-section {
    margin: 20px 0;
}

.upload-title {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.upload-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.upload-box {
    width: 110px;
    height: 110px;
    border: 1px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    cursor: pointer;
}

.upload-icon {
    width: 60px;
    height: 60px;
    opacity: 0.3;
}

.preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.preview-item {
    width: 110px;
    height: 110px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.preview-item img, .preview-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delete-preview {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.video-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.repair-type {
    margin: 20px 0;
}

.type-options {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.type-option {
    display: flex;
    align-items: center;
    margin-right: 30px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.type-option:hover {
    opacity: 0.8;
}

.radio-custom {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ddd;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-selected {
    border-color: #00c26d;
}

.radio-selected::after {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #00c26d;
}

.submit-btn {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background-color: #00c26d;
    color: white;
    font-size: 18px;
    border: none;
    margin: 20px 0;
    cursor: pointer;
}

/* 修复底部导航遮挡问题 */
main {
    padding-bottom: 80px;
} 