forgetpwd.wxss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. .line {
  21. width: 2rpx;
  22. height: 24rpx;
  23. background: #CDCDCD;
  24. margin: 0 24rpx;
  25. }
  26. .code {
  27. font-size: 30rpx;
  28. color: #4775EA;
  29. }
  30. .code.act {
  31. color: #666666;
  32. }
  33. .pwd-retrieve-container {
  34. padding: 10rpx 36rpx;
  35. }
  36. .pwd .rbtn {
  37. width: 100%;
  38. height: 98rpx;
  39. background: #1f57e6;
  40. border-radius: 49rpx;
  41. text-align: center;
  42. line-height: 98rpx;
  43. font-size: 32rpx;
  44. font-weight: bold;
  45. color: #FFFEFE;
  46. margin-top: 68rpx;
  47. }
  48. .pwd .uni-forms-item {
  49. height: 126rpx;
  50. background: #FFFFFF;
  51. border-radius: 18rpx;
  52. margin-top: 30rpx;
  53. padding: 0 40rpx;
  54. box-sizing: border-box;
  55. display: flex;
  56. align-items: center;
  57. margin-bottom: 0;
  58. }
  59. .pwd .uni-forms-item__label {
  60. font-size: 32rpx;
  61. font-weight: 500;
  62. color: #161616;
  63. flex: 0 0 auto;
  64. width: auto !important;
  65. }
  66. .pwd .uni-easyinput {
  67. flex: 1;
  68. text-align: right;
  69. font-size: 32rpx;
  70. color: #161616;
  71. }
  72. .pwd .uni-forms-item__content {
  73. display: flex;
  74. align-items: center;
  75. flex-direction: row;
  76. }
  77. .pwd .uni-easyinput__placeholder-class {
  78. font-size: 30rpx;
  79. }
  80. .pwd .uni-easyinput__content-input {
  81. font-size: 30rpx;
  82. }
  83. .pwd .uni-forms-item__error {
  84. margin-top: 20rpx;
  85. left: auto;
  86. right: 0;
  87. }