mendianOeder.wxss 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  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-flex, .uni-flex-row, .uni-list-box, .uni-media-box, .uni-footer, .uni-flex-column, .uni-content {
  28. display: flex;
  29. }
  30. .uni-flex-row, .uni-list-box, .uni-media-box, .uni-footer {
  31. flex-direction: row;
  32. box-sizing: border-box;
  33. }
  34. .uni-flex-column, .uni-content {
  35. flex-direction: column;
  36. }
  37. .uni-color-gary {
  38. color: #3b4144;
  39. }
  40. /* 标题 */
  41. .uni-title {
  42. display: flex;
  43. margin-bottom: 8px;
  44. font-size: 16;
  45. font-weight: bold;
  46. color: #3b4144;
  47. }
  48. .uni-title-sub {
  49. display: flex;
  50. font-size: 14px;
  51. font-weight: 500;
  52. color: #3b4144;
  53. }
  54. /* 描述 额外文本 */
  55. .uni-note {
  56. margin-top: 10px;
  57. color: #999;
  58. font-size: 12px;
  59. }
  60. /* 列表内容 */
  61. .uni-list-box {
  62. flex: 1;
  63. margin-top: 10px;
  64. }
  65. /* 略缩图 */
  66. .uni-thumb {
  67. flex-shrink: 0;
  68. margin-right: 10px;
  69. width: 125px;
  70. height: 75px;
  71. border-radius: 6px;
  72. overflow: hidden;
  73. border: 1px #f5f5f5 solid;
  74. }
  75. .uni-thumb image {
  76. width: 100%;
  77. height: 100%;
  78. }
  79. .uni-media-box {
  80. border-radius: 6px;
  81. overflow: hidden;
  82. }
  83. .uni-media-box .uni-thumb {
  84. margin: 0;
  85. margin-left: 4px;
  86. flex-shrink: 1;
  87. width: 33%;
  88. border-radius: 0;
  89. }
  90. .uni-media-box .uni-thumb:first-child {
  91. margin: 0;
  92. }
  93. /* 内容 */
  94. .uni-content {
  95. justify-content: space-between;
  96. }
  97. /* 列表footer */
  98. .uni-footer {
  99. justify-content: space-between;
  100. margin-top: 12px;
  101. }
  102. .uni-footer-text {
  103. font-size: 12px;
  104. color: #999;
  105. margin-left: 5px;
  106. }
  107. /* 标签 */
  108. .uni-tag {
  109. flex-shrink: 0;
  110. padding: 0 5px;
  111. border: 1px #c8c7cc solid;
  112. margin-right: 5px;
  113. border-radius: 3px;
  114. background: #f8f8f8;
  115. color: #333;
  116. font-size: 12px;
  117. }
  118. /* 链接 */
  119. .uni-link {
  120. margin-left: 10px;
  121. color: #333;
  122. text-decoration: underline;
  123. }
  124. page {
  125. display: flex;
  126. flex-direction: column;
  127. box-sizing: border-box;
  128. background-color: #efeff4;
  129. min-height: 100%;
  130. height: auto;
  131. }
  132. .toptalbar {
  133. display: flex;
  134. flex-direction: row;
  135. justify-content: space-between;
  136. align-items: center;
  137. background-color: whitesmoke;
  138. padding-top: 30rpx;
  139. height: 70rpx;
  140. margin-left: 6rpx;
  141. margin-right: 6rpx;
  142. }
  143. .tableLab {
  144. width: 20%;
  145. text-align: center;
  146. margin-left: 14rpx;
  147. margin-right: 14rpx;
  148. height: 70rpx;
  149. line-height: 70rpx;
  150. font-size: 26rpx;
  151. color: darkgray;
  152. }
  153. .tableselect {
  154. border-bottom-width: 6rpx;
  155. border-bottom-style: solid;
  156. border-bottom-color: #E02F73;
  157. color: #E02F73;
  158. font-size: 34rpx;
  159. }
  160. .tips {
  161. color: #67c23a;
  162. font-size: 14px;
  163. line-height: 40px;
  164. text-align: center;
  165. background-color: #f0f9eb;
  166. height: 0;
  167. opacity: 0;
  168. -webkit-transform: translateY(-100%);
  169. transform: translateY(-100%);
  170. transition: all 0.3s;
  171. }
  172. .tips-ani {
  173. -webkit-transform: translateY(0);
  174. transform: translateY(0);
  175. height: 40px;
  176. opacity: 1;
  177. }
  178. .shop {
  179. flex: 1;
  180. display: flex;
  181. flex-direction: column;
  182. justify-content: space-between;
  183. }
  184. .list .uni-list--waterfall .uni-list {
  185. display: flex;
  186. flex-direction: row;
  187. flex-wrap: wrap;
  188. padding: 5rpx;
  189. box-sizing: border-box;
  190. }
  191. .list .uni-list--waterfall .uni-list .uni-list-item--waterfall {
  192. width: 50%;
  193. box-sizing: border-box;
  194. }
  195. .list .uni-list--waterfall .uni-list .uni-list-item--waterfall .uni-list-item__container {
  196. padding: 0rpx;
  197. flex-direction: column;
  198. }
  199. .item_content2 {
  200. background: white;
  201. display: flex;
  202. flex-direction: column;
  203. width: 100%;
  204. }
  205. .buyct {
  206. display: flex;
  207. flex-direction: row;
  208. justify-content: flex-start;
  209. align-items: center;
  210. }
  211. .storeimage {
  212. width: 100%;
  213. height: 240rpx;
  214. }
  215. .buyimage {
  216. width: 200rpx;
  217. height: 160rpx;
  218. }
  219. .buyBT {
  220. display: flex;
  221. flex-direction: row;
  222. justify-content: space-between;
  223. align-items: center;
  224. }
  225. .buyBTR {
  226. display: flex;
  227. flex-direction: row;
  228. justify-content: flex-end;
  229. align-items: center;
  230. }
  231. .buyBTL {
  232. display: flex;
  233. flex-direction: row;
  234. justify-content: flex-start;
  235. align-items: center;
  236. }
  237. .msText {
  238. padding-left: 10rpx;
  239. text-align: left;
  240. font-size: 22rpx;
  241. line-height: 32rpx;
  242. width: 100%;
  243. }
  244. .dianpuming {
  245. font-size: 30rpx;
  246. line-height: 32rpx;
  247. height: 32rpx;
  248. font-weight: bold;
  249. }
  250. .xingxing {
  251. width: 30rpx;
  252. height: 30rpx;
  253. }
  254. .pingfentext {
  255. font-size: 26rpx;
  256. line-height: 40rpx;
  257. height: 40rpx;
  258. color: black;
  259. }
  260. .spnametext {
  261. font-size: 26rpx;
  262. line-height: 40rpx;
  263. height: 40rpx;
  264. padding-right: 20rpx;
  265. color: darkgray;
  266. }
  267. .youhuixinxi {
  268. font-size: 30rpx;
  269. padding: 6rpx;
  270. padding-left: 12rpx;
  271. padding-right: 12rpx;
  272. background-color: #F1F1F1;
  273. color: black;
  274. border-radius: 16rpx;
  275. margin-left: 20rpx;
  276. }
  277. .quzhifuText {
  278. font-size: 30rpx;
  279. padding: 6rpx;
  280. padding-left: 12rpx;
  281. padding-right: 12rpx;
  282. background-color: black;
  283. color: white;
  284. border-radius: 16rpx;
  285. margin-left: 20rpx;
  286. }
  287. .stateText {
  288. font-size: 26rpx;
  289. color: darkgray;
  290. }