.swiper-wrapper {
  height: auto;
}
.mores a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #d4d5d7;
  color: #7d7d7d;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.mores a span {
  margin-right: 14px;
}
.mores a .icons {
  position: relative;
}
.mores a .icons img {
    display: block;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.mores a .icons img.white {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.mores a:hover {
  background: var(--color);
  border: 1px solid var(--color);
  color: #fff;
}
.mores a:hover .icons img.regular {
  opacity: 0;
}
.mores a:hover .icons img.white {
  opacity: 1;
}
.bread-nav {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 3;
  bottom: 20px;
}
.bread-nav .con {
  display: flex;
  align-items: center;
  color: #fff;
}
.bread-nav .con svg {
  position: relative;
  top: -1px;
  margin-right: 6px;
  display: block;
}
.bread-nav .con span {
  margin: 0 6px;
}
.bread-nav .con a {
  color: #fff;
}
.bread-nav .con h3 {
  max-width: 50%;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.5;
  height: 1.5em;
}
.inner-banner {
  position: relative;
  overflow: hidden;
}
.inner-banner .tu {
  position: relative;
  overflow: hidden;
}
.inner-banner .tu:before {
  content: '';
  display: block;
  padding-top: calc(520 / 1920 * 100%);
}
.inner-banner .tu img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
}
.inner-banner .text {
  position: absolute;
  width: 100%;
  left: 0;
  top: 54%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #fff;
}
.inner-banner .text h3 {
  opacity: 0.8;
  letter-spacing: 4px;
  margin-top: 4px;
}
@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1024px) {
  .inner-banner {
    margin-top: 60px;
  }
  .inner-banner .text {
    top: 50%;
  }
}
@media screen and (max-width: 768px) {
  .bread-nav {
    display: none;
  }
  .inner-banner .text h3 {
    letter-spacing: 0;
    margin-top: 2px;
  }
}

