footer.footer {
  width: 100%;
  padding: 20px 4%;
  font-size: 13px;
  background-color: white;
}
.footer-container {
  width: 100%;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: center;
  -ms-flex-line-pack: end;
  -ms-flex-align: end;
  align-items: center;
  text-align: center;
}
.footer-info > * {
  margin-left: 15px;
  text-align: left;
}
.footer-info > *:first-child {
  margin-left: 0;
}
.footer-images {
  display: flex;
  align-items: center;
  height: 100px;
  padding: 15px 0;
}
.footer-images > img {
  height: 100%;
}
.footer-images .ver-line {
  width: 1px;
  height: 180px;
  margin: 0 20px;
  border-right: 1px solid rgba(255, 255, 255,0.5);
}
.footer-conpany {
  color: #000;
  font-weight: bold;
}
.footer-hr {
  color: #565656;
}
.footer-contact > span {
  padding: 0 12px;
  border-right: .1em solid #bebebe;
}
.footer-images > img {
  border-right: .1em solid #bebebe;
}
.footer-contact > span:last-child, .footer-images > img:last-child {
  border-right: none;
}
.footer-contact-conpany {
  margin:  0 20px;
}
.footer-net-safe {
  display: flex;
  align-items: center;
}
/* 中等屏幕 桌面显示器 */
@media (min-width: 992px) and (max-width: 1199px) {}
/* 小屏幕 平板*/
@media (min-width: 768px) and (max-width: 991px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* .footer-images {
    flex-direction: column;
    padding: 3% 0;
  } */
  .footer-images > img {
    /* border-right: none; */
    padding-bottom: 15px;
  }
  .footer-contact {
    padding-bottom: 15px;
  }
}
/* 超小屏幕 手机 */
@media (max-width: 767px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-info > * {
    margin-left: 0;
  }
  /* .footer-images {
    flex-direction: column;
    padding: 3% 0;
  } */
  .footer-images > img {
    /* border-right: none; */
    padding-bottom: 15px;
  }
  .footer-contact {
    padding-bottom: 15px;
  }
  .footer-contact-hr {
    display: flex;
    flex-direction: column;
  }
  .footer-contact-hr > span {
    border-right: none;
  }
}