/* CSS Document */

/* ---------- about ---------- */
.about {
  padding: 120px 0;
  background: url("../images/about-bg.png") no-repeat left 80px bottom;
}

.about-intro {
  float: left;
  width: 54%;
}
.about-tit {
  padding-bottom: 24px;
  border-bottom: 1px solid #efefef;
  overflow: hidden;
}
.about-tit h2 {
  float: left;
  font-size: 28px;
  color: #b4835a;
}
.about-tit h3 {
  float: left;
  padding: 15px 0 0 16px;
  font-family: "Times New Roman";
  font-size: 20px;
  font-weight: normal;
  color: #999;
}
.about-desc {
  padding-top: 48px;
  font-size: 15px;
  line-height: 240%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.about-more {
  padding-top: 40px;
}
.about-more a.more-btn {
  display: inline-block;
  padding: 0 84px 0 48px;
  height: 48px;
  border-radius: 24px;
  background: url("../images/about-more-arrow.png") no-repeat right 48px center #b4835a;
  font-family: "Times New Roman";
  font-size: 14px;
  color: #fff;
  line-height: 48px;
}
.about-more a.more-btn:hover {
  box-shadow: 0 4px 12px rgba(180,131,90,0.2);
}

.about-btm {
  padding-top: 60px;
  overflow: hidden;
}
.about-btm ul {
  width: calc(100% + 20px);
}
.about-btm li {
  float: left;
  margin-right: 20px;
  padding: 16px 32px;
  width: calc(100% / 2 - 20px);
  box-sizing: border-box;
  background: #fafafa;
}
.about-btm li i {
  float: left;
  margin: 6px 16px 6px 0;
}
.about-btm li i img {
  width: 32px;
}
.about-btm li h4 {
  font-size: 14px;
  font-weight: normal;
  color: #666;
}
.about-btm li p {
  padding-top: 3px;
  font-family: "Times New Roman";
  font-size: 20px;
}

.about-pic {
  float: right;
}
.about-pic img {
  width: 100%;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .about {
    padding: 60px 0;
    background: url("../images/about-bg.png") no-repeat left bottom;
    background-size: 300px;
  }

  .about-intro {
    float: none;
    width: auto;
  }
  .about-tit {
    padding-bottom: 16px;
  }
  .about-tit h2 {
    font-size: 20px;
  }
  .about-tit h3 {
    padding: 9px 0 0 10px;
    font-size: 16px;
  }
  .about-desc {
    padding-top: 32px;
    line-height: 200%;
    -webkit-line-clamp: 6;
  }
  .about-more {
    padding-top: 28px;
  }
  .about-more a.more-btn {
    padding: 0 56px 0 32px;
    height: 40px;
    background: url("../images/more-arrow.png") no-repeat right 32px center #b4835a;
    font-size: 12px;
    line-height: 40px;
  }

  .about-btm {
    padding-top: 28px;
  }
  .about-btm ul {
    width: calc(100% + 12px);
  }
  .about-btm li {
    margin-right: 12px;
    padding: 12px 16px;
    width: calc(100% / 2 - 12px);
  }
  .about-btm li i {
    margin: 4px 12px 4px 0;
  }
  .about-btm li i img {
    width: 28px;
  }
  .about-btm li p {
    padding-top: 2px;
    font-size: 16px;
  }

  .about-pic {
    display: none;
  }
}

/* ---------- service ---------- */
.service {
  padding: 120px 0 60px;
  background-color: #faf8f5;
}

.service-tit {
  padding-bottom: 24px;
  border-bottom: 1px solid #efefef;
  overflow: hidden;
}
.service-tit h2 {
  float: left;
  font-size: 28px;
  color: #b4835a;
}
.service-tit h3 {
  float: left;
  padding: 15px 0 0 16px;
  font-family: "Times New Roman";
  font-size: 20px;
  font-weight: normal;
  color: #999;
}
.service-tit a.more-btn {
  position: absolute;
  right: 0;
  bottom: 26px;
  padding-right: 18px;
  background: url("../images/tit-more-arrow.png") no-repeat right center;
  font-size: 14px;
  color: #999;
}

.service-con {
  padding-top: 60px;
  overflow: hidden;
}
.service-con ul {
  width: calc(100% + 60px);
}
.service-con li {
  float: left;
  margin: 0 60px 20px 0;
  width: calc(100% / 3 - 60px);
  text-align: center;
}
.service-con li .pic {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.service-con li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.service-con li .con {
  position: relative;
  padding: 40px;
}
.service-con li .con:before {
 
}
.service-con li h4 {
  font-size: 18px;
  font-weight: normal;
}
.service-con li p {
  padding-top: 12px;
  min-height: 48px;
  font-size: 14px;
  color: #999;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.service-con li a:hover .pic img {
  transform: scale(1.05);
}
.service-con li a:hover .pic:after {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(180,131,90,0.2);
  content: "";
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .service {
    padding: 60px 0 20px;
  }

  .service-tit {
    padding-bottom: 16px;
  }
  .service-tit h2 {
    font-size: 20px;
  }
  .service-tit h3 {
    padding: 9px 0 0 10px;
    font-size: 16px;
  }
  .service-tit a.more-btn {
    bottom: 17px;
  }

  .service-con {
    padding-top: 40px;
  }
  .service-con ul {
    width: auto;
  }
  .service-con li {
    float: none;
    margin: 0;
    width: auto;
  }
  .service-con li .con {
    padding: 32px;
  }
  .service-con li h4 {
    font-size: 16px;
  }
  .service-con li p {
    padding-top: 8px;
    min-height: 40px;
    line-height: 20px;
  }
}

/* ---------- news ---------- */
.news {
  padding: 120px 0;
}

.news-tit {
  padding-bottom: 24px;
  border-bottom: 1px solid #efefef;
  overflow: hidden;
}
.news-tit h2 {
  float: left;
  font-size: 28px;
  color: #b4835a;
}
.news-tit h3 {
  float: left;
  padding: 15px 0 0 16px;
  font-family: "Times New Roman";
  font-size: 20px;
  font-weight: normal;
  color: #999;
}
.news-tit a.more-btn {
  position: absolute;
  right: 0;
  bottom: 26px;
  padding-right: 18px;
  background: url("../images/tit-more-arrow.png") no-repeat right center;
  font-size: 14px;
  color: #999;
}

.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: 16%;
  font-family: "Times New Roman";
}
.news-pic .day {
  display: block;
  font-size: 26px;
}
.news-pic .year {
  display: block;
  padding-top: 4px;
  font-size: 16px;
}
.news-pic .con {
  float: right;
  width: 84%;
}
.news-pic .con h4 {
  font-size: 18px;
  font-weight: normal;
  line-height: 160%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.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;
  padding: 36px 40px;
  height: 98px;
  overflow: hidden;
}
.news-list li:first-child {
  margin-bottom: 20px;
}
.news-list li .date {
  float: left;
  width: 16%;
  font-family: "Times New Roman";
}
.news-list li .day {
  display: block;
  font-size: 26px;
  color: #333;
}
.news-list li .year {
  display: block;
  padding-top: 4px;
  font-size: 16px;
  color: #999;
}
.news-list li .con {
  float: right;
  width: 84%;
}
.news-list li .con h4 {
  font-size: 18px;
  font-weight: normal;
  line-height: 160%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.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;
  }

  .news-tit {
    padding-bottom: 16px;
  }
  .news-tit h2 {
    font-size: 20px;
  }
  .news-tit h3 {
    padding: 9px 0 0 10px;
    font-size: 16px;
  }
  .news-tit a.more-btn {
    bottom: 17px;
  }

  .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: 22%;
  }
  .news-pic .day {
    font-size: 20px;
  }
  .news-pic .year {
    font-size: 14px;
  }
  .news-pic .con {
    width: 78%;
  }
  .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: 22%;
  }
  .news-list li .day {
    font-size: 20px;
  }
  .news-list li .year {
    padding-top: 4px;
    font-size: 14px;
  }
  .news-list li .con {
    width: 78%;
  }
  .news-list li .con h4 {
    font-size: 16px;
    line-height: 140%;
  }
  .news-list li .con p {
    padding-top: 8px;
    line-height: 180%;
  }
}

