#inquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
}

.modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group select, .form-group input {
    width: 100%;
    padding: 10px;
    font-size: 1.7rem;
    border: 1px solid #eee
}

/* 添加加载状态样式 */
#state[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* 错误状态 */
.error-state {
    border: 1px solid #ff0000;
}

/* 表单加载状态 */
.form-loading:after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.7);
    z-index: 9999;
}

#inquiry-modal h2{
    margin-top: 3rem;
}
#inquiry-modal button.button{
    background-color: var(--theme_color);
    color: white;
    padding: 1rem 3rem
}