index.wxss 2.3 KB

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