.row-header {
  font-size: 30px;
  font-weight: bold;
}

.product-list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}

.product-list a:hover {
  color: #333;
}

.product-list .product {
  background-color: #fff;
  border: 1px solid #99B7F8;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  height: calc($imageHeight + $infoHeight);
  width: 21%;
  margin-right: 5%;
  margin-bottom: 60px;
}

.product-list .product-thumb {
  width: 90%;
  height: 200px;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 20px;
}

.product-list .product-thumb img {
  transition: all 0.5s;
  object-fit: contain;
}

.product-list .product-info {
  height: 140px;
  background: #fff;
  padding-top: 20px;
}

.product-list .product-info-title {
  font-size: 18px;
}

.product-list .product-info-meta {
  color: #666;
  font-size: 14px;
}

.product-list .product-info-jishu {
  height: 0;
  overflow: hidden;
}

.product-list .product-info .tag-cloud {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.product-list .product-info .tag-cloud .tag {
  background-color: #5F8BF0;
  color: #ffffff;
  border-radius: 10px;
}

.product-list .product-info .tag-cloud .tag:hover {
  background-color: #fff;
  color: #666;
}

.product-list .product:nth-child(4n) {
  margin-right: 0;
}

.product-list .product:hover .product-thumb img {
  transform: scale(1.1);
}

.product-banner {
  width: 100%;
  height: 500px;
  background-position: center;
  background-size: auto 100%;
  background-color: #ccc;
  color: #fff;
}

.product-banner h2 {
  font-size: 50px;
}

.product-banner p {
  font-size: 20px;
  max-width: 400px;
}

.product-cat {
  display: flex;
  height: 50px;
  margin-top: 50px;
  line-height: 50px;
  color: #333;
}

.product-cat a:hover {
  color: #333;
}

.product-catn {
  display: flex;
  gap: 30px;
}

.product-catn .line {
  height: 100%;
  width: 10px;
  background-color: #99B7F8;
}

.product-catname {
  font-size: 18px;
  transition: all 0.3s;
  -webkit-user-select: none;
  user-select: none;
}

.product-catname:hover {
  transform: scale(1.2);
}

.product-catn .activecat {
  font-size: 36px;
  font-weight: bold;
}

.product-catn .activecat:hover {
  transform: scale(1);
}

.product-header {
  background: #fff;
  padding: 40px;
  display: flex;
  gap: 40px;
  border-radius: 40px 40px 0 0;
}

.product-header .product-img {
  height: 300px;
  width: 500px;
  border: 1px solid #666;
  overflow: hidden;
  border-radius: 20px;
}

.product-header .product-img img {
  object-fit: contain;
  transition: all 0.5s;
}

.product-header .product-img img:hover {
  transform: scale(1.1);
}

.product-header .product-info {
  display: flex;
  flex-direction: column;
  justify-content: start;
  position: relative;
  flex: 1;
}

.product-header .product-info .product-title {
  font-size: 42px;
  font-weight: bold;
}

.product-header .product-info .product-catname {
  font-size: 18px;
  color: #666;
}

.product-header .product-info .qrcode {
  border: 1px solid #000;
  padding: 10px;
  width: 150px;
  text-align: center;
  margin-top: 10px;
  transition: all 0.3s;
  position: absolute;
  bottom: 0;
}

.product-header .product-info .qrcode:hover {
  cursor: pointer;
  background-color: #000;
  color: #fff;
  font-weight: bold;
}

.product-header .product-info .tag-cloud {
  display: flex;
  gap: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.product-jieshao {
  padding: 40px;
  background-color: white;
  border-radius: 0 0 40px 40px;
}

.product-jieshao .content {
  margin-top: 20px;
  font-size: 20px;
}

.product-jieshao .content table {
  width: 100%;
}

.product-jieshao .content table td {
  border: 1px solid #000;
}

.product-jieshao .content img {
  width: 80%;
}

.product-jieshao .content li {
  list-style-type: disc;
}

.product-recommend {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px;
  background-color: #fff;
  border-radius: 40px;
}

.product-recommend .list {
  display: flex;
  margin-top: 20px;
}

.product-recommend .list .product {
  background-color: #fff;
  border: 1px solid #99B7F8;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  height: calc($imageHeight + $infoHeight);
  width: 21%;
  margin-right: 5%;
}

.product-recommend .list .product-thumb {
  width: 90%;
  height: 200px;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 20px;
}

.product-recommend .list .product-thumb img {
  transition: all 0.5s;
  object-fit: contain;
}

.product-recommend .list .product-info {
  height: 140px;
  background: #fff;
  padding: 20px;
}

.product-recommend .list .product-info-title {
  font-size: 18px;
}

.product-recommend .list .product-info-meta {
  color: #666;
  font-size: 14px;
}

.product-recommend .list .product-info-jishu {
  height: 0;
  overflow: hidden;
}

.product-recommend .list .product-info .tag-cloud {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.product-recommend .list .product-info .tag-cloud .tag {
  background-color: #5F8BF0;
  color: #ffffff;
  border-radius: 10px;
}

.product-recommend .list .product-info .tag-cloud .tag:hover {
  background-color: #fff;
  color: #666;
}

.product-recommend .list .product:nth-child(4n) {
  margin-right: 0;
}

.product-recommend .list .product:hover .product-thumb img {
  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .product-cat {
    height: unset;
    width: 100%;
  }
  .product-cat .product-catn {
    display: flex;
    flex-direction: column;
  }
  .product-banner {
    height: 200px;
    padding: 20px;
    overflow: hidden;
  }
  .product-banner div {
    width: 100%;
  }
  .product-banner h2 {
    font-size: 30px;
  }
  .product-banner p {
    font-size: 16px;
  }
  .product-list {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .product-list .product {
    width: 80%;
  }
}
