* {
  margin: 0;
  padding: 0;
}
ul,
li {
  list-style: none;
}
a {
  list-style: none;
}
img {
  display: block;
}
html,
body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-family: "微软雅黑";
  background-color: #f4f4fb;
}

/* pc-header */
.pc-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 20px 20px;
  width: 100%;
  height: 50px;
}
.pc-header-bg {
  background-color: #f4f4fb;
}
.pc-header a {
  border: 0;
  outline: none;
}
.pc-logo {
  height: 50px;
}
.pc-link-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pc-link-box a {
  position: relative;
  z-index: 10;
  height: 30px;
  text-decoration: none;
}
.pc-link-box a:not(:last-child) {
  margin-right: 30px;
}
.pc-link-box a img {
  position: relative;
  z-index: 10;
  height: 30px;
}
.pc-link-active::after {
  content: "";
  z-index: 9;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: 12px;
  border-radius: 8px;
  background: #fdc44f;
}
.pc-link-box a:hover::after {
  content: "";
  z-index: 9;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: 12px;
  border-radius: 8px;
  background: #fdc44f;
}

/* ...pc-footer... */
/* 首页 */
.pcIndex-footer {
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 14px;
}
/* 其他页 */
.pcOther-footer {
  margin: 0 auto;
  padding: 30px 0;
  width: 50%;
  text-align: center;
  font-size: 14px;
}
/* 公用 */
.pcCom-footer p {
  margin-top: 10px;
  color: #999;
}
.pcCom-footer a {
  color: #999;
  text-decoration: none;
}
