* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: SerifCN_Blod;
  src: url('../fonts/SourceHanSerifCN-Bold.ttf');
}

@font-face {
  font-family: SerifCN_Medium;
  src: url('../fonts/SourceHanSerifCN-Medium.ttf');
}

@font-face {
  font-family: rzao;
  src: url('../fonts/rzao.ttf');
}

.SerifCN_Blod {
  font-family: SerifCN_Blod;
}

.SerifCN_Medium {
  font-family: SerifCN_Medium;
}

img {
  max-width: 100%;
}

html,
body {
  width: 100%;
  /* height: 100%; */
  font-size: 10px;
  font-family: 'SerifCN_Medium';
}

html {
  _background: url(about:blank);
  background-attachment: fixed;
}

video {
  max-width: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'SerifCN_Medium';
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'SerifCN_Blod' !important;
}

body {
  color: #555;
  margin: 0 auto;
  padding: 0;
  padding-top: 48px;
}

ul,
li {
  list-style: none;
  text-transform: capitalize;
}

input,
textarea,
button,
select {
  font-size: 12px;
  outline: none;
  resize: none;
  color: #555;
  /* font-family: '宋体'; */
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clearfix {
  clear: both;
  overflow: hidden;
}

.clearfix::before,
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

a {
  color: #1d1e20;
  text-decoration: none;
  /* -webkit-transition: color 0.3s ease-out;
  -moz-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out; */
}

a.even {
  pointer-events: none;
}

a:hover {
  color: #f63030;
  text-decoration: none;
}

img {
  border: none;
}

::selection {
  background: #feaeae;
  color: #fff;
}

::-moz-selection {
  background: #feaeae;
  color: #fff;
}

::-webkit-selection {
  background: #feaeae;
  color: #fff;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.flex {
  display: flex;
}

.flex-warp {
  flex-wrap: wrap;
}

.red {
  color: #f63030;
}


/* 遮罩样式 */
.markShow,
.markShows {
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.7;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 11;
  display: none;
}


@keyframes myAnimation {
  0% {
    /* transform: scale(0); */
    height: 0;
    opacity: 0;
  }

  25% {
    opacity: 1;
    height: auto;
    /* transform: scale(1); */
  }

  50% {
    /* transform: scale(1); */
    opacity: 1;
    height: auto;
  }

  100% {
    /* transform: scale(0); */
    height: 0;
    opacity: 0;
  }
}