cancel-account.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. .wrap {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. padding: 20rpx 24rpx;
  6. box-sizing: border-box;
  7. }
  8. .module {
  9. width: 100%;
  10. background-color: #FFFFFF;
  11. border-radius: 16rpx;
  12. padding: 14rpx 30rpx 50rpx 20rpx;
  13. box-sizing: border-box;
  14. display: flex;
  15. flex-direction: column;
  16. }
  17. .label {
  18. width: 100%;
  19. color: #090909;
  20. font-size: 32rpx;
  21. margin-bottom: 15rpx;
  22. }
  23. .row {
  24. width: 100%;
  25. position: relative;
  26. padding-left: 28rpx;
  27. box-sizing: border-box;
  28. color: #919191;
  29. font-size: 28rpx;
  30. margin-bottom: 12rpx;
  31. }
  32. .row::after {
  33. content: "";
  34. position: absolute;
  35. left: 0;
  36. top: 14.5rpx;
  37. background-color: #F2501A;
  38. width: 12rpx;
  39. height: 12rpx;
  40. border-radius: 50%;
  41. }
  42. .btn-box {
  43. width: 100%;
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. padding: 32rpx 0 0;
  48. }
  49. .btn-box button {
  50. width: 100%;
  51. height: 90rpx;
  52. line-height: 90rpx;
  53. display: flex;
  54. align-items: center;
  55. justify-content: center;
  56. background-color: #E0E0E0;
  57. color: #919191;
  58. font-size: 34rpx;
  59. border-radius: 100rpx;
  60. }
  61. .active {
  62. background-color: #F2501A !important;
  63. color: #fff !important;
  64. }
  65. .login-bottom-row {
  66. width: 100%;
  67. display: flex;
  68. align-items: flex-start;
  69. color: #202020;
  70. font-size: 26rpx;
  71. margin-top: 200rpx;
  72. }
  73. .select-btn {
  74. display: flex;
  75. align-items: center;
  76. border-radius: initial;
  77. background-color: initial;
  78. margin-right: 20rpx;
  79. margin-top: 10rpx;
  80. }
  81. .select-btn image {
  82. width: 28rpx;
  83. height: 28rpx;
  84. }
  85. .red-color {
  86. color: #F2501A;
  87. }