/* Base layout */
.page {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.service-container {
  width: 100%;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-content {
  width: 100%;
  max-width: 1920px;
  padding: 80px 5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subtitle-image-group {
  display: flex;
  width: 100%;
  max-width: 1600px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.service-subtitle {
  color: #3d9d3d;
  font-size: clamp(24px, 2.5vw, 32px);
  font-family: MicrosoftYaHei-Bold;
  font-weight: 700;
  flex: 1;
}

.description-image-container {
  flex: 2;
  display: flex;
  justify-content: flex-end;
}

.description-image {
  width: 100%;
  max-width: 925px;
  height: auto;
  object-fit: contain;
}

/* Description Section */
.description-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto 100px auto;
  align-items: center;
  box-sizing: border-box;
}

.description-content-wrapper {
  width: 100%;
  border: 1px solid #ccc;
  padding: 120px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.description-text {
  width: 100%;
  color: #464545;
  font-size: 24px;
  font-family: MicrosoftYaHei-Bold;
  line-height: 1.8;
}

.description-bottom-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Website Link Box */
.website-box {
  width: 100%;
  position: relative;
  height: 229px;
  background: #EAEAEA;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}

.website-link {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  padding: 0 5%;
  width: 100%;
  max-width: 1600px;
  justify-content: flex-start;
}

.website-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.website-url {
  color: #868686;
  font-size: clamp(18px, 2vw, 24px);
  font-family: MicrosoftYaHei;
}

/* More Business Section */
.more-business-section {
  width: 100%;
  padding: 80px 5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.more-business-title {
  color: #0c0c0e;
  font-size: clamp(28px, 3vw, 40px);
  font-family: MicrosoftYaHei;
  text-align: center;
  margin-bottom: 60px;
}

.business-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  max-width: 1600px;
}

.business-card {
  width: calc(50% - 15px);
  height: 455px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  text-decoration: none;
}

.business-card-content {
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  background: url(./img/b6dc7c8e48c2a2ac3b92aed3049b2d45.png) center center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.business-card-title {
  color: #FFFFFF;
  font-size: clamp(18px, 2vw, 21px);
  display: block;
  margin-bottom: 5px;
  font-family: MicrosoftYaHei;
}

.business-card-desc {
  color: #FFFFFF;
  font-size: clamp(14px, 1.2vw, 16px);
  display: block;
  font-family: MicrosoftYaHei;
}

.business-card-icon {
  width: 37px;
  height: 37px;
}

/* 移动端及平板适配 */
@media (max-width: 768px) {
  .service-content {
    padding: 40px 5%;
  }

  .service-divider {
    margin-bottom: 30px;
  }

  .subtitle-image-group {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
  }

  .service-subtitle {
    text-align: center;
  }

  .description-image-container {
    justify-content: center;
  }

  .description-section {
    margin-bottom: 50px;
  }

  .description-content-wrapper {
    padding: 20px;
    gap: 20px;
  }

  .description-text {
    font-size: 16px;
    text-align: justify;
  }

  .website-box {
    height: 150px;
    margin-bottom: 50px;
  }

  .more-business-section {
    padding: 40px 5%;
  }

  .more-business-title {
    margin-bottom: 30px;
  }

  .business-card {
    width: 100%;
    height: 300px;
  }

  .business-card-content {
    padding: 20px;
  }
}
