﻿/* flex布局 */
.d-flex {
    display: flex;
}

.d-flex-inline {
    display: inline-flex;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.flex-1 {
    flex: 1;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-shrink {
    flex-shrink: 0;
}

.j-start {
    justify-content: flex-start;
}

.j-center {
    justify-content: center;
}

.j-end {
    justify-content: flex-end;
}

.j-sb {
    justify-content: space-between;
}

.j-sa {
    justify-content: space-around;
}

.a-center {
    align-items: center;
}

.a-start {
    align-items: flex-start;
}

.a-end {
    align-items: flex-end;
}

.a-stretch {
    align-items: stretch;
}

.a-baseline {
    align-items: baseline;
}

.a-self-start {
    align-self: flex-start;
}

.a-self-auto {
    align-self: auto;
}

.a-self-end {
    align-self: flex-end;
}

.a-self-stretch {
    align-self: stretch;
}

.a-self-baseline {
    align-self: baseline;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}
.mt-2 {
    margin-top: 2px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-30 {
    margin-left: 30px;
}

.mr-5 {
    margin-right: 5px;
}
.mr-10 {
    margin-right: 10px;
}
.mr-20 {
    margin-right: 20px;
}
.mr-30 {
    margin-right: 30px;
}

.p-10 {
    padding: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.p-20 {
    padding: 10px;
}

.p-2 {
    padding: 2px;
}

.pl-10 {
    padding-left: 10px;
}
.pl-20 {
    padding-left: 20px;
}
.pr-10 {
    padding-right: 10px;
}
.pt-5 {
    padding-top: 5px;
}
.pt-10 {
    padding-top: 10px;
}

.pt-0 {
    padding-top: 0px;
}
.pb-5 {
    padding-bottom: 5px;
}
.pb-10 {
    padding-bottom: 10px;
}
.pb-15 {
    padding-bottom: 15px;
}
.pb-20 {
    padding-bottom: 20px;
}

.font-bold {
    font-weight: bold;
}

.btn-a {
    color: #409EFF;
    cursor: pointer;
    font-weight: 500;
    line-height: 1;
}

.w-100 {
    width: 100%;
}

.w-33 {
    width: 33%;
}

.text-center {
    text-align: center;
}

.text-gray {
    color: #777777;
}
.text-muted {
    color: #777777;
}
.text-red {
    color: red;
}
.text-green {
    color: green;
}
.font-weight {
    font-weight: bold;
}

.border {
    border: 1px solid #E4E7ED;
}

.boder-top {
    border-top: 1px solid #E4E7ED;
}

.boder-bottom {
    border-bottom: 1px solid #E4E7ED;
}

.bg-white {
    background-color: white;
}

.bg-black {
    background-color: black;
}

.bg-green1 {
    background-color: #95F204;
}

.text-white {
    color: white;
}

.round-10 {
    border-radius: 10px;
}

.round-5 {
    border-radius: 5px;
}

.font-12 {
    font-size: 12px;
}

.text-center {
    text-align: center;
}

.link {
    color: #409EFF;
}

.textEllipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.amount {
    color: #FF2525;
}