html,
html {
  box-sizing: border-box;
}
body {
  display: flex;
  flex-direction: column;
  align-items: end;
  margin: auto;
  height: 100vh;
}
.content {
  width: 100vw;
  height: calc(100vh - 50px);
  background-color: #fff;
  background-image: url('./bgImage/bgI.jpg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
}
.name {
  position: fixed;
  top: 20px;
  left: 30px;
  margin-left: 30px;
  width: 100vw;
  height: 80px;
  line-height: 80px;
  color: #fff;
  font-size: 50px;
  letter-spacing: 3px;
  /* background-color: #21253f; */
}
.foot {
  display: flex;
  justify-content: center;
  width: 100vw;
  height: 70px;
  background-color: #f3f3f3;
  /* background-color: #272a2f; */
}
.footContent {
  padding: 0 200px;
  display: flex;
  align-items: center;
  color: #73777b;
  font-size: 20px;
  font-weight: 700;
  justify-content: space-between;
  width: 1400px;
  height: 100%;
}
.footInfo {
  display: flex;
  align-items: center;
}
.info {
  display: flex;
  flex-direction: column;
}
a {
  margin-right: 18px;
  text-decoration: none;
  color: inherit;
}
