success.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* mycustomer/pages/success/success.wxss */
  2. .successpage {
  3. width: 100%;
  4. height: 100vh;
  5. position: relative;
  6. overflow: hidden;
  7. background-color: #249DFA;
  8. }
  9. .success-top {
  10. width: 100%;
  11. height: 30%;
  12. display: flex;
  13. flex-direction: column;
  14. justify-content: center;
  15. align-items: center;
  16. }
  17. .success-top image {
  18. width: 260rpx;
  19. height: 200rpx;
  20. }
  21. .success-top text {
  22. color: #fff;
  23. font-size: 32rpx;
  24. margin-top: 20rpx;
  25. }
  26. .success-bottom {
  27. width: 100%;
  28. height: 80%;
  29. position: relative;
  30. display: flex;
  31. justify-content: center;
  32. align-items: center;
  33. }
  34. .success-bottom .bottomBg {
  35. position: absolute;
  36. width: 100%;
  37. height: 100%;
  38. z-index: 0;
  39. }
  40. .successQrBox {
  41. width: 80%;
  42. height: 500rpx;
  43. position: relative;
  44. z-index: 2;
  45. margin-bottom: 300rpx;
  46. display: flex;
  47. flex-direction: column;
  48. justify-content: center;
  49. align-items: center;
  50. }
  51. .qrBox {
  52. width: 450rpx;
  53. height: 450rpx;
  54. position: relative;
  55. display: flex;
  56. justify-content: center;
  57. align-items: center;
  58. top: 20rpx;
  59. }
  60. .qrBox .qrBoxBg {
  61. position: absolute;
  62. width: 100%;
  63. height: 100%;
  64. }
  65. .imgicon{
  66. display: block;
  67. width: 380rpx;
  68. height: 380rpx;
  69. }
  70. .text1 {
  71. font-size: 32rpx;
  72. color: #333333;
  73. font-weight: 700;
  74. }
  75. .text2 {
  76. font-size: 24rpx;
  77. color: #999999;
  78. margin: 10rpx 0rpx;
  79. }
  80. .pt20 {
  81. position: relative;
  82. top: 60rpx;
  83. }