/* ---------- store ---------- */
.store {
  padding: 120px 0;
  background-position: center top;
  background-size: cover;
}

.store-tit {
  float: left;
  padding-bottom: 24px;
  width: 44%;
  color: #fff;
  overflow: hidden;
}
.store-tit h2 {
  float: left;
  font-size: 28px;
}
.store-tit h3 {
  float: left;
  padding: 15px 0 0 16px;
  font-family: "Times New Roman";
  font-size: 20px;
  font-weight: normal;
}

.store-con {
  float: right;
  width: 44%;
}
.store-con li {
  margin-bottom: 60px;
  overflow: hidden;
}
.store-con li:last-child {
  margin-bottom: 0;
}
.store-con li a {
  color: #fff;
}
.store-con li .pic {
  float: left;
  width: 120px;
}
.store-con li .pic img {
  width: 100%;
}
.store-con li .con {
  float: right;
  padding-top: 8px;
  width: calc(100% - 140px);
}
.store-con li .con h4 {
  position: relative;
  font-size: 16px;
  font-weight: normal;
}
.store-con li .con h4 .more-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: "Times New Roman";
  font-size: 14px;
}
.store-con li .con h4:after {
  position: absolute;
  left: 96px;
  right: 108px;
  bottom: 5px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  content: "";
}
.store-con li .con p {
  padding-top: 20px;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .store {
    padding: 60px 0;
    background-position: right top;
  }

  .store-tit {
    float: none;
    padding-bottom: 16px;
    width: auto;
    border-bottom: 1px solid rgba(255,255,255,0.4);
  }
  .store-tit h2 {
    font-size: 20px;
  }
  .store-tit h3 {
    padding: 9px 0 0 10px;
    font-size: 16px;
  }

  .store-con {
    float: none;
    padding-top: 40px;
    width: auto;
  }
  .store-con li {
    margin-bottom: 28px;
  }
  .store-con li .con {
    padding-top: 4px;
  }
  .store-con li .con h4 {
    font-size: 15px;
  }
  .store-con li .con h4 .more-btn {
    font-size: 12px;
  }
  .store-con li .con h4:after {
    left: 84px;
    right: 88px;
  }
  .store-con li .con p {
    padding-top: 12px;
  }
}