﻿.footer {
  width: 100%;
  box-sizing: border-box;
}

.footer-bg {
  animation: flipInY 2s 0.2s ease both;
  background-color: #9e1d22;
  z-index: 9999;
  position: relative;
}

.footen-con {
  width: 100%;
  padding: 0 50px 20px;
}
.footen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid #bd9092;
  margin-bottom: 20px;
}
/* logo */
.footen-left {
  display: inline-block;
  height: 75px;
}
.footen-left img {
  height: 100%;
  user-select: none;
  pointer-events: none;
}
.footen-right {
  display: flex;
  justify-content: space-between;
  color: #bbaaaa;
  font-size: 14px;
}
.footen-right .right-item {
  margin-left: 80px;
  text-align: center;
}

.footen-right .right-item img {
  margin-bottom: 20px;
  height: 30px;
}

.copyright-text {
  color: #bcbcba;
  font-size: 12px;
  text-align: center;
}

.m-right-item-text {
  display: none;
}

@media (max-width: 576px) {
  .footer {
    position: relative;
    background-color: #b40200;
    min-width: 0;
    padding: 0;
    /* height: 22vw; */
    width: 100vw;
  }

  .footer-bg {
    background-image: none;
    animation: none;
    padding: 0;
  }
  .footen-con {
    padding: 3vw;
  }

  .footen-top {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .footen-left {
    width: 100%;
    padding: 20px 0;
    height: auto;
  }
  .footen-left img {
    width: 100%;
  }

  .footen-right {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 3.5vw;
  }
  .footen-right .right-item {
    display: flex;
    text-align: left;
    margin: 3vw 3vw 3vw 0;
  }
  .footen-right .right-item img {
    margin-right: 5vw;
    height: 7vw;
  }
  .footen-right .right-item-text {
    display: none;
  }
  .m-right-item-text {
    display: block;
  }

  .m-footen-right {
    display: flex;
    flex-direction: column;
  }
  .m-footen-right .right-bot {
    display: flex;
  }
  .copyright-text {
    text-align: left;
  }
}