.products .listBox {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.products .item {
  background: #fff;
  position: relative;
  border: #dddddd 1px solid;
}
@media screen and (max-width: 767px) {
  .products .item {
    max-width: 520px;
    margin: 0 auto;
  }
}
.products .item a {
  display: flex;
}
@media screen and (max-width: 767px) {
  .products .item a {
    flex-direction: column;
  }
}
.products .item a:hover .more {
  background: #000;
}
.products .item .pic img {
  -o-object-fit: unset;
  object-fit: unset;
  height: auto;
}
.products .item .info {
  width: 70%;
  max-width: 920px;
  padding: 4% 5% 100px;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .products .item .info {
    width: 100%;
  }
}
.products .item .info::before {
  content: '';
  width: 50px;
  height: 5px;
  display: block;
  background: #e1251c;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
.products .item .info::before {
    display:none;
  }
}
.products .item .title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
  order: -1;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .products .item .title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
@media screen and (max-width: 991px) {
  .products .item .title {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 767px) {
  .products .item .title {
    font-size: 1.6rem;
  }
}
.products .item .description {
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 991px) {
  .products .item .description {
    display: none;
  }
}
.products .item .more {
  padding: 15px 40px;
  color: #fff;
  background: #e1251c;
  font-size: 1.125rem;
  font-weight: 700;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .products .item .more {
    width: 100%;
    text-align: center;
  }
}

.productsDetailBox .topBox {
  display: flex;
  background: #ebedf2;
}
@media screen and (max-width: 767px) {
  .productsDetailBox .topBox {
    flex-direction: column;
  }
}
.productsDetailBox .topBox .pic img {
  -o-object-fit: unset;
  object-fit: unset;
  height: auto;
}
.productsDetailBox .topBox .info {
  width: 60%;
  max-width: 920px;
  padding: 4% 5% 100px;
}
@media screen and (max-width: 767px) {
  .productsDetailBox .topBox .info {
    width: 100%;
  }
}
.productsDetailBox .topBox .title {
  font-size: 3rem;
  font-weight: 800;
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1440px) {
  .productsDetailBox .topBox .title {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 991px) {
  .productsDetailBox .topBox .title {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 767px) {
  .productsDetailBox .topBox .title {
    font-size: 1.75rem;
  }
}
.productsDetailBox .topBox .title::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 5px;
  display: block;
  background: #e1251c;
  bottom: 0;
  left: 0;
}
.productsDetailBox .topBox .description {
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.8;
}
.productsDetailBox .content {
  background: #fff;
  padding: clamp(40px, 10%, 70px) 30px;
}
.productsDetailBox .content .editor {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 1250px;
  margin: 0 auto;
  color: #444444;
} /*# sourceMappingURL=products.css.map */
