/* 清除内外边距 */

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,

    /* structural elements 结构元素 */

dl,
dt,
dd,
ul,
ol,
li,

    /* list elements 列表元素 */

pre,

    /* text formatting elements 文本格式元素 */

fieldset,
lengend,
button,
input,
textarea,

    /* form elements 表单元素 */

th,
td {
    /* table elements 表格元素 */
    margin: 0;
    padding: 0;
}


/* 设置默认字体 */

body,
button,
input,
select,
textarea {
    /* for ie */
    /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
    font: 12px/1 Tahoma, Helvetica, Arial, "\5B8B\4F53", sans-serif;
    font-family: 'Arial-BoldMT', 'MicrosoftYaHei';
    /* 用 ascii 字符表示，使得在任何编码下都无问题 */
}

h1 {
    font-size: 18px;
    /* 18px / 12px = 1.5 */
}

h2 {
    font-size: 16px;
}

h3 {
    font-size: 14px;
}

h4,
h5,
h6 {
    font-size: 100%;
}


/* address, cite, dfn, em, var {
    font-style: normal;
} */


/* 将斜体扶正 */

code,
kbd,
pre,
samp,
tt {
    font-family: "Courier New", Courier, monospace;
}


/* 统一等宽字体 */

small {
    font-size: 12px;
}


/* 小于 12px 的中文很难阅读，让 small 正常化 */


/* 重置列表元素 */

ul,
ol {
    list-style: none;
}


/* 重置文本格式元素 */

a {
    text-decoration: none;
    color: #000;
}


/*a:hover { text-decoration: underline; }*/

abbr[title],
acronym[title] {
    /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
    border-bottom: 1px dotted;
    cursor: help;
}

q:before,
q:after {
    content: '';
}


/* 重置表单元素 */

legend {
    color: #000;
}


/* for ie6 */

fieldset,
img {
    border: none;
}


/* img 搭车：让链接里的 img 无边框 */


/* 注：optgroup 无法扶正 */

button,
input,
select,
textarea {
    font-size: 100%;
    /* 使得表单元素在 ie 下能继承字体大小 */
}


/* 重置表格元素 */

table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    border-spacing: 0;
}

img {
    display: block;
}


/* 重置 hr */

hr {
    border: none;
    height: 1px;
}


/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */

html {
    overflow: hidden;
    height: 100%;
}

body {
    height: 100%;
    -webkit-text-size-adjust: none;
    margin: 0;
    padding: 0;
}

input::-webkit-input-placeholder {
    color: #bbbbbb;
}

input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #bbbbbb;
}

input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #bbbbbb;
}

input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bbbbbb;
}


/*  浮动  */

.fl {
    float: left
}

.fr {
    float: right
}


/*  清除浮动  */

.clearfix:after {
    content: " ";
    display: block;
    clear: both;
    visibility: hidden;
}

