@charset "UTF-8";
/* DereK_Ysx 于2020-12-24编写 */
footer {
  width: 100%;
}

.f-a {
  width: 100%;
  background-color: #222222;
  padding: .2rem 0;
}

.f-container {
  width: 14.4rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.f-left {
  width: 65%;
  font-family: SourceHanSansSC-Normal;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}

.f-right {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.f-right-text {
  font-family: SourceHanSansSC-Normal;
  color: rgba(255, 255, 255, 0.6);
}

.f-code {
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: .2rem;
  position: relative;
}

.f-code img {
  width: 100%;
}

.f-code-box {
  width: 112px;
  background-color: #fff;
  border-radius: 5px;
  padding: 9px;
  position: absolute;
  left: 50%;
  bottom: 43px;
  margin-left: -56px;
  transform: scale(0);
  transition: all .3s;
  transform-origin: center bottom;
}

.f-code-box:before {
  content: "";
  display: block;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  position: absolute;
  left: 50%;
  bottom: -6px;
  margin-left: -5px;
}

.f-code.active .f-code-box {
  transform: scale(1);
}

@media (max-width: 1400px) {
  .f-container {
    width: 100%;
    padding: 0 20px;
    max-width: 1200px;
  }
}

@media (max-width: 900px) {
  .f-container {
    padding: 0 10px;
  }
}

@media (max-width: 900px) {
  .f-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .f-left {
    width: 100%;
    margin-bottom: 15px;
  }
  .f-right {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
/*# sourceMappingURL=footer.css.map */