resource.wxss 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. uni-search-bar.data-v-081eb374 {
  28. border-radius: 4px;
  29. }
  30. .links.data-v-081eb374 {
  31. display: flex;
  32. justify-content: space-evenly;
  33. align-items: center;
  34. margin-top: 16px;
  35. }
  36. .link-button.data-v-081eb374 {
  37. border: none;
  38. /* 无边框 */
  39. color: #c2c2c2;
  40. /* 文本颜色 */
  41. }
  42. .link-button.data-v-081eb374:after {
  43. border: none;
  44. }
  45. .link-button.active.data-v-081eb374 {
  46. color: #616366;
  47. background-position: 50% 95%;
  48. background-size: 85%;
  49. }
  50. .image.data-v-081eb374 {
  51. width: 150px;
  52. height: 100px;
  53. border-radius: 4px;
  54. }
  55. .text.data-v-081eb374 {
  56. font-weight: 600;
  57. max-width: 120px;
  58. font-size: 14px;
  59. margin-top: 5px;
  60. }
  61. .text1.data-v-081eb374 {
  62. margin-top: 5px;
  63. color: #999999;
  64. max-width: 120px;
  65. font-size: 10px;
  66. }
  67. .grid-dynamic-box.data-v-081eb374 {
  68. margin-bottom: 15px;
  69. }
  70. .uni-grid-item.data-v-081eb374 {
  71. height: 160px;
  72. }
  73. .grid-item-box.data-v-081eb374 {
  74. flex: 1;
  75. display: flex;
  76. flex-direction: column;
  77. align-items: center;
  78. padding: 10px 0;
  79. height: 160px;
  80. }
  81. .grid-item-box .v1.data-v-081eb374 {
  82. display: flex;
  83. flex-direction: column;
  84. align-items: flex-start;
  85. height: 160px;
  86. }
  87. .grid-item-box-row.data-v-081eb374 {
  88. flex: 1;
  89. display: flex;
  90. flex-direction: row;
  91. align-items: center;
  92. justify-content: center;
  93. padding: 15px 0;
  94. }