/* products */
.products {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* 左边 */
.products .lt {
  margin-bottom: 20px;
}

.products .sub-title {
  text-align: left;
  color: var(--style-color);
  padding-bottom: 8px;
  margin-bottom: 15px;
  border-bottom: 1px solid #E3E3E3;
}

.products .item-list {
  margin-bottom: 20px;
}
.products .filter-list li.active{
  color: var(--sub-color);
}

.products .filter-list li.active .fitler-box{
    border-color: var(--sub-color);
}

.products .item-list li a {
  display: block;
  padding: 7px 15px;
  font-family: 'DMSans-B';
  background: #F4F4F4;
  border-radius: 4px;
}

.products .item-list li.active a {
  color: #fff;
  background: var(--sub-color);
}

.products .item-list li:not(:last-child) {
  margin-bottom: 15px;
}

.products .filter-item {
  border-radius: 4px;
  padding-left: 15px;
  padding-right: 15px;
  background: #F4F4F4;
}

.products .filter-item:not(:last-child) {
  margin-bottom: 15px;
}

.products .filter-title {
  font-size: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products .filter-title i {
  cursor: pointer;
  transition: all .3s;
}

.products .filter-title.drop i {
  transform: rotate(180deg);
}

.products .filter-list {
  padding-top: 10px;
  padding-bottom: 8px;
}

.products .filter-list li {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.products .filter-list li.checked {
  color: var(--sub-color);
}

.products .filter-list li:not(:last-child) {
  margin-bottom: 16px;
}

.products .fitler-box {
  width: 21px;
  height: 21px;
  border-radius: 2px;
  margin-right: 8px;
  border: 1px solid #4F5050;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products .filter-list li.checked .fitler-box {
  border-color: var(--sub-color);
}

.products .fitler-box i {
  font-size: 18px;
  line-height: 1;
  color: var(--style-color);
  opacity: 0;
}

.products .filter-list li.checked .fitler-box i {
  opacity: 1;
}

.products .filter-list li.active .fitler-box i{
    opacity: 1;
}

/* 右边 */
.products .top-wrap {
  padding: 20px 15px;
  border-radius: 7px;
  margin-bottom: 20px;
}

.products .title {
  text-align: left;
  color: var(--btn-color);
  margin-bottom: 10px;
}

.products .sub-info {
  color: #fff;
  line-height: 25px;
}

.products .sub-info>*:not(:last-child) {
  margin-bottom: 25px;
}

.products .row {
  margin-bottom: -30px;
}

.products .row>div {
  margin-bottom: 30px;
}

.products .block {
  height: 100%;
  padding-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #E3E3E3;
}

.products .img {
  width: 100%;
  display: block;
}

.products .img img {
  width: 100%;
  height: auto;
  aspect-ratio: 268 / 268;
}

.products .tit {
  line-height: 25px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

@media (min-width: 992px) {
  .products .container {
    display: flex;
  }

  .products .lt {
    width: 250px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .products .rt {
    flex: 1;
    padding-top: 48px;
    padding-left: 30px;
  }

  .products .top-wrap {
    aspect-ratio: 1043 / 453;
  }
}

@media (min-width: 1200px) {
  .products {
    padding-top: 36px;
    padding-bottom: 60px;
  }

  .products .lt {
    width: 310px;
  }

  .products .rt {
    padding-top: 60px;
    padding-left: 40px;
  }

  .products .sub-title {
    padding-bottom: 12px;
    margin-bottom: 20px;
  }

  .products .item-list {
    margin-bottom: 34px;
  }

  .products .item-list li a {
    padding-top: 13px;
    padding-bottom: 13px;
    transition: all .3s;
  }

  .products .item-list li:hover a {
    color: #fff;
    background: var(--sub-color);
  }

  .products .filter-list {
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .products .fitler-box {
    margin-right: 14px;
  }

  .products .top-wrap {
    padding: 30px 40px;
    margin-bottom: 40px;
  }

  .products .row {
    margin-bottom: -38px;
  }

  .products .row>div {
    margin-bottom: 38px;
  }

  .products .block {
    padding-bottom: 40px;
  }

  .products .block:hover {
    border-color: var(--btn-color);
  }

  .products .tit {
    margin-top: 30px;
    margin-left: 30px;
    margin-right: 30px;
  }

  .products .block:hover .tit {
    color: var(--sub-color);
  }
}

@media (min-width: 1440px) {
  .products {
    padding-bottom: 100px;
  }

  .products .block {
    padding-bottom: 75px;
  }
}


/* pdt-bottom */
.pdt-bottom {
  padding: 30px 0;
  color: #fff;
  background: var(--style-color);
}

.pdt-bottom .item {
  padding: 30px;
  position: relative;
}

.pdt-bottom .item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 11px;
  top: 0;
  bottom: 11px;
  border: 1px solid #FFFFFF;
}

.pdt-bottom .item::after {
  content: '';
  position: absolute;
  left: 11px;
  right: 0;
  top: 11px;
  bottom: 0;
  border: 1px solid #FFFFFF;
}

.pdt-bottom .title {
  color: var(--btn-color);
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.pdt-bottom .info {
  line-height: 25px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pdt-bottom .info>*:not(:last-child) {
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .pdt-bottom .container {
    display: flex;
    justify-content: space-between;
  }

  .pdt-bottom .item {
    flex: 0 0 calc(50% - 18px);
    max-width: calc(50% - 18px);
  }
}

@media (min-width: 1200px) {
  .pdt-bottom {
    padding: 60px 0;
  }

  .pdt-bottom .title {
    margin-bottom: 34px;
  }

  .pdt-bottom .item {
    padding: 50px 52px 47px;
  }

  .pdt-bottom .info>*:not(:last-child) {
    margin-bottom: 33px;
  }
}

@media (min-width: 1440px) {
  .pdt-bottom {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .pdt-bottom .item:not(:last-child) {
    margin-bottom: 20px;
  }
}