* {
  padding: 0;
  margin: 0;
}
ul,
li {
  list-style: none;
}
html {
  height: 100%;
}
body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Arial", sans-serif;
}
.header {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 0 10%;
  height: 80px;
  border-bottom: 1px solid #ccc;
}
.header .left {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .left .logo img {
  width: 50px;
  height: 50px;
}
.header .left .box {
  margin-left: 10px;
  color: #226936;
  font-weight: 800;
}
.header .left .box .top {
  font-size: 18px;
}
.header .left .box .bottom {
  margin-top: 2px;
}
.header .right ul {
  display: flex;
}
.header .right ul li {
  margin-right: 20px;
}
.header .right ul li a {
  line-height: 80px;
  color: #65625e;
  text-decoration: none;
}
.body {
  flex: 1;
  overflow-x: scroll;
}
.body img {
  width: 100%;
  height: 100%;
}
.footer {
  background-color: #000;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footerBoss {
  color: #fff;
}
