parentPay.scss 13 KB

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