jiaofeiSuccess.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. .bxcontainer {
  2. padding: 20rpx;
  3. background-color: #f5f5f5;
  4. min-height: 100vh;
  5. padding-top: calc(90rpx + 44px + 20rpx); /* 增加了额外的顶部间距 */
  6. }
  7. .custom-nav {
  8. display: flex;
  9. align-items: center;
  10. height: 90rpx;
  11. margin-bottom: 20rpx;
  12. background-color: #2E82FF;
  13. position: fixed;
  14. top: 0;
  15. left: 0;
  16. right: 0;
  17. z-index: 1000;
  18. padding: 0 20rpx;
  19. padding-top: 44px; /* 适配iPhone状态栏 */
  20. }
  21. .back-icon {
  22. position: fixed;
  23. top: 110rpx;
  24. left: 30rpx;
  25. z-index: 999;
  26. width: 40rpx;
  27. height: 40rpx;
  28. }
  29. .nav-title {
  30. flex: 1;
  31. text-align: center;
  32. font-size: 34rpx;
  33. color: #fff;
  34. }
  35. .success-content {
  36. display: flex;
  37. flex-direction: column;
  38. align-items: center;
  39. justify-content: center;
  40. margin-top: 60px;
  41. padding: 0 30px;
  42. position: relative;
  43. }
  44. .success-icon {
  45. width: 120px;
  46. height: 120px;
  47. margin-bottom: 20px;
  48. }
  49. .success-title {
  50. font-size: 18px;
  51. font-weight: 500;
  52. margin-bottom: 15px;
  53. color: rgba(28, 28, 47, 1);
  54. }
  55. .success-desc {
  56. font-size: 14px;
  57. color: rgba(134, 141, 155, 1);
  58. text-align: center;
  59. line-height: 1.5;
  60. }
  61. .bottom-buttons {
  62. position: relative;
  63. margin-top: 700rpx;
  64. display: flex;
  65. flex-direction: column;
  66. padding: 0 60rpx;
  67. align-items: center;
  68. width: 100%;
  69. box-sizing: border-box;
  70. }
  71. .continue-btn {
  72. background-color: #0080ff;
  73. color: white;
  74. border-radius: 24px;
  75. font-size: 18px;
  76. height: 48px;
  77. line-height: 48px;
  78. margin-bottom: 15px;
  79. width: 100%;
  80. text-align: center;
  81. }
  82. .return-btn {
  83. background-color: transparent;
  84. color: rgba(46, 130, 255, 1);
  85. border-radius: 24px;
  86. font-size: 16px;
  87. height: 48px;
  88. line-height: 48px;
  89. width: 100%;
  90. text-align: center;
  91. border: none;
  92. }