/* CSS Document */

/* ---------- 产品系列 ---------- */
.product {
  padding: 100px 0 60px;
  background: url("../img/product-bg.jpg") no-repeat center top;
  background-size: cover;
}

.product-tit {
  position: relative;
}
.product-tit h2 {
  font-size: 20px;
  color: #333;
}
.product-tit h2 span {
  position: relative;
}
.product-tit h2 span:after {
  position: absolute;
  top: 50%;
  right: -72px;
  width: 48px;
  height: 1px;
  background: #ad8954;
  content: "";
}
.product-tit h3 {
  padding-top: 12px;
  font-family: "Aparajita";
  font-size: 60px;
  font-weight: normal;
  color: #ad8954;
}
.product-tit a.more-btn {
  position: absolute;
  right: 0;
  bottom: 24px;
  padding: 0 52px 0 24px;
  height: 36px;
  background: url("../img/more-arrow.png") no-repeat right 20px center #fafafa;
  font-size: 14px;
  color: #999;
  line-height: 36px;
}
.product-tit a:hover.more-btn {
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-list {
  padding-top: 40px;
  overflow: hidden;
}
.product-list ul {
  width: calc(100% + 40px);
}
.product-list li {
  float: left;
  margin: 0 40px 40px 0;
  width: calc(100% / 3 - 40px);
}
.product-list li a {
  display: block;
  background: #fff;
}
.product-list li .pic {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.product-list li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.product-list li .pic .tag {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 4px 8px;
  border: 1px solid #efefef;
  border-radius: 4px;
  font-size: 14px;
  color: #999;
}
.product-list li .con {
  padding: 28px;
  border-top: 1px solid #efefef;
  text-align: center;
}
.product-list li .con h4 {
  font-size: 16px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-list li .con p {
  padding-top: 12px;
  font-size: 14px;
  color: #999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-list li a:hover {
  transform: translate(0,-10px);
  background: #ad8954;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.product-list li a:hover .pic img {
  transform: scale(1.05);
}
.product-list li a:hover h4, .product-list li a:hover p {
  color: #fff;
}

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

  .product-tit h2 {
    font-size: 16px;
  }
  .product-tit h2 span:after {
    right: -52px;
    width: 36px;
  }
  .product-tit h3 {
    padding-top: 4px;
    font-size: 32px;
  }
  .product-tit a.more-btn {
    bottom: 14px;
    padding: 0 44px 0 16px;
    height: 32px;
    background: url("../img/more-arrow.png") no-repeat right 12px center #fafafa;
    line-height: 32px;
  }
    
  .product-list {
    padding-top: 28px;
  }
  .product-list ul {
    width: calc(100% + 16px);
  }
  .product-list li {
    margin: 0 16px 16px 0;
    width: calc(100% / 2 - 16px);
  }
  .product-list li .pic .tag {
    top: 12px;
    left: 12px;
    padding: 2px 4px;
    font-size: 12px;
  }
  .product-list li .con {
    padding: 12px;
  }
  .product-list li .con h4 {
    font-size: 15px;
  }
  .product-list li .con p {
    padding-top: 8px;
  }
}

/* ---------- 新闻资讯 ---------- */
.news {
  padding: 100px 0;
}

.news-tit {
  position: relative;
}
.news-tit h2 {
  font-size: 20px;
  color: #333;
}
.news-tit h2 span {
  position: relative;
}
.news-tit h2 span:after {
  position: absolute;
  top: 50%;
  right: -72px;
  width: 48px;
  height: 1px;
  background: #ad8954;
  content: "";
}
.news-tit h3 {
  padding-top: 12px;
  font-family: "Aparajita";
  font-size: 60px;
  font-weight: normal;
  color: #ad8954;
}
.news-tit a.more-btn {
  position: absolute;
  right: 0;
  bottom: 24px;
  padding: 0 52px 0 24px;
  height: 36px;
  background: url("../img/more-arrow.png") no-repeat right 20px center #fafafa;
  font-size: 14px;
  color: #999;
  line-height: 36px;

}
.news-tit a:hover.more-btn {
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.news-list {
  padding-top: 40px;
  overflow: hidden;
}
.news-list ul {
  width: calc(100% + 40px);
}
.news-list li {
  float: left;
  margin: 0 40px 0 0;
  width: calc(100% / 3 - 40px);
}
.news-list li a {
  display: block;
  padding: 40px;
  border: 1px solid #efefef;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.news-list li .date {
  font-family: "PFDinTextPro-Light";
}
.news-list li .date .day {
  display: block;
  font-size: 32px;
  color: #999;
}
.news-list li .date .year {
  display: block;
  font-size: 16px;
  color: #999;
}
.news-list li .con {
  padding: 28px 0 36px;
}
.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: 16px;
  min-height: 48px;
  font-size: 14px;
  color: #999;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-list li .pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.news-list li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.news-list li a:hover .pic img {
  transform: scale(1.05);
}

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

  .news-tit h2 {
    font-size: 16px;
  }
  .news-tit h2 span:after {
    right: -52px;
    width: 36px;
  }
  .news-tit h3 {
    padding-top: 4px;
    font-size: 32px;
  }
  .news-tit a.more-btn {
    bottom: 14px;
    padding: 0 44px 0 16px;
    height: 32px;
    background: url("../img/more-arrow.png") no-repeat right 12px center #fafafa;
    line-height: 32px;
  }

  .news-list {
    padding-top: 28px;
  }
  .news-list ul {
    width: auto;
  }
  .news-list li {
    float: none;
    margin: 0 0 20px 0;
    width: auto;
  }
  .news-list li a {
    padding: 20px;
  }
  .news-list li .date .day {
    font-size: 24px;
  }
  .news-list li .con {
    padding: 16px 0 24px;
  }
  .news-list li .con h4 {
    font-size: 16px;
  }
  .news-list li .con p {
    padding-top: 12px;
  }
}

/* ---------- 关于我们 ---------- */
.about {
  padding: 100px 0;
  min-height: 440px;
  background-position: center top;
  background-size: cover;
}

.about-intro {
  width: 68%;
}
.about-tit {
  position: relative;
}
.about-tit h2 {
  font-size: 20px;
  color: #fff;
}
.about-tit h2 span {
  position: relative;
}
.about-tit h2 span:after {
  position: absolute;
  top: 50%;
  right: -72px;
  width: 48px;
  height: 1px;
  background: #ad8954;
  content: "";
}
.about-tit h3 {
  padding-top: 12px;
  font-family: "Aparajita";
  font-size: 60px;
  font-weight: normal;
  color: #ad8954;
}
.about-con {
  padding-top: 40px;
  font-size: 15px;
  color: #fff;
  line-height: 240%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.about-btm {
  padding-top: 60px;
}
.about-btm a {
  display: inline-block;
  padding: 0 64px 0 30px;
  height: 40px;
  background: url("../img/more-arrow.png") no-repeat right 24px center #fff;
  font-size: 14px;
  color: #999;
  line-height: 40px;
}
.about-btm a:hover {
  color: #666;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .about {
    padding: 60px 0;
    min-height: 360px;
  }

  .about-intro {
    width: auto;
  }
  .about-tit h2 {
    font-size: 16px;
  }
  .about-tit h2 span:after {
    right: -52px;
    width: 36px;
  }
  .about-tit h3 {
    padding-top: 4px;
    font-size: 32px;
  }
  .about-tit a.more-btn {
    bottom: 14px;
    padding: 0 44px 0 16px;
    height: 32px;
    background: url("../img/more-arrow.png") no-repeat right 12px center #fafafa;
    line-height: 32px;
  }
  .about-con {
    padding-top: 20px;
    line-height: 200%;
  }
  .about-btm {
    padding-top: 40px;
  }
  .about-btm a {
    padding: 0 48px 0 16px;
    height: 36px;
    background: url("../img/more-arrow.png") no-repeat right 16px center #fff;
    line-height: 36px;
  }
}