u-cell-item.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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. .u-cell.data-v-65423b64 {
  28. display: -webkit-box;
  29. display: -webkit-flex;
  30. display: flex;
  31. -webkit-box-orient: horizontal;
  32. -webkit-box-direction: normal;
  33. -webkit-flex-direction: row;
  34. flex-direction: row;
  35. -webkit-box-align: center;
  36. -webkit-align-items: center;
  37. align-items: center;
  38. position: relative;
  39. box-sizing: border-box;
  40. width: 100%;
  41. padding: 26rpx 32rpx;
  42. font-size: 28rpx;
  43. line-height: 54rpx;
  44. color: #606266;
  45. background-color: #fff;
  46. text-align: left;
  47. }
  48. .u-cell_title.data-v-65423b64 {
  49. font-size: 28rpx;
  50. }
  51. .u-cell__left-icon-wrap.data-v-65423b64 {
  52. margin-right: 10rpx;
  53. font-size: 32rpx;
  54. }
  55. .u-cell__right-icon-wrap.data-v-65423b64 {
  56. margin-left: 10rpx;
  57. color: #969799;
  58. font-size: 28rpx;
  59. }
  60. .u-cell__left-icon-wrap.data-v-65423b64,
  61. .u-cell__right-icon-wrap.data-v-65423b64 {
  62. display: -webkit-box;
  63. display: -webkit-flex;
  64. display: flex;
  65. -webkit-box-orient: horizontal;
  66. -webkit-box-direction: normal;
  67. -webkit-flex-direction: row;
  68. flex-direction: row;
  69. -webkit-box-align: center;
  70. -webkit-align-items: center;
  71. align-items: center;
  72. height: 48rpx;
  73. }
  74. .u-cell-border.data-v-65423b64:after {
  75. position: absolute;
  76. box-sizing: border-box;
  77. content: ' ';
  78. pointer-events: none;
  79. border-bottom: 1px solid #e4e7ed;
  80. right: 0;
  81. left: 0;
  82. top: 0;
  83. -webkit-transform: scaleY(0.5);
  84. transform: scaleY(0.5);
  85. }
  86. .u-cell-border.data-v-65423b64 {
  87. position: relative;
  88. }
  89. .u-cell__label.data-v-65423b64 {
  90. margin-top: 6rpx;
  91. font-size: 26rpx;
  92. line-height: 36rpx;
  93. color: #909399;
  94. word-wrap: break-word;
  95. }
  96. .u-cell__value.data-v-65423b64 {
  97. overflow: hidden;
  98. text-align: right;
  99. vertical-align: middle;
  100. color: #909399;
  101. font-size: 26rpx;
  102. }
  103. .u-cell__title.data-v-65423b64,
  104. .u-cell__value.data-v-65423b64 {
  105. -webkit-box-flex: 1;
  106. -webkit-flex: 1;
  107. flex: 1;
  108. }
  109. .u-cell--required.data-v-65423b64 {
  110. overflow: visible;
  111. display: -webkit-box;
  112. display: -webkit-flex;
  113. display: flex;
  114. -webkit-box-orient: horizontal;
  115. -webkit-box-direction: normal;
  116. -webkit-flex-direction: row;
  117. flex-direction: row;
  118. -webkit-box-align: center;
  119. -webkit-align-items: center;
  120. align-items: center;
  121. }
  122. .u-cell--required.data-v-65423b64:before {
  123. position: absolute;
  124. content: '*';
  125. left: 8px;
  126. margin-top: 4rpx;
  127. font-size: 14px;
  128. color: #fa3534;
  129. }
  130. .u-cell_right.data-v-65423b64 {
  131. line-height: 1;
  132. }