#app {
  min-width: 1200px;
}
.header {
  height: 63px;
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
}
.header .menus {
  display: flex;
  align-items: center;
}
.header .menus .logo {
  margin-right: 50px;
  font-size: 0;
  cursor: pointer;
}
.header .menus .nav .nav-item {
  display: inline-block;
  margin-right: 40px;
}
.header .menus .nav .nav-item a {
  font-size: 14px;
  color: #555;
  padding: 15px 0 20px;
}
.header .menus .nav .nav-item.active a {
  color: #0c9cc0;
  border-bottom: 3px solid #fdbc39;
}
.header .userinfo-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}
.header .userinfo-box .avatar {
  margin-right: 50px;
  font-size: 0;
}
.header .userinfo-box .nav {
  position: relative;
}
.header .userinfo-box .nav::after {
  content: '';
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 50%;
  width: 1px;
  background: #999;
}
.header .userinfo-box .nav .btn {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  padding: 0 10px;
}
.header+section {
  padding-top: 0;
}
.qrcode-box {
  position: fixed;
  top: 50%;
  right: 100px;
  transform: translate(0, -50%);
  font-size: 0;
}
.qrcode-box .download-app {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 140px;
  cursor: pointer;
}
.qrcode-box .wechat {
  position: absolute;
  left: 35px;
  right: 0;
  bottom: 55px;
  height: 70px;
	width: 70px;
  cursor: pointer;
}
.qrcode-box .top {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 55px;
  cursor: pointer;
}
.footer {
  background: #242424;
  padding: 80px 0 50px;
}
.footer .section {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer .section:not(:last-child) {
  border-bottom: 1px solid #767676;
  padding-bottom: 16px;
  margin-bottom: 10px;
}
.footer .section .items {}
.footer .section .items .item {
  display: inline-block;
}
.footer .section .items .item a {
  color: #767676;
  font-size: 12px;
  margin-right: 50px;
}
.footer .section .icons {}
.footer .section .icon {}
.footer .section .info {
  width: 930px;
}
.footer .section .info .item {
  font-size: 12px;
  color: #767676;
  display: inline-block;
}
.footer .section .info .item:not(:last-child) {
  padding-right: 16px;
  border-right: 1px solid #767676;
  margin-right: 16px;
}
.footer .section .copyright {
  font-size: 12px;
  color: #767676;
}

.qrcode-wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 5px 0 rgba(0,0,0,0.4);
  padding: 20px;
  border-radius: 5px;
  background: #fff;
  width: 300px;
  display: none;
	z-index: 100;
}
.qrcode-wrap .qrcode-title {
  text-align: right;
  font-size: 0;
}
.qrcode-wrap .qrcode-title .close {
  width: 32px;
  cursor: pointer;
}
.qrcode-wrap .qrcode {
  text-align: center;
  margin: 15px 0;
}
.qrcode-wrap .qrcode .icon {
  width: 200px;
}
.qrcode-wrap .qrcode-txt {
  text-align: center;
  font-size: 14px;
  color: #333;
}
.key-word{
	color: #0C9CC0 !important;
}