.mr_product {
  position: relative;
  width: 200px;
  height: 200px;
  display: inline-block;
  box-sizing: border-box;
  background: linear-gradient( 127deg, #eee, #ccc );
  transition: background 0.2s ease;
}
.mr_product:hover {
  background: transparent;
}
.mr_product_wrap {
  display: inline-block;
  width: 196px;
  height: 196px;
  line-height: 1;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.mr_product_wrap:hover {
  border-color: #10305c;
}
.mr_product_wrap .move2product {
  position: absolute;
  font-size: 14px;
  bottom: 10px;
  right: 10px;
  color: #fff;
  /* border: 1px solid #fff; */
  padding: 5px 5px 5px 8px;
  transition: color 0.2s ease;
}
.mr_product_wrap .move2product i {
  font-size: 10px;
}
.mr_product_wrap:hover .move2product {
  color: #10305c;
}
.mr_product_wrap > p {
  position: absolute;
  top: 6px;
  left: 0;
  width: 200px;
  z-index: 3;
  color: #333;
  text-shadow: 0px 0px 5px #fff;
  font-size: 16px;
  box-sizing: border-box;
  padding: 8px 14px;
  transition: opacity 0.2s ease;
  line-height: 1.4;
}
.mr_product:hover .mr_product_wrap > p {
  width: 196px;
  padding-left: 14px;
  opacity: 0.4;
}
.mr_product_wrap > img {
  opacity: 0.75;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px;
  width: 100px;
  height: 100px;
  transition: opacity 0.2s ease;
}
.mr_product:hover .mr_product_wrap > img {
  opacity: 0.9;
}