﻿body
{
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: PingFangSC-Medium,"PingFang SC",PingFangSC-Regular,-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif,"helvetica neue regular",Roboto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
code
{
    font-family: source-code-pro,Menlo,Monaco,Consolas,"Courier New",monospace;
}
body, div, ol, p, ul
{
    padding: 0;
    margin: 0;
}
ol, ul
{
    list-style: none;
}
#root
{
    display: flex;
    flex-direction: column;
    min-height: 100%;
    font-size: 1rem;
    font-weight: 400;
    background-color: #f2f4f7;
}
#root .container
{
    flex: 1 1;
}
.page-loading
{
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 15%;
}
.scroll-cover::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
}
.scroll-cover::-webkit-scrollbar-thumb
{
    background-color: #b3b3b3;
    border-radius: 5px;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
}
.scroll-cover::-webkit-scrollbar-track
{
    background: #f7faff;
}
.scroll-content::-webkit-scrollbar
{
    width: 8px;
    height: 5px;
}
.scroll-content::-webkit-scrollbar-thumb
{
    background-color: #e5e5e6;
    border-radius: 5px;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
}
.scroll-content::-webkit-scrollbar-track
{
    background: #f7faff;
}
.input::input-placeholder, .input:input-placeholder, .input:placeholder
{
    color: #8d8c8c;
}
.action
{
    color: #3e7fff;
    cursor: pointer;
}
.copy-right
{
    margin-bottom: 0;
    font-size: 12px;
    line-height: 40px;
    color: rgba(0,0,0,.45);
    text-align: center;
}
.flex
{
    display: flex;
}
.flex-direction-column
{
    flex-direction: column;
}
.flex-1
{
    flex: 1 1;
}
.flex-pack-center
{
    justify-content: center;
}
.flex-pack-end
{
    justify-content: flex-end;
}
.flex-align-center
{
    align-items: center;
}
.flex-pack-justify
{
    justify-content: space-between;
}
.flex-around-justify
{
    justify-content: space-around;
}
.flex-flow-wrap
{
    -webkit-box-lines: multiple;
    box-orient: horizontal;
    box-lines: multiple;
    flex-flow: row wrap;
}
.align-content
{
    align-content: flex-start;
    -webkit-align-content: flex-start;
    -ms-align-content: flex-start;
}
.ant-modal-wrap .ant-modal-content
{
    border-radius: 8px;
}