index.wxss 610 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .upload {
  2. display: flex;
  3. flex-wrap: wrap;
  4. }
  5. .upload .list {
  6. position: relative;
  7. width: 23.3%;
  8. height: 85px;
  9. overflow: hidden;
  10. margin: 0 5px 5px 0;
  11. border: 1px solid #cccccc;
  12. border-radius: 5px;
  13. }
  14. .upload .list:nth-child(4n) {
  15. margin: 0 0 5px 0;
  16. }
  17. .upload .list .image {
  18. width: 100%;
  19. height: 100%;
  20. border-radius: 5px;
  21. }
  22. .upload .list .icon {
  23. position: absolute;
  24. top: 1vw;
  25. right: 1vw;
  26. }
  27. .upload .list_1 {
  28. text-align: center;
  29. line-height: 75px;
  30. }
  31. .upload .list_1 text {
  32. font-size: 60px;
  33. font-weight: bold;
  34. color: #858588;
  35. }