main.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. @charset "UTF-8";
  2. /**
  3. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  4. *
  5. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  6. */
  7. /* 颜色变量 */
  8. /* 行为相关颜色 */
  9. /* 文字基本颜色 */
  10. /* 背景颜色 */
  11. /* 边框颜色 */
  12. /* 尺寸变量 */
  13. /* 文字尺寸 */
  14. /* 图片尺寸 */
  15. /* Border Radius */
  16. /* 水平间距 */
  17. /* 垂直间距 */
  18. /* 透明度 */
  19. /* 文章场景相关 */
  20. @font-face {
  21. font-family: "iconfont";
  22. /* Project id 4837432 */
  23. src: url("https://at.alicdn.com/t/c/font_4837432_m0jprcc44g.woff?t=1740725521618") format("woff"), url("https://at.alicdn.com/t/c/font_4837432_m0jprcc44g.ttf?t=1740725521618") format("truetype"), url("https://at.alicdn.com/t/c/font_4837432_m0jprcc44g.svg?t=1740725521618#iconfont") format("svg");
  24. }
  25. .iconfont {
  26. font-family: "iconfont" !important;
  27. font-size: 16px;
  28. font-style: normal;
  29. -webkit-font-smoothing: antialiased;
  30. -moz-osx-font-smoothing: grayscale;
  31. }
  32. .icon-search:before {
  33. content: "\e652";
  34. }
  35. .icon-left:before {
  36. content: "\e627";
  37. }
  38. .icon-yiwen:before {
  39. content: "\e6f0";
  40. }
  41. .icon-mulu:before {
  42. content: "\e779";
  43. }
  44. .icon-Aa:before {
  45. content: "\e636";
  46. }
  47. .icon-liuyan:before {
  48. content: "\e650";
  49. }
  50. .icon-zuotijilu:before {
  51. content: "\e61a";
  52. }
  53. .icon-xiezi:before {
  54. content: "\e651";
  55. }
  56. .icon-bookmark:before {
  57. content: "\e89c";
  58. }
  59. .icon-bookshelf:before {
  60. content: "\e63d";
  61. }
  62. .icon-addbookshelf:before {
  63. content: "\e62d";
  64. }
  65. .icon-schedule:before {
  66. content: "\e672";
  67. }
  68. .icon-xuetang:before {
  69. content: "\e79c";
  70. }
  71. .icon-shezhi:before {
  72. content: "\e603";
  73. }
  74. .icon-xuanxiang:before {
  75. content: "\f105";
  76. }
  77. .icon-jilu:before {
  78. content: "\e62e";
  79. }
  80. .icon-bagua:before {
  81. content: "\e625";
  82. }
  83. page, page {
  84. margin: 0;
  85. padding: 0;
  86. }
  87. .center_in_sequence {
  88. display: flex;
  89. flex-direction: column;
  90. align-items: center;
  91. }
  92. .center_in {
  93. width: 100%;
  94. display: flex;
  95. justify-content: center;
  96. align-items: center;
  97. }
  98. .space_between {
  99. width: 100%;
  100. display: flex;
  101. justify-content: space-between;
  102. align-items: center;
  103. }
  104. .same_row_in {
  105. display: flex;
  106. align-items: center;
  107. }
  108. .up_and_down {
  109. display: flex;
  110. flex-direction: column;
  111. justify-content: space-between;
  112. align-items: center;
  113. }
  114. .frame {
  115. position: relative;
  116. }
  117. .frame::after {
  118. position: absolute;
  119. content: '';
  120. border-bottom: 4rpx solid #e4e7ed;
  121. width: 200%;
  122. height: 200%;
  123. top: 0;
  124. left: 0;
  125. -webkit-transform: scale(0.5);
  126. transform: scale(0.5);
  127. -webkit-transform-origin: 0 0;
  128. transform-origin: 0 0;
  129. pointer-events: none;
  130. /* 使伪元素不会阻止鼠标事件 */
  131. }
  132. page {
  133. background-color: #F8F8F8;
  134. }
  135. /*每个页面公共css */