index.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .media {
  2. width: 100%;
  3. display: flex;
  4. flex-wrap: wrap;
  5. margin-top: 20rpx;
  6. padding: 0 30rpx;
  7. box-sizing: border-box;
  8. .item {
  9. position: relative;
  10. width: 158rpx;
  11. height: 158rpx;
  12. margin-right: 18rpx;
  13. margin-bottom: 18rpx;
  14. border-radius: 8rpx;
  15. overflow: hidden;
  16. image {
  17. width: 100%;
  18. height: 100%;
  19. }
  20. .delete {
  21. position: absolute;
  22. width: 40rpx;
  23. height: 40rpx;
  24. right: 0;
  25. top: 0;
  26. }
  27. .shade {
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. position: absolute;
  32. width: 100%;
  33. height: 100%;
  34. background: rgba(0, 0, 0, 0.2);
  35. top: 0;
  36. left: 0;
  37. color: #ffffff;
  38. }
  39. }
  40. .item:nth-child(4n) {
  41. margin-right: 0;
  42. }
  43. .file {
  44. display: flex;
  45. flex-direction: column;
  46. border: 1px solid #CCCCCC;
  47. box-sizing: border-box;
  48. align-items: center;
  49. .name {
  50. width: 120rpx;
  51. font-size: 24rpx;
  52. font-family: PingFang SC-Regular, PingFang SC;
  53. color: #333333;
  54. margin-top: 20rpx;
  55. overflow: hidden;
  56. white-space: nowrap;
  57. text-overflow: ellipsis;
  58. }
  59. .image {
  60. height: 58rpx;
  61. margin-top: 24rpx;
  62. }
  63. }
  64. }