index.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .login-container.data-v-d08ef7d4 {
  27. display: flex;
  28. flex-direction: column;
  29. align-items: center;
  30. justify-content: center;
  31. height: 100vh;
  32. background-color: #f0f2f5;
  33. }
  34. .title.data-v-d08ef7d4 {
  35. font-size: 36rpx;
  36. color: #1a73e8;
  37. margin-bottom: 80rpx;
  38. font-weight: bold;
  39. }
  40. .wechat-btn.data-v-d08ef7d4 {
  41. display: flex;
  42. align-items: center;
  43. justify-content: center;
  44. width: 600rpx;
  45. height: 120rpx;
  46. background-color: #07c160;
  47. color: white;
  48. border-radius: 60rpx;
  49. box-shadow: 0 8rpx 32rpx rgba(7, 193, 96, 0.15);
  50. font-size: 32rpx;
  51. margin-bottom: 40rpx;
  52. }
  53. .wechat-btn .wechat-icon.data-v-d08ef7d4 {
  54. width: 60rpx;
  55. height: 60rpx;
  56. margin-right: 20rpx;
  57. }
  58. .loading-mask.data-v-d08ef7d4 {
  59. position: fixed;
  60. top: 0;
  61. left: 0;
  62. width: 100%;
  63. height: 100%;
  64. background-color: rgba(0, 0, 0, 0.3);
  65. display: flex;
  66. align-items: center;
  67. justify-content: center;
  68. z-index: 9999;
  69. }