.banner {
  width: 100%;
  height: 37.5rem;
  position: relative;
}
.menu-title {
  margin: -4.5rem auto 0;
  width: 58.75rem;
  height: 9rem;
  background-color: #ff5200;
  font-size: 3.125rem;
  color: #ffffff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.625rem;
  position: relative;
}
.menu-title .lines {
  position: absolute;
  right: 0;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.menu-title .lines .line {
  background-color: #FFBD9E;
  height: 0.875rem;
  border-radius: 0.25rem 0 0 0.25rem;
}
.menu-title .lines .line:nth-child(1) {
  width: 8rem;
}
.menu-title .lines .line:nth-child(2) {
  width: 16.5rem;
}
main {
  position: relative;
  padding-top: 4.5rem;
  margin-top: -4.5rem;
  overflow: hidden;
}
.list-wrap {
  padding: 4.5rem 0 7.5rem;
  position: relative;
  overflow: hidden;
}
.list-wrap .list .item {
  display: flex;
  gap: 5.5rem;
}
.list-wrap .list .item:nth-child(n+2) {
  margin-top: 5rem;
}
.list-wrap .list .item .cover-wrap {
  width: 31.5rem;
  height: 31.5rem;
  border: 1px solid #FF5200;
  padding: 1.75rem;
  border-radius: 0.75rem;
}
.list-wrap .list .item .cover-wrap .cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list-wrap .list .item .detail {
  flex: 1;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
}
.list-wrap .list .item .detail .title {
  font-size: 1.875rem;
  color: #000000;
}
.list-wrap .list .item .detail .desc {
  flex: 1;
  margin-top: 3.5rem;
  font-size: 1.125rem;
  color: #4B5563;
  white-space: pre-line;
}
.list-wrap .list .item .detail .more {
  cursor: pointer;
  width: 7rem;
  height: 2.5rem;
  background-color: #FF5200;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.list-wrap .list-empty {
  margin: 5rem 0;
  color: #373737;
  font-size: 1.5rem;
  text-align: center;
}
.bg {
  position: absolute;
  bottom: 5rem;
  right: -18rem;
  width: 79.75rem;
}
@media screen and (max-width: 768px) {
  .banner {
    height: 20rem;
  }
  .menu-title {
    margin: -3rem auto 0;
    width: 80%;
    height: 6rem;
    font-size: 2.5rem;
  }
  .menu-title .lines {
    display: none;
  }
  .list-wrap {
    padding: 2rem 0 3rem;
  }
  .list-wrap .list .item {
    gap: 1rem;
  }
  .list-wrap .list .item:nth-child(n+2) {
    margin-top: 2rem;
  }
  .list-wrap .list .item .cover-wrap {
    width: 8rem;
    height: 8rem;
    padding: 0.25rem;
  }
  .list-wrap .list .item .detail {
    padding: 0;
  }
  .list-wrap .list .item .detail .title {
    font-size: 1.25rem;
  }
  .list-wrap .list .item .detail .desc {
    margin-top: 0.75rem;
    font-size: 1rem;
  }
  .list-wrap .list .item .detail .more {
    margin-top: 1rem;
  }
}
