| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .grid {
- :global {
- .van-grid-item {
- .van-grid-item__content {
- padding: 0;
- background: transparent;
- &::after {
- display: none;
- }
- }
- }
- }
- .gridItem {
- position: relative;
- width: 100%;
- height: 130px;
- border-radius: 8px;
- overflow: hidden;
- .cover {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- z-index: -1;
- display: block;
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .title {
- text-align: center;
- padding: 10px;
- color:#742C00;
- }
- .num {
- position: absolute;
- left: 50%;
- bottom: 12px;
- transform: translateX(-50%);
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 12px;
- width: 50%;
- height: 20px;
- border-radius: 20px;
- background-color: #fff;
- color: #742c00;
- }
- .look {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.6);
- z-index: 10;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- }
- }
- }
|