/* CSS Document */

/* ---------- News ---------- */
.news {
  padding: 120px 0;
  background: #fafafa;
}

.news-tit {
  position: relative;
  height: 49px;
  border-bottom: 1px solid #eaeaea;
}
.news-tit h2 {
  float: left;
  height: 48px;
  border-bottom: 2px solid #0998e0;
  font-family: "Montserrat-Regular";
  font-size: 24px;
  color: #333;
}
.news-tit h3 {
  float: left;
  padding: 10px 0 0 16px;
  font-family: "Montserrat-Regular";
  font-size: 18px;
  font-weight: normal;
  color: #999;
  text-transform: uppercase;
}
.news-tit a.more-btn {
  position: absolute;
  top: 11px;
  right: 0;
  padding-right: 16px;
  background: url("../images/more-arrow.png") no-repeat right center;
  font-size: 14px;
  color: #bbb;
}
.news-tit a:hover.more-btn {
  color: #888;
}

.news-con {
  padding-top: 50px;
  overflow: hidden;
}

.news-pic {
  float: left;
  position: relative;
  width: 48.5%;
  height: 360px;
  overflow: hidden;
}
.news-pic img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.news-pic a:hover img {
  transform: scale(1.05);
}
.news-pic .mask {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
  padding: 32px 40px;
  color: #fff;
}
.news-pic .date {
  float: left;
  font-family: "Montserrat-Regular";
}
.news-pic .day {
  display: block;
  font-size: 17px;
}
.news-pic .year {
  display: block;
  padding-top: 4px;
  font-size: 14px;
}
.news-pic .con {
  float: right;
  position: relative;
  padding-left: 24px;
  width: calc(100% - 88px);
  box-sizing: border-box;
}
.news-pic .con:before {
  position: absolute;
  top: 4px;
  left: 0;
  bottom: 3px;
  width: 1px;
  background: rgba(255,255,255,0.4);
  content: "";
}
.news-pic .con h4 {
  font-size: 18px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-pic .con p {
  padding-top: 12px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list {
  float: right;
  width: 48.5%;
}
.news-list li {
  margin-bottom: 15px;
  padding: 27px 40px;
  height: 56px;
  background: #fff;
  overflow: hidden;
}
.news-list li:last-child {
  margin-bottom: 0;
}
.news-list li .date {
  float: left;
  font-family: "Montserrat-Regular";
}
.news-list li .day {
  display: block;
  font-size: 22px;
  color: #333;
}
.news-list li .year {
  display: block;
  padding-top: 4px;
  font-size: 14px;
  color: #999;
}
.news-list li .con {
  float: right;
  position: relative;
  padding-left: 24px;
  width: calc(100% - 88px);
  box-sizing: border-box;
}
.news-list li .con:before {
  position: absolute;
  top: 4px;
  left: 0;
  bottom: 3px;
  width: 1px;
  background: #eaeaea;
  content: "";
}
.news-list li .con h4 {
  font-size: 18px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list li .con p {
  padding-top: 12px;
  font-size: 14px;
  color: #999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .news {
    padding: 60px 0;
  }

  .news-tit {
    height: 39px;
  }
  .news-tit h2 {
    height: 38px;
    font-size: 20px;
  }
  .news-tit h3 {
    padding: 8px 0 0 8px;
    font-size: 14px;
  }
  .news-tit a.more-btn {
    top: 7px;
    right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .news-con {
    padding-top: 32px;
  }

  .news-pic {
    float: none;
    margin-bottom: 20px;
    width: auto;
    height: auto;
  }
  .news-pic .mask {
    padding: 16px 20px;
  }
  .news-pic .date {
    padding-top: 2px;
  }
  .news-pic .day {
    font-size: 18px;
  }
  .news-pic .year {
    padding-top: 2px;
  }
  .news-pic .con {
    padding-left: 16px;
    width: calc(100% - 100px);
  }
  .news-pic .con h4 {
    font-size: 16px;
  }
  .news-pic .con p {
    padding-top: 8px;
  }

  .news-list {
    float: none;
    width: auto;
  }
  .news-list li {
    margin-bottom: 10px;
    padding: 16px 20px;
    height: auto;
  }
  .news-list li .date {
    padding-top: 2px;
  }
  .news-list li .day {
    font-size: 18px;
  }
  .news-list li .year {
    padding-top: 2px;
  }
  .news-list li .con {
    padding-left: 16px;
    width: calc(100% - 88px);
  }
  .news-list li .con h4 {
    font-size: 16px;
  }
  .news-list li .con p {
    padding-top: 8px;
  }
}

/* ---------- Industry ---------- */
.industry {
  padding: 120px 0;
  background: url("../images/industry-bg.jpg") no-repeat center top;
  background-size: cover;
}

.industry-tit {
  position: relative;
  height: 49px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.industry-tit h2 {
  float: left;
  height: 48px;
  border-bottom: 2px solid #ff6326;
  font-family: "Montserrat-Regular";
  font-size: 24px;
  color: #fff;
}
.industry-tit h3 {
  float: left;
  padding: 10px 0 0 16px;
  font-family: "Montserrat-Regular";
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  text-transform: uppercase;
}
.industry-tit a.more-btn {
  position: absolute;
  top: 11px;
  right: 0;
  padding-right: 16px;
  background: url("../images/more-arrow.png") no-repeat right center;
  font-size: 14px;
  color: #bbb;
}
.industry-tit a:hover.more-btn {
  color: #fff;
}

.industry-con {
  padding-top: 50px;
  overflow: hidden;
}
.industry-con ul {
  width: calc(100% + 30px);
}
.industry-con li {
  float: left;
  position: relative;
  margin: 0 30px 0 0;
  width: calc(100% / 4 - 30px);
}
.industry-con li .pic {
  overflow: hidden;
}
.industry-con li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.industry-con li .con {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
  color: #fff;
}
.industry-con li .con h4 {
  font-size: 18px;
  font-weight: normal;
}
.industry-con li .con p {
  position: relative;
  padding: 4px 0 20px;
  font-family: "Arial";
  font-size: 14px;
}
.industry-con li .con p:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 16px;
  height: 2px;
  background: #fff;
  content: "";
}
.industry-con li a:hover .pic img {
  transform: scale(1.05);
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .industry {
    padding: 60px 0;
  }

  .industry-tit {
    height: 39px;
  }
  .industry-tit h2 {
    height: 38px;
    font-size: 20px;
  }
  .industry-tit h3 {
    padding: 8px 0 0 8px;
    font-size: 14px;
  }
  .industry-tit a.more-btn {
    top: 7px;
    right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .industry-con {
    padding-top: 32px;
    overflow-x: auto;
  }
  .industry-con ul {
    width: 800px;
  }
  .industry-con li {
    margin: 0 16px 0 0;
    width: 184px;
  }
  .industry-con li .con {
    padding: 16px;
  }
  .industry-con li .con h4 {
    font-size: 16px;
  }
  .industry-con li .con p {
    padding: 4px 0 16px;
    font-size: 12px;
  }
}

/* ---------- Social ---------- */
.social {
  padding: 120px 0;
}

.social-tit {
  position: relative;
  height: 49px;
  border-bottom: 1px solid #eaeaea;
}
.social-tit h2 {
  float: left;
  height: 48px;
  border-bottom: 2px solid #0998e0;
  font-family: "Montserrat-Regular";
  font-size: 24px;
  color: #333;
}
.social-tit h3 {
  float: left;
  padding: 10px 0 0 16px;
  font-family: "Montserrat-Regular";
  font-size: 18px;
  font-weight: normal;
  color: #999;
  text-transform: uppercase;
}
.social-tit a.more-btn {
  position: absolute;
  top: 11px;
  right: 0;
  padding-right: 16px;
  background: url("../images/more-arrow.png") no-repeat right center;
  font-size: 14px;
  color: #bbb;
}
.social-tit a:hover.more-btn {
  color: #888;
}

.social-con {
  padding-top: 50px;
  overflow: hidden;
}
.social-con ul {
  width: calc(100% + 60px);
}
.social-con li {
  float: left;
  margin: 0 60px 0 0;
  width: calc(100% / 3 - 60px);
}
.social-con li .pic {
  width: 100%;
  overflow: hidden;
}
.social-con li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.social-con li .con {
  padding: 24px 0 20px;
  border-bottom: 1px solid #efefef;
}
.social-con li .date {
  font-family: "Arial";
  font-size: 14px;
  color: #999;
}
.social-con li .con h4 {
  padding-top: 16px;
  font-size: 16px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.social-con li .btm {
  padding-top: 16px;
}
.social-con li .more-btn {
  padding-right: 32px;
  background: url("../images/social-more-arrow.png") no-repeat right center;
  font-size: 12px;
  color: #ccc;
  transition: all 0.3s ease-in-out;
}
.social-con li a:hover .pic img {
  transform: scale(1.05);
}
.social-con li a:hover .more-btn {
  padding-right: 48px;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .social {
    padding: 60px 0 40px;
  }

  .social-tit {
    height: 39px;
  }
  .social-tit h2 {
    height: 38px;
    font-size: 20px;
  }
  .social-tit h3 {
    padding: 8px 0 0 8px;
    font-size: 14px;
  }
  .social-tit a.more-btn {
    top: 7px;
    right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .social-con {
    padding-top: 32px;
  }
  .social-con ul {
    width: auto;
  }
  .social-con li {
    float: none;
    margin: 0 0 20px 0;
    width: auto;
  }
  .social-con li .con {
    padding: 20px 0 16px;
  }
  .social-con li .con h4 {
    padding-top: 8px;
  }
  .social-con li .btm {
    padding-top: 12px;
  }
}

/* ---------- About ---------- */
.about {
  padding: 120px 0;
  background: url("../images/about-bg.jpg") no-repeat center top;
  background-size: cover;
}

.about-tit {
  position: relative;
  height: 49px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.about-tit h2 {
  float: left;
  height: 48px;
  border-bottom: 2px solid #ff6326;
  font-family: "Montserrat-Regular";
  font-size: 24px;
  color: #fff;
}
.about-tit h3 {
  float: left;
  padding: 10px 0 0 16px;
  font-family: "Montserrat-Regular";
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  text-transform: uppercase;
}
.about-tit a.more-btn {
  position: absolute;
  top: 11px;
  right: 0;
  padding-right: 16px;
  background: url("../images/more-arrow.png") no-repeat right center;
  font-size: 14px;
  color: #bbb;
}
.about-tit a:hover.more-btn {
  color: #fff;
}

.about-con {
  padding-top: 60px;
  overflow: hidden;
}
.about-intro {
  float: left;
  width: 64%;color: #fff;

}
.about-desc {
  font-size: 15px;
  line-height: 240%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.about-count {
  padding-top: 100px;
  overflow: hidden;
}
.about-count li {
  float: left;
  position: relative;
  width: 33.33%;
  box-sizing: border-box;
}
.about-count li:before {
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 2px;
  width: 1px;
  background: rgba(255,255,255,0.4);
  content: "";
}
.about-count li .num {
  position: relative;
  padding-left: 40px;
  font-family: "Montserrat-Regular";
  font-size: 48px;
  z-index: 1;
}
.about-count li .num:before {
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: #fff;
  content: "";
}
.about-count li .num sup {
  position: relative;
  top: -2px;
  left: 12px;
  font-size: 15px;
}
.about-count li h4 {
  padding-left: 40px;
  font-size: 15px;
}

.about-pic {
  float: right;
  position: relative;
  padding-left: 8px;
}
.about-pic img {
  width: 100%;
}
.about-pic:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 8px;
  height: 160px;
  background: #ff9326;
  content: "";
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .about {
    padding: 60px 0;
  }

  .about-tit {
    height: 39px;
  }
  .about-tit h2 {
    height: 38px;
    font-size: 20px;
  }
  .about-tit h3 {
    padding: 8px 0 0 8px;
    font-size: 14px;
  }
  .about-tit a.more-btn {
    top: 7px;
    right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .about-con {
    padding-top: 40px;
  }
  .about-intro {
    float: none;
    width: auto;
  }

  .about-count {
    padding-top: 60px;
  }
  .about-count li:before {
    top: 6px;
    bottom: 2px;
  }
  .about-count li .num {
    padding-left: 16px;
    font-size: 24px;
  }
  .about-count li .num:before {
    top: 6px;
    bottom: 6px;
  }
  .about-count li .num sup {
    top: 4px;
    left: 6px;
    font-size: 14px;
  }
  .about-count li h4 {
    padding-left: 16px;
    font-size: 14px;
  }

  .about-pic {
    display: none;
  }
}