| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | .products {  padding: 10px 15px;  display: flex;  flex-flow: row wrap;  justify-content: space-between;  margin: 0 -7.5px;}.product {  width: 50%;  padding: 7.5px;  display: block;  text-align: center;  font-size: 14px;  color: #666;  box-sizing: border-box;  height: 130px;  border-radius: 3px;  position: relative;}.product .link {  display: block;  height: 100%;  width: 100%;  position:relative;  border-radius:3px;  overflow:hidden;  background:#eee;}.product .image {  display: block;  height: 100%;  width: 100%;  background-repeat: no-repeat;  background-size:cover;  background-position: center center;}.product .title {  position:absolute;  bottom:10px;  font-size:12px;  border-top-right-radius: 3px;  border-bottom-right-radius: 3px;  left:0;  width:auto;  max-width:50%;  height:30px;  line-height:30px;  background:#000;  opacity: 0.7;  text-align: center;  overflow:hidden;  color:#f8f8f8;}
 |