payment.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .wrapper {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. height: 100vh;
  9. width: 100vw;
  10. background-color: rgba(0, 0, 0, 0.6);
  11. z-index: 9999;
  12. }
  13. .wrapper .pay-ment {
  14. background: white;
  15. display: flex;
  16. flex-direction: column;
  17. align-items: center;
  18. justify-content: space-between;
  19. min-height: 800rpx;
  20. height: auto;
  21. border-radius: 20rpx;
  22. width: 600rpx;
  23. padding: 20rpx;
  24. z-index: 9999;
  25. }
  26. .wrapper .pay-ment .title {
  27. font-size: 38rpx;
  28. font-weight: 700;
  29. letter-spacing: 2rpx;
  30. }
  31. .wrapper .pay-ment .payInfo {
  32. align-items: center;
  33. display: flex;
  34. flex-direction: column;
  35. }
  36. .wrapper .pay-ment .payInfo .count-down {
  37. display: flex;
  38. align-items: center;
  39. color: #acacac;
  40. font-size: 24rpx;
  41. }
  42. .wrapper .pay-ment .payInfo .money {
  43. display: flex;
  44. align-items: baseline;
  45. }
  46. .wrapper .pay-ment .payInfo .money .text:nth-child(2) {
  47. font-size: 70rpx;
  48. }
  49. .wrapper .pay-ment .payInfo .payee {
  50. color: #acacac;
  51. font-size: 24rpx;
  52. }
  53. .wrapper .pay-ment .payment-content {
  54. width: 100%;
  55. }
  56. .wrapper .pay-ment .case {
  57. padding: 10rpx 20rpx;
  58. display: flex;
  59. justify-content: space-between;
  60. align-items: center;
  61. }
  62. .wrapper .pay-ment .case .case_view {
  63. display: flex;
  64. align-items: center;
  65. }
  66. .wrapper .pay-ment .case .txt {
  67. letter-spacing: 2rpx;
  68. padding: 0 20rpx;
  69. }
  70. .van-hairline--bottom {
  71. position: absolute;
  72. padding-top: 0 !important;
  73. }