/* about us page css */
.section {
  position: relative;
  padding: 35px 0 75px 0;
}

.section:nth-of-type(even) {
  background: rgba(0, 0, 0, 0.01);
}

/* section title style */
.title {
  position: relative;
  padding: 30px 0;
  margin: 0;
  width: 100%;
  /*font-size: 48px;*/
  line-height: 60px;
  color: #f1592a;
  text-align: center;
}

.title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  height: 4px;
  width: 100px;
  background: #ddd;
  transform: translateX(-50%);
}

.subTitle {
  font-size: 18px;
  line-height: 30px;
  color: #747474;
  text-align: center;
}

.main .aboutus .title {
  text-align: center;
}

.main .aboutus .title::after {
  left: 50%;
  transform: translateX(-50%);
}

.main .aboutus .row {
  padding: 40px 0 20px 0;
}

.main .aboutus .text {
  font-size: 18px;
  color: #747474;
  line-height: 30px;
  text-align: justify;
}

.swiper-slide {
  padding: 30px 40px 20px 40px !important;
}


/* 媒体查询 */
/* 小屏幕（平板，大于等于 768px） */
@media (min-width: 768px) {
  .main .aboutus .title {
    text-align: left;
  }

  .main .aboutus .title::after {
    left: 0;
    transform: translateX(0);
  }
}

/* 中等屏幕（桌面显示器，大于等于 992px） */
@media (min-width: 992px) {}

/* 大屏幕（大桌面显示器，大于等于 1200px） */
@media (min-width: 1200px) {}