changePwd.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. html,
  2. body {
  3. height: 100%;
  4. font-family: PingFangSC-Regular;
  5. color: #333333;
  6. overflow: hidden;
  7. }
  8. .item {
  9. box-sizing: border-box;
  10. padding: 28rpx 32rpx;
  11. display: flex;
  12. justify-content: space-between;
  13. font-size: 32rpx;
  14. background: #ffffff;
  15. position: relative;
  16. }
  17. .item:first-child{
  18. margin-bottom:24rpx;
  19. }
  20. .item > view {
  21. width: 480rpx;
  22. }
  23. .item > view > input {
  24. color: #666666;
  25. }
  26. .line {
  27. width: 718rpx;
  28. height: 2rpx;
  29. background: #ffffff;
  30. position: absolute;
  31. right: 0;
  32. bottom: 0;
  33. }
  34. .line > view {
  35. width: 718rpx;
  36. height: 2rpx;
  37. background: #eeeeee;
  38. float: right;
  39. }
  40. .loginOut {
  41. color: #ff5e5e;
  42. margin-top: 24rpx;
  43. box-sizing: border-box;
  44. padding: 28rpx 32rpx;
  45. background: #ffffff;
  46. text-align: center;
  47. }
  48. .disable {
  49. background: #dddddd;
  50. color: #AAAAAA;
  51. }
  52. .able{
  53. background: #3296fb;
  54. color: #ffffff;
  55. }
  56. .btn {
  57. width: 686rpx;
  58. height: 90rpx;
  59. margin: 48rpx 0 0 32rpx;
  60. border-radius: 45rpx;
  61. text-align: center;
  62. line-height: 90rpx;
  63. }