/* products */
.products {
  padding-top: 30px;
  padding-bottom: 30px;
}

.products .title {
  margin-bottom: 12px;
}

.products .title-info {
  color: #666666;
  line-height: 30px;
  margin-bottom: 30px;
}

/* 左侧 */
.products .lt-nav {
  margin-bottom: 20px;
}

.products .product-form {
  display: flex;
  margin-bottom: 30px;
}

.products .form-control {
  flex: 1;
  height: 52px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0;
  border-right: none;
  border-color: #CFCFCF;
  background: #F9F9F9;
}

.products .product-form .btn {
  width: 68px;
  padding: 0;
  color: #fff;
  border-radius: 0;
  font-weight: normal;
  background: var(--style-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.products .product-form .btn i {
  font-size: 28px;
}

.products .nav-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 12px;
}

.products #category {
  border: none;
  background: none;
  cursor: pointer;
}

.products #category i {
  margin-right: 5px;
}

.products .pdt-nav {
  margin-top: 10px;
}

.products .nav-open {
  font-weight: bold;
  border-radius: 6px;
  border-bottom: 1px solid #ECECEC;
}

.products .nav-open.drop {
  color: #fff;
  border-color: var(--style-color);
  background: var(--style-color);
}

.products .nav-open a {
  display: block;
  padding: 15px 15px 15px 20px;
}

.products .child-list {
  display: none;
  background: #FCFCFC;
}

.products .bottom-wrap {
  color: #fff;
  margin-top: 30px;
  padding: 20px 15px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.products .bottom-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #031633;
  opacity: 0.6;
}

.products .bottom-wrap>* {
  position: relative;
  z-index: 1;
}

.products .sub-title {
  margin-bottom: 10px;
  line-height: calc(38 / 28);
}

.products .sub-info {
  margin-bottom: 20px;
  line-height: calc(30 / 16);
}

.products .bottom-btn {
  width: 100%;
  font-weight: bold;
  border-radius: 6px;
  background: #FFFFFF;
  color: var(--style-color);
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
}

/* 右侧 */
.products .row {
  margin-bottom: -30px;
}

.products .row>div {
  margin-bottom: 30px;
}

.products .scale-img {
  border-radius: 10px;
}

.products .scale-img img {
  width: 100%;
  aspect-ratio: 340 / 222;
}

.products .tit {
  font-weight: bold;
  margin-top: 18px;
  margin-bottom: 9px;
}

.products .info {
  color: #666666;
  margin-bottom: 16px;
}

.products .btn-wrap {
  line-height: 1;
  padding-top: 20px;
  border-top: 1px solid #D8D8D8;
}

.products .btn-wrap .btn {
  padding: 0;
  border: none;
  line-height: 1;
  font-weight: bold;
  color: var(--style-color);
}

.products .btn-wrap i {
  font-size: 12px;
  margin-left: 14px;
  position: relative;
  top: -1px;
}

@media (min-width: 768px) {
  .products #category {
    display: none;
  }

  .products .pdt-nav {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .products {
    padding-top: 44px;
    padding-bottom: 60px;
  }

  .products .title-info {
    margin-bottom: 53px;
  }

  .products .item-wrap {
    display: flex;
  }

  .products .lt-nav {
    width: 284px;
  }

  .products .product-form {
    margin-bottom: 49px;
  }

  .products .nav-title {
    border-width: 2px;
    padding-bottom: 16px;
    margin-bottom: 18px;
  }

  .products .form-control {
    padding-left: 29px;
    padding-right: 30px;
  }

  .products .nav-open:hover {
    color: #fff;
    background: var(--style-color);
  }

  .products .nav-open a {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .products .bottom-wrap {
    padding: 36px 30px 42px;
    margin-top: 50px;
  }

  .products .bottom-btn {
    transition: transform .3s;
  }

  .products .bottom-btn:hover {
    transform: translateY(-4px);
  }

  .products .sub-info {
    margin-bottom: 30px;
  }

  .products .bottom-btn {
    padding: 10px 15px 9px;
  }

  .products .rt-content {
    flex: 1;
    padding-left: 30px;
  }

  .products .row {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -54px;
  }

  .products .row>div {
    padding: 0 20px;
    margin-bottom: 54px;
  }

  .products .tit:hover {
    color: var(--style-color);
  }

  .products .btn-wrap .btn {
    transition: all .3s;
  }

  .products .btn-wrap .btn i {
    transition: margin .3s;
  }

  .products .btn-wrap .btn:hover i {
    margin-left: 20px;
  }
}

@media (min-width: 1440px) {
  .products {
    padding-bottom: 100px;
  }

  .products .rt-content {
    padding-left: 56px;
  }
}