index.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. background-color: var(--f1Color);
  11. }
  12. .content .thr.data-v-4978fed5 {
  13. margin: 2vw 0;
  14. }
  15. .content .thr .list.data-v-4978fed5 {
  16. display: flex;
  17. justify-content: space-between;
  18. align-items: center;
  19. background-color: var(--mainColor);
  20. margin: 2vw 2vw 0 2vw;
  21. padding: 3vw;
  22. border-radius: 2vw;
  23. }
  24. .content .thr .list .image.data-v-4978fed5 {
  25. width: 18vw;
  26. height: 18vw;
  27. border-radius: 18vw;
  28. }
  29. .content .thr .list .left.data-v-4978fed5 {
  30. width: 60vw;
  31. }
  32. .content .thr .list .left .name.data-v-4978fed5 {
  33. font-weight: bold;
  34. font-size: var(--font16Size);
  35. }
  36. .content .thr .list .left .other.data-v-4978fed5 {
  37. margin: 2vw 0 0 0;
  38. font-size: var(--font12Size);
  39. color: var(--f85Color);
  40. }