footer {
  position: relative;
  display: flex;
  padding: 1.25rem 0;
  background-color: #DEDEDE;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background-image: url('/assets/img/footer_bg.png');
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}
footer > div {
  position: relative;
  z-index: 2;
}
footer > div:nth-of-type(1) {
  width: 25%;
  display: flex;
  justify-content: center;
}
footer > div:nth-of-type(1) ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer > div:nth-of-type(1) ul li {
  font-size: 0.16rem;
  color: #030303;
  margin-bottom: 0.2rem;
}
footer > div:nth-of-type(1) ul li:last-child {
  margin: 0;
}
footer > div:nth-of-type(2) {
  width: 37.5%;
  display: flex;
  justify-content: center;
}
footer > div:nth-of-type(2) h3 {
  margin-bottom: 0.3rem;
}
footer > div:nth-of-type(2) ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer > div:nth-of-type(2) ul li {
  font-size: 0.16rem;
  color: #030303;
  margin-bottom: 0.2rem;
}
footer > div:nth-of-type(2) ul li:last-child {
  margin: 0;
}
footer > div:nth-of-type(3) {
  width: 37.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer > div:nth-of-type(3) img {
  width: 1.3rem;
  height: 1.3rem;
}
footer > div:nth-of-type(3) p {
  font-size: 0.16rem;
  margin-top: 0.1rem;
}
footer > div:nth-of-type(3) .telphone {
  margin-top: 0.3rem;
}
footer > div:nth-of-type(3) .telphone a {
  font-size: 0.4rem;
  font-weight: bolder;
  color: #fe3800;
  margin-left: 0.1rem;
}
footer > div:nth-of-type(3) .telphone i {
  font-size: 0.4rem;
  color: #fe3800;
}
@media screen and (max-width: 1000px) {
  footer {
    flex-wrap: wrap;
    padding: 0.5rem 0;
  }
  footer > div:nth-of-type(1) {
    display: none;
    width: 30%;
    padding-bottom: 20px;
    margin: 0 auto;
    border-right: none;
  }
  footer > div:nth-of-type(2) {
    width: 100%;
    padding-bottom: 20px;
    margin: 0 auto;
    border-right: none;
  }
  footer > div:nth-of-type(3) {
    width: 100%;
    padding-top: 20px;
    margin: 0 auto;
  }
  footer > div:nth-of-type(3) img {
    width: 2rem;
    height: 2rem;
  }
}
