Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

index.wxss 2.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .wux-upload {
  2. position: relative;
  3. display: block
  4. }
  5. .wux-upload::after,
  6. .wux-upload::before {
  7. display: table;
  8. content: " "
  9. }
  10. .wux-upload::after {
  11. clear: both
  12. }
  13. .wux-upload--disabled {
  14. opacity: .3
  15. }
  16. .wux-upload--picture-card .wux-upload__select {
  17. width: 266rpx;
  18. height: 150rpx;
  19. border: 1PX dashed #1677ff;
  20. border-radius: 8rpx;
  21. margin: 0 16rpx 16rpx 0;
  22. background-color: #fafafa;
  23. transition: border-color .3s ease;
  24. box-sizing: border-box;
  25. float: left
  26. }
  27. .wux-upload--picture-card .wux-upload__button {
  28. width: 100%;
  29. height: 100%;
  30. display: -ms-flexbox;
  31. display: flex;
  32. text-align: center;
  33. -ms-flex-pack: center;
  34. justify-content: center;
  35. -ms-flex-align: center;
  36. align-items: center;
  37. vertical-align: middle;
  38. /* padding: 8rpx; */
  39. box-sizing: border-box
  40. }
  41. .wux-upload--picture-card .wux-upload__button image {
  42. width: 100%;
  43. height: 100%;
  44. display: inline-block;
  45. overflow: hidden
  46. }
  47. .wux-upload--picture-card .wux-upload__files {
  48. position: relative;
  49. display: block;
  50. float: left
  51. }
  52. .wux-upload--picture-card .wux-upload__files::after,
  53. .wux-upload--picture-card .wux-upload__files::before {
  54. display: table;
  55. content: " "
  56. }
  57. .wux-upload--picture-card .wux-upload__files::after {
  58. clear: both
  59. }
  60. .wux-upload--picture-card .wux-upload__file {
  61. width: 266rpx;
  62. height: 150rpx;
  63. float: left;
  64. margin: 0 16rpx 16rpx 0;
  65. padding: 8rpx;
  66. border-radius: 8rpx;
  67. border: 1PX solid #1677ff;
  68. position: relative;
  69. box-sizing: border-box
  70. }
  71. .wux-upload--picture-card .wux-upload__file--uploading {
  72. border-style: dashed
  73. }
  74. .wux-upload--picture-card .wux-upload__file--error {
  75. border-color: #f5222d
  76. }
  77. .wux-upload--picture-card .wux-upload__thumb {
  78. width: 100%;
  79. height: 100%;
  80. display: inline-block;
  81. overflow: hidden
  82. }
  83. .wux-upload--picture-card .wux-upload__remove {
  84. width: 30rpx;
  85. height: 30rpx;
  86. position: absolute;
  87. right: 12rpx;
  88. top: 12rpx;
  89. text-align: right;
  90. vertical-align: top;
  91. z-index: 2;
  92. background-repeat: no-repeat;
  93. background-size: 30rpx auto;
  94. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Ccircle%20fill-opacity%3D%22.4%22%20fill%3D%22%23404040%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%228%22%2F%3E%3Cpath%20d%3D%22M11.898%204.101a.345.345%200%200%200-.488%200L8%207.511l-3.411-3.41a.345.345%200%200%200-.488.488l3.411%203.41-3.41%203.412a.345.345%200%200%200%20.488.488L8%208.487l3.411%203.411a.345.345%200%200%200%20.488-.488L8.488%208l3.41-3.412a.344.344%200%200%200%200-.487z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
  95. }