paySuccess.scss 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. display: flex;
  30. flex-direction: column;
  31. justify-content: space-between;
  32. position: absolute;
  33. top: 300rpx;
  34. left: 50%;
  35. transform: translateX(-375rpx);
  36. width: 750rpx;
  37. height: 180rpx;
  38. margin-top: 300rpx;
  39. text-align: center;
  40. & text:nth-child(1) {
  41. font-size: 24rpx;
  42. color: rgba(104, 100, 100, 0.8);
  43. }
  44. & text:nth-child(2) {
  45. font-size: 100rpx;
  46. font-weight: 700;
  47. color: #000;
  48. }
  49. }
  50. .item-show {
  51. display: flex;
  52. flex-direction: column;
  53. justify-content: space-between;
  54. position: absolute;
  55. top: 300rpx;
  56. left: 50%;
  57. transform: translateX(-375rpx);
  58. width: 750rpx;
  59. height: 180rpx;
  60. margin-top: 300rpx;
  61. text-align: center;
  62. text {
  63. font-size: 100rpx;
  64. font-weight: 700;
  65. color: #000;
  66. }
  67. }
  68. button {
  69. position: absolute;
  70. top: 1000rpx;
  71. left: 50%;
  72. transform: translateX(-200rpx);
  73. width: 400rpx;
  74. height: 100rpx;
  75. font-size: 40rpx;
  76. color: #33cc33;
  77. background: #fff;
  78. border: 1rpx solid #33cc33;
  79. }
  80. }