list.wxss 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. /* 第一套图片上传样式(内部图标相机) */
  2. .upload-image-view {
  3. width: 100%;
  4. margin: 20rpx -20rpx 20rpx 40rpx;
  5. display: flex;
  6. flex-wrap: wrap;
  7. align-items: center;
  8. }
  9. .upload-image-view .title {
  10. width: 100%;
  11. font-family: PingFang-SC-Regular;
  12. font-size: 24rpx;
  13. color: #4a4a4a;
  14. margin-bottom: 15rpx;
  15. line-height: 100%;
  16. }
  17. .upload-image-view .info {
  18. width: 100%;
  19. font-family: PingFang-SC-Regular;
  20. font-size: 24rpx;
  21. color: #ff4259;
  22. height: 24rpx;
  23. margin-top: 15rpx;
  24. line-height: 24rpx;
  25. }
  26. .upload-image-view .image-view {
  27. height: 130rpx;
  28. width: 130rpx;
  29. position: relative;
  30. margin: 15rpx 15rpx 15rpx 0rpx;
  31. border-radius: 8rpx;
  32. }
  33. .upload-image-view .image-view image {
  34. height: 100%;
  35. width: 100%;
  36. border-radius: 8rpx;
  37. }
  38. .upload-image-view .image-view .del-btn {
  39. background-color: #f67371;
  40. border-radius: 50%;
  41. width: 25rpx;
  42. height: 25rpx;
  43. position: absolute;
  44. top: -12rpx;
  45. right: -12rpx;
  46. z-index: 2;
  47. display: flex;
  48. justify-content: center;
  49. align-items: center;
  50. }
  51. .upload-image-view .image-view .del-btn .baicha {
  52. display: inline-block;
  53. width: 20rpx;
  54. height: 5rpx;
  55. background: #fff;
  56. line-height: 0;
  57. font-size: 0;
  58. vertical-align: middle;
  59. -webkit-transform: rotate(45deg);
  60. }
  61. .upload-image-view .image-view .del-btn .baicha:after {
  62. content: '/';
  63. display: block;
  64. width: 20rpx;
  65. height: 5rpx;
  66. background: #fff;
  67. -webkit-transform: rotate(-90deg);
  68. }
  69. .upload-image-view .add-view {
  70. height: 115rpx;
  71. width: 115rpx;
  72. margin: 15rpx 15rpx 15rpx 0rpx;
  73. display: flex;
  74. align-items: center;
  75. justify-content: center;
  76. background: rgba(255, 255, 255, 0.00);
  77. border: 3rpx dashed #979797;
  78. border-radius: 8rpx;
  79. }
  80. /* 相机 */
  81. .upload-image-view .add-view .xiangji {
  82. height: 40rpx;
  83. width: 48rpx;
  84. display: flex;
  85. justify-content: center;
  86. flex-wrap: wrap;
  87. }
  88. .upload-image-view .add-view .xiangji .tixing {
  89. width: 10rpx;
  90. height: 7rpx;
  91. background-color: #fff;
  92. border-right: 10rpx solid #fff;
  93. border-bottom: 7rpx solid #b2b2b2;
  94. border-left: 10rpx solid #fff;
  95. }
  96. .upload-image-view .add-view .xiangji .changfx {
  97. height: 32rpx;
  98. width: 48rpx;
  99. border-radius: 5%;
  100. background-color: #b2b2b2;
  101. display: flex;
  102. align-items: center;
  103. justify-content: center;
  104. }
  105. .upload-image-view .add-view .xiangji .changfx .yuan1 {
  106. height: 20rpx;
  107. width: 20rpx;
  108. border-radius: 50%;
  109. background-color: #fff;
  110. display: flex;
  111. align-items: center;
  112. justify-content: center;
  113. }
  114. .upload-image-view .add-view .xiangji .changfx .yuan2 {
  115. height: 10rpx;
  116. width: 10rpx;
  117. border-radius: 50%;
  118. background-color: #b2b2b2;
  119. }
  120. /* 第二套图片上传样式(内部图标 十字架)*/
  121. /* 十字架 */
  122. .upload-image-view .add-view .cross {
  123. height: 48rpx;
  124. width: 48rpx;
  125. display: flex;
  126. flex-wrap: wrap;
  127. position: relative;
  128. }
  129. .upload-image-view .add-view .cross .transverse-line {
  130. height: 100%;
  131. width: 48%;
  132. position: absolute;
  133. border-right: 3rpx solid #5A5A5A;
  134. top: 0;
  135. left: 0;
  136. }
  137. .upload-image-view .add-view .cross .vertical-line {
  138. height: 48%;
  139. width: 100%;
  140. position: absolute;
  141. border-bottom: 3rpx solid #5A5A5A;
  142. top: 0;
  143. left: 0;
  144. }
  145. .box {
  146. position: fixed;
  147. top: 0;
  148. left: 0;
  149. width: 100%;
  150. height: 100%;
  151. background: rgba(0, 0, 0, 0.3);
  152. z-index: 99;
  153. }
  154. .test {
  155. text-align: center;
  156. padding: 20rpx 0;
  157. }
  158. button {
  159. margin: 20rpx;
  160. font-size: 28rpx;
  161. }
  162. .head {
  163. height: 262rpx;
  164. font-size: 30rpx;
  165. color: white;
  166. border-radius: 0rpx 0rpx 30rpx 30rpx;
  167. background-color: rgba(42, 130, 228, 1);
  168. }
  169. .head text {
  170. float: left;
  171. margin-left: 290rpx;
  172. margin-top: 24rpx;
  173. }
  174. .head image {
  175. height: 34rpx;
  176. width: 34rpx;
  177. font-size: 34rpx;
  178. vertical-align: bottom;
  179. }
  180. .headline-1 {
  181. font-size: 24rpx;
  182. }
  183. .headline-2 {
  184. font-size: 24rpx;
  185. }
  186. .content {
  187. position: relative;
  188. width: 720rpx;
  189. height: 1260rpx;
  190. margin-top: -162rpx;
  191. margin-left: 14rpx;
  192. border: 2rpx solid rgba(128, 128, 128, 0.45);
  193. background-color: rgba(255, 255, 255, 1);
  194. }
  195. .uni-list-cell {
  196. float: right;
  197. width: 484rpx;
  198. height: 70rpx;
  199. margin-top: 36rpx;
  200. margin-right: 64rpx;
  201. border-radius: 32rpx;
  202. line-height: 44rpx;
  203. background-color: rgba(166, 166, 166, 0.18);
  204. }
  205. .uni-input-1 {
  206. margin-left: 20rpx;
  207. margin-top: 10rpx;
  208. }
  209. .uni-input-1 image {
  210. float: right;
  211. margin-right: 10rpx;
  212. width: 40rpx;
  213. height: 40rpx;
  214. font-size: 40rpx;
  215. }
  216. .uni-list-cell-left {
  217. float: left;
  218. margin-top: 48rpx;
  219. margin-left: 26rpx;
  220. }
  221. .uni-list-cell-left-2 {
  222. float: left;
  223. margin-left: 30rpx;
  224. margin-top: 76rpx;
  225. }
  226. .uni-list-cell-db-2 {
  227. float: right;
  228. margin-right: 64rpx;
  229. margin-top: 36rpx;
  230. width: 484rpx;
  231. height: 70rpx;
  232. border-radius: 32rpx;
  233. background-color: rgba(166, 166, 166, 0.18);
  234. }
  235. .uni-input-2 {
  236. margin-left: 20rpx;
  237. margin-top: 16rpx;
  238. font-size: 24rpx;
  239. }
  240. .uni-input-2 image {
  241. float: right;
  242. margin-right: 10rpx;
  243. width: 40rpx;
  244. height: 40rpx;
  245. font-size: 40rpx;
  246. }
  247. .timeimg {
  248. position: absolute;
  249. right: 72rpx;
  250. top: 262rpx;
  251. width: 40rpx;
  252. height: 40rpx;
  253. font-size: 40rpx;
  254. }
  255. .photo {
  256. height: 340rpx;
  257. font-size: 24rpx;
  258. }
  259. .photo-title {
  260. float: left;
  261. margin-left: 26rpx;
  262. margin-top: 30rpx;
  263. }
  264. .image {
  265. float: left;
  266. margin-left: 26rpx;
  267. margin-top: 30rpx;
  268. height: 396rpx;
  269. width: 644rpx;
  270. box-sizing: border-box;
  271. border-radius: 28rpx;
  272. background-color: rgba(166, 166, 166, 0.18);
  273. }
  274. .imageText {
  275. text-align: center;
  276. border-radius: 28rpx;
  277. width: 100%;
  278. height: 100%;
  279. background-color: rgba(166, 166, 166, 0.18);
  280. }
  281. .imgSrc image {
  282. width: 646rPX;
  283. height: 386rpx;
  284. }
  285. .os-headline-2 {
  286. float: left;
  287. }
  288. .os-list-cell-left-2 {
  289. float: left;
  290. margin-left: 26rpx;
  291. margin-top: 236rpx;
  292. font-size: 24rpx;
  293. }
  294. .os-input-2 {
  295. margin-left: 10rpx;
  296. margin-top: 8rpx;
  297. font-size: 24rpx;
  298. /* cursor: not-allowed; */
  299. }
  300. .os-list-cell-db-2 {
  301. float: right;
  302. width: 568rpx;
  303. height: 60rpx;
  304. margin-right: 30rpx;
  305. margin-top: 224rpx;
  306. border-radius: 28rpx;
  307. background-color: rgba(166, 166, 166, 0.18);
  308. }
  309. .up {
  310. position: absolute;
  311. bottom: 212rpx;
  312. left: 20rpx;
  313. line-height: 72rpx;
  314. }