.header {
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  background-color: #1b47a5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo a {
  display: flex;
  align-items: center;
}

.header .logo img {
  width: 44px;
  height: 44px;
  margin-right: 12px;
}
.header .logo a h1 {
  font-size: 16px;
  color: #fff;
}
.header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .nav li a {
  color: #fff;
  font-size: 16px;
  margin-right: 40px;
  text-decoration: none;
  cursor: pointer;
}
.header .nav li a:hover {
  font-weight: bold;
}
.header .nav li a.active {
  font-weight: bold;
}
.footer {
  width: 100%;
  background-color: #000c27;
  padding: 40px 0;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer .container .left {
  display: flex;
  flex-direction: column;
}
.footer .container .left img {
  width: 88px;
  height: 88px;
  margin-bottom: 20px;
}
.footer .container .left .p1 {
  font-weight: 500;
  font-size: 36px;
  color: #ffffff;
  line-height: 42px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 8px;
}
.footer .container .left .line {
  width: 250px;
  height: 2px;
  background: #ffffff;
  margin-bottom: 8px;
}
.footer .container .left .p2 {
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  line-height: 28px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.footer .container .right {
  display: flex;
  flex-direction: column;
}
.footer .container .right p {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 19px;
  text-align: right;
  font-style: normal;
  text-transform: none;
  margin-bottom: 18px;
}
#backTop {
  width: 58px;
  height: 32px;
  position: fixed;
  bottom: 80px;
  right: 80px;
  z-index: 999;
  cursor: pointer;
  opacity: 0.6;
}
#backTop:hover {
  opacity: 1;
}
#backTop img {
  width: 100%;
  height: 100%;
}
