login-page.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. // 隐藏 edge 浏览器的密码查看按钮
  2. /* #ifdef H5 */
  3. .input-box ::v-deep{
  4. .uni-input-input[type="password"] {
  5. &::-ms-reveal {
  6. display: none;
  7. }
  8. }
  9. }
  10. /* #endif */
  11. .uni-content {
  12. padding: 0 60rpx;
  13. }
  14. .login-logo {
  15. display: none;
  16. }
  17. /* #ifndef APP-NVUE */
  18. @media screen and (min-width: 690px) {
  19. .uni-content {
  20. /* #ifndef H5 */
  21. padding: 0;
  22. max-width: 300px;
  23. margin-left: calc(50% - 200px);
  24. /* #endif */
  25. /* #ifdef H5 */
  26. margin: 0 auto;
  27. position: relative;
  28. top: 100px;
  29. padding: 30px 40px 80px 40px;
  30. max-width: 450px;
  31. max-height: 450px;
  32. border-radius: 10px;
  33. box-shadow: 0 0 20px #efefef;
  34. background-color: #FFF;
  35. /* #endif */
  36. }
  37. /* #ifdef H5 */
  38. .login-logo {
  39. display: flex;
  40. justify-content: center;
  41. }
  42. .login-logo image {
  43. width: 60px;
  44. height: 60px;
  45. }
  46. .register-back{
  47. display: none;
  48. }
  49. /* #endif */
  50. }
  51. .uni-content view {
  52. box-sizing: border-box;
  53. }
  54. /* #endif */
  55. .title {
  56. /* #ifndef APP-NVUE */
  57. display: flex;
  58. /* #endif */
  59. padding: 18px 0;
  60. font-weight: 800;
  61. flex-direction: column;
  62. }
  63. .tip {
  64. /* #ifndef APP-NVUE */
  65. display: flex;
  66. /* #endif */
  67. color: #BDBDC0;
  68. font-size: 11px;
  69. margin: 6px 0;
  70. }
  71. .input-box {
  72. padding: 4px;
  73. background-color: #F8F8F8;
  74. border-radius: 0;
  75. font-size: 14px;
  76. /* #ifndef APP-NVUE */
  77. display: flex;
  78. /* #endif */
  79. flex: 1;
  80. }
  81. .link {
  82. color: #04498c;
  83. cursor: pointer;
  84. }
  85. .uni-content ::v-deep .uni-forms-item__inner {
  86. padding-bottom: 8px;
  87. }
  88. .uni-btn {
  89. text-align: center;
  90. height: 40px;
  91. line-height: 40px;
  92. margin: 15px 0 0 0;
  93. color: #FFF !important;
  94. border-radius: 5px;
  95. }
  96. .uni-body.uni_modules-uni-id-pages-pages-login-login-withoutpwd{
  97. height: auto !important;
  98. }