1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .container {
-
- }
- .list-group {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- flex-wrap: wrap;
- }
- .list-item {
- width: 218rpx;
- height: 218rpx;
- background-color: #F4F5F6;
- border-radius: 16rpx;
- display: flex;
- flex-direction: column;
- margin-right: 9rpx;
- margin-bottom: 10rpx;
- position: relative;
- align-items: center;
- }
- .img-item {
- width: 218rpx;
- height: 218rpx;
- background-color: #fff;
- border-radius: 16rpx;
- }
- .img-item-demo {
- width: 218rpx;
- height: 218rpx;
- background-color: #fff;
- border-radius: 16rpx;
- /* 翻转图片的颜色 */
- filter: invert(30%);
- opacity: 0.8;
- }
- .empity-item {
- position: absolute;
- /* #ifdef MP-ALIPAY */
- top: 0.7rem;
- left: 0.5rem;
- /* #endif */
- /* #ifdef MP-WEIXIN */
- top: 10rpx;
- left: 48rpx;
- /* #endif */
- color: #e6e6e6;
- font-size: 120rpx;
- text-align: center;
- }
- .img_text {
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 28rpx;
- color: #FFFFFF;
- line-height: 28rpx;
- /* text-align: center; */
- font-style: normal;
- /* text-align: center; */
- position: absolute;
- bottom: 17rpx;
- /* left: 73rpx; */
- }
|