You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
2.3 KiB

2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
  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. image.data-v-f8b2b374 {
  27. display: block;
  28. width: 100%;
  29. height: 100%;
  30. }
  31. .other.data-v-f8b2b374 {
  32. display: flex;
  33. flex-direction: column;
  34. align-items: center;
  35. justify-content: center;
  36. font-size: 22rpx;
  37. color: #9C9C9C;
  38. position: fixed;
  39. bottom: 80rpx;
  40. left: 0;
  41. width: 100%;
  42. }
  43. .other .lineTxt.data-v-f8b2b374 {
  44. position: relative;
  45. }
  46. .other .lineTxt.data-v-f8b2b374::before {
  47. content: "";
  48. position: absolute;
  49. width: 240rpx;
  50. height: 1rpx;
  51. top: 50%;
  52. background: #e6e6e6;
  53. right: 150rpx;
  54. transform: translateY(50%);
  55. z-index: 99;
  56. }
  57. .other .lineTxt.data-v-f8b2b374::after {
  58. content: "";
  59. position: absolute;
  60. width: 240rpx;
  61. height: 1rpx;
  62. top: 50%;
  63. background: #e6e6e6;
  64. left: 150rpx;
  65. transform: translateY(50%);
  66. z-index: 99;
  67. }
  68. .other .icon.data-v-f8b2b374 {
  69. width: 80rpx;
  70. height: 80rpx;
  71. margin: 20rpx 0;
  72. }
  73. .content .logoCon.data-v-f8b2b374 {
  74. display: flex;
  75. flex-direction: column;
  76. align-items: center;
  77. justify-content: center;
  78. padding-top: 150rpx;
  79. }
  80. .content .logoCon .logo.data-v-f8b2b374 {
  81. width: 160rpx;
  82. height: 160rpx;
  83. }
  84. .content .logoCon .name.data-v-f8b2b374 {
  85. font-size: 32rpx;
  86. margin-top: 20rpx;
  87. font-weight: 700;
  88. }
  89. .content .oneBtnBox.data-v-f8b2b374 {
  90. margin-top: 40rpx;
  91. position: relative;
  92. }
  93. .content .oneBtnBox .cotactzz.data-v-f8b2b374 {
  94. position: absolute;
  95. left: 0;
  96. right: 0;
  97. top: 0;
  98. opacity: 0;
  99. }