login.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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 .logoText.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. margin-bottom: 20rpx;
  50. -webkit-box-reflect: below -16% -webkit-linear-gradient(transparent, transparent 65%, rgba(255, 255, 255, 0.3));
  51. }
  52. .text-area-content .logoText .logo.data-v-b237504c {
  53. height: 100rpx;
  54. width: 100rpx;
  55. -webkit-transform: translateY(20%);
  56. transform: translateY(20%);
  57. }
  58. .text-area-content .logoText .text1.data-v-b237504c {
  59. color: #505050;
  60. font-size: 56rpx;
  61. -webkit-transform: translateY(-10%);
  62. transform: translateY(-10%);
  63. height: 100rpx;
  64. line-height: 100rpx;
  65. }
  66. .text-area-content .text2.data-v-b237504c {
  67. color: gray;
  68. font-size: 36rpx;
  69. line-height: 150%;
  70. }
  71. .form-area.data-v-b237504c {
  72. margin-top: 80rpx;
  73. margin-bottom: 160rpx;
  74. }
  75. .form-area .name-area.data-v-b237504c, .form-area .pwd-area.data-v-b237504c {
  76. width: 100%;
  77. height: 100rpx;
  78. padding-left: 20rpx;
  79. padding-right: 20rpx;
  80. color: #000000;
  81. font-size: 30rpx;
  82. border: rgba(0, 0, 0, 0.3) solid 2rpx;
  83. text-align: left;
  84. display: flex;
  85. align-items: center;
  86. margin-bottom: 10rpx;
  87. }
  88. .form-area .name-area.data-v-b237504c {
  89. border-radius: 20rpx 20rpx 0 0;
  90. }
  91. .form-area .pwd-area.data-v-b237504c {
  92. border-radius: 0 0 20rpx 20rpx;
  93. }
  94. .form-area-btn.data-v-b237504c {
  95. height: 100rpx;
  96. width: 100%;
  97. line-height: 100rpx;
  98. outline: none;
  99. background: #19be6b;
  100. color: #fff;
  101. border-radius: 20rpx;
  102. margin-top: 30rpx;
  103. font-size: 32rpx;
  104. }
  105. @-webkit-keyframes logoText-data-v-b237504c {
  106. from {
  107. -webkit-transform: scaleX(0);
  108. transform: scaleX(0);
  109. }
  110. to {
  111. -webkit-transform: scaleX(1);
  112. transform: scaleX(1);
  113. }
  114. }
  115. @keyframes logoText-data-v-b237504c {
  116. from {
  117. -webkit-transform: scaleX(0);
  118. transform: scaleX(0);
  119. }
  120. to {
  121. -webkit-transform: scaleX(1);
  122. transform: scaleX(1);
  123. }
  124. }