index.wxss 702 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. box-sizing: border-box;
  5. width: 100vw;
  6. height: 100vh;
  7. }
  8. .upload {
  9. padding: 0 2vw;
  10. }
  11. .upload .upload_1 {
  12. display: flex;
  13. flex-direction: row;
  14. flex-wrap: wrap;
  15. }
  16. .upload .upload_1 .list {
  17. position: relative;
  18. width: 30vw;
  19. height: 28vw;
  20. text-align: center;
  21. margin: 0 3vw 2vw 0;
  22. border-radius: 5px;
  23. box-shadow: 0 0 2px #858585;
  24. }
  25. .upload .upload_1 .list .image {
  26. width: 100%;
  27. height: 100%;
  28. border-radius: 5px;
  29. }
  30. .upload .upload_1 .list .add {
  31. position: relative;
  32. top: 20px;
  33. }
  34. .upload .upload_1 .list .del {
  35. position: absolute;
  36. right: 0;
  37. top: 0;
  38. }
  39. .upload .upload_1 .list:nth-child(3n) {
  40. margin: 0 0 2vw 0;
  41. }