applicationForm.wxss 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. background-color: #f3afad;
  13. }
  14. .content {
  15. padding-top: 16rpx;
  16. background-color: #f3afad;
  17. }
  18. .content .top {
  19. width: 100%;
  20. height: 188rpx;
  21. }
  22. .content .top image {
  23. width: 100%;
  24. height: 188rpx;
  25. }
  26. .content .info-box {
  27. text-indent: 64rpx;
  28. margin: 12rpx 0 54rpx;
  29. padding: 0 32rpx 20rpx;
  30. width: 100%;
  31. display: -webkit-box;
  32. display: -webkit-flex;
  33. display: flex;
  34. -webkit-box-orient: vertical;
  35. -webkit-box-direction: normal;
  36. -webkit-flex-direction: column;
  37. flex-direction: column;
  38. border-radius: 25rpx;
  39. color: #E63931;
  40. }
  41. .content .buttom {
  42. width: 660rpx;
  43. height: 100rpx;
  44. background: -webkit-linear-gradient(bottom, #C90F1B, #F14D33);
  45. background: linear-gradient(0deg, #C90F1B, #F14D33);
  46. border-radius: 50rpx;
  47. margin: 50rpx auto;
  48. font-size: 36rpx;
  49. font-weight: 400;
  50. color: #FFFFFF;
  51. line-height: 100rpx;
  52. text-align: center;
  53. }
  54. .content .buttom.action {
  55. background: #999999;
  56. }
  57. .content .box {
  58. width: 690rpx;
  59. margin: 20rpx auto 0;
  60. background-color: #FFFFFF;
  61. border-radius: 10rpx;
  62. padding: 28rpx 20rpx 84rpx 20rpx;
  63. position: relative;
  64. }
  65. .content .box .red-box {
  66. width: 405rpx;
  67. line-height: 66rpx;
  68. text-align: center;
  69. background: -webkit-linear-gradient(bottom, #C90F1B, #F14D33);
  70. background: linear-gradient(0deg, #C90F1B, #F14D33);
  71. border-radius: 10rpx;
  72. font-size: 30rpx;
  73. font-weight: 500;
  74. color: #FFFFFF;
  75. position: absolute;
  76. top: -36rpx;
  77. left: 50%;
  78. -webkit-transform: translateX(-50%);
  79. transform: translateX(-50%);
  80. z-index: 1;
  81. }
  82. .content .box .box-check {
  83. font-size: 28rpx;
  84. font-weight: 500;
  85. color: #666666;
  86. line-height: 100rpx;
  87. }
  88. .content .box .imp {
  89. color: red;
  90. margin-left: 5rpx;
  91. }
  92. .content .box .check-box {
  93. margin: 44rpx 0rpx;
  94. padding: 25rpx 25rpx;
  95. border: 3rpx solid #e9b2af;
  96. width: 100%;
  97. display: -webkit-box;
  98. display: -webkit-flex;
  99. display: flex;
  100. -webkit-box-orient: vertical;
  101. -webkit-box-direction: normal;
  102. -webkit-flex-direction: column;
  103. flex-direction: column;
  104. border-radius: 25rpx;
  105. color: #ff4500;
  106. }
  107. .content .box .check-box .info {
  108. margin-bottom: 32rpx;
  109. }
  110. .content .box .check-box .info-3 {
  111. margin-top: 12rpx;
  112. line-height: 46rpx;
  113. }
  114. .content .box .check-box .info-1 {
  115. display: -webkit-box;
  116. display: -webkit-flex;
  117. display: flex;
  118. -webkit-box-align: center;
  119. -webkit-align-items: center;
  120. align-items: center;
  121. }
  122. .content .box .check-box .info-1 input {
  123. height: 56rpx;
  124. width: 400rpx;
  125. line-height: 56rpx;
  126. width: 300rpx;
  127. }
  128. .content .box .check-box .info-1 .list-input {
  129. padding-left: 24rpx;
  130. display: -webkit-box;
  131. display: -webkit-flex;
  132. display: flex;
  133. -webkit-box-align: center;
  134. -webkit-align-items: center;
  135. align-items: center;
  136. width: 280rpx;
  137. font-size: 36rpx;
  138. color: #FF9797;
  139. border-bottom: 1rpx solid #f3afad;
  140. text-align: center;
  141. padding-right: 24rpx;
  142. }
  143. .content .box .check-box .info-1 .list-input .input-placeholder {
  144. width: 400rpx;
  145. height: 70rpx;
  146. color: #FF9797;
  147. }
  148. .content .box .check-box .check-main {
  149. display: -webkit-box;
  150. display: -webkit-flex;
  151. display: flex;
  152. width: 100%;
  153. }
  154. .content .box .check-box .check-main .check-text {
  155. margin-right: 12rpx;
  156. }
  157. .content .box .check-box .check-main .checkbox,
  158. .content .box .check-box .check-main .uni-checkbox-input,
  159. .content .box .check-box .check-main .uni-checkbox-input-checked {
  160. border: 1px solid #ff4500;
  161. background: #ff4500;
  162. color: #fff !important;
  163. }
  164. .content .box .box-2 {
  165. display: -webkit-box;
  166. display: -webkit-flex;
  167. display: flex;
  168. -webkit-box-align: center;
  169. -webkit-align-items: center;
  170. align-items: center;
  171. width: 100%;
  172. margin-top: 32rpx;
  173. color: #FF9797;
  174. }
  175. .content .box .box-2 .box-left {
  176. padding-left: 2rpx;
  177. text-align: left;
  178. color: #ff4500;
  179. }
  180. .content .box .box-2 .line {
  181. width: 200rpx;
  182. border-bottom: 1rpx solid #FF9797;
  183. }
  184. .content .box .box-1 {
  185. display: -webkit-box;
  186. display: -webkit-flex;
  187. display: flex;
  188. -webkit-box-orient: vertical;
  189. -webkit-box-direction: normal;
  190. -webkit-flex-direction: column;
  191. flex-direction: column;
  192. -webkit-box-align: center;
  193. -webkit-align-items: center;
  194. align-items: center;
  195. width: 100%;
  196. margin-top: 32rpx;
  197. }
  198. .content .box .box-1 .box-left {
  199. padding-left: 2rpx;
  200. width: 100%;
  201. text-align: left;
  202. color: #ff4500;
  203. }
  204. .content .box .box-1 input {
  205. height: 66rpx;
  206. line-height: 66rpx;
  207. margin-top: 32rpx;
  208. }
  209. .content .box .box-1 .list-input {
  210. padding-left: 24rpx;
  211. display: -webkit-box;
  212. display: -webkit-flex;
  213. display: flex;
  214. -webkit-box-align: center;
  215. -webkit-align-items: center;
  216. align-items: center;
  217. width: 100%;
  218. font-size: 36rpx;
  219. -webkit-box-flex: 1;
  220. -webkit-flex: 1;
  221. flex: 1;
  222. color: #FF9797;
  223. border: 1rpx solid #f3afad;
  224. border-radius: 22rpx;
  225. text-align: left;
  226. padding-right: 24rpx;
  227. }
  228. .content .box .box-1 .list-input .input-placeholder {
  229. height: 70rpx;
  230. color: #FF9797;
  231. }
  232. .content .box .box-1 .box-right {
  233. display: -webkit-box;
  234. display: -webkit-flex;
  235. display: flex;
  236. -webkit-box-align: center;
  237. -webkit-align-items: center;
  238. align-items: center;
  239. padding-left: 24rpx;
  240. height: 66rpx;
  241. line-height: 66rpx;
  242. border: 1rpx solid #f3afad;
  243. border-radius: 22rpx;
  244. margin: 32rpx 36rpx 0 36rpx;
  245. width: 96%;
  246. font-size: 36rpx;
  247. color: #FF9797;
  248. text-align: left;
  249. }
  250. .content .box .upload-box {
  251. width: 100%;
  252. height: 247rpx;
  253. background: #FFFFFF;
  254. border-radius: 27rpx;
  255. display: -webkit-box;
  256. display: -webkit-flex;
  257. display: flex;
  258. -webkit-box-orient: vertical;
  259. -webkit-box-direction: normal;
  260. -webkit-flex-direction: column;
  261. flex-direction: column;
  262. padding: 30rpx 40rpx 30rpx 0;
  263. margin: 0 auto 30rpx;
  264. }
  265. .content .box .upload-box .upload-left {
  266. font-weight: 400;
  267. color: #E63931;
  268. }
  269. .content .box .upload-box .upload-right {
  270. -webkit-box-flex: 1;
  271. -webkit-flex: 1;
  272. flex: 1;
  273. display: -webkit-box;
  274. display: -webkit-flex;
  275. display: flex;
  276. -webkit-box-align: center;
  277. -webkit-align-items: center;
  278. align-items: center;
  279. -webkit-box-pack: center;
  280. -webkit-justify-content: center;
  281. justify-content: center;
  282. }
  283. .content .box .upload-box .upload-right .upload-img {
  284. width: 103rpx;
  285. height: 103rpx;
  286. margin-top: 24rpx;
  287. }