cancel.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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. left: 0;
  66. z-index: 10;
  67. width: 100vw;
  68. height: 100vh;
  69. display: flex;
  70. justify-content: center;
  71. align-items: flex-end;
  72. background: rgba(0, 0, 0, 0.3);
  73. }
  74. .popup {
  75. background: #ffffff;
  76. width: 100%;
  77. overflow: hidden;
  78. }
  79. .popup-main {
  80. height: 56px;
  81. padding: 60rpx 0;
  82. text-align: center;
  83. font-family: PingFangSC-Regular;
  84. font-size: 14px;
  85. color: #999999;
  86. letter-spacing: 0;
  87. text-align: center;
  88. line-height: 18px;
  89. }
  90. .popup-footer {
  91. display: flex;
  92. }
  93. .popup-footer button {
  94. flex: 1;
  95. }
  96. .popup-footer .cancel {
  97. font-family: PingFangSC-Regular;
  98. font-size: 16px;
  99. color: #000000;
  100. letter-spacing: 0;
  101. text-align: center;
  102. line-height: 22px;
  103. }
  104. .popup-footer .submit {
  105. font-family: PingFangSC-Regular;
  106. font-size: 16px;
  107. color: #E85454;
  108. letter-spacing: 0;
  109. text-align: center;
  110. line-height: 22px;
  111. height: 56px;
  112. }
  113. .cancellation {
  114. margin-top: 68px;
  115. margin-left: 20px;
  116. margin-right: 20px;
  117. background-color: white;
  118. width: 280px;
  119. height: 46px;
  120. border: 1px solid #E85454;
  121. border-radius: 24px;
  122. border-radius: 24px;
  123. }
  124. .confirm-cancellation {
  125. margin-left: 110px;
  126. margin-top: 13px;
  127. font-family: PingFangSC-Regular;
  128. font-size: 16px;
  129. color: #E85454;
  130. letter-spacing: 0;
  131. }