pay.scss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. page {
  2. height: 100%;
  3. }
  4. .container {
  5. position: relative;
  6. width: 100%;
  7. height: 100%;
  8. font-family: "MicrosoftYaHei";
  9. font-weight: 400;
  10. background-image: url(../../static/images/bg.png);
  11. background-size: cover;
  12. background-attachment: fixed;
  13. background-repeat: no-repeat;
  14. &::-webkit-scrollbar {
  15. width: 16px;
  16. height: 16px;
  17. background-color: #f5f5f5;
  18. }
  19. &::-webkit-scrollbar-track {
  20. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  21. box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  22. border-radius: 10px;
  23. background-color: #f5f5f5;
  24. }
  25. &::-webkit-scrollbar-thumb {
  26. border-radius: 10px;
  27. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  28. box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  29. background-color: #555;
  30. }
  31. .order {
  32. position: absolute;
  33. top: 40rpx;
  34. right: 50rpx;
  35. width: 170rpx;
  36. height: 70rpx;
  37. background: #298def;
  38. border-radius: 35rpx;
  39. font-size: 28rpx;
  40. color: #ffffff;
  41. line-height: 70rpx;
  42. text-align: center;
  43. z-index: 4;
  44. }
  45. button {
  46. margin: 0;
  47. outline: none;
  48. padding: 0;
  49. }
  50. button::after {
  51. border: none;
  52. }
  53. .mark {
  54. position: absolute;
  55. width: 100%;
  56. height: 100%;
  57. background: #000000;
  58. opacity: 0.2;
  59. z-index: 5;
  60. }
  61. .messageCard {
  62. display: flex;
  63. flex-direction: column;
  64. justify-content: flex-start;
  65. position: absolute;
  66. top: 125rpx;
  67. left: 36rpx;
  68. width: 678rpx;
  69. height: 1000rpx;
  70. background: #fff;
  71. border-radius: 14rpx;
  72. z-index: 4;
  73. .item-form {
  74. width: 618rpx;
  75. height: 800rpx;
  76. margin: 0 auto;
  77. overflow: scroll;
  78. &::-webkit-scrollbar {
  79. display: none;
  80. }
  81. .item,
  82. .item-pay {
  83. display: flex;
  84. justify-content: space-between;
  85. width: 618rpx;
  86. height: 89rpx;
  87. margin: 0 auto;
  88. margin-top: 8rpx;
  89. border-bottom: 1rpx solid #d9d9d9;
  90. line-height: 89rpx;
  91. box-sizing: border-box;
  92. .ite {
  93. display: inline-block;
  94. width: 200rpx;
  95. height: 80rpx;
  96. line-height: 89rpx;
  97. margin-left: 20rpx;
  98. font-size: 32rpx;
  99. color: #808080;
  100. box-sizing: border-box;
  101. }
  102. .content {
  103. display: inline-block;
  104. width: 400rpx;
  105. height: 80rpx;
  106. overflow: hidden; //多出部分隐藏
  107. white-space: nowrap; //一行显示
  108. text-overflow: ellipsis; //是否显示省略号
  109. line-height: 89rpx;
  110. margin-left: 40rpx;
  111. color: #000;
  112. background: #fff;
  113. box-sizing: border-box;
  114. }
  115. }
  116. }
  117. button {
  118. width: 618rpx;
  119. height: 100rpx;
  120. margin: 0 auto;
  121. background: #298def;
  122. font-size: 28rpx;
  123. color: #fff;
  124. text-align: center;
  125. line-height: 100rpx;
  126. }
  127. .okPay {
  128. width: 618rpx;
  129. height: 100rpx;
  130. margin: 0 auto;
  131. border-radius: 5rpx;
  132. background: #b3b3b3;
  133. opacity: 0.6;
  134. font-size: 28rpx;
  135. color: #fff;
  136. text-align: center;
  137. line-height: 100rpx;
  138. }
  139. .bottom-a {
  140. display: flex;
  141. justify-content: space-between;
  142. width: 618rpx;
  143. height: 80rpx;
  144. margin: 0 auto;
  145. navigator {
  146. height: 80rpx;
  147. font-size: 26rpx;
  148. color: #298def;
  149. text-align: center;
  150. line-height: 80rpx;
  151. }
  152. }
  153. }
  154. .messageBg1 {
  155. position: absolute;
  156. top: 145rpx;
  157. left: 51rpx;
  158. width: 648rpx;
  159. height: 1005rpx;
  160. background: #ffffff;
  161. opacity: 0.7;
  162. border-radius: 14rpx;
  163. z-index: 3;
  164. }
  165. .messageBg2 {
  166. position: absolute;
  167. top: 164rpx;
  168. left: 58rpx;
  169. width: 634rpx;
  170. height: 1007rpx;
  171. background: #ffffff;
  172. opacity: 0.5;
  173. border-radius: 14rpx;
  174. z-index: 2;
  175. }
  176. .pop-up {
  177. display: flex;
  178. flex-direction: column;
  179. justify-content: flex-start;
  180. position: absolute;
  181. top: 284rpx;
  182. left: 50%;
  183. transform: translateX(-325rpx);
  184. width: 650rpx;
  185. height: 566rpx;
  186. background: #ffffff;
  187. box-shadow: 0rpx 0rpx 13rpx 0rpx rgba(0, 0, 0, 0.29);
  188. border-radius: 10rpx;
  189. overflow: hidden;
  190. z-index: 6;
  191. .top {
  192. display: flex;
  193. justify-content: space-between;
  194. width: 650rpx;
  195. height: 90rpx;
  196. background: #e7eef5;
  197. line-height: 90rpx;
  198. text {
  199. width: 161rpx;
  200. height: 90rpx;
  201. margin-left: 35rpx;
  202. line-height: 90rpx;
  203. font-size: 32rpx;
  204. color: #333333;
  205. }
  206. .close {
  207. position: relative;
  208. width: 120rpx;
  209. height: 80rpx;
  210. background: #e7eef5;
  211. .image {
  212. position: absolute;
  213. top: 40%;
  214. left: 50%;
  215. width: 18rpx;
  216. height: 18rpx;
  217. background-image: url(../../static/images/close.png);
  218. background-size: 100%;
  219. }
  220. }
  221. }
  222. .name,
  223. .studentNo {
  224. display: flex;
  225. justify-content: space-around;
  226. width: 590rpx;
  227. height: 111rpx;
  228. margin: 0 auto;
  229. border-bottom: 1rpx solid #cccccc;
  230. background: #fff;
  231. padding-top: 12rpx;
  232. box-sizing: border-box;
  233. text {
  234. display: inline-block;
  235. width: 100rpx;
  236. height: 111rpx;
  237. font-size: 32rpx;
  238. color: #313131;
  239. line-height: 111rpx;
  240. text-align: center;
  241. }
  242. input {
  243. display: inline-block;
  244. width: 390rpx;
  245. height: 111rpx;
  246. text-align: left;
  247. line-height: 111rpx;
  248. }
  249. }
  250. .remark {
  251. width: 552rpx;
  252. height: 24rpx;
  253. margin: 0 auto;
  254. font-size: 24rpx;
  255. color: #999999;
  256. line-height: 54rpx;
  257. }
  258. .confirm {
  259. display: flex;
  260. justify-content: space-between;
  261. width: 410rpx;
  262. height: 254rpx;
  263. margin: 0 auto;
  264. button {
  265. width: 170rpx;
  266. height: 80rpx;
  267. margin-top: 92rpx;
  268. background: rgba(255, 255, 255, 1);
  269. border: 1rpx solid #298def;
  270. border-radius: 4rpx;
  271. text-align: center;
  272. line-height: 80rpx;
  273. color: rgba(41, 141, 239, 1);
  274. }
  275. button:nth-child(2) {
  276. background: rgba(41, 141, 239, 1);
  277. color: #fff;
  278. border-color: rgba(41, 141, 239, 1);
  279. }
  280. }
  281. }
  282. .leaveMess {
  283. display: flex;
  284. flex-direction: column;
  285. justify-content: flex-start;
  286. position: absolute;
  287. top: 201rpx;
  288. left: 50%;
  289. transform: translateX(-325rpx);
  290. width: 650rpx;
  291. height: 732rpx;
  292. background: #ffffff;
  293. box-shadow: 0rpx 0rpx 13rpx 0rpx rgba(0, 0, 0, 0.29);
  294. border-radius: 10rpx;
  295. overflow: hidden;
  296. box-sizing: border-box;
  297. z-index: 6;
  298. .top {
  299. display: flex;
  300. justify-content: space-between;
  301. width: 650rpx;
  302. height: 90rpx;
  303. background: #e7eef5;
  304. line-height: 90rpx;
  305. text {
  306. width: 161rpx;
  307. height: 90rpx;
  308. margin-left: 35rpx;
  309. line-height: 90rpx;
  310. font-size: 32rpx;
  311. color: #333333;
  312. }
  313. .close {
  314. position: relative;
  315. width: 120rpx;
  316. height: 80rpx;
  317. background: #e7eef5;
  318. .image {
  319. position: absolute;
  320. top: 40%;
  321. left: 50%;
  322. width: 18rpx;
  323. height: 18rpx;
  324. background-image: url(../../static/images/close.png);
  325. background-size: 100%;
  326. }
  327. }
  328. }
  329. .name,
  330. .tel {
  331. display: flex;
  332. justify-content: space-between;
  333. width: 570rpx;
  334. height: 56rpx;
  335. margin: 0 auto;
  336. margin-top: 30rpx;
  337. text {
  338. width: 110rpx;
  339. height: 56rpx;
  340. font-size: 28rpx;
  341. color: #333333;
  342. text-align: center;
  343. line-height: 56rpx;
  344. }
  345. input {
  346. width: 453rpx;
  347. height: 56rpx;
  348. font-size: 28rpx;
  349. border: 1rpx solid #bfbfbf;
  350. border-radius: 5rpx;
  351. text-align: left;
  352. text-indent: 10rpx;
  353. }
  354. }
  355. .name {
  356. text {
  357. text-align: right;
  358. }
  359. }
  360. .title {
  361. width: 570rpx;
  362. height: 30rpx;
  363. margin: 0 auto;
  364. margin-top: 40rpx;
  365. color: #333333;
  366. font-size: 28rpx;
  367. line-height: 30rpx;
  368. }
  369. textarea {
  370. width: 570rpx;
  371. height: 230rpx;
  372. border: 1rpx solid #cccccc;
  373. border-radius: 10rpx;
  374. margin: 0 auto;
  375. margin-top: 20rpx;
  376. }
  377. button {
  378. width: 170rpx;
  379. height: 80rpx;
  380. margin: 0 auto;
  381. margin-top: 30rpx;
  382. background: #298def;
  383. border-radius: 4px;
  384. color: #fff;
  385. text-align: center;
  386. line-height: 80rpx;
  387. }
  388. }
  389. }