/* 产品内页 */
.pro-box {
  background-color: #f4f6f9;
  margin: 0;
}

.pro-wrapper {
  display: flex;
  gap: 30px;
  padding: 30px 0;
}

.pro-left {
  width: calc(100% - 470px);
}

.pro-right {
  width: 440px;
  background-color: #ffffff;
  padding: 18px 16px;
  border-radius: 12px;
}

.pro-image {
  margin-bottom: 12px;
}

.pro-image img {
  width: 100%;
  border-radius: 15px;
}

.pro-title {
  color: #111111;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pro-content {
  max-height: 820px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.rela-pro-ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 820px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.pro-content::-webkit-scrollbar,
.rela-pro-ul::-webkit-scrollbar {
  display: none;
}

.rela-pro-card a {
  display: flex;
  gap: 15px;
  font-size: 13px;
}

.pro-card-img {
  width: 210px;
  height: 120px;
}

.pro-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.pro-card-cont {
  flex: 1;
  max-width: calc(100% - 225px);
}

.pro-card-cont h2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.pro-card-cont h2:hover {
  color: #5e5e5e;
}

.pro-card-cate,
.pro-card-time {
  width: 100%;
  display: flex;
  align-items: center;
}

.pro-card-cate span,
.pro-card-time span {
  max-width: calc(100% - 19px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pro-card-cate i {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(/static/image/vc-sprite.png);
  background-size: 300px;
  background-position: -11px -72px;
  margin-right: 5px;
}

.pro-card-time i {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(/static/image/vc-sprite.png);
  background-size: 300px;
  background-position: -32px -72px;
  margin-right: 5px;
}