/* 预约演示弹窗样式 */

/* 复用登录弹窗的基础样式，这里只添加预约演示特有的样式 */

.booking-modal-content {
    width: 540px;
    max-height: 90vh;
    overflow-y: auto;
}

.booking-modal-subtitle {
    font-size: 14px;
    color: #666666;
    text-align: center;
    margin: 8px 0 0 0;
    line-height: 1.5;
}

.booking-label {
    display: block;
    font-size: 14px;
    color: #333333;
    margin-bottom: 8px;
    font-weight: 500;
}

.booking-label .required {
    color: #FF4D4F;
    margin-right: 2px;
}

/* 预约表单输入框铺满宽度 */
.booking-form .login-input {
    width: 100%;
    box-sizing: border-box;
}

.booking-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L6 6L11 1' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    cursor: pointer;
}

.booking-textarea {
    width: 100%;
    min-height: 100px;
    resize: vertical;
    padding: 12px 16px;
    line-height: 1.6;
    font-family: inherit;
}

.booking-textarea::placeholder {
    color: #CCCCCC;
}

.booking-privacy {
    font-size: 13px;
    color: #999999;
    margin: -10px 0 20px 0;
    line-height: 1.6;
}

.booking-privacy a {
    color: #1F3A8C;
    text-decoration: none;
    transition: color 0.3s;
}

.booking-privacy a:hover {
    color: #2E5DFD;
}

/* 滚动条样式 */
.booking-modal-content::-webkit-scrollbar {
    width: 6px;
}

.booking-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.booking-modal-content::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 3px;
}

.booking-modal-content::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

/* 响应式调整 */
@media screen and (max-width: 600px) {
    .booking-modal-content {
        width: 90%;
        max-width: 500px;
        padding: 30px 20px;
    }
}
