.pageBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}
.pageBox .el-pagination.is-background .btn-prev.is-active, .pageBox .el-pagination.is-background .btn-next.is-active, .pageBox .el-pagination.is-background .el-pager li.is-active {
  background-color: #047E41;
}
.pageBox .el-pagination .btn-prev, .pageBox .el-pagination .btn-next {
  padding: 0 10px;
}

.productBox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 70px;
}
.productBox .item {
  width: 385px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px #ccc;
          box-shadow: 0 0 3px #ccc;
  cursor: pointer;
  border-radius: 2px;
  margin-right: 20px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.productBox .item:hover {
  color: #fff;
  border: 1px solid #047E41;
}
.productBox .item:hover .desc {
  color: rgba(255, 255, 255, 0.7);
}
.productBox .item:hover .infos {
  background-color: #047E41;
}
.productBox .item:nth-child(4n) {
  margin-right: 0;
}
.productBox .desc {
  font-size: 18px;
  color: #666;
  margin-top: 15px;
  letter-spacing: 1px;
}
.productBox .title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}
.productBox .infos {
  padding: 30px 40px;
  background-color: #F4F4F4;
}
.productBox .coverImg {
  width: 100%;
  height: 310px;
}
.productBox .coverImg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.anchorNavBox {
  height: 73px;
  border-bottom: 1px solid #EBEBEB;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.anchorNavBox .item {
  width: 160px;
  height: 100%;
  line-height: 72px;
  text-align: center;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.anchorNavBox .item:hover {
  color: #fff;
  background-color: #047E41;
}
.anchorNavBox .item.active {
  color: #fff;
  background-color: #047E41;
}

.bannerBox {
  height: 540px;
}
.bannerBox img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}