paySuccess.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .content {
  2. position: relative;
  3. width: 750rpx;
  4. height: 1334rpx;
  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: 250rpx;
  39. text-align: center;
  40. text {
  41. font-size: 32rpx;
  42. font-weight: 700;
  43. color: #000;
  44. }
  45. }
  46. button {
  47. position: absolute;
  48. top: 900rpx;
  49. left: 50%;
  50. transform: translateX(-200rpx);
  51. width: 400rpx;
  52. height: 100rpx;
  53. font-size: 40rpx;
  54. color: #33cc33;
  55. background: #fff;
  56. border: 1rpx solid #33cc33;
  57. }
  58. }