/* 案例中心 */
.body-container {
  background-color: #f7f7f7;
  padding-bottom: 10px;
}
.bg-white {
  background-color: #fff;
}
.examples-menu a {
  width: 140px;
  display: inline-block;
  color: #4c4c4c;
  line-height: 70px;
  text-align: center;
}
.examples-menu a.active {
  color: #0b64e9;
  position: relative;
}
.examples-menu a.active:after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #4f89d0;
}
.examples-list {
  margin-top: 40px;
  min-height: 400px;
}
.examples-box {
  height: 270px;
  margin-bottom: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(190, 190, 190, 0.15);
}
.examples-box:hover .examples-box-info-title > a {
  /* color: #0b64e9; */
}
.examples-box:hover .examples-box-img img {
  transform: translate(-50%, -50%) scale(1.1);
}
.examples-box-img {
  flex: 0 0 400px;
  background-color: #4c4c4c;
  position: relative;
  overflow: hidden;
}
.examples-box-img img {
  transition: transform 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 真正居中 */
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.examples-box-info {
  margin-left: 10px;
  flex: 1;
  padding: 0 40px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.examples-box-info-title {
  color: #000000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-height: 26px;
}
.examples-box-info-title > a {
  color: #000;
  transition: all 0.3s;
}
.examples-box-info p {
  color: #808080;
  line-height: 26px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 25px;
  margin-bottom: 25px;
}
.examples-box-info > a {
  display: inline-block;
  width: 125px;
  height: 42px;
  border: 1px solid #e6e6e6;
  color: #808080;
  text-align: center;
  line-height: 38px;
}
.examples-box-info > a:hover {
  background-color: #316bc1;
  color: #fff;
}
.pagination-box {
  margin-bottom: 70px;
  text-align: center;
  font-size: 0;
}
.pagination-box > a {
  font-size: 14px;
  display: inline-block;
  background-color: #fff;
  padding: 10px 15px;
  color: #5b5b5b;
  border: 1px solid #eee;
}
.pagination-box > a:not(:first-child) {
  margin-left: -1px;
}
.pagination-box > a:not(.disabled):hover {
  background-color: #316bc1;
  color: #fff;
}
.pagination-box > a.disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
