* {
  padding: 0;
  margin: 0;
}
html {
  font-size: 16px;
}
body {
  font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000000;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  vertical-align: middle;
}

.page-body {
  position: fixed;
  width: 100%;
  height: 100%;
}
.page-header {
  display: flex;
  height: 50px;
  background: #ffffff;
  box-shadow: 0px 1px 16px 0px rgba(0, 91, 172, 0.35);
  align-items: center;
  padding: 0 14px;
  justify-content: space-between;
  margin: 0;
}
.header-logo {
  width: 123px;
  height: 27px;
}
.header-left,
.header-right {
  width: 80px;
  height: 100%;
}
.header-left,
.header-right {
  display: flex;
  align-items: center;
}
.header-left img,
.header-right img {
  width: 23px;
  height: 23px;
}
.header-menu-close {
  display: none;
}
.header-right {
  text-align: right;
  justify-content: flex-end;
}

/* 菜单 */
.page-menu {
  position: fixed;
  width: 0;
  top: 50px;
  bottom: 0;
  z-index: 18;
  background-color: #e8f6ff;
  display: flex;
  overflow: hidden;
  transition: ease 0.4s;
}
.page-menu .menu-list {
  width: 123px;
  height: 100%;
  background-color: #ffffff;
}
.page-menu .menu-list .menu-item {
  border-bottom: 1px solid #c8d7f0;
  text-align: center;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
}
.page-menu .menu-list .menu-item:hover,
.page-menu .menu-list .menu-item-active {
  background-color: #e8f6ff;
  color: #005bac;
}
.page-menu .menu-right {
  flex: 1;
  margin-left: 27px;
  height: 100%;
}
.page-menu .sub-menu-list {
  max-height: calc(100% - 265px);
  padding-right: 10px;
  overflow: auto;
}
.sub-menu-list .sub-menu-item {
  line-height: 45px;
  height: 45px;
  font-size: 15px;
  border-bottom: 1px solid #c8d7f0;
}
.page-menu .menu-nav {
  display: flex;
  align-items: center;
  margin-top: 23px;
  flex-wrap: wrap;
}
.menu-nav > li {
  width: 65px;
  height: 65px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #c8d7f0;
  font-size: 14px;
  color: #778899;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin: 0 10px 10px 0;
  box-sizing: border-box;
}
.menu-nav-item img {
  width: 26px;
  height: 26px;
  margin-bottom: 3px;
}
.menu-nav a {
  font-size: 14px;
  color: #778899;
  line-height: 16px;
}

/* 二维码弹窗 */
.qrcode-popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.65);
  display: none;
}
.qrcode-popup-box {
  width: 280px;
  height: 280px;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  text-align: center;
}
.qrcode-popup-title {
  height: 45px;
  background: #486fff;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  line-height: 45px;
  position: relative;
}
.qrcode-popup-img {
  width: 180px;
  height: 180px;
  margin-top: 25px
}
.qrcode-popup-close {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 12px;
  top: 10px;
}


/* 底部 */
.page-footer {
  height: 335px;
  background: #154e9e;
  font-size: 10px;
  color: #ffffff;
}
.page-footer a {
  color: #ffffff;
}
.page-footer .footer-top,
.page-footer .footer-icons,
.page-footer .footer-address,
.page-footer .footer-bottom {
  display: flex;
}
.page-footer .footer-top {
  padding: 20px 0 0 10px;
}
.footer-top a {
  margin-right: 15px;
  color: #ffffff;
}
.footer-top p,
.footer-bottom p {
  margin-bottom: 5px;
}
.page-footer .footer-icons {
  margin-right: 9px;
}

.page-footer .footer-bottom {
  padding: 10px 10px 0 17px;
  justify-content: space-between;
}
.footer-bottom p {
  margin-bottom: 10px;
}
.footer-bottom .footer-qrcode {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}
.footer-qrcode > div {
  margin-left: 20px;
}
.footer-qrcode .qrcode-img {
  width: 90px;
  height: 90px;
  background: #2961b4;
  border-radius: 2px;
  padding: 3px;
  box-sizing: border-box;
}
.qrcode-img img {
  width: 84px;
  height: 84px;
}
.footer-qrcode .qrcode-name {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  margin-top: 5px;
} 
.qrcode-name img {
  width: 16px;
  height: 13px;
  margin-right: 4px;
}
