* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
.container {
  min-height: 100vh;
  max-width: 768px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

.fwb {
  font-weight: bold;
}
.p-1r {
  padding: 1rem;
}
.mtm-1r {
  margin: 1rem 0;
}
.mb-1r {
  margin-bottom: 1rem;
}
.mb-2r {
  margin-bottom: 2rem;
}
.transform {
  animation: zoom 1s infinite linear;
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.top-box {
  padding: 1rem;
}
.top-title {
  font-size: 1.2rem;
  color: #23241e;
}

.top-ex {
  color: #e70011;
  font-size: 0.9rem;
}
.content-bom {
  background: linear-gradient(135deg, #dd0313 0%, #bd131c 100%);
}
.bom-title {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  padding: 2rem 1rem;
}
.bom-ex {
  color: #fff;
  padding: 1rem 1rem 2rem 1.5rem;
  font-size: 0.9rem;
}
.middle-title {
  color: #e60012;
  font-size: 1.5rem;
  text-align: center;
}
.middle-ex {
  color: #23241e;
  font-size: 0.9rem;
}
.middle-item-title {
  display: flex;
}
.day {
  width: 20%;
  text-align: center;
  color: #e60012;
  border: 1px solid #e60012;
  border-right: none;
  padding: 0.5rem;
}
.day-text {
  width: 80%;
  color: #fff;
  background-color: #e60012;
  padding: 0.5rem;
}
.middle-item-text {
  font-size: 0.8rem;
  color: #23241e;
}
.bottom {
  background: #f7f7f7;
}
.bottom-title {
  color: #e60012;
  font-size: 1.5rem;
  text-align: center;
}
.bottom-list {
  margin: 2rem 0;
}
.bottom-item {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  background: #fff;
  box-shadow: 0px 3px 6px 1px rgba(49, 0, 0, 0.2);
}
.bottom-item-left {
  width: 30%;
  color: #fff;
  background: #e60012;
  text-align: center;
  margin: -8px 0 8px -8px;
  padding: 1rem;
  font-size: 1rem;
}
.bottom-item-right {
  width: 70%;
  padding: 1rem;
  color: #23241e;
}
.bottom-ex {
  color: #23241e;
  font-size: 0.9rem;
}
.btn-box {
  padding: 1.5rem;
}
.bottom-btn {
  width: 100%;
  color: #fff;
  padding: 1rem;
  background: #e60012;
  border: none;
  font-size: 1.5rem;
  border-radius: 10px;
}
.bottom-b-t {
  text-align: center;
  color: #c7000b;
}
.bottom-b-ex {
  border-top: 1px solid #fff;
  font-size: 0.9rem;
  color: #707070;
  padding-top: 1rem;
}
.footer {
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 1rem 2rem;
  background: #fff;
  font-size: 0.9rem;
}
.footer-imgBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo {
  width: 3rem;
  height: 3rem;
  margin-top: 1.5rem;
}
.footer-top {
  text-align: center;
}
.footer-top a {
  display: inline-block;
  color: #23241e;
}
.footer-top a:nth-child(2) {
  margin: 0 1rem;
}
.footer-bottom {
  text-align: center;
  color: #23241e;
}
@media (max-width: 240px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 241px) and (max-width: 320px) {
  html {
    font-size: 14px;
  }
}