.flex-wrap {
    display: flex;
    display: -moz-flex;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-con-1 {
    flex: 1;
    z-index: 0
}

.flex-con-2 {
    flex: 2
}

.flex-pack-center {
    /*水平居中*/
    justify-content: center;
}

.flex-center {
    align-items: center
}

.flex-between {
    justify-content: space-between;
}

/*ios按钮的问题*/

input[type=button],
input[type=submit],
input[type=file],
button {
    cursor: pointer;
    -webkit-appearance: none;
}


.el-form-item {
    margin-bottom: 10px;
}/* table */
.ant-table-thead > tr > th{
    padding: 9px 16px !important;
}
.ant-table-tbody > tr > td{
    padding: 10px 16px !important;
}

/* button */
.ant-btn{
    border-radius: 2px !important;
}
.ant-btn-danger{
    background-color: #FF2D55 !important;
    border-color: #FF2D55 !important;
}
.ant-btn-primary{
    background-color: #3580F2 !important;
    border-color: #3580F2 !important;
}
.ant-btn-background-ghost.ant-btn-primary{
    color:#3580F2 !important;
}
.ant-btn-background-ghost.ant-btn-danger{
    color:#FF2D55 !important;
}


/* color */
.primary{
    color: #3580F2;
    cursor: pointer;
}
.danger{
    color: #FF2D55;
    cursor: pointer;
}
.warning{
    color: #FF9C00;
}
.succsess{
    color: #33C077;
}
.default{
    color: #A1A2A3;
}

/* 设置滚动条的样式 */
::-webkit-scrollbar {
    width: 5px;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    border-radius:10px;
    height: 25px;
    background:#F0F2F5;
}

.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected{
    /* border-left: 4px solid #3580F2; */
    /* background-color:rgba(53, 128, 242, 0.15) !important; */
}
.ant-menu-vertical .ant-menu-item::after,
.ant-menu-vertical-left .ant-menu-item::after,
.ant-menu-vertical-right .ant-menu-item::after,
.ant-menu-inline .ant-menu-item::after{
    border: 0 !important;
}
.ant-checkbox-group{
    border: solid 1px #dddddd;
    padding: 10px !important;
}

.ant-col-6{
    margin-bottom: 10px;
}


.ant-spin-container{
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    box-sizing: border-box;
}

.ant-modal-body {
    max-height: 500px;
    overflow-y: auto;
}
.ant-form-item {
    margin-bottom: 5px !important;
}
:root {
    --path: '';
}

.show {
    display: block !important;
}

.hide {
    display: none;
}

.md-modal-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    display: -moz-flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

.md-modal {
    position: absolute;
    height: auto;
    transform: translateX(-100px);
    z-index: 999;
    visibility: hidden;
    box-shadow: 0px 2px 8px 0px rgba(9, 10, 13, 0.15);
    border-radius: 2px;
    border: 1px solid #E0E2E5;
}

.md-modal .md-content {
    background: #ffffff;
}

.md-modal .md-content .cont-box {
    padding: 4px 20px 0px 20px;
    overflow-x: hidden;
    overflow-y: auto;
}

.md-modal .md-content .cont-box.no-buttom {
    padding: 0 24px 24px;
}

.md-mask {
    z-index: 900;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.md-mask.active {
    opacity: 1;
    visibility: visible;
}

.md-effect-1 .md-content {
    transform: scale(0.6);
    opacity: 0;
    transition: all 0.4s;
}

.md-show.md-effect-1 {
    visibility: visible;
}

.md-show.md-effect-1 .md-content {
    transform: scale(1);
    opacity: 1;
    height: 100%;
}

.md-loading {
    z-index: 1000;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.md-loading .md-loading-icon {
    margin: 0 auto;
    font-size: 30px;
    color: #4162ff;
}

.md-loading.active {
    opacity: 1;
    visibility: visible;
}

.title-box {
    justify-content: space-between;
    height: 50px;
    line-height: 50px;
    background-color: #fff;
}


.title-box .icon-wrap {
    margin-right: 20px;
}


.title-box .icon-wrap i.close:hover {
    opacity: 0.8;
}

.buttom-box {
    justify-content: flex-end;
    height: 84px;
    padding: 0 20px;
}


.buttom-box .btn-cancel:focus {
    border-color: #dddddd;
    outline: none;
}

.buttom-box .btn-cancel:hover {
    background-color: #ffffff;
}

.buttom-box .btn-determine:focus {
    border-color: #4162ff;
    outline: none;
}

.buttom-box .btn-determine:hover {
    background-color: #6781fd;
}
html,
body,
#app {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.hide {
    display: none;
}

.image-content {
    width: 70px;
    height: 70px;
}

.image-content img {
    width: 100%;
}

/* table */
.ant-table-thead > tr > th{
    padding: 9px 16px !important;
}
.ant-table-tbody > tr > td{
    padding: 10px 16px !important;
}

/* button */
.ant-btn{
    border-radius: 2px !important;
}
.ant-btn-danger{
    background-color: #FF2D55 !important;
    border-color: #FF2D55 !important;
}
.ant-btn-primary{
    background-color: #3580F2 !important;
    border-color: #3580F2 !important;
}
.ant-btn-background-ghost.ant-btn-primary{
    color:#3580F2 !important;
}
.ant-btn-background-ghost.ant-btn-danger{
    color:#FF2D55 !important;
}


/* color */
.primary{
    color: #3580F2;
    cursor: pointer;
}
.danger{
    color: #FF2D55;
    cursor: pointer;
}
.warning{
    color: #FF9C00;
}
.succsess{
    color: #33C077;
}
.default{
    color: #A1A2A3;
}

/* 设置滚动条的样式 */
::-webkit-scrollbar {
    width: 5px;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    border-radius:10px;
    height: 25px;
    background:#F0F2F5;
}

.ant-menu-vertical .ant-menu-item::after,
.ant-menu-vertical-left .ant-menu-item::after,
.ant-menu-vertical-right .ant-menu-item::after,
.ant-menu-inline .ant-menu-item::after{
    border: 0 !important;
}
.ant-checkbox-group{
    border: solid 1px #dddddd;
    padding: 10px !important;
}

.ant-col-6{
    margin-bottom: 10px;
}


.ant-spin-container{
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    box-sizing: border-box;
}

.ant-modal-body {
    max-height: 500px;
    overflow-y: auto;
}
.ant-form-item {
    margin-bottom: 5px !important;
}
.ant-tabs.ant-tabs-editable-card .ant-tabs-card-content > .ant-tabs-tabpane-inactive{
    height: 0 !important;
}
