.banner {
	width: 100%;
}

.banner img {
	display: block;
	width: 100%;
}

.main {
	background-color: #FFFFFF;
	padding-bottom: 100px;
	padding-top: 100px;
}

.main h5.cn {
  font-size: 40px;
  color: #222222;
  line-height: 40px;
  font-weight: bold;
  text-align: center;
}

.main h5.en {
  font-family: 'montr';
  font-weight: 500;
  font-size: 20px;
  color: #53b141;
  line-height: 50px;
  text-align: center;
}

.main ul.typelist {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  padding-top: 45px;
}

.main ul.typelist li a {
  display: block;
  width: 164px;
  font-size: 18px;
  color: #ffffff;
  line-height: 50px;
  text-align: center;
  background-color: #222222;
  margin: 0 0.5px;
}

.main ul.typelist li.active a {
  background-color: #ffa229;
}

.main ul.product_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin-left: -10px;
  margin-right: -10px;
  padding-top: 40px;
}

.main ul.product_list li {
  width: calc((100% - 60px) / 3);
  margin: 0 10px;
  margin-bottom: 20px;
  position: relative;
}

.main ul.product_list li .pic img {
  display: block;
  width: 100%;
}

.main ul.product_list li .layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255,162,41,.95);
  opacity: 0;
  transition: 0.5s;
}

.main ul.product_list li .layer p {
  width: 100%;
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: calc(50% - 12px);
}

.main ul.product_list li:hover .layer {
  opacity: 0;
}

.main #pagination {
  text-align: center;
  margin-top: 40px;
  display: block;
	height: auto;
}

.main #pagination .btn-group {
	display: inline-block;
	height: auto;
}

.main #pagination #page_center_botton {
	display: none;
}

.main #pagination .btn-group .btn {
	font-family: "pingfang";
	font-size: 12px;
	color: #222222;
	padding: 10px 12px;
	background-color: #f6f6f6;
	margin: 0 5px;
	display: inline-block;
}

.main #pagination .btn-group a.btn {
	background-color: #53b141;
	color: #FFFFFF;
}

@media screen and (max-width: 550px) {

  .main {
    padding-top: 20px;
    padding-bottom: 70px;
  }

  .main #pagination{
    margin-top: 20px;
  }

  .main h5.cn {
    font-size: 24px;
  }

  .main h5.en {
    font-size: 18px;
    line-height: 36px;
    color: #53b141;
  }

  .main ul.typelist {
    display: none;
  }

  .main ul.product_list {
    padding-top: 20px;
    margin-left: -5px;
    margin-right: -5px;
  }

  .main ul.product_list li {
    width: calc((100% - 20px) / 2);
    margin: 0 5px;
    margin-bottom: 10px;
  }

}