/************************************************************
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
** 否则页面将无法正常显示                                  **
************************************************************/
@font-face {
    font-family: 'FZZhongDengXian-Z07S';
    src: url(../fonts/zhongzhengjianti.ttf) format('truetype');
}
@font-face {
    font-family: 'Times-Roman';
    src: url(../fonts/Times-Roman.ttf) format('truetype');
}
@font-face {
    font-family: 'FZLanTingHeiS-DB-GB';
    src: url(../fonts/FZLTZHJW.ttf) format('truetype');
}
@font-face {
    font-family: 'FZChaoCuHei-M10S';
    src: url(../fonts/fangzhengchaocu.ttf) format('truetype');
}
@font-face {
    font-family: 'Adobe Heiti Std';
    src: url(../fonts/msyhbd.ttf) format('truetype');
}
@font-face {
    font-family: 'Microsoft YaHei';
    src: url(../fonts/msyhbd.ttc) format('truetype');
}
html,body {
    color: #333;
    margin: 0;
    height: 100%;
    font-family: "FZZhongDengXian-Z07S","Times-Roman","FZChaoCuHei-M10S","FZLanTingHeiS-DB-GB", "Adobe Heiti Std","Microsoft YaHei","Myriad Set Pro","Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	margin:0;
	padding:0
}

a {
    text-decoration: none;
    color: #000;
}

img {
    border: 0;/*display: block;
	max-width: 100%;
	vertical-align: middle;*/
}

body {
    background: #fff;
    color: #666;
    font: 12px/150% "FZZhongDengXian-Z07S","Times-Roman","FZChaoCuHei-M10S","FZLanTingHeiS-DB-GB", "microsoft yahei",Arial,Verdana;
}

table,html, body, div, dl, dt, dd, ol, ul, li, h1, h2, h3, h4, h5, h6, p, blockquote, pre, button, fieldset, form, input, legend, textarea, th, td {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

button {
    outline: 0;
}

img {
    border: 0;
}

button,input,optgroup,select,textarea,table {
    margin: 0;
    font: inherit;
    color: inherit;
    outline: none;
}

li {
    list-style: none;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
    'Droid Sans', 'Helvetica Neue', 'Microsoft Yahei', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100vw;
  height: 100vh;
}

body * {
  box-sizing: border-box;
  flex-shrink: 0;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

.self-center {
  align-self: center;
}

.self-baseline {
  align-self: baseline;
}

.self-stretch {
  align-self: stretch;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.grow {
  flex-grow: 1;
}

.grow-0 {
  flex-grow: 0;
}

.shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.relative {
  position: relative;
}