.products {
  padding: 30px 0;
}

/* 左边 */
.products .lt-nav {
  padding: 20px 15px;
  background: #fff;
  border-radius: 7px;
  border: 1px solid #CED4DA;
  margin-bottom: 20px;
}

.products .nav-title {
  font-weight: bold;
  padding-bottom: 7px;
  border-bottom: 1px solid #EBEBEB;
  margin-bottom: 8px;
}

.products .pdt-nav {
  margin-top: 10px;
}

.products #category {
  border: none;
  box-shadow: none;
  background: none;
}

.products #category i {
  margin-right: 5px;
}

.products .pdt-nav>li {
  border-bottom: 1px solid #EBEBEB;
}

.products .nav-open {
  color: #888;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products .nav-open:not(.first-btn).drop {
  color: var(--style-color);
}

.products .nav-open a {
  display: block;
  width: 100%;
}

.products .nav-open i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 10px;
  background: var(--style-color);
  position: relative;
  cursor: pointer;
}

.products .nav-open i::before, .products .nav-open i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}

.products .nav-open i::before {
  width: 12px;
  height: 2px;
}

.products .nav-open i::after {
  width: 2px;
  height: 12px;
  transition: height .3s;
}

.products .nav-open.drop i::after {
  height: auto;
}

.products .first-btn {
  font-size: 16px;
  color: #2B2B2B;
}

.products .first-btn a {
  padding-top: 8px;
  padding-bottom: 7px;
}

.products .child-list {
  display: none;
  padding-bottom: 10px;
}

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

/* 右边 */
.products .title-wrapper {
  padding: 5px 15px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid #CED4DA;
  margin-bottom: 23px;
}

.products .title {
  text-align: left;
  margin-bottom: 25px;
  position: relative;
}

.products .sub-info {
  color: #888;
}

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

.products .item {
  text-align: center;
  padding: 20px 15px;
  background: #fff;
  border-radius: 7px;
  border: 1px solid #CED4DA;
}

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

.products .swiper-wrap {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.products .btn-wrap {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.products .prev-btn, .products .next-btn {
  position: static;
  transform: translate(0);
  width: 30px;
  height: 30px;
  margin: 0 10px;
  color: #fff;
  border-radius: 50%;
  background: var(--style-color);
  border: 1px solid var(--style-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.products .swiper-button-disabled {
  color: var(--style-color);
  border-color: #CED4DA;
  background: none;
}

.products .info {
  margin-top: 20px;
}

.products table th, .products table td {
  border: none;
  text-align: left;
  padding-left: 0;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 10px;
}

.products table td:last-child {
  width: 40%;
}

.products table td:last-child {
  width: 60%;
  color: #888;
}

.products .inquiry-wrap {
  margin-top: 20px;
}

.products .btn {
  width: 136px;
  color: #fff;
  font-size: 17px;
  border-radius: 26px;
  background: var(--style-color);
  border-color: var(--style-color);
}

@media (min-width: 768px) {
  .products #category {
    display: none;
  }

  .products .item {
    display: flex;
    align-items: center;
    flex-wrap: wrap
  }

  .products .swiper-wrap {
    max-width: 250px;
    flex-shrink: 0;
  }

  .products .info {
    flex: 1;
    margin-left: 20px;
  }

  .products .inquiry-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .products .swiper-wrap {
    max-width: 300px;
  }
}

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

  .products .pdt-group {
    display: flex;
    align-items: flex-start;
  }

  .products .lt-nav {
    width: 284px;
    padding-left: 22px;
    padding-right: 22px;
    flex-shrink: 0;
  }

  .products .nav-title {
    padding-bottom: 12px;
    margin-bottom: 15px;
  }

  .products .pdt-nav {
    margin-top: 18px;
  }

  .products .nav-open:not(.first-btn):hover {
    color: var(--style-color);
  }

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

  .products .title-wrapper {
    padding: 10px 24px 15px;
  }

  .products .item {
    padding: 30px;
  }

  .products .swiper-wrap {
    max-width: 250px;
  }

  .products .btn-wrap {
    margin-top: 37px;
  }

  .products .prev-btn, .products .next-btn {
    margin: 0 17px;
  }

  .products .info {
    flex: 1;
    margin: 0 28px;
  }

  .products .inquiry-wrap {
    flex: none;
    max-width: none;
    margin-top: 0;
    flex-shrink: 0;
  }

  .products .btn {
    padding-top: 12px;
    padding-bottom: 11px;
    transition: all .3s;
  }

  .products .btn:hover {
    color: var(--style-color);
    background: none;
  }
}

@media (min-width: 1440px) {
  .products .item {
    padding-left: 36px;
    padding-right: 36px;
  }

  .products .lt-nav {
    width: 320px;
  }

  .products .swiper-wrap {
    max-width: 300px;
  }
}

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

  .products .lt-nav {
    width: 350px;
  }

  .products .item {
    padding-top: 56px;
    padding-bottom: 52px;
    padding-right: 76px;
  }
}