/* 表单页样式 */

/* 服务信息卡片 */
.booking-service-info {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    margin-bottom: 10px;
    gap: 12px;
}

.booking-service-info img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.service-info {
    flex: 1;
}

.service-name {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.service-price {
    font-size: 18px;
    font-weight: 600;
}

/* 表单区块 */
.form-section {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 10px;
}

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

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

.form-item:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.required {
    color: #FF4D4F;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
}

.form-input:focus {
    outline: none;
    border-color: #1890FF;
}

.form-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.form-input-group .form-input {
    flex: 1;
}

.location-btn-small {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    resize: vertical;
    font-family: inherit;
}

.form-textarea:focus {
    outline: none;
    border-color: #1890FF;
}

/* 可点击的表单项 */
.form-item-clickable {
    display: flex;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
}

.form-item-clickable .form-label {
    flex: 1;
    margin-bottom: 0;
}

.form-value {
    font-size: 14px;
    color: #999;
    margin-right: 8px;
}

.form-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* 费用明细 */
.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
}

.fee-label {
    color: #666;
}

.fee-value {
    color: #333;
    font-weight: 600;
}

.fee-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-top: 10px;
    border-top: 1px solid #eee;
    font-size: 16px;
}

.fee-total .fee-label {
    color: #333;
    font-weight: 600;
}

.fee-total .fee-value {
    font-size: 20px;
}

/* 底部提交栏 */
.form-footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 750px;
    padding: 10px 15px;
    background-color: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.form-footer-total {
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.form-footer-total .price {
    font-size: 20px;
    font-weight: 600;
    margin-left: 4px;
}

.form-footer .btn {
    height: 44px;
}

