index.wxss 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. /* uni.scss */
  7. .content.data-v-4978fed5 {
  8. display: flex;
  9. flex-direction: column;
  10. width: 100vw;
  11. height: 100vh;
  12. }
  13. .content .bottom.data-v-4978fed5 {
  14. position: relative;
  15. flex-grow: 1;
  16. }
  17. .content .bottom .list.data-v-4978fed5 {
  18. width: 47vw;
  19. margin: 2vw 0 0 0;
  20. border-radius: 5px;
  21. border: 1px solid var(--f5Color);
  22. }
  23. .content .bottom .list .list_1 .left .image.data-v-4978fed5 {
  24. width: 100%;
  25. height: 120px;
  26. border-radius: 5px 5px 0 0;
  27. }
  28. .content .bottom .list .list_1 .right.data-v-4978fed5 {
  29. display: flex;
  30. flex-direction: column;
  31. justify-content: space-between;
  32. padding: 0 2vw;
  33. }
  34. .content .bottom .list .list_1 .right .name.data-v-4978fed5 {
  35. font-size: var(--font14Size);
  36. }
  37. .content .bottom .list .list_1 .right .money.data-v-4978fed5 {
  38. color: var(--fF0Color);
  39. font-size: var(--font12Size);
  40. margin: 0 0 1vw 0;
  41. }
  42. .content .bottom .list .list_1 .right .money text.data-v-4978fed5:first-child {
  43. font-size: var(--font18Size);
  44. }
  45. .scroll-view.data-v-4978fed5 {
  46. position: absolute;
  47. top: 0;
  48. left: 0;
  49. right: 0;
  50. bottom: 0;
  51. }
  52. .scroll-view .list-scroll-view.data-v-4978fed5 {
  53. display: flex;
  54. justify-content: space-between;
  55. flex-wrap: wrap;
  56. padding: 0 2vw;
  57. }
  58. .is_bottom.data-v-4978fed5 {
  59. width: 100%;
  60. text-align: center;
  61. }
  62. .is_bottom text.data-v-4978fed5 {
  63. padding: 2vw 0;
  64. display: inline-block;
  65. color: var(--f85Color);
  66. font-size: var(--font12Size);
  67. }