12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /* pages/components/blocks/homeGrid/homeGrid.wxss */
- .home_grid {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- border-top: 1px solid #f7f7f7;
-
- }
- .home_grid_item {
- position: relative;
- display: flex;
- width: 33.3%;
- justify-content: center;
- align-items: center;
- margin-bottom: 1px;
- }
- .home_grid_item::before {
- content: " ";
- position: absolute;
- left: 0;
- top: 0;
- width: 1px;
- bottom: 0;
- border-left: 1px solid #c7c7c7;
- color: #c7c7c7;
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- -webkit-transform: scaleX(0.5);
- transform: scaleX(0.5);
- }
- .home_grid_item::after {
- content: " ";
- position: absolute;
- left: 0;
- bottom: 0;
- right: 0;
- height: 1px;
- border-bottom: 1px solid #c7c7c7;
- color: #c7c7c7;
- -webkit-transform-origin: 0 100%;
- transform-origin: 0 100%;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- }
- .home_grid_img {
- width: 100%;
- }
|