login.wxss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .content.data-v-b237504c {
  28. display: flex;
  29. flex-direction: column;
  30. align-items: center;
  31. justify-content: center;
  32. }
  33. .text-area.data-v-b237504c {
  34. display: flex;
  35. justify-content: center;
  36. flex-direction: column;
  37. position: fixed;
  38. top: 25%;
  39. -webkit-transform: translateY(-20%);
  40. transform: translateY(-20%);
  41. text-align: center;
  42. width: 80%;
  43. }
  44. .text-area-content.data-v-b237504c {
  45. -webkit-animation-name: logoText-data-v-b237504c;
  46. animation-name: logoText-data-v-b237504c;
  47. -webkit-animation-duration: 1s;
  48. animation-duration: 1s;
  49. }
  50. .text-area-content .logoText.data-v-b237504c {
  51. margin-bottom: 20rpx;
  52. -webkit-box-reflect: below -20% -webkit-linear-gradient(transparent, transparent 50%, rgba(255, 255, 255, 0.3));
  53. }
  54. .text-area-content .logoText .logo.data-v-b237504c {
  55. height: 100rpx;
  56. width: 100rpx;
  57. }
  58. .text-area-content .logoText .logo1.data-v-b237504c {
  59. height: 100rpx;
  60. width: 320rpx;
  61. }
  62. .text-area-content .logoText .text1_bck.data-v-b237504c {
  63. color: #505050;
  64. font-size: 56rpx;
  65. -webkit-transform: translateY(-10%);
  66. transform: translateY(-10%);
  67. height: 100rpx;
  68. line-height: 100rpx;
  69. }
  70. .text-area-content .text2.data-v-b237504c {
  71. color: gray;
  72. font-size: 36rpx;
  73. line-height: 150%;
  74. }
  75. .form-area.data-v-b237504c {
  76. margin-top: 80rpx;
  77. margin-bottom: 160rpx;
  78. }
  79. .form-area .name-area.data-v-b237504c, .form-area .pwd-area.data-v-b237504c {
  80. width: 100%;
  81. color: #000000;
  82. font-size: 30rpx;
  83. border-bottom: rgba(0, 0, 0, 0.2) solid 2rpx;
  84. text-align: left;
  85. display: flex;
  86. flex-direction: column;
  87. margin-bottom: 10rpx;
  88. }
  89. .form-area .pwd-area .password-input.data-v-b237504c {
  90. display: flex;
  91. align-items: center;
  92. }
  93. .form-area .pwd-area .password-input .iconfont.data-v-b237504c {
  94. color: #8c8986;
  95. }
  96. .form-area .input-label.data-v-b237504c {
  97. margin: 16rpx 0;
  98. font-size: 26rpx;
  99. }
  100. .form-area-btn.data-v-b237504c {
  101. height: 100rpx;
  102. width: 100%;
  103. line-height: 100rpx;
  104. outline: none;
  105. background: #19be6b;
  106. color: #fff;
  107. border-radius: 20rpx;
  108. margin-top: 30rpx;
  109. font-size: 32rpx;
  110. }
  111. @-webkit-keyframes logoText-data-v-b237504c {
  112. from {
  113. -webkit-transform: scaleY(0);
  114. transform: scaleY(0);
  115. }
  116. to {
  117. -webkit-transform: scaleY(1);
  118. transform: scaleY(1);
  119. }
  120. }
  121. @keyframes logoText-data-v-b237504c {
  122. from {
  123. -webkit-transform: scaleY(0);
  124. transform: scaleY(0);
  125. }
  126. to {
  127. -webkit-transform: scaleY(1);
  128. transform: scaleY(1);
  129. }
  130. }