.left-col{
    width: 40%;
    /*border-right: 1px solid lightgray;*/
}
.right-col{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 5px 5px;
}
.type-label{
    font-size: 18px;
    font-weight: 500;

}
.type-txt{
    font-size: 11px;
}
.flex-center{
    /*flex 布局*/
    display: flex;
    /*实现垂直居中*/
    align-items: center;
}
.flex-between{
    display: flex;
    justify-content: space-between;
}
.red{
    color: red;
    font-weight: 400;
}
.black{
    color: black;
    font-weight: 400;
}
.row-height{
    margin-top: 5px;
    margin-bottom: 5px;
}
