/* 客户展示区域样式 */
.client-carousel {
  position: relative;
  padding: 10px 0;
  margin-bottom: 20px;
}

.client-box {
  background: #fff;
  width:120px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-box img {
  max-height: 100%;
  filter: grayscale(100%);
}

.client-box:hover img {
  filter: grayscale(0%);
}

.client-controls {
  margin-top: 10px;
  text-align: center;
}

.client-prev,
.client-next {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  /* 移除过渡效果 */
  /* transition: all 0.3s ease; */
}

.client-prev:hover,
.client-next:hover {
  background: #e60012;
  color: #fff;
  border-color: #e60012;
}

/* 新闻资讯部分样式 */
.news {
  padding: 50px 0;
  background: #f9f9f9;
}

.news-container {
  margin-top: 30px;
}

.news-box {
  background: #fff;
  padding: 20px;
  min-height:235px;
  /* 移除过渡效果 */
  /* transition: all 0.3s ease; */
}



.news-box h3 {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 18px;
  color: #333;
}

.news-box h3 small a {
  color: #666;
  margin-left: 5px;
  font-size: 12px;
  transition: all 0.3s ease;
}

.news-box h3 small a:hover,
.news-box h3 small a.active-tab {
  color: #e60012;
}

.news-list {
  margin-bottom: 15px;
}

.news-list li {
  padding: 8px 0;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list li a {
  display: flex;
  justify-content: space-between;
  color: #666;
  transition: all 0.3s ease;
}

.news-list li a:hover {
  color: #e60012;
  text-decoration: none;
}

.news-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 75%;
}

.news-date {
  color: #999;
}

.news-more {
  text-align: right;
}

.news-more a {
  color: #e60012;
  font-size: 14px;
  transition: all 0.3s ease;
}

.news-more a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.news-more a i {
  margin-left: 5px;
  font-size: 12px;
}