@charset "UTF-8";

/* ---------- Base ---------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Han Sans CN", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background-color: #ffffff;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Layout ---------- */
.info-detail {
  width: 100%;
  max-width: 1400px;
  min-height: 725px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}

.info-detail__wrap {
  padding: 28px 0 24px;
}

.info-card {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #e3edf7;
  border-radius: 4px;
  padding: 0 24px 24px;
  -webkit-transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  min-height: 600px;
}

.info-card:hover {
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.info-header {
  width: 100%;
  border-bottom: 1px solid #e3edf7;
  padding: 24px 0;
  text-align: center;
  margin-bottom: 20px;
}

.info-title {
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  font-family: "Source Han Sans CN", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.165px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.info-title:hover {
  color: #0f8b44;
}

.info-underline {
  display: inline-block;
  width: 62px;
  height: 5px;
  border-radius: 2.5px;
  background-color: #0f8b44;
  background-image: -webkit-linear-gradient(left, #0f8b44, #83c237);
  background-image: -o-linear-gradient(left, #0f8b44, #83c237);
  background-image: -webkit-gradient(linear, left top, right top, from(#0f8b44), to(#83c237));
  background-image: linear-gradient(to right, #0f8b44, #83c237);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0f8b44', endColorstr='#83c237', GradientType=1)";
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
}

.info-card:hover .info-underline {
  -webkit-transform: scaleX(1.15);
  -ms-transform: scaleX(1.15);
  transform: scaleX(1.15);
}

/* ---------- Body ---------- */
.info-body {
  width: 100%;
}

.info-paragraph {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Source Han Serif CN", "Noto Serif SC", "Songti SC", "SimSun", serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
}

/* ---------- Responsive ---------- */
@media (max-width: 1279px) {
  .info-card {
    max-width: 960px;
  }
}

@media (max-width: 1023px) {
  .info-card {
    max-width: 720px;
    padding: 0 20px 20px;
  }

  .info-title {
    font-size: 28px;
  }

  .info-paragraph {
    font-size: 17px;
    line-height: 1.9;
  }
}

@media (max-width: 767px) {
  .info-detail__wrap {
    padding: 20px 0;
  }

  .info-card {
    max-width: 100%;
    width: auto;
    margin: 0 16px;
    padding: 0 16px 16px;
  }

  .info-header {
    padding: 20px 0;
    margin-bottom: 16px;
  }

  .info-title {
    font-size: 24px;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  .info-underline {
    width: 48px;
    height: 4px;
  }

  .info-paragraph {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }
}
