hot.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. body {
  27. height: 100%;
  28. background-color: #f4f4f4;
  29. }
  30. .viewport {
  31. display: flex;
  32. flex-direction: column;
  33. height: 100%;
  34. padding: 5.625rem 0 0;
  35. position: relative;
  36. }
  37. .cover {
  38. width: 23.4375rem;
  39. height: 7.03125rem;
  40. border-radius: 0 0 1.25rem 1.25rem;
  41. overflow: hidden;
  42. position: absolute;
  43. left: 0;
  44. top: 0;
  45. }
  46. .cover .image {
  47. width: 23.4375rem;
  48. }
  49. .scroll-view {
  50. flex: 1;
  51. }
  52. .tabs {
  53. display: flex;
  54. justify-content: space-evenly;
  55. height: 3.125rem;
  56. line-height: 2.8125rem;
  57. margin: 0 0.625rem;
  58. font-size: 0.875rem;
  59. border-radius: 0.3125rem;
  60. box-shadow: 0 0.125rem 0.15625rem rgba(200, 200, 200, 0.3);
  61. color: #333;
  62. background-color: #fff;
  63. position: relative;
  64. z-index: 9;
  65. }
  66. .tabs .text {
  67. margin: 0 0.625rem;
  68. position: relative;
  69. }
  70. .tabs .active::after {
  71. content: "";
  72. width: 1.25rem;
  73. height: 0.125rem;
  74. transform: translate(-50%);
  75. background-color: #27ba9b;
  76. position: absolute;
  77. left: 50%;
  78. bottom: 0.75rem;
  79. }
  80. .goods {
  81. display: flex;
  82. flex-wrap: wrap;
  83. justify-content: space-between;
  84. padding: 0 0.625rem 0.625rem;
  85. }
  86. .goods .navigator {
  87. width: 10.78125rem;
  88. padding: 0.625rem;
  89. margin-top: 0.625rem;
  90. border-radius: 0.3125rem;
  91. background-color: #fff;
  92. }
  93. .goods .thumb {
  94. width: 9.53125rem;
  95. height: 9.53125rem;
  96. }
  97. .goods .name {
  98. height: 2.75rem;
  99. font-size: 0.8125rem;
  100. }
  101. .goods .price {
  102. line-height: 1;
  103. color: #cf4444;
  104. font-size: 0.9375rem;
  105. }
  106. .goods .symbol {
  107. font-size: 70%;
  108. }
  109. .goods .decimal {
  110. font-size: 70%;
  111. }
  112. .loading-text {
  113. text-align: center;
  114. font-size: 0.875rem;
  115. color: #666;
  116. padding: 0.625rem 0 1.5625rem;
  117. }