/* 轮播图部分 */
.in-banner {
  position: relative;
  height: 500px; /* 根据实际需求调整 */
}

/* Swiper 左右按钮样式 */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 30px;
  background: rgba(128, 128, 128, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

/* 左按钮位置 */
.swiper-button-prev {
  left: 20px;
}

/* 右按钮位置 */
.swiper-button-next {
  right: 20px;
}

/* 鼠标悬停效果 */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* 使用纯 CSS 绘制箭头*/
.swiper-button-prev::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 10px solid white;
  margin-left: -3px;
}

.swiper-button-next::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid white;
  margin-right: -3px;
}
/*我们的团队列表*/
/* 容器样式 */
.container {
  padding: 30px 15px;
}

.company-title {
  font-size: 28px;
  line-height: 28px;
  font-weight: bold;
  padding: 0 0 0 10px;
  margin-bottom: 70px;
  position: relative;
  text-align: left;
}
.company-title:before {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  transform: translateX(0);
  width: 4px;
  height: unset;
  content: "";
  background: #0f6ab4;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col-xs-12,
.col-sm-6,
.col-md-6,
.col-lg-3 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-12 { width: 100%; }
.col-sm-6 { width: 50%; }
.col-md-6 { width: 50%; }
.col-lg-3 { width: 33.3333%; }

.product_list {
  display: flex;
  flex-wrap: wrap;
}

.product_item {
  margin-bottom: 30px;
}

.product_content {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
}

.product_image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.product_content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.product_content p {
  color: #777;
  margin-bottom: 15px;
}

.product_content:hover .product_image {
  transform: scale(1.05)!important ;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2) !important;
}

/* .btn-primary {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 3px;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #555;
} */
