homeGrid.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* pages/components/blocks/homeGrid/homeGrid.wxss */
  2. .home_grid {
  3. display: flex;
  4. flex-direction: row;
  5. flex-wrap: wrap;
  6. border-top: 1px solid #f7f7f7;
  7. }
  8. .home_grid navigator {
  9. width: 33.3%;
  10. }
  11. .home_grid_item {
  12. position: relative;
  13. display: flex;
  14. width: 100%;
  15. padding-top: 100%;
  16. justify-content: center;
  17. align-items: center;
  18. margin-bottom: 1px;
  19. }
  20. .home_grid_item::before {
  21. content: " ";
  22. position: absolute;
  23. left: 0;
  24. top: 0;
  25. width: 1px;
  26. bottom: 0;
  27. border-left: 1px solid #c7c7c7;
  28. color: #c7c7c7;
  29. -webkit-transform-origin: 0 0;
  30. transform-origin: 0 0;
  31. -webkit-transform: scaleX(0.5);
  32. transform: scaleX(0.5);
  33. z-index: 2;
  34. }
  35. .home_grid_item::after {
  36. content: " ";
  37. position: absolute;
  38. left: 0;
  39. bottom: 0;
  40. right: 0;
  41. height: 1px;
  42. border-bottom: 1px solid #c7c7c7;
  43. color: #c7c7c7;
  44. -webkit-transform-origin: 0 100%;
  45. transform-origin: 0 100%;
  46. -webkit-transform: scaleY(0.5);
  47. transform: scaleY(0.5);
  48. z-index: 2;
  49. }
  50. .home_grid_img {
  51. position: absolute;
  52. width: 100%;
  53. height: 100%;
  54. left: 0;
  55. top: 0;
  56. }