index.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. /* uni.scss */
  7. .list .text.data-v-bd19021e {
  8. margin: 2vw;
  9. font-weight: bold;
  10. font-size: var(--font16Size);
  11. }
  12. .list .one.data-v-bd19021e {
  13. display: flex;
  14. justify-content: space-between;
  15. flex-wrap: wrap;
  16. align-items: center;
  17. padding: 2vw 4vw;
  18. }
  19. .list .one .list.data-v-bd19021e {
  20. display: flex;
  21. flex-direction: column;
  22. align-items: center;
  23. width: 18vw;
  24. margin: 0 0 1vw 0;
  25. }
  26. .list .one .list .image.data-v-bd19021e {
  27. width: 40px;
  28. height: 40px;
  29. border-radius: 40px;
  30. }
  31. .list .one .list .title.data-v-bd19021e {
  32. margin: 0 0 1vw 0;
  33. font-size: var(--font14Size);
  34. }
  35. .list-cell.data-v-bd19021e {
  36. display: flex;
  37. align-items: center;
  38. box-sizing: border-box;
  39. width: 100%;
  40. padding: 10px 24rpx;
  41. overflow: hidden;
  42. color: #323233;
  43. font-size: 14px;
  44. line-height: 24px;
  45. background-color: #fff;
  46. }
  47. .list-cell .image.data-v-bd19021e {
  48. width: 40px;
  49. height: 40px;
  50. border-radius: 40px;
  51. }
  52. .list-cell .title.data-v-bd19021e {
  53. margin: 0 0 0 1vw;
  54. }