footer {
  width: 100%;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  background: rgba(30, 30, 30, 0);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	-moz-backdrop-filter: saturate(180%) blur(12px);
	-o-backdrop-filter: saturate(180%) blur(12px);
}

footer section {
  width: 1020px;
  height: 300px;
  margin: 0 auto;
  display: flex;
  font-size: 14px;
  color: #fff;
}

footer section > div {
  flex: 1;
  padding-top: 60px;
  position: relative;
}

footer section > div:first-child {
  background: url('./../images/footer_logo.svg') no-repeat;
  background-position: 0 60px;
}

footer section > div:last-child {
  display: flex;
  flex-direction: column;
}

footer section > div:last-child span {
  display: block;
  margin-bottom: 12px;
}

/* footer section > div:last-child span:hover {
  color: #F7CA18;
  cursor: pointer;
} */

footer section .footer-title {
  color: #F7CA18;
  font-weight: 400;
  margin: 0;
  margin-bottom: 20px;
}

footer section .media {
  width: 142px;
  margin-bottom: 64px;
  display: flex;
  justify-content: space-between;
}

footer section .media div {
  height: 28px;
  overflow: hidden;
}

footer section .media div:hover {
  cursor: pointer;
}

footer section .media img {
  height: 28px;
}
footer section .media div:hover img {
  /* filter: drop-shadow(#F7CA18 80px 0);
  -webkit-filter: drop-shadow(#F7CA18 80px 0);
	-moz-filter: drop-shadow(#F7CA18 80px 0);
	-o-filter: drop-shadow(#F7CA18 80px 0);

  transform: translateX(-80px);
  -webkit-transform: translateX(-80px);
	-moz-transform: translateX(-80px);
	-o-transform: translateX(-80px); */
}
.footer-mail {
  display: block;
  margin-bottom: 64px;
}

.footer-qrcode {
  width: 180px;
  height: 180px;
  background: #fff;
  position: absolute;
  top: 20px;
  left: 0;
  display: none;
}

.footer-qrcode > div {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: none;
}

.footer-qrcode > div img {
  width: 160px;
  height: 160px;
}

.footer-qrcode > span {
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 10px solid #fff;
  border-bottom: 10px solid transparent;
  position: absolute;
  top: 85px;
  left: -10px;
}