.pageTitle .info {
  line-height: 1.6rem;
  margin: 2.5rem auto 4.5rem auto;
  text-align: left;
}

.pageTitle .info .txt-more {
  overflow: hidden;
  height: calc(1.6rem * 7);
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  transition: height 0.3s linear;
}

.pageTitle .info .txt-more.expanded {
  height: auto !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.pageTitle .info .btn-more {
  font-size: 1rem !important;
  color: white;
  background-color: #f90c07;
  padding: 0.5rem 1rem;
  margin-top: 1.5rem;
}

.products .listBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 1px;
  --itemMargin: 20px;
}

@media screen and (min-width: 1400px) {
  .products .listBox {
    --itemMargin: 33px;
  }
}

@media screen and (max-width: 1000px) {
  .products .listBox {
    --itemMargin: 15px;
  }
}

.products .item {
  margin: 0 0 -1px -1px;
  position: relative;
  border: #dedede 1px solid;
  background: #fff;
  transition: all 0.3s ease;
  width: 50%;
}

@media screen and (min-width: 800px) {
  .products .item {
    display: flex;
  }
}

.products .item:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.products .item:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.products .item:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.products .item:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.products .item:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.products .item:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.products .item:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.products .item:nth-child(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.products .item:nth-child(9) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.products .item .picBox {
  aspect-ratio: 1/1;
  padding: 15px;
}

@media screen and (min-width: 800px) {
  .products .item .picBox {
    width: 45%;
    padding: 20px;
  }
}

.products .item .picBox .pic {
  display: block;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 100%);
  transition: all 0.3s ease;
}

.products .item .picBox .pic img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.products .item .txtBox {
  padding: 0px 15px 15px;
}

@media screen and (min-width: 800px) {
  .products .item .txtBox {
    width: 55%;
    padding: 30px 20px 20px;
  }
}

.products .item .txtBox a.link {
  color: #aaa;
  display: block;
  transition: all 0.3s ease;
}

.products .item .txtBox a.link:hover {
  color: #f90d08;
}

.products .item .txtBox .title {
  max-height: 90px;
  font-size: 1.5rem;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  .products .item .txtBox .title {
    font-size: 1.25rem;
    max-height: 87px;
  }
}

.products .item .txtBox .more {
  color: #f80c06;
}

@media screen and (max-width: 1000px) {
  .products .item .txtBox .more {
    font-size: 0.8rem;
  }
}

.products .item:hover {
  border: #f90d08 5px solid;
  ;
  z-index: 9;
}

/*.products .item:hover .pic {*/
/*  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.1);*/
/*}*/

.productsDetailBox {
  position: relative;
}

@media screen and (max-width: 650px) {
  .productsDetailBox::before {
    content: "";
    width: 40vw;
    aspect-ratio: 1/1;
    right: 0;
    bottom: 0%;
    z-index: -1;
    display: block;
    position: absolute;
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    background: #f90c07;
  }
}

.productsDetailBox .pageTitle {
  margin-bottom: 30px;
}

.productsDetailBox+.footerBox .footerTop {
  overflow: unset;
}

.productsDetail>.container {
  border: none !important;
}

.productsDetail .picBox {
  margin-bottom: 30px;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}

@media screen and (max-width: 1000px) {
  .productsDetail .picBox {
    padding-bottom: 30px;
  }
}

.productsDetail .picBox .pic {
  line-height: 0;
}

.productsDetail .picBox .pic img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 auto;
}

.productsDetail .centerBtnBox {
  width: calc(100% - 40px);
  max-width: 1350px;
  margin: 0 auto -50px;
  display: flex;
  background: #f90d08;
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
  z-index: 9;
}

