* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100vw;
  min-height: 100vh;
  background-color: #f5efef;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.titleContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}
.titleContainer input {
  width: 300px;
  height: 35px;
  padding: 0 10px;
  margin: 10px 0;
}
.titleContainer .btn {
  color: #fff;
  border-color: #1890ff;
  background: #1890ff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px #0000000b;
  user-select: none;
  touch-action: manipulation;
  height: 32px;
  padding: 4px 15px;
  font-size: 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  border: 1px solid transparent;
  line-height: 1.5715;
  position: relative;
  display: inline-block;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 10px;
}
.imgContainer {
  position: relative;
  user-select: none;
  position: absolute;
  top: -2000px;
  width: 500px;
  height: 450px;
}
.imgContainer > img {
  width: 100%;
  height: 100%;
}
.imgContainer .imgContainer {
  background-color: #f5efef;
}
.imgContainer .content {
  width: 300px;
  height: 192px;
  transform: rotate(9deg);
  position: absolute;
  left: 88px;
  top: 144px;
  font-size: 25px;
  font-size: 30px;
  padding: 5px;
  color: #504d57;
}
.tips {
  color: #00000073;
  margin-top: 10px;
  padding: 0 10px;
}
.line {
  width: 100%;
  height: 1px;
  margin-top: 20px;
  background-color: rgba(0, 0, 0, 0.06);
}
.siteMessage {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.siteMessage a {
  margin: 0 10px;
}
