/* 初始化样式
------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}

html,
body,
#app {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Noto Sans SC;
    font-weight: 400;
    color: #2d3c4e;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    font-size: 14px;
    /* overflow: hidden; */
    position: relative;
}

a {
    color: #2d3c4e;
    cursor: pointer;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre,
dl,
dt,
dd,
ul,
ol,
li,
th,
td,
form,
fieldset,
legend,
button,
input,
textarea,
figure,
figcaption,
nav,
footer,
menu,
blockquote {
    margin: 0;
    padding: 0;
}

*,
*:after,
*:before {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

ul {
    list-style: none;
}

img {
    border: 0;
    font-size: 0;
    -webkit-user-select: none;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
}

em,
i {
    font-style: normal;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
}

::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #a6b2c1 !important;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #a6b2c1 !important;
    opacity: 1;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #a6b2c1 !important;
    opacity: 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #a6b2c1 !important;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #a6b2c1 !important;
}

input:-internal-autofill-previewed,
input:-internal-autofill-selected {
    /* -webkit-text-fill-color: #FFFFFF !important; */
    transition: background-color 5000s ease-in-out 0s !important;
}

/* flex 弹性布局
------------------------------- */
.flex {
    display: flex;
}

.flex-auto {
    flex: 1;
    overflow: hidden;
}

.flex-margin {
    margin: auto;
}



/* cursor 鼠标形状
------------------------------- */
/* // 默认 */
.cursor-default {
    cursor: default !important;
}

/* // 帮助 */
.cursor-help {
    cursor: help !important;
}

/* // 手指 */
.cursor-pointer {
    cursor: pointer !important;
}

/* // 移动 */
.cursor-move {
    cursor: move !important;
}

.clear {
    clear: both;
}

.clearfix:after {
    content: "\200B";
    display: block;
    height: 0;
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.fl {
    float: left !important;
}

.fr {
    float: right !important;
}

/* element 覆盖 */
.el-message--success {
    background-color: #E9F9F2 !important;
    border-color: #7BECA0 !important ;
}

.el-message .el-message-icon--success {
    color: #27C379 !important;
}

.el-message--success .el-message__content {
    color: #27C379 !important;
}

.el-message--error{
    border-color: #FFD1C1 !important;
    background-color: #FFF0F0 !important;
}
.el-message .el-message-icon--error {
    color: #FF6666 !important;
}
.el-message--error .el-message__content{
    color: #FF6666;
}