change-password.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. display: flex;
  11. flex-direction: column;
  12. background-color: #fff;
  13. border-radius: 16rpx;
  14. margin-bottom: 20rpx;
  15. }
  16. .row-between {
  17. width: 100%;
  18. height: 130rpx;
  19. display: flex;
  20. justify-content: space-between;
  21. align-items: center;
  22. padding: 0 24rpx;
  23. box-sizing: border-box;
  24. border-bottom: 1px solid #F6F6F6;
  25. }
  26. .row-between:last-child {
  27. border-bottom: none;
  28. }
  29. .label {
  30. color: #202020;
  31. font-size: 34rpx;
  32. }
  33. .input {
  34. flex: 1;
  35. color: #202020;
  36. font-size: 34rpx;
  37. }
  38. .placeholder {
  39. color: #A7A7A7;
  40. }
  41. .send-code {
  42. color: #F2501A;
  43. font-size: 26rpx;
  44. background-color: initial;
  45. }
  46. .btn-box {
  47. width: 100%;
  48. display: flex;
  49. justify-content: center;
  50. align-items: center;
  51. padding: 200rpx 0 28rpx;
  52. }
  53. .btn-box button {
  54. width: 100%;
  55. height: 90rpx;
  56. line-height: 90rpx;
  57. display: flex;
  58. align-items: center;
  59. justify-content: center;
  60. background-color: #E0E0E0;
  61. color: #919191;
  62. font-size: 34rpx;
  63. border-radius: 100rpx;
  64. }
  65. .active {
  66. background-color: #F2501A !important;
  67. color: #fff !important;
  68. }