.breadcrumb-nav {
  display: none;
}

.home-main {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.home-main-box {
  flex: 1;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.home-banner {
  position: relative;
  height: 620px;
  width: 100%;
  background: url(/static/assets/banner/home-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: -320px;
}

.home-search {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 4px;
  padding: 16px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 800px) {
  .home-main {
    display: block;
    margin-top: 0;
  }

  .home-main-box {
    margin-bottom: 16px;
  }

  .home-search {
    width: 80%;
    top: 50px;
  }

  .home-banner {
    height: 240px;
    margin-bottom: -86px;
  }
}