parentPay.scss 9.1 KB

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