div,
h1,
h2,
h3,
h4,
h5,
h6,
main,
section,
ul,
ol,
form,
input,
button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 14px;
}

body {
    margin: 0;
    padding: 0;
    overflow-y: hidden;
    font-family: '微软雅黑', 'Microsoft YaHei', 'microsoft yahei', simsun, 'sans-serif';
}

body select {
    border-radius: 4px;
    border: 1px solid rgba(196, 203, 218, 1);
    font-size: 12px;
}

body select:hover {
    border: 1px solid #3296fa;
}

body select:active {
    border: 1px solid #3296fa;
}

.nbaMask {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.nbaMaskTransparent {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.nbaDialog {
    position: fixed;
    z-index: 2000;
    width: 80%;
    max-width: 300px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    opacity: 1;
    color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.nbaDialog .nbaDialogHd .nbaDialogTitle {
    font-size: 16px;
    font-weight: 400;
}
.nbaDialog .nbaDialogBd {
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.3;
    word-wrap: break-word;
    word-break: break-all;
    color: #343a4a;
}
.nbaDialog .nbaDialogFt {
    padding-top: 10px;
    position: relative;
    font-size: 14px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.nbaDialog .nbaDialogBtn {
    display: inline-block;
    color: #454953;
    text-decoration: none;
    position: relative;
    margin-bottom: 0;
    padding: 5px 10px;
    border: rgba(196, 203, 218, 1) 1px solid;
    border-radius: 5px;
    text-align: center;
}
.nbaDialog a {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
