.products-detail {
  padding: 10px 0 30px;
}

.products-detail .container {
  display: flex;
  flex-direction: column-reverse;
}

/* 左边 */
.products-detail .lt-nav {
  margin-top: 30px;
}

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

.products-detail .nav-title {
  padding: 0 14px;
  text-align: left;
  line-height: 40px;
  background: #EEE;
  font-weight: normal;
  font-family: 'MicrosoftYahei-Regular';
  border-left: 10px solid var(--style-color);
}

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

.products-detail .pdt-list li a {
  width: 100%;
  display: inline-block;
  padding: 0 10px;
  background: #EEE;
  line-height: 40px;
}

.products-detail .pdt-list li.active a {
  color: #fff;
  background: var(--style-color);
}

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

/* 右边 */
.products-detail .title {
  text-align: left;
  margin-bottom: 20px;
}

.products-detail .date {
  color: #999;
  padding: 0 10px;
  line-height: 40px;
  font-size: 12px;
  margin-bottom: 20px;
  background: linear-gradient(to right, #EEE, #FFF);
}

.products-detail .img {
  width: 450px;
  border: 1px solid #EEE;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.products-detail .img img {
  width: 100%;
  aspect-ratio: 450 / 450;
}

.products-detail .sub-info {
  line-height: 2;
  margin-bottom: 30px;
}

.products-detail .sub-info ul {
  padding-left: 20px;
}

.products-detail .sub-info h2 {
  font-size: 18px;
  text-align: left;
}

.products-detail .sub-info h3 {
  font-size: 16px;
}

.products-detail .page-wrap {
  padding: 20px;
  background: #F5F5F5;
  border: 1px solid #CCCCCC;
}

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

  .products-detail .lt-nav {
    width: 285px;
    margin-top: 0;
  }

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

  .products-detail .title {
    padding: 25px 0;
    margin-bottom: 0;
  }
}

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

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

  .products-detail .title {
    padding: 25px 0;
  }

  .products-detail .img {
    margin-bottom: 40px;
  }

  .products-detail .sub-info {
    margin-bottom: 50px;
  }

  .products-detail .page-wrap a:hover {
    color: var(--style-color);
  }
}