.product_list {
  padding: 140px 0 80px;
}

.product_list li {
  height: 440px;
  box-shadow: 0px 10px 38px 0px rgba(5, 101, 184, 0.1);
  margin-bottom: 104px;
  position: relative;
}
.product_list li .hover_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  display: none;
}

.product_list li.last {
  margin-bottom: 0;
}
.product_list li {
  color: #333333;
}
.product_list li a {
  display: block;
  color: #333333;
}
.product_list li .img_wrap {
  width: 38.33%;
  position: relative;
  height: 504px;
  overflow: hidden;
  margin-top: -64px;
}
.product_list li .img_wrap .product_list_img {
  width: 100%;
}
.product_list li .product_icon {
  position: absolute;
  top: 0;
  width: 88px;
  height: 88px;
  background-image: linear-gradient(to right, #1f9cd9 , #09d485);
}
.product_list li .img_wrap.fl .product_icon {
  left: 0;
  /*position: relative;*/
}

.product_list li .product_icon {
  /*position: relative;*/
}
.product_list li .product_icon img {
  width: auto;
  height: 59%;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  margin: auto;
}

.product_list li .img_wrap.fr .product_icon {
  right: 0;
}
.product_list li:hover h2:after {
  background-color: #8ccfe9;
}

.product_list li:hover .img_num_default {
  display: none;
}
.product_list li:hover .img_num_hover {
  display: block;
}
.product_list li:hover a {
  color: #ffffff;
}
.product_list li:hover .product_info .desc {
  color: #def4ed;
}

.product_info {
  position: relative;
  width: 61.67%;
  padding: 50px;
  box-sizing: border-box;
  max-height: 440px;
  min-height: 440px;
}

.img_num {
  position: absolute;
  right: 0;
  top: 0;
}
.img_num_default {
  display: block;
}
.img_num_hover {
  display: none;
}

.product_info h2 {
  font-size: 27px;
  font-weight: bold;
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 30px;
}
.product_info h2:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 2px;
  background-color: #0d75ce;
  left: 0;
  bottom: 0;
}
.product_info .desc {
  font-size: 20px;
  max-height: 6em;
  overflow: hidden;
  color: #5c5c5c;
  line-height: 2;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.btn_more {
  padding: 16px 44px;
  font-size: 18px;
  line-height: 18px;
  color: #0d75ce;
  border: solid 1px #0d75ce;
  border-radius: 999px;
  margin-top: 70px;
  background-color: #fff;
}


@media (min-width:769px) {
  
  .btn_more:hover {
    background: #ecf3f8;
  }
}
@media (max-width: 768px) {
  .product_list {
    padding: 30px 0 30px;
  }

  .product_list li {
    height: auto;
    box-shadow: 0px 5px 19px 0px rgba(5, 101, 184, 0.1);
    margin-bottom: 30px;
  }

  .product_list li .img_wrap {
    width: 100%;
    height: auto;
    margin-top: 0;
  }
  .product_list li .img_wrap .product_list_img {
    width: 100%;
  }
  .product_list li .product_icon {
    position: absolute;
    top: 0;
    width: 68px;
    height: 68px;
  }

  .product_info {
    width: 100%;
    padding: 25px;
    max-height: auto;
    min-height: auto;
  }

  .img_num {
    height: 30px;
  }

  .product_info h2 {
    font-size: 16px;
    padding-bottom: 25px;
    margin-bottom: 15px;
  }
  .product_info .desc {
    font-size: 14px;
    max-height: 6em;
    line-height: 2;
  }
  .btn_more {
    padding: 8px 22px;
    font-size: 14px;
    line-height: 14px;
    margin-top: 30px;
  }
  .product_list li:hover h2:after {
    background-color: #0d75ce;
  }
  
  .product_list li:hover .img_num_default {
    display: block;
  }
  .product_list li:hover .img_num_hover {
    display: none;
  }
  .product_list li:hover a {
    color: #333333;
  }
  .product_list li:hover .product_info .desc {
    color: #333333;
  }
  
}
