.layout-onecolumn {
  padding: 2.625rem 0 3.125rem 0;
}
.banner {
  width: 100%;
  height: 34.375rem;
  position: relative;
}
.banner .carousel {
  position: absolute;
  top: 0;
  left: 0;
}
.banner .carousel img {
  width: 100%;
  height: 34.375rem;
}
@media (max-width: 1200px) {
  .banner .carousel img {
    object-fit: cover;
  }
}
.banner .category {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 19px 0 18px 0;
}
@media (max-width: 1000px) {
  .banner .category {
    display: none;
  }
}
.banner .category-left {
  width: 13.5rem;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
}
.banner .category-left__header {
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  padding: 1.5rem 1.125rem 0 1.125rem;
  height: 4.5625rem;
  box-sizing: border-box;
}
.banner .category-left__header-border {
  width: 0.375rem;
  height: 1.3125rem;
  border-radius: 0.1875rem;
  background: #e93b02;
  margin-right: 0.5rem;
}
.banner .category-left__content {
  overflow-y: auto;
  height: calc(100% - 4.5625rem);
}
@media (max-width: 1200px) {
  .banner .category-left__content {
    display: flex;
    flex-flow: wrap column;
  }
}
.banner .category-left__list {
  font-weight: 400;
  font-size: 0.875rem;
  color: #000;
  padding: 0.75rem 1.3125rem;
}
.banner .category-left__list-item {
  border-left: 0.1875rem solid transparent;
  padding-left: 0.5rem;
}
.banner .category-left__list.active {
  background: #fff;
}
.banner .category-left__list.active .category-left__list-item {
  border-left: 0.1875rem solid #e93b02;
}
.banner .category-left__list:hover {
  background: #fff;
}
.banner .category-left__list:hover .category-left__list-item {
  border-left: 0.1875rem solid #e93b02;
}
.banner .category-left__list:hover .category-left {
  background: transparent;
}
@media (min-width: 1200px) {
  .banner .category-left__list:hover .category-left__children {
    visibility: visible;
    transition-delay: 0.25s;
  }
}
.banner .category-left__children {
  visibility: hidden;
  transition: 0.2s 0.25s;
  position: absolute;
  top: 0;
  left: 0;
  min-width: calc(75rem - 13.5rem);
  height: 100%;
  padding: 0 1rem;
  margin-left: 13.5rem;
  background: rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
  clear: both;
  border-left: 1px solid #000;
}
.banner .category-left__children-header {
  font-size: 0.9375rem;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.banner .category-left__children ul {
  max-height: 25rem;
  padding-left: 1rem;
  flex-flow: wrap column;
}
.banner .category-left__children ul li {
  list-style: none;
  line-height: 1.5rem;
  padding-left: 0.5rem;
  border-left: 3px solid transparent;
}
.banner .category-left__children ul li a {
  color: #444;
  text-decoration: none;
}
.banner .category-left__children ul li:hover {
  border-left: 3px solid #e93b02;
}
.carousel-container {
  display: grid;
  grid-template-columns: 1fr 1.38rem 23.13rem;
  grid-template-rows: auto;
}
@media (max-width: 1200px) {
  .carousel-container {
    grid-template-columns: auto;
    -ms-grid-columns: auto;
    grid-template-rows: auto 1rem auto;
    -ms-grid-rows: auto 1rem auto;
  }
}
.carousel-container .carousel-swiper {
  width: 100%;
  height: 28rem;
  border-radius: 0.625rem;
  background-size: cover;
  box-sizing: border-box;
  padding: 0 1.5625rem 2rem 1.6875rem;
  margin-bottom: 1.25rem;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 1;
  position: relative;
}
@media (max-width: 1200px) {
  .carousel-container .carousel-swiper {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 2;
    margin-bottom: 0;
  }
}
.carousel-container .carousel-swiper::before {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.5);
  height: 28rem;
  width: 100%;
  border-radius: 0.625rem;
  position: absolute;
  z-index: 1;
  bottom: 0;
  top: 0;
  left: 0;
}
.carousel-container .carousel-swiper__date {
  font-weight: 400;
  font-size: 0.9375rem;
  color: #fff;
  margin-bottom: 0.5rem;
  z-index: 2;
}
.carousel-container .carousel-swiper__title {
  font-weight: 700;
  font-size: 1.375rem;
  color: #fff;
  margin-bottom: 1.1875rem;
  z-index: 2;
}
.carousel-container .carousel-swiper__summary {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  z-index: 2;
}
.carousel-container .carousel-list {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 1200px) {
  .carousel-container .carousel-list {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 3;
    grid-row-end: 4;
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  .carousel-container .carousel-list {
    display: none;
  }
}
.carousel-container .carousel-list__item {
  width: 100%;
  height: 8.5rem;
  border-radius: 0.625rem;
  background-size: cover;
  position: relative;
}
@media (max-width: 1200px) {
  .carousel-container .carousel-list__item {
    margin-bottom: 0;
    margin-right: 1.25rem;
  }
}
.carousel-container .carousel-list__item::before {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.5);
  height: 8.5rem;
  width: 100%;
  border-radius: 0.625rem;
  position: absolute;
  z-index: 1;
  bottom: 0;
  top: 0;
  left: 0;
}
.carousel-container .carousel-list__item-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5625rem;
  color: #fff;
  padding: 0 1.3125rem 0 1.75rem;
  z-index: 2;
}
.carousel-container .carousel-list__item-text::before {
  content: '';
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #fff;
  margin-right: 0.4375rem;
}
.featured-products {
  margin-bottom: 4.25rem;
}
.featured-products__bg {
  height: 23.4375rem;
  padding: 3.9375rem 0 2.6875rem 0;
  background-image: url(../images/featured-products-bg.jpg);
  background-size: 100% 100%;
}
.featured-products__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.63rem;
  text-align: center;
  color: #000;
  margin-bottom: 0.3125rem;
}
.featured-products__subTitle {
  font-weight: 400;
  font-size: 1.13rem;
  line-height: 1.56rem;
  text-align: center;
  color: #ccc;
}
.featured-products__list {
  position: relative;
}
.featured-products__list-item {
  width: 17.5625rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 1px 10px #40404029;
  margin-right: 1.5625rem;
  padding: 1.0625rem 0.8125rem 1.3125rem 1rem;
  box-sizing: border-box;
}
.featured-products__list-item a {
  display: block;
}
.featured-products__list-item a :nth-child(1) {
  width: 100%;
  height: 11.125rem;
  margin-bottom: 1.125rem;
}
.featured-products__list-item a :nth-child(2) {
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  color: #000;
  margin-bottom: 1.125rem;
}
.featured-products__list-item a :nth-child(3) {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5625rem;
  color: #646464;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.featured-products__list-item:hover img {
  transform: scale(1.1);
}
.featured-products__list-item:hover .product-name {
  color: #e93b02;
}
.featured-products__list .swiper-prev {
  width: 2.9375rem;
  height: 2.9375rem;
  position: absolute;
  top: calc(50% - 2.9375rem);
  left: -5rem;
}
@media (max-width: 1200px) {
  .featured-products__list .swiper-prev {
    left: 1.25rem;
    z-index: 999;
  }
}
.featured-products__list .swiper-next {
  width: 2.9375rem;
  height: 2.9375rem;
  position: absolute;
  top: calc(50% - 2.9375rem);
  right: -5rem;
}
@media (max-width: 1200px) {
  .featured-products__list .swiper-next {
    right: 1.25rem;
    z-index: 999;
  }
}
.cooperative-partner__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.63rem;
  text-align: center;
  color: #000;
  margin-bottom: 0.3125rem;
}
.cooperative-partner__subTitle {
  font-weight: 400;
  font-size: 1.13rem;
  line-height: 1.56rem;
  text-align: center;
  color: #ccc;
  margin-bottom: 2.6875rem;
}
.cooperative-partner__list {
  gap: 1.56rem 1.25rem;
}
@media (max-width: 1200px) {
  .cooperative-partner__list {
    padding-left: 1.25rem;
  }
}
.cooperative-partner__list-item {
  width: 14rem;
  height: 6.25rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 1px 10px #40404029;
}
.float-menu {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  background: #e93b02;
  z-index: 997;
  display: none;
}
@media (max-width: 1000px) {
  .float-menu {
    display: block;
  }
}
.float-mask {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: #000;
  opacity: 0.5;
  width: 100%;
  z-index: 998;
  display: none;
}
.float-category {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  display: none;
}
.float-category__header {
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  padding: 1.5rem 1.125rem 0 1.125rem;
  height: 4.5625rem;
  box-sizing: border-box;
}
.float-category__header-border {
  width: 0.375rem;
  height: 1.3125rem;
  border-radius: 0.1875rem;
  background: #e93b02;
  margin-right: 0.5rem;
}
.float-category__header .close {
  font-size: 30px;
}
.float-category__content {
  overflow-y: auto;
  height: calc(100% - 4.5625rem);
}
@media (max-width: 1200px) {
  .float-category__content {
    display: flex;
    flex-flow: wrap column;
  }
}
.float-category__list {
  font-weight: 400;
  font-size: 0.875rem;
  color: #000;
}
.float-category__list-item {
  border-left: 0.1875rem solid transparent;
  padding-left: 0.5rem;
}
.float-category__children {
  padding: 0 1rem;
}
.float-category__children-header {
  font-size: 0.9375rem;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.float-category__children ul {
  max-height: 25rem;
  padding-left: 1rem;
  flex-flow: wrap column;
}
.float-category__children ul li {
  list-style: none;
  line-height: 3rem;
  padding-left: 0.5rem;
  border-left: 3px solid transparent;
}
.float-category__children ul li a {
  color: #444;
  text-decoration: none;
}
