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;
  outline: 0;
  font-family: Microsoft YaHei;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
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;
}
a {
  text-decoration: none;
  color: inherit;
}
body {
  width: calc(100%);
}
html {
  scroll-behavior: smooth;
}
div {
  box-sizing: border-box;
}
html,
body {
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}
/* 置顶 */
.sidebar {
  display: none;
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 8%;
  right: 15px;
  z-index: 9;
}
.sidebar .side {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: url(../image/back.png) center center no-repeat;
  background-color: #626262;
  background-size: 25px 25px;
}
/* 页码 */
.page-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-box .prev {
  width: 24px;
  height: 22px;
  margin-right: 26px;
  cursor: pointer;
}
.page-box .prev img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-box .next {
  width: 24px;
  height: 22px;
  margin-left: 26px;
  cursor: pointer;
}
.page-box .next img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-box .number {
  width: 37px;
  height: 37px;
  border: 1px solid #000000;
  text-align: center;
  line-height: 35px;
  font-weight: bold;
  font-size: 20px;
  color: #000000;
  margin: 0 13px;
  cursor: pointer;
}
.container {
  padding-top: 165px;
}
.container .header {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.container .header .cont {
  width: 1200px;
  margin: 0 auto;
  height: 165px;
  padding: 33px 0 21px;
}
.container .header .cont .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container .header .cont .top .logo {
  display: block;
  width: 294px;
  height: 60px;
}
.container .header .cont .top .logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.container .header .cont .top .signup {
  display: flex;
  align-items: center;
}
.container .header .cont .top .signup .en {
  display: block;
  width: 40px;
  height: 40px;
  background: #fead90;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
}
.container .header .cont .top .signup .btn {
  display: block;
  margin-left: 29px;
  width: 139px;
  height: 48px;
  background: #02b982;
  text-align: center;
  line-height: 48px;
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
}
.container .header .cont .nav {
  padding-top: 32px;
  display: flex;
  align-items: center;
}
.container .header .cont .nav .nav-list {
  display: flex;
  align-items: center;
}
.container .header .cont .nav .nav-list li {
  margin-right: 55px;
}
.container .header .cont .nav .nav-list li a {
  font-weight: bold;
  font-size: 20px;
  color: #000000;
  line-height: 20px;
  position: relative;
}
.container .header .cont .nav .nav-list li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #000000;
  transition: width 0.4s ease-in-out;
  transform: translateX(-50%);
}
.container .header .cont .nav .nav-list li a:hover::after {
  width: 100%;
}
.container .header .cont .nav .nav-list .active a::after {
  width: 100%;
}
.container .header .cont .nav .search {
  cursor: pointer;
  width: 16px;
  height: 16px;
  margin-left: 6px;
}
.container .header .cont .nav .search img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.container .header .search-nav {
  display: none;
  width: 100%;
  background-color: #fff;
}
.container .header .search-nav form {
  width: 1200px;
  margin: 0 auto;
  padding: 48px 0;
  position: relative;
}
.container .header .search-nav form input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #888888;
  font-weight: 600;
  font-size: 30px;
  padding: 4px 0;
}
.container .header .search-nav form input::placeholder {
  color: #878787;
}
.container .header .search-nav form input:focus {
  outline: none;
}
.container .header .search-nav form button {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
.container .header .search-nav form button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.container .footer {
  height: 467px;
  background: #f7f7f7;
  padding: 60px 0;
}
.container .footer .footer-cont {
  width: 1200px;
  margin: 0 auto;
}
.container .footer .footer-cont .top {
  display: flex;
  justify-content: space-between;
}
.container .footer .footer-cont .top .ft .logo {
  display: block;
  width: 294px;
  height: 60px;
}
.container .footer .footer-cont .top .ft .logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.container .footer .footer-cont .top .ft .relate {
  padding: 64px 0 58px;
  border-bottom: 1px solid rgba(185, 223, 212, 0.6);
  display: flex;
}
.container .footer .footer-cont .top .ft .relate dl:nth-child(2) {
  margin-left: 126px;
}
.container .footer .footer-cont .top .ft .relate dl dt {
  font-weight: bold;
  font-size: 20px;
  color: #333333;
  line-height: 21px;
}
.container .footer .footer-cont .top .ft .relate dl dd {
  padding-top: 24px;
  font-size: 16px;
  color: #333333;
  line-height: 19px;
}
.container .footer .footer-cont .top .rt {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container .footer .footer-cont .top .rt .qrcode {
  width: 191px;
  height: 191px;
  border-radius: 14px;
  border: 1px solid rgba(51, 51, 51, 0.4);
  margin-bottom: 23px;
  padding: 16px;
}
.container .footer .footer-cont .top .rt .qrcode img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.container .footer .footer-cont .top .rt span {
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  line-height: 15px;
}
.container .footer .footer-cont .copyright {
  padding-top: 39px;
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  line-height: 20px;
}
