paySuccess.scss 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .content {
  2. position: relative;
  3. width: 100%;
  4. height: 100%;
  5. font-family: "MicrosoftYaHei";
  6. font-weight: 400;
  7. image {
  8. position: absolute;
  9. top: 50rpx;
  10. left: 50%;
  11. transform: translateX(-115rpx);
  12. max-width: 230rpx;
  13. max-height: 230rpx;
  14. margin-top: 100rpx;
  15. }
  16. .tip {
  17. position: absolute;
  18. top: 280rpx;
  19. left: 50%;
  20. transform: translateX(-50rpx);
  21. // width: 150rpx;
  22. height: 54rpx;
  23. margin-top: 100rpx;
  24. font-size: 28rpx;
  25. font-weight: 700;
  26. color: #33cc33;
  27. }
  28. .item,
  29. .item-show {
  30. display: flex;
  31. flex-direction: column;
  32. justify-content: space-between;
  33. position: absolute;
  34. top: 300rpx;
  35. left: 50%;
  36. transform: translateX(-375rpx);
  37. width: 750rpx;
  38. height: 180rpx;
  39. margin-top: 300rpx;
  40. text-align: center;
  41. & text:nth-child(1) {
  42. font-size: 24rpx;
  43. color: rgba(104, 100, 100, 0.8);
  44. }
  45. & text:nth-child(2) {
  46. font-size: 100rpx;
  47. font-weight: 700;
  48. color: #000;
  49. }
  50. }
  51. .item-show {
  52. display: flex;
  53. flex-direction: column;
  54. justify-content: space-between;
  55. position: absolute;
  56. top: 300rpx;
  57. left: 50%;
  58. transform: translateX(-375rpx);
  59. width: 750rpx;
  60. height: 180rpx;
  61. margin-top: 300rpx;
  62. text-align: center;
  63. text {
  64. font-size: 100rpx;
  65. font-weight: 700;
  66. color: #000;
  67. }
  68. }
  69. button {
  70. position: absolute;
  71. top: 1000rpx;
  72. left: 50%;
  73. transform: translateX(-200rpx);
  74. width: 400rpx;
  75. height: 100rpx;
  76. font-size: 40rpx;
  77. color: #33cc33;
  78. background: #fff;
  79. border: 1rpx solid #33cc33;
  80. }
  81. }