@import '../../../../static/font/iconfont/iconfont.css?_t=1717732677429';
/* 全局配置 */
body {
    /* font-family: Radiance; */
    color: #121212;
    /* 全局定义默认颜色 */
    --defaultcolors: #1571FF;
    --defaultfontColor: #121212;
}
/* @font-face{
    font-family: Radiance;
    src: url('../../fonts/PingFang_Medium_0.ttf'),
         url('../../fonts/HelveticaNeueLTPro-Roman.otf'),
         url('../../fonts/arial.ttf');
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 14px;
    /* 火狐滚动条样式 */
    scrollbar-width: thin;
    scrollbar-color: #E4EAF0 transparent;
    -ms-overflow-style: none;
}
ul li{
    list-style: none;
}
a {
    text-decoration: none;
    color: #117AF2;
}
a:hover {
    color: #117AF2;
}

/* 滚动条全局设置 */
::-webkit-scrollbar {
    width: 8px;
    height: 10px;
    border-radius: 8px;
}
::-webkit-scrollbar-thumb {
    width: 8px;
    border-radius: 8px;
    background-color: #ccc;
}
::-webkit-scrollbar-track {
    width: 8px;
    border-radius: 8px;
    background-color: transparent;
}

/* position */
.re-post {
    position: relative;
}
/* float */
.f-l{
    float: left;
}
.f-r{
    float: right;
}
/* overflow */
.ov-hide{
    overflow: hidden;
}
.ov-auto{
    overflow: auto;
}
.ov-y-auto {
    overflow-x: hidden;
    overflow-y: auto;
}
/* font-size */
.f-t-12{
    font-size: 12px;
}
.f-t-13{
    font-size: 13px;
}
.f-t-14{
    font-size: 14px;
}
.f-t-16{
    font-size: 16px;
}
.f-t-18{
    font-size: 18px;
}
.f-t-20{
    font-size: 20px;
}
.f-t-22{
    font-size: 22px;
}
.f-t-24{
    font-size: 24px;
}
.bold {
    font-weight: bold;
}
/* margin & padding */
.mr-t-8 {
    margin-top: 8px
}
.mr-t-10 {
    margin-top: 10px;
}
.mr-b-10 {
    margin-bottom: 10px;
}
.mr-l-10 {
    margin-left: 10px;
}
.mr-r-10 {
    margin-right: 10px;
}
.mr-r-12 {
    margin-right: 12px;
}
.mr-t-5 {
    margin-top: 5px;
}
.mr-t-15 {
    margin-top: 15px;
}
.mr-b-15 {
    margin-bottom: 15px;
}
.mr-l-15 {
    margin-left: 15px;
}
.mr-r-15 {
    margin-right: 15px;
}
.mr-t-16 {
    margin-top: 16px;
}
.mr-b-16 {
    margin-bottom: 16px;
}
.mr-l-16 {
    margin-left: 16px;
}
.mr-r-16 {
    margin-right: 16px;
}
.mr-t-20 {
    margin-top: 20px;
}
.mr-b-20 {
    margin-bottom: 20px;
}
.mr-l-20 {
    margin-left: 20px;
}
.mr-r-20 {
    margin-right: 20px;
}
.mr-l-5 {
    margin-left: 5px;
}
.mr-l-8 {
    margin-left: 8px;
}
.mr-r-5 {
    margin-right: 5px;
}
.mr-r-8 {
    margin-right: 8px;
}
.mr-l-30 {
    margin-left: 30px;
}
.mr-r-28 {
    margin-right: 28px;
}
.pd-10 {
    padding: 10px;
}
.pd-15 {
    padding: 15px;
}
.pd-20 {
    padding: 20px;
}
.pd-t-20 {
    padding-top: 20px;
}
.pd-b-20{
    padding-bottom: 20px;
}
.pd-t-10 {
    padding-top: 10px;
}
.pd-lr-15 {
    padding: 0 15px;
}

.radius {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
/* height */
.full-width {
    width: 100%;
}
.full-height {
    height: 100%;
}
.fit-height {
    height: fit-content;
}
/* font */
.text-flow {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.text-second-flow {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.color-primary {
    color: #5682F7;
}

.color-grey {
    color: #8A9099;
}

/* cursor */
.cursor {
    cursor: pointer;
}
/* display */
.dis-block {
    display: block;
}
.dis-in-b {
    display: inline-block;
}
.hide {
    display: none !important;
}
.vert-top {
    vertical-align: top;
}
.vert-mid {
    vertical-align: middle;
}
.vert-btm {
    vertical-align: bottom;
}
/* flex */
.flex {
    display: flex;
}

.fl-cen-cen {
    display: flex;
    justify-content: center;
    align-items: center;
}
.fl-cen-sta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.fl-sta-sta{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.fl-bet-sta{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.fl-bet-cen{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fl-end-cen{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.fl-sta-cen {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.fl-col {
    flex-direction: column;
}
.fl-wrap {
    flex-wrap: nowrap;
}



/* opacity */
.opacity {
    opacity: 0.5;
}
/* 表单错误提示 */
.errorTip {
    position: absolute;
    margin-top: 5px;
    color: red;
    font-size: 14px;
}
/* layui */
/* dialog */
.layui-layer-title {
    border: none !important;
    height: auto !important;
    line-height: 1 !important;
    padding: 32px 40px !important;
    font-size: 20px !important;
    font-weight: bold;
}
.layui-layer-setwin {
    right: 20px !important;
    top: 36px !important;
}
.layui-layer-dialog .layui-layer-content {
    padding: 0 40px 0 !important;
    font-size: 16px !important;
}
.layui-layer-btn {
    margin-top: 40px;
    padding: 0 40px 32px !important;
}
.layui-layer-btn a {
    display: inline !important;
    height: 40px !important;
    line-height: 40px !important;
    border-radius: 40px !important;
    padding: 10px 40px !important;
    margin: 0 12px !important;
}
.layui-layer-btn .layui-layer-btn0 {
    border-color: #CDCDCE !important;
    background-color: #fff !important;
    color: #747C88 !important;
}
.layui-layer-btn .layui-layer-btn1 {
    border-color: #2178FF;
    background-color: #2178FF;
    color: #fff;
}

.layui-layer-msg {
    top: 3vh !important;
    border: none !important;
    border-radius: 4px !important;
}
.layui-layer-msg .layui-layer-content {
    min-width: 300px;
    text-align: left !important;
    padding: 10px 24px !important;
}
.msg-success {
    background-color: #f0f9eb !important;
    color: #67c23a !important;
    border: #e1f3d8 1px solid !important;
}
.msg-warn {
    background-color: #FFF4E9 !important;
    color: #FF9023 !important;
    border: #faecd8 1px solid !important;
}
