upload.wxss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. /* pages/upload/upload.wxss */
  2. page{
  3. padding:0 32rpx 32rpx;
  4. }
  5. .label{
  6. font-size: 30rpx;
  7. font-weight: 500;
  8. margin: 32rpx 0 20rpx;
  9. }
  10. input,.picker,textarea{
  11. height: 88rpx;
  12. /* background: #F4F6F8; */
  13. border-radius: 8rpx;
  14. padding: 0 20rpx;
  15. font-size: 28rpx;
  16. width: 79%;
  17. border: 1px solid #E0E0E0;
  18. display: inline-block;
  19. vertical-align: middle;
  20. margin-right: 10rpx;
  21. }
  22. textarea{
  23. height: 300rpx;
  24. padding: 24rpx;
  25. width: 90%;
  26. }
  27. picker{
  28. width: 30%;
  29. }
  30. .picker{
  31. line-height: 88rpx;
  32. }
  33. .info{
  34. display: flex;
  35. margin-bottom: 15rpx;
  36. justify-content: space-between;
  37. position: relative;
  38. }
  39. .info input{
  40. /* width: 30%; */
  41. display: inline-block;
  42. }
  43. .info text{
  44. display: inline-block;
  45. line-height: 88rpx;
  46. vertical-align: top;
  47. }
  48. .add{
  49. /* background: #D94B24; */
  50. border: 1px solid #E0E0E0;
  51. width: 43%;
  52. /* display: inline-block; */
  53. color: #333;
  54. font-size: 32rpx;
  55. border-radius: 8rpx;
  56. line-height: 88rpx;
  57. text-align: center;
  58. vertical-align: top;
  59. }
  60. .openmarket{
  61. height: 88rpx;
  62. background: #F4F6F8;
  63. border-radius: 16rpx;
  64. padding: 0 20rpx;
  65. font-size: 28rpx;
  66. border: 1px solid #EEEEEE;
  67. margin: 16rpx 0;
  68. line-height: 88rpx;
  69. }
  70. .openmarket switch{
  71. float: right;
  72. position: relative;
  73. top: -4rpx;
  74. }
  75. .tips{
  76. margin-top: 32rpx;
  77. margin-bottom: 200rpx;
  78. }
  79. .tips text{
  80. display: block;
  81. color: #000000;
  82. font-size: 24rpx;
  83. line-height: 40rpx;
  84. }
  85. .change{
  86. /* background: #D94B24; */
  87. color: #E90001;
  88. /* width: 90%; */
  89. /* height: 88rpx; */
  90. /* line-height: 88rpx; */
  91. /* padding: 0; */
  92. font-size: 30rpx;
  93. /* border-radius: 8rpx; */
  94. /* margin-top: 50rpx; */
  95. /* text-align: center; */
  96. text-decoration: underline;
  97. /* border: 1px solid #D94B24; */
  98. display: inline;
  99. /* margin-left: 20rpx; */
  100. }
  101. form button:not([size='mini']){
  102. background: #D94B24;
  103. color: #fff;
  104. width: 90%;
  105. height: 88rpx;
  106. line-height: 88rpx;
  107. padding: 0;
  108. font-size: 32rpx;
  109. border-radius: 8rpx;
  110. margin-top: 50rpx;
  111. position: fixed;
  112. bottom: 0;
  113. margin-bottom: 10rpx;
  114. z-index: 999;
  115. }
  116. .note{
  117. font-size:24rpx;
  118. padding:10rpx 0rpx;
  119. color:rgb(128, 128, 128);
  120. margin-left: 10rpx;
  121. }
  122. .upload{
  123. width: 240rpx;
  124. height: 240rpx;
  125. background: #F7F7F7;
  126. border-radius: 8rpx;
  127. text-align: center;
  128. font-size: 30rpx;
  129. padding-top: 74rpx;
  130. display: inline-block;
  131. vertical-align: top;
  132. }
  133. .upload image{
  134. width: 50rpx;
  135. display: block;
  136. margin: 0 auto 8rpx;
  137. }
  138. .stock_imgs{
  139. display: inline-block;
  140. width: 240rpx;
  141. height:240rpx;
  142. vertical-align: top;
  143. position: relative;
  144. margin-right: 20rpx;
  145. margin-bottom: 20rpx;
  146. }
  147. .stock_imgs icon{
  148. position: absolute;
  149. right: 10rpx;
  150. top: 10rpx;
  151. }
  152. .stock_imgs image{
  153. border-radius: 8rpx;
  154. width:240rpx;
  155. height:240rpx;
  156. }
  157. .delete{
  158. position: absolute;
  159. right: -15rpx;
  160. top: -30rpx;
  161. }
  162. .edit{
  163. text-align: center;
  164. position: absolute;
  165. bottom: 10rpx;
  166. left: 0;
  167. width: 100%;
  168. }
  169. .edit text{
  170. display: inline-block;
  171. color: #fff;
  172. background: #E90001;
  173. border-radius: 32rpx;
  174. width: 100rpx;
  175. line-height: 48rpx;
  176. text-align: center;
  177. font-size: 20rpx;
  178. margin: 0 2px;
  179. }
  180. .stock_list{
  181. position: absolute;
  182. width: 43%;
  183. top: 100rpx;
  184. left: 0;
  185. overflow: auto;
  186. background: #fff;
  187. max-height: 300rpx;
  188. border:1px solid #E0E0E0;
  189. border-radius: 8rpx;
  190. padding: 10rpx;
  191. }
  192. .stock_list view{
  193. padding:10rpx;
  194. color: #666;
  195. }
  196. .modal{
  197. position: fixed;
  198. width: 100%;
  199. height: 100vh;
  200. background: rgba(0,0,0,.5);
  201. top: 0;
  202. left: 0;
  203. z-index: 99;
  204. }
  205. .fund_modal{
  206. width: 80%;
  207. padding: 50rpx;
  208. /* height: 20vh; */
  209. background: #fff;
  210. border-radius: 16rpx;
  211. margin: 30vh auto;
  212. text-align: center;
  213. position: relative;
  214. }
  215. .fund_modal view{
  216. font-size: 30rpx;
  217. }
  218. .fund_modal input{
  219. border: 1px solid #ccc;
  220. height: 80rpx;
  221. border-radius: 8rpx;
  222. margin: 20rpx 0;
  223. }
  224. .fund_modal text{
  225. position: absolute;
  226. right: 65rpx;
  227. top: 40%;
  228. }
  229. .totay_title{
  230. padding-left: 34%;
  231. padding-bottom: 10rpx;
  232. }
  233. .totay_title text{
  234. display: inline-block;
  235. font-size: 24rpx;
  236. color: #999;
  237. width: 47%;
  238. }