new-customer.wxss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. @import "../../../../public/pages/public-view.wxss";
  2. /* Page {
  3. background-color: white;
  4. } */
  5. /* 原生组件会漂浮在非原生组件上 */
  6. .bottom-view, .bottom-view-X {
  7. position: relative;
  8. background-color: #F5F5F5;
  9. }
  10. .scroll-view-last {
  11. background-color: #f5f5f5;
  12. width: 100%;
  13. height: 24rpx;
  14. margin-top: -0.7px;
  15. }
  16. /* id-card-view */
  17. .id-card-view {
  18. margin: -64rpx 20rpx 0rpx;
  19. height: 448rpx;
  20. background-color: white;
  21. border-radius: 8rpx;
  22. box-shadow: 0rpx 4rpx 8rpx rgba(0, 0, 0, 0.03);
  23. display: flex;
  24. flex-direction: column;
  25. }
  26. .id-card-view>view {
  27. margin-left: 44rpx;
  28. margin-right: 44rpx;
  29. display: flex;
  30. }
  31. .id-card-view>view:nth-child(1)>text {
  32. font-size: 28rpx;
  33. color: #333333;
  34. margin-top: 46rpx;
  35. }
  36. .id-card-view>view:nth-child(1)>image {
  37. width: 28rpx;
  38. height: 40rpx;
  39. margin-top: 46rpx;
  40. margin-left: auto;
  41. margin-right: 12rpx;
  42. }
  43. .id-card-view>view:nth-child(1)>view {
  44. font-size: 30rpx;
  45. line-height: 40rpx;
  46. color: #3296FB;
  47. margin-top: 46rpx;
  48. }
  49. .id-card-view>view:nth-child(2)>view {
  50. margin-top: 34rpx;
  51. }
  52. .id-card-view>view:nth-child(2)>view:nth-child(1) {
  53. margin-right: auto;
  54. }
  55. .id-card-view+view {
  56. width: 100%;
  57. height: 24rpx;
  58. }
  59. /* photograph-view */
  60. .photograph-view {
  61. display: flex;
  62. flex-direction: column;
  63. }
  64. .photograph-view>view {
  65. width: 292rpx;
  66. height: 196rpx;
  67. background-color: #EBF5FF;
  68. border-radius: 12rpx;
  69. display: flex;
  70. }
  71. .photograph-view>view>image {
  72. width: 204rpx;
  73. height: 129rpx;
  74. background-color: white;
  75. margin: auto auto;
  76. border-radius: 8rpx;
  77. }
  78. .photograph-view>text {
  79. width: 292rpx;
  80. font-size: 30rpx;
  81. color: #3296FB;
  82. text-align: center;
  83. margin-top: 32rpx;
  84. }
  85. /* input-view */
  86. .input-view,
  87. .input-view-in {
  88. display: flex;
  89. background-color: white;
  90. width: 100%;
  91. height: 100rpx;
  92. }
  93. .input-view-in {
  94. margin-top: 24rpx;
  95. }
  96. .input-view-placeholder {
  97. font-size: 32rpx;
  98. color: #cccccc;
  99. }
  100. .input-view-placeholder-h {
  101. font-size: 32rpx;
  102. color: rgba(0, 0, 0, 0);
  103. }
  104. .input-view>text,
  105. .input-view-in>text,
  106. .textarea-view>text {
  107. font-size: 32rpx;
  108. color: #333333;
  109. margin-left: 30rpx;
  110. width: 210rpx;
  111. }
  112. .input-view>text,
  113. .input-view-in>text {
  114. line-height: 100rpx;
  115. }
  116. .textarea-view>text {
  117. margin-top: 34rpx;
  118. }
  119. .input-view>input,
  120. .input-view-in>input {
  121. font-size: 32rpx;
  122. color: #666666;
  123. line-height: 100rpx;
  124. width: 480rpx;
  125. height: 100rpx;
  126. margin-right: 30rpx;
  127. }
  128. .textarea-view {
  129. display: flex;
  130. background-color: white;
  131. width: 100%;
  132. }
  133. textarea {
  134. font-size: 32rpx;
  135. color: #666666;
  136. line-height: 8rpx;
  137. /* text-align: right; */
  138. /* height: 8rpx; */
  139. }
  140. .textarea-ios {
  141. margin: 20rpx 10rpx 20rpx auto;
  142. width: 540rpx;
  143. }
  144. .textare-android {
  145. margin: 34rpx 30rpx 34rpx auto;
  146. width: 480rpx;
  147. }
  148. /* require-view */
  149. .require-view {
  150. width: 100%;
  151. height: 100%;
  152. position: fixed;
  153. background-color: rgba(0,0,0,0.56);
  154. top: 0rpx;
  155. z-index:1000;
  156. }
  157. .require-view>view {
  158. width: 100%;
  159. height: 800rpx;
  160. position: fixed;
  161. background-color: white;
  162. bottom: -800rpx;
  163. display: flex;
  164. flex-direction: column;
  165. }
  166. .require-view>view>view:nth-child(1) {
  167. width: 100%;
  168. height: 108rpx;
  169. display: flex;
  170. }
  171. .require-view>view>view:nth-child(1)>view {
  172. width: 6rpx;
  173. height: 32rpx;
  174. margin: auto 20rpx auto 30rpx;
  175. background-color: #3296FB;
  176. }
  177. .require-view>view>view:nth-child(1)>text {
  178. font-size: 32rpx;
  179. color: #333333;
  180. width: 600rpx;
  181. line-height: 108rpx;
  182. margin-right: auto;
  183. white-space: nowrap;
  184. text-overflow: ellipsis;
  185. overflow:hidden;
  186. }
  187. .require-view>view>view:nth-child(1)>image {
  188. width: 92rpx;
  189. height: 92rpx;
  190. margin: auto 0;
  191. }
  192. .require-view>view>view:nth-child(2) {
  193. width: 100%;
  194. height: 0.7px;
  195. background-color: #eeeeee;
  196. }
  197. .require-view>view>text:nth-child(3) {
  198. font-size: 30rpx;
  199. color: #333333;
  200. font-weight: bold;
  201. line-height: 42rpx;
  202. height: 42rpx;
  203. margin-top: 42rpx;
  204. margin-left: 50rpx;
  205. }
  206. .require-view>view>view:nth-child(3)>view {
  207. width: 6rpx;
  208. height: 28rpx;
  209. background-color: #3296FB;
  210. margin: auto 0 auto 50rpx;
  211. }
  212. .require-view>view>view:nth-child(3)>text {
  213. font-size: 30rpx;
  214. color: #333333;
  215. font-weight: bold;
  216. line-height: 42rpx;
  217. margin-left: 14rpx;
  218. }
  219. .require-view>view>image {
  220. width: 650rpx;
  221. height: 202rpx;
  222. margin: 32rpx 50rpx 44rpx
  223. }
  224. .require-view>view>text {
  225. font-size: 28rpx;
  226. color: #666666;
  227. line-height: 56rpx;
  228. margin: 0 50rpx;
  229. }