.news-detail .content-text h4 a {
  font-size: 24px;
  font-weight: 400;
  color: #a96c11;
  cursor: pointer;
  margin-bottom: 0;
  text-decoration: none;
  transition: all 0.5s;
}
.news-detail .content-text h4 a:hover {
  color: #a96c11;
}
.news-detail .content-text h4 a:hover {
  color: #dc2d13;
}
@media screen and (max-width: 414px) {
  .news-detail .content-text h4 a {
    text-align: center;
  }
}
.news-detail .content-text span {
  font-size: 14px;
  font-weight: 700;
  color: rgb(99, 97, 97);
}
.news-detail .content-text span:hover {
  color: rgb(99, 97, 97);
}

.product {
  padding: 20px;
  border: 1px solid #e8bf8c;
}
.product h4 {
  font-size: 16px;
  font-weight: 700;
  color: #a96c11;
  border-bottom: 2px solid #e8bf8c;
  padding-bottom: 10px;
  text-align: center;
  margin-bottom: 40px;
}
.product h4:hover {
  color: #a96c11;
}
.product .product-item {
  margin: 10px 0;
  text-align: center;
}
.product .product-item .product-img {
  width: 100%;
  overflow: hidden;
}
.product .product-item .product-img img {
  width: 100%;
  transition: all 0.5s;
  cursor: pointer;
}
.product .product-item .product-img img:hover {
  transform: scale(1.3);
}
.product .product-item h1 {
  font-size: 16px;
  font-weight: 700;
  color: #a96c11;
  margin-top: 5px;
  cursor: pointer;
  transition: all 0.5s;
  margin-bottom: 0;
}
.product .product-item h1:hover {
  color: #a96c11;
}
.product .product-item h1:hover {
  color: #dc2d13;
}
@media screen and (max-width: 414px) {
  .product {
    display: none;
  }
}