parentPay.scss 12 KB

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