cancel.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. .image {
  2. display: flex;
  3. width: 64px;
  4. height: 64px;
  5. margin-top: 20px;
  6. }
  7. .container {
  8. background: #F4F5F9;
  9. background-repeat: no-repeat;
  10. background-size: cover;
  11. width: 100vw;
  12. height: 100vh;
  13. display: flex;
  14. flex-direction: column;
  15. justify-content: flex-start;
  16. align-items: center;
  17. box-sizing: border-box;
  18. }
  19. .container .title {
  20. position: relative;
  21. width: 100vw;
  22. font-size: 18px;
  23. color: #000000;
  24. letter-spacing: 0;
  25. text-align: center;
  26. line-height: 28px;
  27. font-weight: 600;
  28. background: #FFFFFF;
  29. margin-top: 3.8vh;
  30. padding: 1.2vh 0;
  31. }
  32. .btn-goback {
  33. position: absolute;
  34. left: 2vw;
  35. top: 1.2vh;
  36. width: 8vw;
  37. height: 8vw;
  38. z-index: 9;
  39. }
  40. .container .main {
  41. padding: 30px;
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: center;
  45. align-items: center;
  46. }
  47. .container .main text {
  48. text-align: left;
  49. font-family: PingFangSC-Regular;
  50. font-size: 14px;
  51. color: #999999;
  52. letter-spacing: 0;
  53. }
  54. .container .main .account {
  55. padding: 20px 0;
  56. color: #999999;
  57. }
  58. .container .main button {
  59. width: 100%;
  60. background: #006eff;
  61. }
  62. .mask {
  63. position: fixed;
  64. top: 0;
  65. /* #ifdef H5 */
  66. top: calc(88rpx + constant(safe-area-inset-top));
  67. top: calc(88rpx + env(safe-area-inset-top));
  68. /* #endif */
  69. left: 0;
  70. z-index: 10;
  71. width: 100vw;
  72. height: 100vh;
  73. display: flex;
  74. justify-content: center;
  75. align-items: flex-end;
  76. background: rgba(0, 0, 0, 0.3);
  77. }
  78. .popup {
  79. background: #ffffff;
  80. width: 100%;
  81. overflow: hidden;
  82. }
  83. .popup-main {
  84. height: 56px;
  85. padding: 60rpx 0;
  86. text-align: center;
  87. font-family: PingFangSC-Regular;
  88. font-size: 14px;
  89. color: #999999;
  90. letter-spacing: 0;
  91. text-align: center;
  92. line-height: 18px;
  93. }
  94. .popup-footer {
  95. display: flex;
  96. }
  97. .popup-footer button {
  98. flex: 1;
  99. }
  100. .popup-footer .cancel {
  101. font-family: PingFangSC-Regular;
  102. font-size: 16px;
  103. color: #000000;
  104. letter-spacing: 0;
  105. text-align: center;
  106. line-height: 22px;
  107. }
  108. .popup-footer .submit {
  109. font-family: PingFangSC-Regular;
  110. font-size: 16px;
  111. color: #E85454;
  112. letter-spacing: 0;
  113. text-align: center;
  114. line-height: 22px;
  115. height: 56px;
  116. }
  117. .cancellation {
  118. margin-top: 68px;
  119. margin-left: 20px;
  120. margin-right: 20px;
  121. background-color: white;
  122. width: 280px;
  123. height: 46px;
  124. border: 1px solid #E85454;
  125. border-radius: 24px;
  126. border-radius: 24px;
  127. }
  128. .confirm-cancellation {
  129. margin-left: 110px;
  130. margin-top: 13px;
  131. font-family: PingFangSC-Regular;
  132. font-size: 16px;
  133. color: #E85454;
  134. letter-spacing: 0;
  135. }