master-keyboard.scss 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. .master_wrap{
  2. width: 100%;
  3. background-color: #eee;
  4. position: fixed;
  5. bottom: 0;
  6. left: 0;
  7. z-index:10000;
  8. padding-top: 10rpx;
  9. padding-bottom: 20rpx;
  10. .down_wrap{
  11. width: 100%;
  12. height: 50rpx;
  13. display: flex;
  14. align-items: center;
  15. justify-content: center;
  16. image{
  17. width: 48rpx;
  18. height: 48rpx;
  19. }
  20. }
  21. .number_next{
  22. width: 100%;
  23. height: 80rpx;
  24. margin-top: 10rpx;
  25. background-color: white;
  26. border-radius: 10rpx;
  27. text-align: center;
  28. line-height: 80rpx;
  29. box-sizing: border-box;
  30. display: block;
  31. }
  32. .kerboard_number{
  33. width: 100%;
  34. display: flex;
  35. justify-content: space-evenly;
  36. flex-flow: wrap;
  37. .number_item{
  38. width: 30%;
  39. height: 80rpx;
  40. margin-top: 10rpx;
  41. background-color: white;
  42. border-radius: 10rpx;
  43. text-align: center;
  44. line-height: 80rpx;
  45. box-sizing: border-box;
  46. display: block;
  47. }
  48. .number_item_active{
  49. width: 30%;
  50. height: 80rpx;
  51. margin-top: 10rpx;
  52. background-color: #888;
  53. border-radius: 10rpx;
  54. text-align: center;
  55. line-height: 80rpx;
  56. box-sizing: border-box;
  57. display: block;
  58. color: white;
  59. }
  60. .number_empty{
  61. background-color: #eeeeee;
  62. width: 30%;
  63. height: 80rpx;
  64. margin-top: 10rpx;
  65. border-radius: 10rpx;
  66. }
  67. .number_empty_active{
  68. background-color: #eeeeee;
  69. }
  70. .number_delete{
  71. width: 30%;
  72. height: 80rpx;
  73. margin-top: 10rpx;
  74. background-color: white;
  75. display: flex;
  76. justify-content: center;
  77. align-items: center;
  78. .delete_img{
  79. width: 65rpx;
  80. height: 64rpx;
  81. }
  82. }
  83. .number_delete_active{
  84. width: 30%;
  85. height: 80rpx;
  86. margin-top: 10rpx;
  87. background-color: #e64d3a;
  88. display: flex;
  89. justify-content: center;
  90. align-items: center;
  91. border-radius: 10rpx;
  92. .delete_img{
  93. width: 65rpx;
  94. height: 64rpx;
  95. }
  96. }
  97. }
  98. .keyboard_car{
  99. width: 100%;
  100. display: flex;
  101. flex-direction: column;
  102. position: relative;
  103. .car_down{
  104. position: absolute;
  105. top: 10rpx;
  106. left: 15rpx;
  107. width: 48rpx;
  108. height: 48rpx;
  109. }
  110. .tab_wrap{
  111. height: 65rpx;
  112. margin: 0 auto;
  113. background-color: white;
  114. border-radius: 20rpx;
  115. display: flex;
  116. padding-left: 25rpx;
  117. padding-right: 25rpx;
  118. image{
  119. width: 48rpx;
  120. height: 48rpx;
  121. }
  122. .tab_item{
  123. height: 100%;
  124. text-align: center;
  125. line-height: 65rpx;
  126. font-size: 26rpx;
  127. margin: 0 20rpx;
  128. }
  129. .tab_item_active{
  130. height: 100%;
  131. text-align: center;
  132. line-height: 65rpx;
  133. font-size: 26rpx;
  134. margin: 0 20rpx;
  135. text-decoration: underline;
  136. color: #e64d3a;
  137. }
  138. }
  139. .car_content{
  140. width: 100%;
  141. position: relative;
  142. .car_province{
  143. width: 100%;
  144. display: flex;
  145. justify-content: space-evenly;
  146. flex-flow: wrap;
  147. margin: 0;
  148. .province_item{
  149. width: 9.5%;
  150. height: 80rpx;
  151. margin-top: 10rpx;
  152. background-color: white;
  153. border-radius: 10rpx;
  154. text-align: center;
  155. line-height: 80rpx;
  156. box-sizing: border-box;
  157. display: block;
  158. font-size: 28rpx;
  159. font-weight: 450;
  160. }
  161. .province_item_active{
  162. width: 9.5%;
  163. height: 80rpx;
  164. margin-top: 10rpx;
  165. background-color: #888;
  166. border-radius: 10rpx;
  167. text-align: center;
  168. line-height: 80rpx;
  169. box-sizing: border-box;
  170. display: block;
  171. font-size: 28rpx;
  172. font-weight: 450;
  173. color: white;
  174. }
  175. .province_item_disable{
  176. width: 9.5%;
  177. height: 80rpx;
  178. margin-top: 10rpx;
  179. background-color: #fff;
  180. border-radius: 10rpx;
  181. text-align: center;
  182. line-height: 80rpx;
  183. box-sizing: border-box;
  184. display: block;
  185. font-size: 28rpx;
  186. font-weight: 450;
  187. opacity: 0.5;
  188. }
  189. }
  190. .car_province_1{
  191. width: 100%;
  192. display: flex;
  193. margin: 0;
  194. .province_item1{
  195. margin: 0;
  196. width: 9.5%;
  197. height: 80rpx;
  198. margin-top: 10rpx;
  199. background-color: white;
  200. border-radius: 10rpx;
  201. text-align: center;
  202. line-height: 80rpx;
  203. box-sizing: border-box;
  204. display: block;
  205. font-size: 28rpx;
  206. font-weight: 450;
  207. }
  208. .province_item_active{
  209. width: 9.5%;
  210. height: 80rpx;
  211. margin-top: 10rpx;
  212. background-color: #888;
  213. border-radius: 10rpx;
  214. text-align: center;
  215. line-height: 80rpx;
  216. box-sizing: border-box;
  217. display: block;
  218. font-size: 28rpx;
  219. font-weight: 450;
  220. color: white;
  221. }
  222. .province_item_disable{
  223. width: 9.5%;
  224. height: 80rpx;
  225. margin-top: 10rpx;
  226. background-color: #fff;
  227. border-radius: 10rpx;
  228. text-align: center;
  229. line-height: 80rpx;
  230. box-sizing: border-box;
  231. display: block;
  232. font-size: 28rpx;
  233. font-weight: 450;
  234. opacity: 0.5;
  235. }
  236. }
  237. .car_latter{
  238. width: 100%;
  239. display: flex;
  240. justify-content: space-evenly;
  241. flex-flow: wrap;
  242. .latter_item{
  243. width: 9.5%;
  244. height: 80rpx;
  245. margin-top: 10rpx;
  246. background-color: white;
  247. border-radius: 10rpx;
  248. text-align: center;
  249. line-height: 80rpx;
  250. box-sizing: border-box;
  251. display: block;
  252. font-size: 28rpx;
  253. font-weight: 450;
  254. }
  255. .province_item_active{
  256. width: 9.5%;
  257. height: 80rpx;
  258. margin-top: 10rpx;
  259. background-color: #888;
  260. border-radius: 10rpx;
  261. text-align: center;
  262. line-height: 80rpx;
  263. box-sizing: border-box;
  264. display: block;
  265. font-size: 28rpx;
  266. font-weight: 450;
  267. color: white;
  268. }
  269. .province_item_disable{
  270. width: 9.5%;
  271. height: 80rpx;
  272. margin-top: 10rpx;
  273. background-color: #fff;
  274. border-radius: 10rpx;
  275. text-align: center;
  276. line-height: 80rpx;
  277. box-sizing: border-box;
  278. display: block;
  279. font-size: 28rpx;
  280. font-weight: 450;
  281. opacity: 0.5;
  282. }
  283. }
  284. .car_delete{
  285. width: 15%;
  286. height: 80rpx;
  287. margin-top: 10rpx;
  288. background-color: white;
  289. border-radius: 10rpx;
  290. display: flex;
  291. justify-content: center;
  292. align-items: center;
  293. position: absolute;
  294. .delete_img{
  295. width: 65rpx;
  296. height: 64rpx;
  297. }
  298. }
  299. .car_delete_active{
  300. width: 15%;
  301. height: 80rpx;
  302. margin-top: 10rpx;
  303. background-color: #e64d3a;
  304. border-radius: 10rpx;
  305. display: flex;
  306. justify-content: center;
  307. align-items: center;
  308. position: absolute;
  309. .delete_img{
  310. width: 65rpx;
  311. height: 64rpx;
  312. }
  313. }
  314. }
  315. }
  316. }