/* banner */
.banner .title {
  color: var(--style-color);
}


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

.pdt-top .lt {
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0px 3px 8px 1px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  margin-bottom: 20px;
}

.pdt-top .title {
  color: #fff;
  padding: 7px 20px;
  margin-bottom: 20px;
}

.pdt-top .title:first-child {
  background: var(--style-color);
}

.pdt-top .title:nth-child(3) {
  background: var(--txt-color);
}

.pdt-top .info {
  line-height: 28px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}

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

.pdt-top .rt img {
  width: 100%;
  border-radius: 5px;
}

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

  .pdt-top .container>* {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .pdt-top .lt {
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .pdt-top {
    padding-top: 42px;
  }

  .pdt-top .title {
    padding-top: 16px;
    padding-bottom: 15px;
    margin-bottom: 36px;
  }

  .pdt-top .info {
    margin-bottom: 34px;
  }

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


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

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

.products .title {
  color: #fff;
  text-align: left;
  border-radius: 3px;
  padding: 9px 16px 8px;
  margin-bottom: 20px;
  background: var(--style-color);
}

.products .pdt-list li {
  color: var(--sub-color);
  display: flex;
  align-items: center;
  line-height: 28px;
}

.products .pdt-list li.checked {
  color: var(--style-color);
}

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

.products .pdt-list li a {
  flex: 1;
}

.products .pdt-list li a::before {
  display: inline-block;
  content: "-";
  font-weight: bold;
  font-family: 'Quicksand-Bold';
  margin-right: 10px;
}

.products .pdt-list li .pdt-num {
  width: 45px;
  height: 25px;
  flex-shrink: 0;
  font-size: 14px;
  color: #434343;
  background: #F3F6F8;
  border-radius: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products .pdt-list li.checked .pdt-num {
  color: #fff;
  border-color: var(--sub-color);
  background: var(--sub-color);
}

/* 右边 */
.products .row {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -33px;
}

.products .row>div {
  padding: 0 10px;
  margin-bottom: 33px;
}

.products .img {
  box-shadow: 0px 3px 8px 1px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  display: block;
  overflow: hidden;
}

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

.products .tit {
  line-height: 28px;
  margin-top: 10px;
  font-family: 'Quicksand-SemiBold';
}

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

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

  .products .rt {
    flex: 1;
    padding-left: 20px;
  }
}

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

  .products .title {
    margin-bottom: 39px;
  }

  .products .pdt-list li a:hover {
    color: var(--style-color);
  }

  .products .pdt-list li .pdt-num:hover {
    border-color: var(--sub-color);
  }

  .products .img {
    transition: box-shadow .3s;
  }

  .products .img:hover {
    box-shadow: 0px 5px 16px 4px rgba(0, 0, 0, 0.06);
  }

  .products .tit {
    margin-top: 16px;
  }

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

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