index.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. page {
  2. height: 100%;
  3. background: linear-gradient(90deg, rgba(78, 171, 225, 1) 0%, rgba(49, 121, 225, 1) 100%);
  4. }
  5. .part {
  6. display: flex;
  7. flex-direction: column;
  8. justify-content: center;
  9. align-items: center;
  10. height: 50%;
  11. font-size: 28rpx;
  12. }
  13. .money {
  14. font-size: 80rpx;
  15. color: #fff;
  16. margin: 30rpx 0;
  17. }
  18. .text {
  19. font-size: 12px;
  20. color: #b0d1ff;
  21. }
  22. .tixian {
  23. width: 440rpx;
  24. height: 100rpx;
  25. line-height: 100rpx;
  26. text-align: center;
  27. color: #3f91e1;
  28. background: #fff;
  29. border-radius: 50rpx;
  30. margin-top: 60rpx;
  31. }
  32. .money-detail {
  33. color: #169bd5;
  34. }
  35. .icon {
  36. width: 40rpx;
  37. }
  38. .shouzhi {
  39. font-size: 28rpx;
  40. color: #fff;
  41. }
  42. .cover {
  43. height: 100%;
  44. width: 100%;
  45. position: fixed;
  46. left: 0;
  47. top: 0;
  48. background: rgba(0, 0, 0, 0.4);
  49. display: flex;
  50. align-items: center;
  51. justify-content: center;
  52. }
  53. .model {
  54. width: 600rpx;
  55. height: 320rpx;
  56. background: #f8f8f8;
  57. border-radius: 30rpx;
  58. display: flex;
  59. flex-direction: column;
  60. justify-content: space-between;
  61. }
  62. .message {
  63. flex: 1;
  64. display: flex;
  65. align-items: center;
  66. justify-content: center;
  67. padding: 0 100rpx;
  68. box-sizing: border-box;
  69. text-align: center;
  70. }
  71. .model-button {
  72. border-top: 2rpx solid #eee;
  73. display: flex;
  74. align-items: center;
  75. justify-content: space-between;
  76. }
  77. .cancel, .confirm {
  78. width: 50%;
  79. color: #327ae1;
  80. line-height: 1;
  81. text-align: center;
  82. box-sizing: border-box;
  83. padding: 30rpx 0;
  84. }
  85. .confirm {
  86. flex: 1;
  87. font-weight: bold;
  88. }
  89. .cancel {
  90. border-right: 2rpx solid #eee;
  91. }