/* ==================================================
   Services Page - 严格还原旧版 html_szzx_front 我们的服务页面
   ================================================== */

/* 旧版页面整体为白底黑字，覆盖新站默认暗色主题 */
body {
  background-color: #FFFFFF;
  color: #333333;
}

/* 旧版使用 Bootstrap 容器宽度，覆盖新站默认 max-width */
main .container {
  max-width: 1170px;
  width: 100%;
}

/* Bootstrap 风格栅格（旧版使用 Bootstrap） */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.row::before,
.row::after {
  content: "";
  display: table;
}

.row::after {
  clear: both;
}

.col-xs-12,
.col-sm-4,
.col-sm-8 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-12 {
  width: 100%;
}

@media (min-width: 768px) {
  .col-sm-4 { width: 33.33333333%; }
  .col-sm-8 { width: 66.66666667%; }
}

/* Hero Banner */
.service-hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
}

/* Service Sections */
.service-section {
  overflow: hidden;
  padding: 60px 0;
  background-color: #FFFFFF;
}

.service-section.service-gray {
  background-color: #EEEEEE;
}

.service {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 250px;
}

.service-img {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-img img {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
}

.service-content {
  color: #333333;
}

.service-title {
  text-align: center;
  padding-bottom: 30px;
  padding-top: 5px;
}

.service-title span {
  font-family: 思源黑体, "Source Han Sans", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-weight: bold;
  font-size: 30px !important;
  color: #333333;
}

.service-content p {
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}

.service-more {
  width: 110px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border: 1px solid #CCCCCC;
  float: right;
  margin-top: 30px;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.service-more:hover {
  border: 1px solid #68B726;
  color: #68B726;
}

.service-more-icon {
  display: inline-block;
  float: right;
  margin-right: 7px;
  line-height: 32px;
  font-style: normal;
  font-size: 16px;
}

/* Modal */
.focus-layer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
  display: none;
  overflow: auto;
  overflow-y: scroll;
  background-color: rgba(0, 0, 0, 0.3);
}

.focus-layer.active {
  display: block;
}

.focus-layer-two {
  background: #FFFFFF;
  width: 770px;
  margin: 30px auto;
}

.focus-layer-two > div {
  width: 770px;
}

.focus-layer-item {
  height: 60px;
  border-bottom: 1px solid #EEEEEE;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.focus-layer-title {
  width: 120px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #68B726;
}

.focus-layer-title h4 {
  height: 30px;
  line-height: 30px;
  margin: 0;
  font-size: 16px;
  color: #333333;
  font-weight: normal;
}

.focus-layer .close {
  order: 2;
  font-size: 30px;
  line-height: 1;
  color: #333333;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 4px;
}

.focus-layer-item::after {
  content: "";
  display: table;
  clear: both;
}

.focus-layer img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .focus-layer-two,
  .focus-layer-two > div {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .service-hero-banner {
    height: 400px !important;
  }

  .service-section {
    padding: 40px 0;
  }

  .service-img,
  .service-content {
    width: 100%;
  }

  .service-img {
    margin-bottom: 24px;
  }

  .service-content {
    order: 2;
  }

  .service-img {
    order: 1;
  }

  .service-title span {
    font-size: 24px !important;
  }

  .service-more {
    float: none;
    margin: 24px auto 0;
  }
}
