resetpwd.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. @charset "UTF-8";
  2. /**
  3. * uni-app内置的常用样式变量
  4. */
  5. /* 行为相关颜色 */
  6. /* 文字基本颜色 */
  7. /* 背景颜色 */
  8. /* 边框颜色 */
  9. /* 尺寸变量 */
  10. /* 文字尺寸 */
  11. /* 图片尺寸 */
  12. /* Border Radius */
  13. /* 水平间距 */
  14. /* 垂直间距 */
  15. /* 透明度 */
  16. /* 文章场景相关 */
  17. page {
  18. background-color: #f5f5f5;
  19. }
  20. .pwd-retrieve-container {
  21. padding: 10rpx 36rpx;
  22. }
  23. .pwd .rbtn {
  24. width: 100%;
  25. height: 98rpx;
  26. background: #1f57e6;
  27. border-radius: 49rpx;
  28. text-align: center;
  29. line-height: 98rpx;
  30. font-size: 32rpx;
  31. font-weight: bold;
  32. color: #FFFEFE;
  33. margin-top: 68rpx;
  34. }
  35. .pwd .uni-forms-item {
  36. height: 126rpx;
  37. background: #FFFFFF;
  38. border-radius: 18rpx;
  39. margin-top: 30rpx;
  40. padding: 0 40rpx;
  41. box-sizing: border-box;
  42. display: flex;
  43. align-items: center;
  44. margin-bottom: 0;
  45. }
  46. .pwd .uni-forms-item__label {
  47. font-size: 32rpx;
  48. font-weight: 500;
  49. color: #161616;
  50. flex: 0 0 auto;
  51. width: auto !important;
  52. }
  53. .pwd .uni-easyinput {
  54. flex: 1;
  55. text-align: right;
  56. font-size: 32rpx;
  57. color: #161616;
  58. }
  59. .pwd .uni-forms-item__content {
  60. display: flex;
  61. align-items: center;
  62. flex-direction: row;
  63. }
  64. .pwd .uni-easyinput__placeholder-class {
  65. font-size: 30rpx;
  66. }
  67. .pwd .uni-easyinput__content-input {
  68. font-size: 30rpx;
  69. }
  70. .pwd .uni-forms-item__error {
  71. margin-top: 20rpx;
  72. left: auto;
  73. right: 0;
  74. }