/* CSS Document */

/* ---------- Case ---------- */
.case {
  padding: 120px 0 80px;
  background: #f8f8f8;
}

.case-tit {
  position: relative;
  height: 80px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.case-tit h2 {
  float: left;
  font-family: "Montserrat-Regular";
  font-size: 52px;
  font-weight: normal;
  text-transform: uppercase;
}
.case-tit h3 {
  float: left;
  padding: 28px 0 0 16px;
  font-size: 18px;
  font-weight: normal;
  color: #999;
}
.case-tit a.more-btn {
  position: absolute;
  top: 13px;
  right: 0;
  padding: 0 42px 0 24px;
  height: 35px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  background: url("../img/more-arrow.png") no-repeat right 0 center;
  font-size: 14px;
  color: #999;
  line-height: 35px;
}
.case-tit a:hover.more-btn {
  border: 1px solid#18bc83;
  background: url("../img/more-arrow.png") no-repeat right -100px center #18bc83;
  color: #fff;
}

.case-con {
  padding-top: 60px;
  overflow: hidden;
}
.case-con ul {
  width: calc(100% + 40px);
}
.case-con li {
  float: left;
  margin: 0 40px 40px 0;
  width: calc(100% / 2 - 40px);
}
.case-con li .pic {
  overflow: hidden;
}
.case-con li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.case-con li .con {
  padding: 40px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.case-con li .con h4 {
  position: relative;
  padding: 8px 0 32px;
  font-size: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  line-height: 32px;
}
.case-con li .con h4 span {
  padding-left: 16px;
  font-size: 14px;
  font-weight: normal;
  color: #999;
}
.case-con li .con h4:after {
  position: absolute;
  top: 9px;
  right: 0;
  width: 80px;
  height: 30px;
  border: 1px solid rgba(0,0,0,0.08);
  background: url("../img/case-more-arrow.png") no-repeat center;
  content: "";
}
.case-con li a:hover .pic img {
  transform: scale(1.05);
}
.case-con li a:hover .con {
  background: #18bc83;
}
.case-con li a:hover .con h4 {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.case-con li a:hover .con h4 span {
  color: #fff;
}
.case-con li a:hover .con h4:after {
  border: 1px solid rgba(255,255,255,0.08);
  background: url("../img/case-more-arrow.png") no-repeat center rgba(255,255,255,0.6);
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .case {
    padding: 60px 0 40px;
  }

  .case-tit h2 {
    float: none;
    font-size: 24px;
  }
  .case-tit h3 {
    float: none;
    padding: 5px 0 0 0;
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  .case-con {
    padding-top: 40px;
  }
  .case-con ul {
    width: auto;
  }
  .case-con li {
    float: none;
    margin: 0 0 20px 0;
    width: auto;
  }
  .case-con li .con {
    padding: 24px;
  }
  .case-con li .con h4 {
    padding: 0 0 12px;
    font-size: 16px;
  }
  .case-con li .con h4 span {
    padding-left: 16px;
    font-size: 14px;
  }
  .case-con li .con h4:after {
    display: none;
  }
}

/* ---------- Team ---------- */
.team {
  padding: 120px 0;
  background-position: center top;
  background-size: cover;
}

.team-tit {
  position: relative;
  height: 80px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.team-tit h2 {
  float: left;
  font-family: "Montserrat-Regular";
  font-size: 52px;
  font-weight: normal;
  text-transform: uppercase;
}
.team-tit h3 {
  float: left;
  padding: 28px 0 0 16px;
  font-size: 18px;
  font-weight: normal;
  color: #999;
}
.team-tit a.more-btn {
  position: absolute;
  top: 13px;
  right: 0;
  padding: 0 42px 0 24px;
  height: 35px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  background: url("../img/more-arrow.png") no-repeat right 0 center;
  font-size: 14px;
  color: #999;
  line-height: 35px;
}
.team-tit a:hover.more-btn {
  border: 1px solid#18bc83;
  background: url("../img/more-arrow.png") no-repeat right -100px center #18bc83;
  color: #fff;
}

.team-con {
  padding-top: 60px;
  overflow: hidden;
}
.team-con ul {
  width: calc(100% + 40px);
}
.team-con li {
  float: left;
  position: relative;
  margin: 0 40px 0 0;
  width: calc(100% / 4 - 40px);
}
.team-con li .pic {
  overflow: hidden;
}
.team-con li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.team-con li .con {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 30px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.team-con li .con h4 {
  padding-bottom: 16px;
  font-size: 18px;
  font-weight: normal;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.team-con li .con h4 span {
  padding-left: 12px;
  font-size: 14px;
}
.team-con li .con p {
  display: none;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  line-height: 180%;
}
.team-con li a:hover .con {
  background: rgba(24,188,131,0.9);
}
.team-con li a:hover .pic img {
  transform: scale(1.05);
}
.team-con li a:hover .con p {
  display: block;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .team {
    padding: 60px 0 40px;
  }

  .team-tit h2 {
    float: none;
    font-size: 24px;
  }
  .team-tit h3 {
    float: none;
    padding: 5px 0 0 0;
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  .team-con {
    padding-top: 40px;
  }
  .team-con ul {
    width: calc(100% + 16px);
  }
  .team-con li {
    margin: 0 16px 16px 0;
    width: calc(100% / 2 - 16px);
  }
  .team-con li .con {
    padding: 12px 16px;
  }
  .team-con li .con h4 {
    padding-bottom: 4px;
    font-size: 16px;
  }
  .team-con li .con h4 span {
    padding-left: 6px;
  }
  .team-con li .con p {
    display: none;
  }
  .team-con li a:hover .con p {
    display: none;
  }
}

/* ---------- News ---------- */
.news {
  padding: 120px 0;
}

.news-tit {
  position: relative;
  height: 80px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.news-tit h2 {
  float: left;
  font-family: "Montserrat-Regular";
  font-size: 52px;
  font-weight: normal;
  text-transform: uppercase;
}
.news-tit h3 {
  float: left;
  padding: 28px 0 0 16px;
  font-size: 18px;
  font-weight: normal;
  color: #999;
}
.news-tit a.more-btn {
  position: absolute;
  top: 13px;
  right: 0;
  padding: 0 42px 0 24px;
  height: 35px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  background: url("../img/more-arrow.png") no-repeat right 0 center;
  font-size: 14px;
  color: #999;
  line-height: 35px;
}
.news-tit a:hover.more-btn {
  border: 1px solid#18bc83;
  background: url("../img/more-arrow.png") no-repeat right -100px center #18bc83;
  color: #fff;
}

.news-con {
  padding-top: 60px;
  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: 36px 40px;
  color: #fff;
}
.news-pic .date {
  float: left;
  width: 20%;
  font-family: "Montserrat-Regular";
}
.news-pic .day {
  display: block;
  font-size: 24px;
}
.news-pic .year {
  display: block;
  padding-top: 4px;
  font-size: 16px;
}
.news-pic .con {
  float: right;
  width: 80%;
}
.news-pic .con h4 {
  font-size: 18px;
  font-weight: normal;
  line-height: 160%;
}
.news-pic .con p {
  padding-top: 12px;
  font-size: 14px;
  line-height: 200%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-list {
  float: right;
  width: 48.5%;
}
.news-list li {
  background: #f8f8f8;
  margin-bottom: 20px;
  padding: 36px 40px;
  height: 98px;
  overflow: hidden;
}
.news-list li .date {
  float: left;
  width: 20%;
  font-family: "Montserrat-Regular";
}
.news-list li .day {
  display: block;
  font-size: 24px;
  color: #333;
}
.news-list li .year {
  display: block;
  padding-top: 4px;
  font-size: 16px;
  color: #999;
}
.news-list li .con {
  float: right;
  width: 80%;
}
.news-list li .con h4 {
  font-size: 18px;
  font-weight: normal;
  line-height: 160%;
}
.news-list li .con p {
  padding-top: 12px;
  font-size: 14px;
  color: #999;
  line-height: 200%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .news {
    padding: 60px 0 40px;
  }

  .news-tit h2 {
    float: none;
    font-size: 24px;
  }
  .news-tit h3 {
    float: none;
    padding: 5px 0 0 0;
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  .news-con {
    padding-top: 40px;
  }
  .news-pic {
    float: none;
    margin-bottom: 20px;
    width: auto;
    height: auto;
  }
  .news-pic .mask {
    padding: 20px;
  }
  .news-pic .date {
    width: 25%;
  }
  .news-pic .day {
    font-size: 20px;
  }
  .news-pic .year {
    font-size: 14px;
  }
  .news-pic .con {
    width: 75%;
  }
  .news-pic .con h4 {
    font-size: 16px;
    line-height: 140%;
  }
  .news-pic .con p {
    padding-top: 8px;
    line-height: 180%;
    -webkit-line-clamp: 1;
  }

  .news-list {
    float: none;
    width: auto;
  }
  .news-list li {
    padding: 20px;
    height: auto;
  }
  .news-list li .date {
    width: 25%;
  }
  .news-list li .day {
    font-size: 20px;
  }
  .news-list li .year {
    padding-top: 4px;
    font-size: 14px;
  }
  .news-list li .con {
    width: 75%;
  }
  .news-list li .con h4 {
    font-size: 16px;
    line-height: 140%;
  }
  .news-list li .con p {
    padding-top: 8px;
    line-height: 180%;
  }
}