* {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
.bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  min-width: 1200px;
}
.bg > .header {
  position: fixed;
  width: 100%;
  height: 60px;
  background-color: #000000;
  margin-top: 0;
  transition: 0.3s;
  z-index: 9;
  font-size: 0;
  min-width: 1200px;
}
.bg > .header > p {
  display: inline-block;
  height: 60px;
  vertical-align: top;
}
.bg > .header .logo {
  width: 30%;
  text-align: center;
}
.bg > .header .logo > img {
  display: inline-block;
  width: 98px;
  padding: 10px;
}
.bg > .header .route {
  width: 70%;
  text-align: center;
}
.bg > .header .route .route-btn {
  font-size: 18px;
  display: inline-block;
  height: 60px;
  line-height: 60px;
  padding: 0 8px;
  margin: 0 8px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.7);
}
.bg > .header .route .route-btn:hover {
  color: #e2e2e2;
}
.bg > .header .route .route-btn.check {
  color: #ffffff;
}
.bg > .header.hideMe {
  position: fixed;
  margin-top: -60px;
}
.bg > .content {
  z-index: 5;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  min-height: calc(100% - 180px);
  margin-top: 60px;
}
.bg > .footer {
  margin-top: 80px;
  z-index: 9;
  width: 60%;
  padding: 0 20%;
  background-color: #f7f8f8;
  color: #111111;
}
.bg > .footer .info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 60px;
}
.bg > .footer .info .foot-route > a {
  margin: 0 16px;
}
.bg > .footer .info .foot-route > a.check {
  font-weight: 600;
}
.bg > .footer .info > .contact {
  font-size: 18px;
  text-align: right;
}
.bg > .footer .info > .contact > .phone {
  color: #ff3a0e;
  font-weight: 600;
  margin-top: 12px;
}
.bg > .footer .info > .contact > .qrCode {
  font-size: 14px;
}
.bg > .footer .info > .contact > .qrCode > .item {
  display: inline-block;
  text-align: center;
  margin: 16px 8px;
  color: #333333;
}
.bg > .footer .info > .contact > .qrCode > .item img {
  width: 80px;
}
.bg > .footer .copyright {
  font-size: 12px;
  padding: 16px 0 24px 0;
  color: #333333;
  border-top: 1px solid #bababa;
}
.bg > .footer .copyright > a {
  margin: 0 8px;
}
.bg > .footer .copyright > a:hover {
  color: #111111;
  text-decoration: underline;
}
.bg .backTop {
  position: fixed;
  bottom: 24px;
  right: 12px;
  opacity: 1;
  z-index: 9;
  transition: 0.3s;
}
.bg .backTop.hideMe {
  bottom: -30px;
  opacity: .6;
}
