index.wxss 651 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. @charset "UTF-8";
  2. /* 水平间距 */
  3. /* 水平间距 */
  4. .upload {
  5. padding: 0 2vw;
  6. }
  7. .upload .upload_1 {
  8. display: flex;
  9. flex-direction: row;
  10. flex-wrap: wrap;
  11. }
  12. .upload .upload_1 .list {
  13. position: relative;
  14. width: 30vw;
  15. height: 28vw;
  16. text-align: center;
  17. margin: 0 3vw 2vw 0;
  18. border-radius: 5px;
  19. box-shadow: 0 0 2px var(--f85Color);
  20. }
  21. .upload .upload_1 .list .image {
  22. width: 100%;
  23. height: 100%;
  24. border-radius: 5px;
  25. }
  26. .upload .upload_1 .list .add {
  27. position: relative;
  28. top: 20px;
  29. }
  30. .upload .upload_1 .list .del {
  31. position: absolute;
  32. right: 0;
  33. top: 0;
  34. }
  35. .upload .upload_1 .list:nth-child(3n) {
  36. margin: 0 0 2vw 0;
  37. }