@import url('base.css');
@import url('header.css');

.page{
  width: 100%;
  margin: 0 auto;
  position: relative;
  min-width: 1200px;
}
.container{
  padding-top: 150px;
  padding-bottom: 100px;
  box-sizing: border-box;
  min-height: calc(100vh - 120px - 20px);
}
.section{
  position: relative;
  width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
  padding: 70px 0 100px;
}
.sectionWrapper{
  width: 100%;
  position: relative;
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}
.section-title{
  font-size: 36px;
  color: #a6a6a6;
  margin-bottom: 40px;
}
.section-content{
  display: flex;
  flex-wrap: wrap;
}
.section-content .item{
  width: calc(25% - 60px);
  margin-right: 60px;
  margin-bottom: 20px;
  background-color: #fff;
  transition: all .3s;
}
.section-content .item:hover{
  box-shadow: 0 0 20px rgba(0, 0, 0, .15);
}
.section-content .item-wrapper{
  display: flex;
  align-items: center;
  height: 64px;
}
.section-content .item-wrapper .icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background-color: #E0CFBA;
  box-sizing: border-box;
  padding: 10px;
}
.section-content .item-wrapper .highlightIcon{
  background-color: #8E6244;
}
.section-content .item-wrapper .con{
  padding-left: 20px;
}
.section-content .item-wrapper .con h5{
  font-size: 22px;
  color: #8f7952;
  margin-bottom: 10px;
}
.section-content .item-wrapper .con p{
  font-size: 16px;
  color: #a6a6a6;
}

footer{
  /*border-top: 1px solid #707070;*/
  height: 120px;
}
footer .footerWrapper{
  width: 100%;
  position: relative;
  max-width: 1580px;
  margin: 0 auto;
  padding: 20px 0;
}
footer .footerWrapper p{
  text-align: right;
  font-size: 16px;
  color: #707070;
  font-weight: 300;
  font-family: PingFangSC-Light, 'helvetica neue', 'microsoft yahei', sans-serif;
}
@media screen and (min-width:1600px){
  .section-content .item:nth-child(4n){
    margin-right: 0;
  }
}
@media screen and (max-width:1600px) {
  .section-content .item{
    width: calc(33.3333% - 40px);
  }
  .section-content .item:nth-child(3n){
    margin-right: 0;
  }
}