/* footer */
.footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vw 0;
  width: 100%;
  min-height: 10vw;
  background-color: rgba(0, 0, 0, 0.8);
  /* background: url(/img/index/bg/bg_6.png) no-repeat; */
}

.footer_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.footer_icon_box {
  display: flex;
  align-items: center;
}

.footer_icon {
  height: 4vw;
  width: auto;
}

.footer_icon_line {
  margin: 0 2vw;
  width: 1px;
  height: 3vw;
  background-color: rgba(255, 255, 255, 0.4);
}

.footer_text {
  margin-left: 12vw;
  line-height: 1.2vw;
  text-align: center;
  font-size: 1vw;
  color: #D27723;
}

.footer_text a {
  color: #D27723;
}

/* .footer_top{
  display: none;
} */
@media screen and (max-width: 1024px) and (max-height : 600px) and (min-height : 600px) {
  .footer {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .footer {
    padding: 3vw 0;
  }

  .footer_box {
    flex-direction: column;
    border-bottom: none;
    width: 90vw;
  }

  .footer_icon_box {
    justify-content: center;
    width: 90vw;
    padding-bottom: 2vw;
    margin-bottom: 2vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  .footer_icon_line {
    margin: 0 8vw;
    height: 10vw;
  }

  .footer_icon {
    height: 10vw;
  }

  .footer_text {
    margin-left: 0;
    text-align: center;
    width: 100%;
    line-height: 3.6vw;
    font-size: 2.4vw;
  }
}