康巴易测肤/伤疤uniapp小程序类
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

107 lines
2.6KB

  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .safe-area-bottom.data-v-fdbb9fe6 {
  28. padding-bottom: env(safe-area-inset-bottom);
  29. }
  30. text.data-v-fdbb9fe6 {
  31. font-family: Source Han Sans CN;
  32. }
  33. view.data-v-fdbb9fe6, scroll-view.data-v-fdbb9fe6, swiper-item.data-v-fdbb9fe6 {
  34. display: flex;
  35. flex-direction: column;
  36. flex-shrink: 0;
  37. flex-grow: 0;
  38. flex-basis: auto;
  39. align-items: stretch;
  40. align-content: flex-start;
  41. }
  42. .u-input.data-v-fdbb9fe6 {
  43. display: flex;
  44. flex-direction: row;
  45. align-items: center;
  46. justify-content: space-between;
  47. flex: 1;
  48. }
  49. .u-input--radius.data-v-fdbb9fe6, .u-input--square.data-v-fdbb9fe6 {
  50. border-radius: 4px;
  51. }
  52. .u-input--no-radius.data-v-fdbb9fe6 {
  53. border-radius: 0;
  54. }
  55. .u-input--circle.data-v-fdbb9fe6 {
  56. border-radius: 100px;
  57. }
  58. .u-input__content.data-v-fdbb9fe6 {
  59. flex: 1;
  60. display: flex;
  61. flex-direction: row;
  62. align-items: center;
  63. justify-content: space-between;
  64. }
  65. .u-input__content__field-wrapper.data-v-fdbb9fe6 {
  66. position: relative;
  67. display: flex;
  68. flex-direction: row;
  69. margin: 0;
  70. flex: 1;
  71. }
  72. .u-input__content__field-wrapper__field.data-v-fdbb9fe6 {
  73. line-height: 26px;
  74. text-align: left;
  75. color: #303133;
  76. height: 24px;
  77. font-size: 15px;
  78. flex: 1;
  79. }
  80. .u-input__content__clear.data-v-fdbb9fe6 {
  81. width: 20px;
  82. height: 20px;
  83. border-radius: 100px;
  84. background-color: #c6c7cb;
  85. display: flex;
  86. flex-direction: row;
  87. align-items: center;
  88. justify-content: center;
  89. -webkit-transform: scale(0.82);
  90. transform: scale(0.82);
  91. margin-left: 4px;
  92. }
  93. .u-input__content__subfix-icon.data-v-fdbb9fe6 {
  94. margin-left: 4px;
  95. }
  96. .u-input__content__prefix-icon.data-v-fdbb9fe6 {
  97. margin-right: 4px;
  98. }