pay.scss 11 KB

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