mobilePayCenter.scss 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. $base-color: #3f84f6;
  2. .mobile-pay-center {
  3. .mp-head {
  4. height: .82rem;
  5. line-height: .82rem;
  6. text-align: center;
  7. background: #fff;
  8. span {
  9. font-size: .28rem;
  10. &:first-child {
  11. margin-right: 1.24rem;
  12. }
  13. &.active {
  14. color: $base-color;
  15. border-bottom: 1px solid $base-color;
  16. }
  17. }
  18. }
  19. .mp-content {
  20. padding: .2rem .3rem 0;
  21. .mp-content-header {
  22. font-size: .28rem;
  23. font-weight: bold;
  24. padding: .25rem 0;
  25. color: #666;
  26. .fr {
  27. color: #3f84f6;
  28. font-weight: normal;
  29. i {
  30. font-size: .3rem;
  31. color: #3f84f6;
  32. margin-right: .1rem;
  33. }
  34. }
  35. }
  36. }
  37. .mp-list {
  38. li {
  39. //padding: 0 0 .24rem 0;
  40. background: #fff;
  41. border-radius: .04rem;
  42. //border: 1px solid #d2d2d2;
  43. margin-bottom: .24rem;
  44. .content-line {
  45. padding: .24rem .26rem 0 .21rem;
  46. font-size: .28rem;
  47. i {
  48. margin-right: .05rem;
  49. }
  50. .title {
  51. color: #666;
  52. width: 23%;
  53. }
  54. .content {
  55. text-align: right;
  56. width: 77%;
  57. }
  58. .link {
  59. color: $base-color;
  60. }
  61. .fr {
  62. color: $base-color;
  63. border: 1px solid $base-color;
  64. font-size: .28rem;
  65. padding: .1rem .16rem;
  66. margin-left: .2rem;
  67. border-radius: .04rem;
  68. &.set-default-icon {
  69. color: #fff;
  70. background: #15b464;
  71. border-color: #15b464;
  72. }
  73. &.default-icon {
  74. color: #fff;
  75. background: $base-color;
  76. border-color: $base-color;
  77. }
  78. }
  79. }
  80. .btn-wrap {
  81. border-top: 1px solid #d9d9d9;
  82. margin-top: .32rem;
  83. .inline-block {
  84. width: 50%;
  85. height: .8rem;
  86. line-height: .8rem;
  87. text-align: center;
  88. font-size: .26rem;
  89. color: #333;
  90. i {
  91. font-size: .3rem;
  92. margin-right: .05rem;
  93. }
  94. &:first-child {
  95. border-right: 1px solid #d9d9d9;
  96. }
  97. &.default-icon {
  98. color: #15b262;
  99. i {
  100. color: #15b262;
  101. }
  102. }
  103. }
  104. }
  105. }
  106. &.mp-list-record {
  107. li {
  108. padding: 0 .26rem .24rem .21rem;
  109. .content-line {
  110. padding: .24rem 0 0 0;
  111. display: inline-block;
  112. vertical-align: middle;
  113. width: 62%;
  114. overflow: hidden;
  115. text-overflow: ellipsis;
  116. white-space: nowrap;
  117. &:nth-child(even) {
  118. width: 38%;
  119. }
  120. .content {
  121. text-align: left;
  122. width: auto;
  123. }
  124. .title {
  125. width: auto;
  126. }
  127. }
  128. }
  129. }
  130. }
  131. .add-account-modal {
  132. .account-modal {
  133. padding: 0 .24rem;
  134. .title {
  135. height: .73rem;
  136. line-height: .73rem;
  137. font-size: .28rem;
  138. border-bottom: 1px solid #dcdcdc;
  139. margin-bottom: .24rem;
  140. }
  141. i {
  142. font-style: normal;
  143. color: #ff0000;
  144. }
  145. .modal-content-line {
  146. margin-bottom: .3rem;
  147. position: relative;
  148. span {
  149. width: 2.5rem;
  150. color: #226ce7;
  151. font-size: .28rem;
  152. text-align: right;
  153. }
  154. input[type='text'] {
  155. width: 3.59rem;
  156. height: .56rem;
  157. font-size: .24rem;
  158. border-radius: .04rem;
  159. border: 1px solid #d2d2d2;
  160. padding: 0 .2rem;
  161. }
  162. input[readonly] {
  163. background: url('/images/mobile/select-arrow.png') no-repeat;
  164. background-size: .24rem .15rem;
  165. background-position: 3.1rem .2rem;
  166. }
  167. .similar {
  168. position: absolute;
  169. left: 2.5rem;
  170. border: 1px solid $base-color;
  171. border-radius: .04rem;
  172. top: .56rem;
  173. width: 3.59rem;
  174. background: #fff;
  175. z-index: 1;
  176. max-height: 3.96rem;
  177. overflow-y: auto;
  178. li {
  179. height: .66rem;
  180. line-height: .66rem;
  181. padding: 0 .19rem;
  182. font-size: .24rem;
  183. &:active, &:focus {
  184. background: #f7f7f7;
  185. }
  186. }
  187. }
  188. }
  189. .remind {
  190. color: #666;
  191. font-size: .24rem;
  192. width: 3.59rem;
  193. float: right;
  194. margin-right: .44rem;
  195. line-height: .37rem;
  196. i {
  197. margin-right: .05rem;
  198. }
  199. }
  200. .am-btn-wrap {
  201. margin-top: .74rem;
  202. button {
  203. width: 3.16rem;
  204. height: .77rem;
  205. line-height: .77rem;
  206. color: #fff;
  207. font-size: .32rem;
  208. border-radius: .08rem;
  209. background: #bfbfbf;
  210. &:last-child {
  211. background: $base-color;
  212. margin-left: .3rem;
  213. }
  214. }
  215. }
  216. }
  217. }
  218. .account-modal-wrap {
  219. position: absolute;
  220. top: 50%;
  221. bottom: unset;
  222. left: 50%;
  223. right: unset;
  224. width: 7.1rem;
  225. height: 7.58rem;
  226. margin-left: -3.55rem;
  227. margin-top: -3.79rem;
  228. border-radius: .05rem;
  229. background: #fff;
  230. }
  231. .mp-record {
  232. .search-content {
  233. padding: .25rem 0;
  234. text-align: center;
  235. input {
  236. width: 6.9rem;
  237. border: 1px solid #376ff3;
  238. }
  239. }
  240. .filters-wrap {
  241. background: #fff;
  242. border-radius: .05rem;
  243. padding: .24rem .21rem;
  244. width: 7.1rem;
  245. margin: 0 auto;
  246. /*.date-wrap {
  247. label {
  248. width: 2.22rem;
  249. height: .5rem;
  250. line-height: .5rem;
  251. border-radius: .04rem;
  252. border: 1px solid #a0a0a0;
  253. background: url('/images/mobile/select-arrow.png')no-repeat;
  254. background-size: .12rem .06rem;
  255. vertical-align: middle;
  256. background-color: #fff;
  257. background-position: 1.9rem .2rem;
  258. position: relative;
  259. margin: .24rem 0 .4rem;
  260. input {
  261. opacity: 0;
  262. width: 2.22rem;
  263. height: .5rem;
  264. position: absolute;
  265. left: 0;
  266. z-index: 1;
  267. }
  268. i {
  269. font-size: .28rem;
  270. color: $base-color;
  271. margin-left: .2rem;
  272. float: left;
  273. }
  274. }
  275. p {
  276. font-weight: normal;
  277. font-size: .22rem;
  278. padding-right: .2rem;
  279. }
  280. span {
  281. color: #a0a0a0;
  282. margin: 0 .1rem;
  283. }
  284. }
  285. .select-wrap {
  286. padding: .24rem 0;
  287. border-top: 1px solid #d2d2d2;
  288. li.inline-block {
  289. width: 33.3%;
  290. position: relative;
  291. div {
  292. width: 1.85rem;
  293. height: .5rem;
  294. line-height: .5rem;
  295. font-size: .28rem;
  296. color: #666;
  297. border: 1px solid #bfbfbf;
  298. border-radius: .04rem;
  299. margin: 0 auto;
  300. text-align: left;
  301. padding: 0 .23rem;
  302. background: url('/images/mobile/select-arrow.png')no-repeat;
  303. background-size: .12rem .06rem;
  304. background-position: 1.55rem .2rem;
  305. }
  306. .select-list {
  307. position: absolute;
  308. left: .32rem;
  309. top: .49rem;
  310. border: 1px solid #bfbfbf;
  311. width: 1.85rem;
  312. -webkit-box-shadow: 0 1px 5px 0 #aaa;
  313. -moz-box-shadow: 0 1px 5px 0 #aaa;
  314. box-shadow: 0 1px 5px 0 #aaa;
  315. border-radius: .04rem;
  316. li {
  317. background: #fff;
  318. text-align: left;
  319. padding: 0 .24rem;
  320. font-size: .28rem;
  321. height: .53rem;
  322. line-height: .53rem;
  323. &:active, &:focus {
  324. background: $base-color;
  325. color: #fff;
  326. }
  327. }
  328. }
  329. }
  330. }*/
  331. }
  332. .record-list {
  333. width: 7.1rem;
  334. margin: .24rem auto;
  335. }
  336. }
  337. .mp-btn-wrap {
  338. position: fixed;
  339. bottom: .98rem;
  340. left: 0;
  341. right: 0;
  342. height: 1.2rem;
  343. padding-top: .21rem;
  344. background: #f1f3f7;
  345. }
  346. }