/**
* 广州交易集团有限公司一网通办项目-广融通
* date:2025-4-3
* author: xhz;
 */

 
/* 弹窗样式 */
.modal-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    width: 500px;
    border-radius: 4px;
    padding: 20px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

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

.form-item label {
    display: inline-block;
    width: 80px;
    text-align: right;
    margin-right: 10px;
}

.form-item input {
    width: 300px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-item textarea {
    width: 300px;
    height: 100px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
}

.captcha-wrap {
    display: inline-flex;
    align-items: center;
}

.captcha-wrap input {
    width: 150px;
    margin-right: 10px;
}

.captcha-img {
    height: 32px;
    cursor: pointer;
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
}

.modal-footer button {
    padding: 8px 20px;
    border-radius: 4px;
    border: none;
    margin: 0 10px;
    cursor: pointer;
}

.submit-btn {
    background: #2d8cf0;
    color: #fff;
}

.cancel-btn {
    background: #f8f8f8;
    border: 1px solid #ddd;
}