paid.scss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .listAll{
  2. background: #FAF5EB;
  3. background-size: cover;
  4. height: 100vh;
  5. }
  6. .title{
  7. width: 100%;
  8. z-index: 10;
  9. background: #F5EAD2;
  10. padding-bottom: 20rpx;
  11. .titles{
  12. text-align: center;
  13. color: #000;
  14. font-size: 36rpx;
  15. font-family: Georgia, 'Times New Roman', Times, serif;
  16. font-weight: bold;
  17. padding-top: 10rpx;
  18. }
  19. .back{
  20. position: absolute;
  21. left: 30rpx;
  22. width: 80rpx;
  23. height: 35rpx;
  24. image{
  25. width: 18rpx;
  26. height: 100%;
  27. }
  28. }
  29. }
  30. .list{
  31. padding:30rpx 30rpx;
  32. li{
  33. margin-bottom: 30rpx;
  34. position: relative;
  35. overflow: hidden;
  36. padding:40rpx;
  37. display: flex;
  38. .left{
  39. flex:1;
  40. .name{
  41. font-size: 30rpx;
  42. }
  43. .time{
  44. font-size: 28rpx;
  45. color: #666666;
  46. }
  47. }
  48. .right{
  49. padding-left: 50rpx;
  50. font-size: 28rpx;
  51. color: #954024;
  52. span{
  53. font-size: 48rpx;
  54. }
  55. }
  56. }
  57. .payment{
  58. position: fixed;
  59. bottom:0;
  60. left: 0;
  61. width: calc(100% - 80rpx);
  62. background: #F5EAD2;
  63. display: flex;
  64. justify-content:space-between;
  65. padding:40rpx;
  66. .pay_l{
  67. font-size: 24rpx;
  68. color: #954024;
  69. span{
  70. font-size: 28rpx;
  71. }
  72. text{
  73. font-size: 48rpx;
  74. }
  75. }
  76. .pay_r{
  77. button{
  78. color: #fff;
  79. font-size: 30rpx;
  80. background-color: #954024;
  81. padding:0 56rpx;
  82. border-radius: 100rpx;
  83. }
  84. }
  85. }
  86. }