/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box; /* Ensure padding and borders are included in element sizes */
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
a {
  text-decoration: none;
}

/* 去除蓝色背景 */
a {
  color: inherit;
}

/* 去除边框 */
a {
  border: none;
}

/* 去除装饰性边框 */
a {
  outline: none;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.df {
  display: flex;
}
.df-sb {
  justify-content: space-between;
}
.aic {
  align-items: center;
}
.df-se {
  justify-content: space-evenly;
}
.w140 {
  width: 140px;
}
.f18 {
  font-size: 18px;
}
.f32 {
  font-size: 32px;
}
.f20 {
  font-size: 20px;
}
.fw {
  font-weight: 600;
}
.mga {
  margin: auto;
}
.text-c {
  text-align: center;
}
.mb8 {
  margin-bottom: 8px;
}
.mb20 {
  margin-bottom: 20px;
}
.mr10 {
  margin-right: 10px;
}
.verM {
  vertical-align: middle;
}
.verT {
  vertical-align: text-top;
}
.w1440 {
  width: 1440px;
}
.fWrap {
  flex-wrap: wrap;
}

.p20 {
  padding: 20px;
}
.curp {
  cursor: pointer;
}

@media screen and (max-width: 1400px) {
  .w1440 {
    width: 90%;
  }
  .f32 {
    font-size: 20px;
  }
  .f20 {
    font-size: 14px;
  }
  .p20 {
    padding: 8px;
  }
}
