index.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. page {
  28. background-color: #f3f3f3;
  29. }
  30. .content {
  31. display: flex;
  32. flex-direction: column;
  33. align-items: center;
  34. justify-content: center;
  35. }
  36. .logo {
  37. height: 300rpx;
  38. width: 300rpx;
  39. position: fixed;
  40. border-radius: 50%;
  41. top: 30%;
  42. left: 50%;
  43. -webkit-transform: translate(-50%, -50%);
  44. transform: translate(-50%, -50%);
  45. }
  46. .text-area {
  47. display: flex;
  48. justify-content: center;
  49. flex-direction: column;
  50. position: fixed;
  51. top: 55%;
  52. text-align: center;
  53. }
  54. .text-area-login {
  55. font-size: 32rpx;
  56. width: 400rpx;
  57. height: 100rpx;
  58. line-height: 100rpx;
  59. text-align: center;
  60. background-color: #fff;
  61. border: 1px solid #d5d9d9;
  62. border-radius: 8px;
  63. box-shadow: rgba(213, 217, 217, 0.5) 0 2px 5px 0;
  64. box-sizing: border-box;
  65. color: #0f1111;
  66. cursor: pointer;
  67. display: inline-block;
  68. padding: 0 10px 0 11px;
  69. position: relative;
  70. text-align: center;
  71. text-decoration: none;
  72. user-select: none;
  73. -webkit-user-select: none;
  74. touch-action: manipulation;
  75. vertical-align: middle;
  76. }
  77. .text-area-login:focus {
  78. border-color: #008296;
  79. box-shadow: rgba(213, 217, 217, 0.5) 0 2px 5px 0;
  80. outline: 0;
  81. }
  82. .text-area-login:hover {
  83. background-color: #f7fafa;
  84. }
  85. .text-area-visitor {
  86. margin-top: 40rpx;
  87. font-size: 32rpx;
  88. width: 400rpx;
  89. height: 100rpx;
  90. line-height: 100rpx;
  91. text-align: center;
  92. background-color: #fff;
  93. border: 1px solid #d5d9d9;
  94. border-radius: 8px;
  95. box-shadow: rgba(213, 217, 217, 0.5) 0 2px 5px 0;
  96. box-sizing: border-box;
  97. color: #0f1111;
  98. cursor: pointer;
  99. display: inline-block;
  100. padding: 0 10px 0 11px;
  101. position: relative;
  102. text-align: center;
  103. text-decoration: none;
  104. user-select: none;
  105. -webkit-user-select: none;
  106. touch-action: manipulation;
  107. vertical-align: middle;
  108. }
  109. .text-area-visitor:focus {
  110. border-color: #008296;
  111. box-shadow: rgba(213, 217, 217, 0.5) 0 2px 5px 0;
  112. outline: 0;
  113. }
  114. .text-area-visitor:hover {
  115. background-color: #f7fafa;
  116. }
  117. .title {
  118. font-size: 36rpx;
  119. color: #8f8f94;
  120. }
  121. .text-area-content {
  122. position: relative;
  123. bottom: -180rpx;
  124. }
  125. .text-area-content .text1 {
  126. color: #505050;
  127. font-size: 46rpx;
  128. line-height: 150%;
  129. }
  130. .text-area-content .text2 {
  131. color: gray;
  132. font-size: 30rpx;
  133. line-height: 150%;
  134. }
  135. .text-area-content .line {
  136. width: 354rpx;
  137. height: 2rpx;
  138. margin: auto;
  139. color: #505050;
  140. background-color: #999;
  141. font-size: 32rpx;
  142. line-height: 150%;
  143. text-align: center;
  144. }