pay.scss 10 KB

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