parentPay.scss 9.3 KB

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