* {
  margin: 0;
  padding: 0;
}
body {
  font-family: Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial, sans-serif;
}
::-webkit-input-placeholder {
  color: #ccc;
}

/* 视图盒子 */
.view-box {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
/* 背景 EAEFF3 */
.bg-1 {
  height: 100%;
  background-color: #f0f2f5;
  background: url(./images/bgLogo.png) no-repeat 0 0;
  background-size: cover;
}

/* 内容盒子 */
.content-box {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 登录盒子 */
.title-box {
    width: 1200px;
    max-width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 1px;
    font-size: 48px;
    /* box-shadow: 1px 1px 20px #666; */
}
.footer-box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  text-align: center;
  color: #fff;
  font-family: Arial;
  font-size: 14px;
  letter-spacing: 1px;
}
a {
  text-decoration: none;
}
.footer-box span {
  color: #888;
  margin-left: 8px;
}
