/* .news-list {
} */

.news-list .container {
  padding: 0;
}

.news-list .news-item {
  /* background: #fff; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2em;
  min-height: 12em;
  background: #fff;
  /* border: 1px solid #C0CFDF; */
  /* 添加过渡效果 */
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: .25em;
}

.news-list img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 1;
}

.news-list .news-text {
  display: flex;
  width: 100%;
  height: 100%;
  right: -1px;
  position: relative;
}

.news-list .news-date {
  position: relative;
  background-color: #809DBD;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 0.75em 1em;
  /* margin-right: 1em; */
  line-height: 1.4;
  font-size: 0.75em;
}

.news-list .news-date span {
  display: block;
}

.news-list .news-date i {
  background: #ffffffdc;
  width: 100%;
  font-size: 2em;
  color: #849dbb80;
  height: 65%;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 991.98px) {
  .news-list .news-title {
    padding: 1em 1em 1em 0 !important;
  }
}

.news-list .news-title {
  flex: 1;
  display: grid;
  padding: 1em;
  color: #000
}

.news-list .news-title h6 {}

.news-list .news-title p {
  /*首行缩进*/
  text-indent: 2em;
  padding-top: 0.5em;
  opacity: 75%;
  display: -webkit-box;
  /* 📌 必须，指定 flexbox 的一种展示方式 */
  -webkit-box-orient: vertical;
  /* 垂直排列子元素 */
  -webkit-line-clamp: 5;
  /* 📌 限制显示 5 行 */
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
  /* 文字溢出显示省略号 */
  word-break: break-all;
  /* 单词换行规则（可选） */
}

.news-list .news-item:hover {
  transform: translateY(-5px);
  /* 鼠标悬停时向上移动 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* 鼠标悬停时加深阴影 */
}

.news-list .news-item:hover .news-title {
  color: #007bff;
}

.news-list .news-item:hover .news-date {
  background-color: #007bff;
}

.news-list .news-item:hover .news-date i {
  color: #007bff;
}

/* Pagination分页导航样式 */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination .page-link {
  padding: .75em 1.25em;
  margin: 0em 1em;
  border: none;
  border-top-left-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
  border-top-right-radius: 0.25em !important;
  border-bottom-right-radius: 0.25em !important;
  line-height: 1;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* .pagination .page-item .page-link {
} */

/* .pagination .page-item:first-child .page-link {
} */

.pagination .page-link:hover {
  background-color: #007bff;
  border-color: #007bff80;
  color: #fff;
}

.pagination .page-item.active .page-link {
  background-color: #006cdf;
  border-color: #007bff80;
  color: #fff;
}

.pagination .page-item.disabled .page-link {
  color: #00000040;
  background-color: #ffffff;
}

.be-flip-horizontal {
  transform: scaleX(-1);
  transform-origin: center;
  display: inline-block
}

/* category-product 产品中心 样式 */
.product-detail {
  /* padding: 2em 0; */
}

.product-detail .description {
  margin: 0em 10% 5em 10%;
  display: block;
  font-weight: 300;
  text-indent: 2em;
}

/* product-item 产品项样式 */
.product-item {
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  margin-bottom: 2em;
  min-height: 12em;
  background: #0076dd08;
  /* 添加过渡效果 */
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 0.25em;
}

/* 产品项链接样式 */
.product-item a {
  text-decoration: none;
  color: inherit;
  text-align: center;
  border-radius: 0.25em;
}

.product-item img {
  position: inherit;
  z-index: 10;
  height: 5em;
  /* width: 6.9375em; */
  margin: 2.5em auto;
}

.product-item .product-info {
  /* display: flex;
  width: 100%;
  height: 100%;
  right: -1px; */
  position: relative;
  padding: 1.5em;
  background: #0076dd16;
}

.product-item .product-info h6 {
  /* margin-bottom: 0.5em; */
  font-size: 1.25em;
  line-height: 1.5;
}

/* .product-item .product-info h6 a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-item .product-info h6 a:hover {
  color: #007bff;
} */

.product-item .product-info p {
  /*首行缩进*/
  text-indent: 2em;
  padding-top: 0.5em;
  opacity: 65%;
  line-height: 1.5;
  display: -webkit-box;
  /* 📌 必须，指定 flexbox 的一种展示方式 */
  -webkit-box-orient: vertical;
  /* 垂直排列子元素 */
  -webkit-line-clamp: 5;
  /* 📌 限制显示 5 行 */
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
  /* 文字溢出显示省略号 */
  word-break: break-all;
  /* 单词换行规则（可选） */
  margin-bottom: 0;
}

/* 鼠标悬停效果 */
.product-item:hover {
  transform: scale(1.05);
  /* 鼠标悬停时向上移动 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* 鼠标悬停时加深阴影 */
  background: linear-gradient(180deg, rgba(0, 117, 221, 1) 0%, rgb(0, 117, 221, 0.4) 100%) !important;
  /* color: #fff !important; */
}

.product-item:hover p {
  color: #fff !important;
}

.product-item:hover h6 {
  color: #fff !important;
}

.product-item:hover img {
  filter: brightness(0) invert(1);
}

/* 产品图片样式 */
/* .product-item .product-image {
  overflow: hidden;
} */

/* 按钮样式 */
/* .product-item .btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.product-item:hover .btn {
  background-color: #0056b3;
} */

/* 公司信息样式 */
.company-info {
  background-color: #0076dd10;
  padding: 3em 0;
}

.company-info .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-info .container .row {
  display: flex;
  justify-content: center;
}

.company-info img {
  max-width: 100%;
  height: auto;
}

.company-info p {
  /* font-size: 1.2em; */
  margin: 0.5em 0;
}

.company-info h6 {
  font-size: 0.875em;
  line-height: 2.5;
}

.company-info h2 {
  line-height: 1.25;
}


/* .company-info .hotline {
    font-size: 2.5em;
    margin: 0.5em 0;
} */