.modalBg {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
}
.modalBg .modalContent {
    background-color: #fff;
    display: flex;
    flex-direction: column;
}
.modalContent .modalHead{
    height: 48px;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    align-items: center;
    border-bottom: solid 2px #e9e9e9;
    box-sizing: border-box;
    color: #666;
}
.modalContent .modalHead .titleText{
    font-size: 14px;
    flex: 1;
}
.modalContent .modalHead .closeIcon{
    font-size: 24px;
    cursor: pointer;
}
.modalContent .modalBody{
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.modalContent .modalFoot{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 51px;
    border-top: solid 2px #e9e9e9;
}
.modalContent .modalFoot .btn{
    padding: 6px 23px;
    border: none;
    outline: none;
    cursor: pointer;
}
.modalContent .modalFoot .cancelBtn{
    background-color: #fff;
    margin-right: 10px;
    border: solid 1px #ccc;
}
.modalContent .modalFoot .confirmBtn{
    background-color: #F6AB00;
    color: #fff;
    border: solid 1px #F6AB00;
}