/* 企业选址页面样式 */
.location-page {
    background: #fff;
    min-height: 100vh;
    padding: 30px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.page-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.page-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.page-description p {
    margin: 4px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    padding: 35px 40px;
    border: 1px solid #e8e8e8;
}

.form-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4a90e2;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-label.required::after {
    content: ' *';
    color: #f5222d;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

.form-control::placeholder {
    color: #bfbfbf;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-item {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    cursor: pointer;
}

.checkbox-item span {
    font-size: 14px;
    color: #333;
}

.checkbox-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-item-block {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s;
}

.checkbox-item-block:hover {
    background: #f5f5f5;
}

.checkbox-item-block input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-item-block span {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.other-input {
    margin-top: 10px;
}

.form-actions {
    margin-top: 40px;
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-submit {
    min-width: 200px;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-back {
    min-width: 160px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    background: white;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-back:hover {
    color: #4a90e2;
    border-color: #4a90e2;
    background: #f0f7ff;
}

.btn-back:active {
    transform: scale(0.98);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .location-page {
        padding: 20px 0;
    }

    .page-header {
        margin-bottom: 30px;
    }

    .page-title {
        font-size: 24px;
    }

    .page-description {
        font-size: 13px;
    }

    .form-container {
        padding: 20px;
        border-radius: 0;
    }

    .section-title {
        font-size: 16px;
    }

    .checkbox-group {
        gap: 8px;
    }

    .checkbox-item,
    .checkbox-item-block {
        font-size: 13px;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .btn-submit,
    .btn-back {
        width: 100%;
        min-width: auto;
    }
}
