index.wxss 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 .top.data-v-4978fed5 {
  14. margin: 2vw;
  15. }
  16. .content .bottom.data-v-4978fed5 {
  17. position: relative;
  18. flex-grow: 1;
  19. }
  20. .content .bottom .list.data-v-4978fed5 {
  21. width: 47vw;
  22. margin: 2vw 0 0 0;
  23. border-radius: 5px;
  24. border: 1px solid var(--f5Color);
  25. }
  26. .content .bottom .list .list_1 .left .image.data-v-4978fed5 {
  27. width: 100%;
  28. height: 120px;
  29. border-radius: 5px 5px 0 0;
  30. }
  31. .content .bottom .list .list_1 .right.data-v-4978fed5 {
  32. display: flex;
  33. flex-direction: column;
  34. justify-content: space-between;
  35. padding: 0 2vw;
  36. }
  37. .content .bottom .list .list_1 .right .name.data-v-4978fed5 {
  38. font-size: var(--font14Size);
  39. }
  40. .content .bottom .list .list_1 .right .money.data-v-4978fed5 {
  41. color: var(--fF0Color);
  42. font-size: var(--font12Size);
  43. margin: 0 0 1vw 0;
  44. }
  45. .content .bottom .list .list_1 .right .money text.data-v-4978fed5:first-child {
  46. font-size: var(--font18Size);
  47. }
  48. .scroll-view.data-v-4978fed5 {
  49. position: absolute;
  50. top: 0;
  51. left: 0;
  52. right: 0;
  53. bottom: 0;
  54. }
  55. .scroll-view .list-scroll-view.data-v-4978fed5 {
  56. display: flex;
  57. justify-content: space-between;
  58. flex-wrap: wrap;
  59. padding: 0 2vw;
  60. }
  61. .is_bottom.data-v-4978fed5 {
  62. width: 100%;
  63. text-align: center;
  64. }
  65. .is_bottom text.data-v-4978fed5 {
  66. padding: 2vw 0;
  67. display: inline-block;
  68. color: var(--f85Color);
  69. font-size: var(--font12Size);
  70. }