/* H5 Banner */
@media screen and (max-width: 799px) {
  .h5-banner {
    width: 100%;
    height: 4.65rem;
    position: relative;
  }
  .banner-image {
    width: 100%;
    aspect-ratio: 375/232;
    object-fit: cover;
  }
  .banner-search-wrapper {
    width: 100%;
    height: 2.7rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.1rem;
    position: absolute;
    bottom: 0.8rem;
    left: 0;
    padding: 0.25rem;
  }
  .banner-title1 {
    font-size: 0.37rem;
    color: #fff;
    padding: 0 0 0 0.2rem;
    text-shadow: 0 0 4px #00000040;
  }
  .banner-title2 {
    font-size: 0.6rem;
    color: #fff;
    padding: 0 0 0.1rem 0.2rem;
    text-shadow: 0 0 4px #00000040;
  }
}

/* PC Banner */
@media only screen and (min-width: 800px) {
  .pc_banner {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.05rem;
    position: relative;
  }
  .pc_banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
    z-index: 1;
    border-radius: 8px;
  }
  .banner-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
  }
  .breadcrumb {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.02rem;
	}
	.breadcrumb > * {
    font-size: 17px;
    color: white;
		cursor: pointer;
		display: inline-block;
		vertical-align: middle;
	}
  .banner-search-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0.1rem;
    z-index: 2;
  }
  .banner-title1 {
    font-size: 25px;
    color: #fff;
    text-shadow: 0 0 4px #00000040;
  }
  .banner-title2 {
    font-size: 45px;
    color: #fff;
    padding: 0 0 0.04rem 0;
    text-shadow: 0 0 4px #00000040;
  }
}