* {
  margin: 0;
  padding: 0;
}

.footer {
  user-select: none;
  width: 100%;
  height: 280px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.3);
}
.ask {
  width: 300px;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
}
.code {
  width: 400px;
}
.footer-info {
  /*width: calc(100% - 1200px);*/
}

.ask .logo-pane {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 35px;
  color: rgba(0, 0, 0, 0.87);
  margin-top: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 22px;
  font-family: KaiTi;
  font-weight: 700;
}
.ask .ask-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 35px;
  background: #0084ff;
  border-radius: 18px;
  font-size: 14px;
  font-family: Source Han Sans CN;
  color: #ffffff;
  margin-top: 20px;
  cursor: pointer;
}
.ask .ask-btn:hover {
  background: #006eff;
}
.ask .ask-btn i {
  font-size: 18px;
  margin-right: .2rem;
}

.footer-info .info-top {
  width: 100%;
  height: 60%;
  display: grid;
  grid-template-columns: repeat(auto-fill, calc(100% / 3));
}
.footer-info .info-bottom {
  width: 100%;
  height: 20%;
  text-align: center;
  font-size: 12px;
  font-family: Source Han Sans CN;
  color: #424b54;
  line-height: 24px;
}

.footer-info .info-top .pane-list {
  display: flex;
  padding: 10px 20px;
  flex-direction: column;
  /* justify-content: center; */
}
.footer-info .info-top .pane-list p {
  width: 66px;
  height: 16px;
  font-size: 15px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #424b54;
}
.footer-info .info-top .pane-list a {
  font-size: 12px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #424b54;
  text-decoration: none;
  margin-top: 10px;
}
.code p {
  font-size: 15px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #424b54;
}
.code .code-pane {
  display: grid;
  grid-template-columns: repeat(auto-fill, calc(100% / 3));
}
.code span {
  font-size: 12px;
  font-family: Source Han Sans CN;
  color: #424854;
  margin: 8px 0;
}
.code .code-pane img {
  width: 100px;
  height: 100px;
}

.anchor {
  width: 36px;
  height: 63px;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 2px;
  position: fixed;
  z-index: 10;
  bottom: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.anchor i {
  font-size: 18px;
  cursor: pointer;
  color: #444;
}
.display-none {
  display: none;
}
