index.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /* pages/pay/index.wxss */
  2. .pay_info {
  3. background-color: #0387FE;
  4. color: #fff;
  5. height: 388rpx;
  6. padding: 76rpx 32rpx;
  7. }
  8. .pay_text {
  9. display: block;
  10. font-size: 36rpx;
  11. text-align: center;
  12. }
  13. .pay_price {
  14. display: block;
  15. font-size: 80rpx;
  16. font-weight: bold;
  17. margin: 20rpx 0;
  18. text-align: center;
  19. }
  20. .pay_game {
  21. display: block;
  22. font-size: 36rpx;
  23. text-align: center;
  24. }
  25. .pay_tips {
  26. color: #666;
  27. display: block;
  28. font-size: 32rpx;
  29. margin: 44rpx 0 180rpx;
  30. text-align: center;
  31. }
  32. .pay_btn {
  33. background-color: #18ad1a;
  34. border-radius: 8rpx;
  35. color: #fff;
  36. font-size: 36rpx;
  37. height: 84rpx;
  38. line-height: 84rpx;
  39. margin: 36rpx auto 0;
  40. width: 600rpx;
  41. }
  42. .pay_btn__default {
  43. background-color: #f8f8f8;
  44. border: 2rpx solid #cacaca;
  45. color: #333;
  46. }
  47. .pay__status {
  48. background-color: rgba(0, 0, 0, 0.5);
  49. height: 100%;
  50. left: 0;
  51. position: fixed;
  52. top: 0;
  53. width: 100%;
  54. }
  55. .pay__status-inner {
  56. background-color: #fff;
  57. border-radius: 20rpx;
  58. height: 432rpx;
  59. left: 50%;
  60. margin: -216rpx 0 0 -316rpx;
  61. position: absolute;
  62. text-align: center;
  63. top: 50%;
  64. width: 632rpx;
  65. }
  66. .pay__status-icon {
  67. display: block;
  68. height: 128rpx;
  69. margin: 66rpx auto 28rpx;
  70. width: 128rpx;
  71. }
  72. .pay__status-tips {
  73. color: #333;
  74. display: block;
  75. font-size: 28rpx;
  76. font-weight: bold;
  77. text-align: center;
  78. }
  79. .pay__status-btn {
  80. background-color: #557CFF;
  81. border-radius: 36rpx;
  82. color: #fff;
  83. display: inline-block;
  84. font-size: 26rpx;
  85. height: 70rpx;
  86. line-height: 70rpx;
  87. margin: 52rpx auto 0;
  88. padding: 0 46rpx;
  89. }
  90. .pay__status-remark {
  91. color: #666;
  92. display: block;
  93. font-size: 26rpx;
  94. margin-top: 60rpx;
  95. }