body {
    font-size: 16px;
}

.text-center {
    text-align: center;
}

.text-overline {
    text-decoration: overline;
}

.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-grow {
    flex: 1;
}

.grid {
    display: grid;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.align-center {
    align-items: center;
}

.align-baseline {
    align-items: baseline;
}

.align-end {
    align-items: flex-end;
}

.align-self-end {
    align-self: flex-end;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.bold {
    font-weight: bold;
}

.color-main {
    color: #333;
}

.color-fff {
    color: #fff;
}

.background-fff {
    background-color: #fff;
}

.color-red {
    color: #DD2200;
}

.color-success {
    color: #0e6f5c;
}

.color-warning {
    color: #FF9900;
}

.background-red {
    background-color: #DD2200;
}

.background-warning {
    background-color: #FF9900;
}

.background-success {
    background-color: #18bc9c;
}

.padding-20 {
    padding: 20px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}


/*翻页*/
.h-page-pre, .h-page-next {
    display: inline-block;
    padding: 6px 12px;
    line-height: 1.428571429;
    background: #fafafa;
    color: #666;
}

.h-page-next {
    margin-left: 10px;
}

.h-page-next:hover, .h-page-pre:hover {
    background: #ddd;
    cursor: pointer;
}

.h-page-next.disabled, .h-page-pre.disabled {
    cursor: not-allowed;
}

.form-input-tip {
    display: table-row;
    color: red;
}