index.wxss 960 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .products {
  2. padding: 10px 15px;
  3. display: flex;
  4. flex-flow: row wrap;
  5. justify-content: space-between;
  6. margin: 0 -7.5px;
  7. }
  8. .product {
  9. width: 50%;
  10. padding: 7.5px;
  11. display: block;
  12. text-align: center;
  13. font-size: 14px;
  14. color: #666;
  15. box-sizing: border-box;
  16. height: 130px;
  17. border-radius: 3px;
  18. position: relative;
  19. }
  20. .product .link {
  21. display: block;
  22. height: 100%;
  23. width: 100%;
  24. position:relative;
  25. border-radius:3px;
  26. overflow:hidden;
  27. background:#eee;
  28. }
  29. .product .image {
  30. display: block;
  31. height: 100%;
  32. width: 100%;
  33. background-repeat: no-repeat;
  34. background-size:cover;
  35. background-position: center center;
  36. }
  37. .product .title {
  38. position:absolute;
  39. bottom:10px;
  40. font-size:12px;
  41. border-top-right-radius: 3px;
  42. border-bottom-right-radius: 3px;
  43. left:0;
  44. width:auto;
  45. max-width:50%;
  46. height:30px;
  47. line-height:30px;
  48. background:#000;
  49. opacity: 0.7;
  50. text-align: center;
  51. overflow:hidden;
  52. color:#f8f8f8;
  53. }