/* ========== 公司业务 - Banner ========== */
.page-banner--business {
  background: url("../images_WZ/CorporateBusiness/bg.jpg") center / cover no-repeat;
}

/* ========== 公司业务 - 布局 ========== */
.business-layout {
  width: 1200px;
  margin: 0 auto;
  padding: 20px 0 60px;
  box-sizing: border-box;
}

/* ---------- 区块标题 ---------- */
.business-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.business-section-title__line {
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}

.business-section-title__icon {
  flex-shrink: 0;
  display: block;
  width: 27px;
  height: 18px;
}

.business-section-title__text {
  flex-shrink: 0;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  line-height: 1;
}

/* ---------- 业务范畴 ---------- */
.business-scope {
  margin-bottom: 60px;
}
.business-scope__content-top{
  margin-bottom: 24px;
}

.business-scope__content-top,
.business-scope__content-bottom {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.business-scope__content .business-scope__content-item {
  width: 284px;
  height: 245px;
  background-image: url('../images_WZ/CorporateBusiness/liubianxing.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-align: center;
  padding-top: 47px;
  padding-left: 55px;
  padding-right: 55px;
}

.business-scope__content-item-title {
  font-weight: bold;
  font-size: 28px;
  color: #D3323C;
  margin-bottom: 24px;
}

.business-scope__content-item-content {
  font-size: 14px;
  color: #333333;
  line-height: 1.3;
}

/* ---------- 经典业绩 ---------- */
.business-achievements__tabs {
  display: flex;
  width: 800px;
  max-width: 100%;
  margin: 0 auto 30px;
  padding: 4px;
  border-radius: 22px;
  background: #f0f0f0;
  box-sizing: border-box;
}

.business-achievements__tab {
  height: 40px;
  width: 200px;
  padding: 0;
  border: none;
  border-radius: 18px;
  background: transparent;
  color: #333;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-sizing: border-box;
  font-size: 18px;
}

.business-achievements__tab:hover:not(.is-active) {
  color: #c21116;
}

.business-achievements__tab.is-active {
  background: #c21116;
  color: #fff;
  font-weight: bold;
}

.business-achievements__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.business-achievements__item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px dotted #e8e8e8;
  cursor: pointer;
}

.business-achievements__thumb {
  flex-shrink: 0;
  width: 240px;
  height: 144px;
  overflow: hidden;
  background: #f5f5f5;
}

.business-achievements__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-achievements__body {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.business-achievements__title {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin: 18px 0 20px;
}

.business-achievements__item:hover .business-achievements__title {
  color: #c21116;
}

.business-achievements__date {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
}

.business-achievements__desc {
  font-size: 14px;
  color: #999;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.business-achievements__page {
  margin-top: 30px;
}