index.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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-c7c34cb2 {
  28. display: flex;
  29. flex-direction: column;
  30. align-items: center;
  31. justify-content: center;
  32. }
  33. .logo.data-v-c7c34cb2 {
  34. height: 300rpx;
  35. width: 300rpx;
  36. position: fixed;
  37. top: 50%;
  38. left: 50%;
  39. -webkit-transform: translate(-50%, -50%);
  40. transform: translate(-50%, -50%);
  41. }
  42. .text-area.data-v-c7c34cb2 {
  43. display: flex;
  44. justify-content: center;
  45. flex-direction: column;
  46. position: fixed;
  47. top: 75%;
  48. text-align: center;
  49. }
  50. .text-area-login.data-v-c7c34cb2 {
  51. font-size: 32rpx;
  52. width: 448rpx;
  53. height: 84rpx;
  54. line-height: 84rpx;
  55. text-align: center;
  56. border: 2rpx solid #000000;
  57. border-radius: 38rpx;
  58. box-sizing: border-box;
  59. }
  60. .title.data-v-c7c34cb2 {
  61. font-size: 36rpx;
  62. color: #8f8f94;
  63. }
  64. .text-area-content.data-v-c7c34cb2 {
  65. margin-top: 50rpx;
  66. }
  67. .text-area-content .text1.data-v-c7c34cb2 {
  68. color: #505050;
  69. font-size: 56rpx;
  70. line-height: 150%;
  71. }
  72. .text-area-content .text2.data-v-c7c34cb2 {
  73. color: gray;
  74. font-size: 30rpx;
  75. line-height: 150%;
  76. }
  77. .text-area-content .line.data-v-c7c34cb2 {
  78. width: 354rpx;
  79. height: 2rpx;
  80. margin: auto;
  81. color: #505050;
  82. background-color: #999;
  83. font-size: 32rpx;
  84. line-height: 150%;
  85. text-align: center;
  86. }