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

158 lines
3.5 KiB

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-76649624 {
  29. height: 100%;
  30. width: 100%;
  31. background-color: #fff;
  32. overflow-y: scroll;
  33. }
  34. .footer.data-v-76649624 {
  35. position: fixed;
  36. bottom: 0;
  37. left: 0;
  38. }
  39. .container.data-v-76649624::-webkit-scrollbar {
  40. display: none;
  41. }
  42. .section.data-v-76649624 {
  43. border-bottom: 1rpx solid #eee;
  44. margin: 0 1rem 0 1rem;
  45. }
  46. .sections.data-v-76649624 {
  47. margin: 0 1rem 1rem 1rem;
  48. }
  49. .form-item.data-v-76649624 {
  50. display: flex;
  51. flex-direction: row;
  52. justify-content: space-between;
  53. align-items: center;
  54. padding: 0.5rem 0;
  55. border-bottom: 0.1rem solid #f2f2f2;
  56. color: #767676;
  57. }
  58. .labels.data-v-76649624 {
  59. color: red;
  60. display: flex;
  61. justify-content: center;
  62. align-items: center;
  63. }
  64. .label.data-v-76649624 {
  65. font-size: 28rpx;
  66. color: #666;
  67. width: 200rpx;
  68. }
  69. .input.data-v-76649624 {
  70. flex: 1;
  71. text-align: right;
  72. font-size: 28rpx;
  73. color: #737373;
  74. }
  75. .picker.data-v-76649624 {
  76. flex: 1;
  77. }
  78. .picker-text.data-v-76649624 {
  79. text-align: right;
  80. color: #737373;
  81. font-size: 0.8rem;
  82. }
  83. .radio-group.data-v-76649624 {
  84. display: flex;
  85. flex: 1;
  86. justify-content: flex-end;
  87. flex-direction: row;
  88. }
  89. .radio-label.data-v-76649624 {
  90. padding: 0;
  91. margin-left: 10rpx;
  92. display: flex;
  93. flex-direction: row;
  94. font-size: 1rem;
  95. transform: scale(0.7);
  96. }
  97. .value.data-v-76649624 {
  98. flex: 1;
  99. text-align: right;
  100. color: #737373;
  101. font-size: 0.8rem;
  102. }
  103. .idCard-box.data-v-76649624 {
  104. margin-top: 10%;
  105. width: 100%;
  106. height: 50%;
  107. display: flex;
  108. flex-direction: row;
  109. /* background-color: red; */
  110. flex-wrap: wrap;
  111. }
  112. .idCard-box .reverse.data-v-76649624 {
  113. height: 30%;
  114. width: 40%;
  115. display: flex;
  116. align-items: center;
  117. justify-content: center;
  118. margin: 0 5% 0 5%;
  119. }
  120. .idCard-box .reverse image.data-v-76649624 {
  121. width: 100%;
  122. height: 100%;
  123. }
  124. .idCard-box .reverse text.data-v-76649624 {
  125. position: absolute;
  126. text-shadow: 1px 1px black, -1px -1px black, 1px -1px black, -1px 1px black;
  127. font-size: 0.8rem;
  128. color: #fff;
  129. }
  130. /* 表单分区样式 */
  131. .con_size.data-v-76649624 {
  132. font-size: 1rem;
  133. font-weight: bold;
  134. margin: 1rem 0;
  135. color: #000000;
  136. display: flex;
  137. flex-direction: row;
  138. align-items: center;
  139. }
  140. .con_size_img.data-v-76649624 {
  141. height: 100%;
  142. width: 2%;
  143. margin-right: 2%;
  144. }
  145. .form-button.data-v-76649624 {
  146. width: 100%;
  147. height: 100%;
  148. display: flex;
  149. align-items: center;
  150. justify-content: center;
  151. }
  152. .button.data-v-76649624 {
  153. height: 100%;
  154. width: 100%;
  155. background-color: #044f7a;
  156. color: #ffffff;
  157. border-radius: 1rem;
  158. }