upload.wxss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. /* pages/upload/upload.wxss */
  2. page{
  3. padding:0 32rpx 32rpx;
  4. }
  5. .label{
  6. font-size: 28rpx;
  7. font-weight: 500;
  8. margin: 32rpx 0 16rpx;
  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: 87%;
  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: #666;
  82. font-size: 24rpx;
  83. line-height: 40rpx;
  84. }
  85. .change{
  86. /* background: #D94B24; */
  87. color: #D94B24;
  88. width: 90%;
  89. height: 88rpx;
  90. line-height: 88rpx;
  91. padding: 0;
  92. font-size: 32rpx;
  93. border-radius: 8rpx;
  94. margin-top: 50rpx;
  95. text-align: center;
  96. border: 1px solid #D94B24;
  97. }
  98. form button:not([size='mini']){
  99. background: #D94B24;
  100. color: #fff;
  101. width: 90%;
  102. height: 88rpx;
  103. line-height: 88rpx;
  104. padding: 0;
  105. font-size: 32rpx;
  106. border-radius: 8rpx;
  107. margin-top: 50rpx;
  108. position: fixed;
  109. bottom: 0;
  110. margin-bottom: 10rpx;
  111. }
  112. .upload{
  113. width: 220rpx;
  114. }
  115. .note{
  116. font-size:22rpx;
  117. padding:10rpx 0rpx;
  118. color:#999;
  119. }
  120. .upload{
  121. width: 240rpx;
  122. height: 240rpx;
  123. background: #F7F7F7;
  124. border-radius: 8rpx;
  125. text-align: center;
  126. font-size: 30rpx;
  127. padding-top: 74rpx;
  128. display: inline-block;
  129. vertical-align: top;
  130. }
  131. .upload image{
  132. width: 50rpx;
  133. display: block;
  134. margin: 0 auto 8rpx;
  135. }
  136. .stock_imgs{
  137. display: inline-block;
  138. width: 240rpx;
  139. height:240rpx;
  140. vertical-align: top;
  141. position: relative;
  142. margin-right: 10rpx;
  143. margin-bottom: 10rpx;
  144. }
  145. .stock_imgs icon{
  146. position: absolute;
  147. right: 10rpx;
  148. top: 10rpx;
  149. }
  150. .stock_imgs image{
  151. border-radius: 8rpx;
  152. width:240rpx;height:240rpx;
  153. }
  154. .edit{
  155. text-align: center;
  156. position: absolute;
  157. bottom: 2px;
  158. left: 0;
  159. width: 100%;
  160. }
  161. .edit text{
  162. display: inline-block;
  163. color: #fff;
  164. background: #D94B24;
  165. border-radius: 32rpx;
  166. width: 100rpx;
  167. line-height: 48rpx;
  168. text-align: center;
  169. font-size: 28rpx;
  170. margin: 0 2px;
  171. }
  172. .stock_list{
  173. position: absolute;
  174. width: 43%;
  175. top: 100rpx;
  176. left: 0;
  177. overflow: auto;
  178. background: #fff;
  179. max-height: 300rpx;
  180. border:1px solid #E0E0E0;
  181. border-radius: 8rpx;
  182. padding: 10rpx;
  183. }
  184. .stock_list view{
  185. padding:10rpx;
  186. color: #666;
  187. }
  188. .modal{
  189. position: fixed;
  190. width: 100%;
  191. height: 100vh;
  192. background: rgba(0,0,0,.5);
  193. top: 0;
  194. left: 0;
  195. z-index: 99;
  196. }
  197. .fund_modal{
  198. width: 80%;
  199. padding: 50rpx;
  200. /* height: 20vh; */
  201. background: #fff;
  202. border-radius: 16rpx;
  203. margin: 30vh auto;
  204. text-align: center;
  205. position: relative;
  206. }
  207. .fund_modal view{
  208. font-size: 30rpx;
  209. }
  210. .fund_modal input{
  211. border: 1px solid #ccc;
  212. height: 80rpx;
  213. border-radius: 8rpx;
  214. margin: 20rpx 0;
  215. }
  216. .fund_modal text{
  217. position: absolute;
  218. right: 65rpx;
  219. top: 40%;
  220. }