index.wxss 1.4 KB

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