康巴易测肤/伤疤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.

95 lines
2.5KB

  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. view.data-v-643b3322, scroll-view.data-v-643b3322, swiper-item.data-v-643b3322 {
  28. display: flex;
  29. flex-direction: column;
  30. flex-shrink: 0;
  31. flex-grow: 0;
  32. flex-basis: auto;
  33. align-items: stretch;
  34. align-content: flex-start;
  35. }
  36. .u-radio.data-v-643b3322 {
  37. display: flex;
  38. flex-direction: row;
  39. overflow: hidden;
  40. flex-direction: row;
  41. align-items: center;
  42. }
  43. .u-radio-label--left.data-v-643b3322 {
  44. flex-direction: row;
  45. }
  46. .u-radio-label--right.data-v-643b3322 {
  47. flex-direction: row-reverse;
  48. justify-content: space-between;
  49. }
  50. .u-radio__icon-wrap.data-v-643b3322 {
  51. box-sizing: border-box;
  52. transition-property: border-color, background-color, color;
  53. transition-duration: 0.2s;
  54. color: #606266;
  55. display: flex;
  56. flex-direction: row;
  57. align-items: center;
  58. justify-content: center;
  59. color: transparent;
  60. text-align: center;
  61. margin-right: 6px;
  62. font-size: 20px;
  63. border-width: 1px;
  64. border-color: #c8c9cc;
  65. border-style: solid;
  66. }
  67. .u-radio__icon-wrap--circle.data-v-643b3322 {
  68. border-radius: 100%;
  69. }
  70. .u-radio__icon-wrap--square.data-v-643b3322 {
  71. border-radius: 3px;
  72. }
  73. .u-radio__icon-wrap--checked.data-v-643b3322 {
  74. color: #fff;
  75. background-color: red;
  76. border-color: #2979ff;
  77. }
  78. .u-radio__icon-wrap--disabled.data-v-643b3322 {
  79. background-color: #ebedf0 !important;
  80. }
  81. .u-radio__icon-wrap--disabled--checked.data-v-643b3322 {
  82. color: #c8c9cc !important;
  83. }
  84. .u-radio__label.data-v-643b3322 {
  85. word-wrap: break-word;
  86. margin-left: 5px;
  87. margin-right: 12px;
  88. color: #606266;
  89. font-size: 15px;
  90. }
  91. .u-radio__label--disabled.data-v-643b3322 {
  92. color: #c8c9cc;
  93. }