@charset "utf-8";
@font-face {
  font-family: "Source Han Sans";
  src: url("../fonts/sourcehansans.eot"); /* IE9 Compat Modes */ /*这里以及下面的src后面的地址填的都是自己本地的相对地址*/
  src: url("../fonts/sourcehansans.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/sourcehansans.woff") format("woff"),
    /* Modern Browsers */ url("../fonts/sourcehansans.ttf") format("truetype"),
    /* Safari, Android, iOS */ url("../fonts/sourcehansans.svg#Source Han Sans")
      format("svg"); /* Legacy iOS */      
  font-weight: normal;
  font-style: normal;
}
* {
    /* border: 0; */
    font-style: normal;
    font-size: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    quotes: none;
    text-decoration: none;
    vertical-align: baseline;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
*{
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    /* border: 0; */
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}
html,body{
  font-family: "Source Han Sans,PingFang SC,Helvetica Neue, Helvetica,Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif";
  
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}
body {
    font: 16px Helvetica Neue, Space Grotesk, -apple-system, linkMacSystemFont, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 400;
    margin: 0;
    height: 100%;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    background: #fff;
}
body::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}

body::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  -webkit-box-shadow: inset 1 1 2px rgba(0, 0, 0, 0.2);
  background-color: #ccc;
}

body::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 1 1 2px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #f3f3f3;
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

p {
	word-wrap: break-word
}

em,
i {
	font-style: normal
}

li {
	list-style: none
}

img {
	border: 0;
}

.table{width: 50%;border: 1px solid #dddee1;border-collapse: collapse;}
.table thead{background-color: #f8f8f9;border-bottom: 1px solid #e9eaec;}
.table thead th:first-child{width: 60%;padding:10px 0;}
.table tbody tr td{text-align: center;}
.buttons{padding: 10px 0;}
.ivu-poptip-confirm .ivu-poptip-body .ivu-icon{left:16px;}
/* 覆盖 Message 容器的 z-index */
.ivu-message {
  z-index: 99999 !important; /* 设为比页面其他元素更高的值（如登录弹窗是9999，这里设99999） */
}

/* 若有 Message 单个提示项的层级问题，补充： */
.ivu-message-notice {
  z-index: 99999 !important;
}
@media screen and (min-width: 320px) {
  html {
    font-size: 13px !important;
  }
}

@media screen and (min-width: 760px) {
  html {
    font-size: 14px !important;
  }
}

@media screen and (min-width: 1040px) {
  html {
    font-size: 14px !important;
  }
}
@media screen and (min-width: 1300px) {
  html {
    font-size: 16px !important;
  }
}
@media screen and (min-width: 1500px) {
  html {
    font-size: 18px !important;
  }
}
.clearfix::after {
  content: "";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}