12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- .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;
- background: rgba(247,203,143,1);
- .cover {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- display: block;
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .title {
- position: relative;
- text-align: center;
- padding: 14px;
- color:#742C00;
- font-size: 14px;
- }
- .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;
- }
- }
- }
|