* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  padding: 0;
  overflow: hidden;
}

#body-wrap {
  background: linear-gradient(
    90deg,
    rgba(247, 149, 51, 0.1) 0,
    rgba(243, 112, 85, 0.1) 15%,
    rgba(239, 78, 123, 0.1) 30%,
    rgba(161, 102, 171, 0.1) 44%,
    rgba(80, 115, 184, 0.1) 58%,
    rgba(16, 152, 173, 0.1) 72%,
    rgba(7, 179, 155, 0.1) 86%,
    rgba(109, 186, 130, 0.1) 100%
  );
  height: 100%;
}

.container {
  /* background-image: url(https://plus.hutool.cn/bing); */
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.container .content {
  padding: 3em;
}

.container .content .box {
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  padding: 20px 24px;
  border-radius: 8px;
  box-shadow: 0 3px 8px 6px rgba(7, 17, 27, 0.05);
  transition: all 0.3s;
  width: 500px;
}

.avatar {
  position: relative;
  display: block;
  margin-bottom: 1.5em;
}

.avatar::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  /* left: -3em;*/
  width: 100%;
  height: 1px;
  z-index: -1;
  background: #c8cccf;
}

.avatar img {
  width: 122px;
  display: block;
  margin: 0 auto;
  border-radius: 100%;
  box-shadow: 0 0 0 0.3em #ffffff;
  background-color: antiquewhite;
}

.footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-around;
  text-align: center;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover,
a:visited,
a:link,
a:active {
  color: #333;
}

.btn {
  display: flex;
  flex-direction: column;
  -moz-transition: color 0.2s ease, border-color 0.2s ease;
  -webkit-transition: color 0.2s ease, border-color 0.2s ease;
  -ms-transition: color 0.2s ease, border-color 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease;
  /* text-align: center; */
}

.btn span i {
  font-size: 32px;
}

.btn .icon-span {
  width: 80px;
  height: 50px;
  display: inline-block;
}

.btn .text {
  font-size: 16px;
  vertical-align: baseline;
  color: #666;
}

.btn:hover,
.btn:hover .text {
  color: #49b1f5;
}

h1 {
  font-size: 1.85em;
  letter-spacing: 0.22em;
  margin: 0 0 0.525em 0;
  color: #313f47;
  line-height: 1.5;
  text-align: center;
  font-weight: 400;
}

.inner-box {
  width: 60%;
  padding: 20px;
  border: 4px solid #333;
  color: #666;
  margin: 30px auto;
  text-align: center;
  line-height: 1.5;
}

footer {
  position: fixed;
  color: #333;
  font-size: 12px;
  width: 100%;
  height: 30px;
  line-height: 30px;
  bottom: 0;
  text-align: center;
}
footer a:hover {
  color: #49b1f5;
}