@media screen and (max-width: 1000px) {
  .productsDetail .centerBtnBox {
    top: 46px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .productsDetail .centerBtnBox {
    width: 100%;
  }
}

.productsDetail .centerBtnBox .buttonBox {
  display: flex;
  flex-grow: 1;
}

.productsDetail .centerBtnBox .buttonBox button {
  padding: 3.5% 8%;
  font-size: 1.75rem;
  text-align: center;
  color: #fff;
  font-weight: 500;
  position: relative;
  background: #f90d08;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
  .productsDetail .centerBtnBox .buttonBox button {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .productsDetail .centerBtnBox .buttonBox button {
    padding: 10px 15px;
    flex-grow: 1;
    font-size: 1rem;
  }
}

.productsDetail .centerBtnBox .buttonBox button+button {
  border-left: 1px solid #fff;
}

.productsDetail .centerBtnBox .buttonBox button:hover {
  background: #000;
}

.productsDetail .centerBtnBox>a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 40px 18px 120px;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1;
  color: #f90d08;
  background: #060606;
  -webkit-clip-path: polygon(100px 0, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(100px 0, 100% 0%, 100% 100%, 0% 100%);
}

@media screen and (max-width: 1000px) {
  .productsDetail .centerBtnBox>a {
    font-size: 1.5rem;
    padding: 10px 30px 8px 120px;
  }
}

@media screen and (max-width: 767px) {
  .productsDetail .centerBtnBox>a {
    padding: 10px 20px 8px;
    -webkit-clip-path: polygon(0px 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0px 0, 100% 0%, 100% 100%, 0% 100%);
  }

  .productsDetail .centerBtnBox>a span {
    display: none;
  }
}

.productsDetail .centerBtnBox>a::after {
  content: "";
  display: block;
  margin-left: 20px;
  -webkit-mask: url("../images/pdf.svg") center no-repeat;
  mask: url("../images/pdf.svg") center no-repeat;
  width: 44px;
  height: 61px;
  background: #f90d08;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
  .productsDetail .centerBtnBox>a::after {
    width: 20px;
    height: 30px;
    margin-left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .productsDetail .centerBtnBox>a::after {
    margin-left: 0px;
  }
}

.productsDetail .centerBtnBox>a:hover {
  color: #fff;
}

.productsDetail .centerBtnBox>a:hover::after {
  background: #fff;
}

.productsDetail .contentBox {
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.productsDetail .content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 5% 0;
}

.productsDetail .content:last-child {
  padding: 5% 0 0;
}

.productsDetail .content:nth-child(1) {
  padding: 6% 0 5%;
}

@media screen and (max-width: 1000px) {
  .productsDetail .content:nth-child(1) {
    padding: 5% 0;
  }
}

.productsDetail .content:nth-child(1)::before {
  content: "";
  background: #f5f5f5;
  position: absolute;
  inset: 0 -100%;
  z-index: -1;
  display: block;
}

.productsDetail .content:nth-child(1) .list li {
  position: relative;
  padding-left: 30px;
  font-size: 1.25rem;
  color: #666666;
}

.productsDetail .content:nth-child(1) .list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 4px solid #f90d08;
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 100%;
}

.productsDetail .content:nth-child(1) .list li+li {
  margin-top: 30px;
}

.productsDetail .content:nth-child(2) {
  padding-bottom: 0;
}

.productsDetail .content:nth-child(2)::before {
  content: "";
  background: #fff;
  position: absolute;
  inset: 0 -100%;
  z-index: -1;
  display: block;
}

.productsDetail .content .titleBox {
  font-weight: 500;
  font-size: 3rem;
  color: #060606;
  margin-bottom: 30px;
}

@media screen and (max-width: 1000px) {
  .productsDetail .content .titleBox {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

.productsDetail .content .table table {
  width: 100%;
}

.productsDetail .content .table table tr:nth-child(odd) {
  background: #f5f5f5;
}

.productsDetail .content .table table td {
  font-size: 1.125rem;
  color: #666666;
  padding: 10px 3%;
  border: #dddddd 1px solid;
  border-width: 1px 0;
}

.productsDetail .content .table table td+td {
  border-width: 1px 0 1px 1px;
}

.productsDetail .content .table table td:nth-child(1) {
  width: 30%;
}

.productsDetail .content .video {
  aspect-ratio: 4/2.5;
  position: relative;
  margin-bottom: 30px;
}

.productsDetail .content .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.productsDetail .content .blockTxt {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.productsDetail .content .blockTxt .txtBox {
  width: 55%;
}

@media screen and (max-width: 650px) {
  .productsDetail .content .blockTxt .txtBox {
    width: 65%;
  }
}

.productsDetail .content .blockTxt .txtBox .title {
  font-weight: 500;
  color: #060606;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  .productsDetail .content .blockTxt .txtBox .title {
    font-size: 1.5rem;
  }
}

.productsDetail .content .blockTxt .txtBox .info {
  font-size: 1.25rem;
  color: #666666;
}

.productsDetail .content .blockTxt i {
  padding: 0;
  margin: 0;
  position: relative;
  max-width: 160px;
  width: 100%;
  aspect-ratio: 1/1;
  background: none;
  border-radius: 100%;
}

@media screen and (max-width: 650px) {
  .productsDetail .content .blockTxt i {
    max-width: 80px;
  }
}

.productsDetail .content .blockTxt i::before {
  content: "";
  inset: 10px;
  border-radius: 100%;
  display: block;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 650px) {
  .productsDetail .content .blockTxt i::before {
    border: 1px solid rgba(249, 13, 8, 0.3);
  }
}

.productsDetail .content .blockTxt i::after {
  content: "";
  position: absolute;
  inset: 0px;
  display: block;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media screen and (max-width: 650px) {
  .productsDetail .content .blockTxt i::after {
    border: 1px solid rgba(249, 13, 8, 0.15);
  }
}

.productsDetail .content .blockTxt i span {
  position: absolute;
  inset: 20px;
  display: block;
  border-radius: 100%;
  background: #fff;
}

@media screen and (max-width: 650px) {
  .productsDetail .content .blockTxt i span {
    background: #f90d08;
  }
}

.productsDetail .content .blockTxt i span::after {
  content: "";
  z-index: 2;
  display: block;
  position: absolute;
  width: 30%;
  top: 50%;
  left: 50%;
  transform: translateX(-30%) translateY(-50%);
  aspect-ratio: 1/1.5;
  margin: auto;
  background: #f90d08;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@media screen and (max-width: 650px) {
  .productsDetail .content .blockTxt i span::after {
    background: #fff;
  }
}

.pageBtnBox {
  padding: 0 20px;
  border: none;
  max-width: 1240px;
}



.productsDetail .slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1000px) {
  .productsDetail .slick-dots {
    left: 0;
    bottom: 0px;
    width: 100%;
    text-align: center;
    transform: translateX(0%);
  }
}

.productsDetail .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
  width: 12px;
  text-align: center;
}

.productsDetail .slick-dots li button {
  width: 8px;
  height: 8px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  background: #000;
  color: transparent;
  padding: 0;
  transition: all 0.3s ease;
  box-sizing: unset;
}

.productsDetail .slick-dots li button:hover {
  border: 2px solid #000;
  background: none;
}

.productsDetail .slick-dots li.slick-active button {
  border: 2px solid #000;
  background: none;
}