@charset "utf-8";
/* CSS Document */
body {
  margin: 0;
  padding: 0;
  font-family: "思源黑体 CN Medium";
  color: #333333;
  overflow-x: hidden;
}

ul,
li,
p,
a,
input,
button,
i,
em {
  list-style: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
  border: none;
  outline: none;
  font-style: normal;
  background-color: rgba(0, 0, 0, 0);
}

img {
  border: none;
}

.center {
  width: 1200px;
  margin: 0 auto;
}
.animate {
  animation: fadeInUp1 1.5s;
}
.hide {
  overflow: hidden;
}
.show {
  opacity: 1;
}
.dpf {
  display: flex;
}
.align-center {
  align-items: center;
}
.fs14 {
  font-size: 14px;
}
.fs16 {
  font-size: 16px;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.justify-between {
    justify-content: space-between;
}
.w100p {
    width: 100%;
}