uploader.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. .container {
  2. }
  3. .list-group {
  4. display: flex;
  5. flex-direction: row;
  6. justify-content: flex-start;
  7. flex-wrap: wrap;
  8. }
  9. .list-item {
  10. width: 218rpx;
  11. height: 218rpx;
  12. background-color: #F4F5F6;
  13. border-radius: 16rpx;
  14. display: flex;
  15. flex-direction: column;
  16. margin-right: 9rpx;
  17. margin-bottom: 10rpx;
  18. position: relative;
  19. align-items: center;
  20. }
  21. .img-item {
  22. width: 218rpx;
  23. height: 218rpx;
  24. background-color: #fff;
  25. border-radius: 16rpx;
  26. }
  27. .img-item-demo {
  28. width: 218rpx;
  29. height: 218rpx;
  30. background-color: #fff;
  31. border-radius: 16rpx;
  32. /* 翻转图片的颜色 */
  33. filter: invert(30%);
  34. opacity: 0.8;
  35. }
  36. .empity-item {
  37. position: absolute;
  38. /* #ifdef MP-ALIPAY */
  39. top: 0.7rem;
  40. left: 0.5rem;
  41. /* #endif */
  42. /* #ifdef MP-WEIXIN */
  43. top: 10rpx;
  44. left: 48rpx;
  45. /* #endif */
  46. color: #e6e6e6;
  47. font-size: 120rpx;
  48. text-align: center;
  49. }
  50. .img_text {
  51. font-family: PingFangSC, PingFang SC;
  52. font-weight: 500;
  53. font-size: 28rpx;
  54. color: #FFFFFF;
  55. line-height: 28rpx;
  56. /* text-align: center; */
  57. font-style: normal;
  58. /* text-align: center; */
  59. position: absolute;
  60. bottom: 17rpx;
  61. /* left: 73rpx; */
  62. }