.product-main {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 70px 0;
}
.product-main .product-grid {
  width: 447px;
  height: 390px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  color: #2b2c2e;
  margin-top: 30px;
  transition: all 0.3s;
}
.product-main .product-grid:hover {
  background-color: #3870fd;
  color: #fff;
}
.product-main .product-grid > div {
  height: 310px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-main .product-grid > div img {
  width: 417px;
  height: 285px;
  display: block;
  background-color: #fff;
}
.product-main .product-grid p {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  /*margin-bottom: 38px;*/
}
.product-main .product-grid p.sub_title {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #999;
}

.product-main .pages {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 82px;
}
.product-main .pages a, .product-main .pages span{
  height: 46px;
  text-align: center;
  line-height: 46px;
  margin: 0 5px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 0 20px;
  color: #333;

}
.product-main .pages .current,
.product-main .pages a:hover,
.product-main .pages span:hover
{
  background-color: #195afe;
  color: #fff;
}
/*
.product-main .pages .front,
.product-main .pages .next {
  width: 128px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}
*/
.product-main .pages .front a,
.product-main .pages .next a {
  display: block;
  width: 100%;
  height: 100%;
  color: #333;
}
.product-main .pages .front:hover,
.product-main .pages .next:hover {
  background-color: #195afe;
  color: #fff;
}
.product-main .pages .front:hover a,
.product-main .pages .next:hover a {
  color: #fff;
}
.product-main .pages .pages-content {
  padding: 0 25px;
  display: flex;
}
.product-main .pages .pages-content div {
  width: 46px;
  height: 46px;
  text-align: center;
  line-height: 46px;
  margin: 0 5px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}
.product-main .pages .pages-content div a {
  display: block;
  width: 100%;
  height: 100%;
  color: #333;
}
.product-main .pages .pages-content div:hover {
  background-color: #195afe;
  color: #fff;
}
.product-main .pages .pages-content div:hover a {
  color: #fff;
}
.product-main .pages .pages-content .page-active {
  background-color: #195afe;
  color: #fff;
}
.product-main .pages .pages-content .page-active a {
  color: #fff;
}
