合同小程序前端代码仓库
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.

147 lines
3.2 KiB

3 months ago
3 months ago
3 months ago
3 months ago
  1. @import "../../uvue.wxss";
  2. :host{display:flex;flex-direction:column}
  3. /**
  4. * 这里是uni-app内置的常用样式变量
  5. *
  6. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  7. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  8. *
  9. */
  10. /**
  11. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  12. *
  13. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  14. */
  15. /* 颜色变量 */
  16. /* 行为相关颜色 */
  17. /* 文字基本颜色 */
  18. /* 背景颜色 */
  19. /* 边框颜色 */
  20. /* 尺寸变量 */
  21. /* 文字尺寸 */
  22. /* 图片尺寸 */
  23. /* Border Radius */
  24. /* 水平间距 */
  25. /* 垂直间距 */
  26. /* 透明度 */
  27. /* 文章场景相关 */
  28. .containers.data-v-643091e0 {
  29. height: 100%;
  30. width: 100%;
  31. background-color: #fff;
  32. overflow-y: scroll;
  33. }
  34. .container.data-v-643091e0::-webkit-scrollbar {
  35. display: none;
  36. }
  37. .section.data-v-643091e0 {
  38. border-bottom: 1rpx solid #eee;
  39. margin: 0 1rem 0 1rem;
  40. }
  41. .sections.data-v-643091e0 {
  42. margin: 0 1rem 1rem 1rem;
  43. }
  44. .form-item.data-v-643091e0 {
  45. display: flex;
  46. flex-direction: row;
  47. justify-content: space-between;
  48. align-items: center;
  49. padding: 0.5rem 0;
  50. border-bottom: 0.1rem solid #f2f2f2;
  51. color: #767676;
  52. }
  53. .labels.data-v-643091e0 {
  54. color: red;
  55. display: flex;
  56. justify-content: center;
  57. align-items: center;
  58. }
  59. .label.data-v-643091e0 {
  60. font-size: 28rpx;
  61. color: #666;
  62. width: 200rpx;
  63. }
  64. .input.data-v-643091e0 {
  65. flex: 1;
  66. text-align: right;
  67. font-size: 28rpx;
  68. color: #737373;
  69. }
  70. .picker.data-v-643091e0 {
  71. flex: 1;
  72. }
  73. .picker-text.data-v-643091e0 {
  74. text-align: right;
  75. color: #737373;
  76. font-size: 0.8rem;
  77. }
  78. .radio-group.data-v-643091e0 {
  79. display: flex;
  80. flex: 1;
  81. justify-content: flex-end;
  82. flex-direction: row;
  83. }
  84. .radio-label.data-v-643091e0 {
  85. padding: 0;
  86. margin-left: 10rpx;
  87. display: flex;
  88. flex-direction: row;
  89. font-size: 1rem;
  90. transform: scale(0.7);
  91. }
  92. .value.data-v-643091e0 {
  93. flex: 1;
  94. text-align: right;
  95. color: #737373;
  96. font-size: 0.8rem;
  97. }
  98. .idCard-box.data-v-643091e0 {
  99. margin-top: 10%;
  100. width: 100%;
  101. height: 50%;
  102. display: flex;
  103. flex-direction: row;
  104. /* background-color: red; */
  105. flex-wrap: wrap;
  106. }
  107. .idCard-box .reverse.data-v-643091e0 {
  108. height: 30%;
  109. width: 40%;
  110. display: flex;
  111. align-items: center;
  112. justify-content: center;
  113. margin: 0 5% 0 5%;
  114. }
  115. .idCard-box .reverse image.data-v-643091e0 {
  116. width: 100%;
  117. height: 100%;
  118. }
  119. /* 表单分区样式 */
  120. .con_size.data-v-643091e0 {
  121. font-size: 1rem;
  122. font-weight: bold;
  123. margin: 1rem 0;
  124. color: #000000;
  125. display: flex;
  126. flex-direction: row;
  127. align-items: center;
  128. }
  129. .con_size_img.data-v-643091e0 {
  130. height: 100%;
  131. width: 2%;
  132. margin-right: 2%;
  133. }
  134. .form-button.data-v-643091e0 {
  135. width: 100%;
  136. height: 100%;
  137. display: flex;
  138. align-items: center;
  139. justify-content: center;
  140. }
  141. .button.data-v-643091e0 {
  142. height: 100%;
  143. width: 100%;
  144. background-color: #044f7a;
  145. color: #ffffff;
  146. border-radius: 1rem;
  147. }