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

128 lines
2.9 KiB

  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. .form-item.data-v-643091e0 {
  42. display: flex;
  43. flex-direction: row;
  44. justify-content: space-between;
  45. align-items: center;
  46. padding: 0.5rem 0;
  47. border-bottom: 0.1rem solid #f2f2f2;
  48. color: #767676;
  49. }
  50. .label.data-v-643091e0 {
  51. font-size: 28rpx;
  52. color: #666;
  53. width: 200rpx;
  54. }
  55. .input.data-v-643091e0 {
  56. flex: 1;
  57. text-align: right;
  58. font-size: 28rpx;
  59. color: #737373;
  60. }
  61. .picker.data-v-643091e0 {
  62. flex: 1;
  63. }
  64. .picker-text.data-v-643091e0 {
  65. text-align: right;
  66. color: #737373;
  67. font-size: 0.8rem;
  68. }
  69. .radio-group.data-v-643091e0 {
  70. display: flex;
  71. flex: 1;
  72. justify-content: flex-end;
  73. flex-direction: row;
  74. }
  75. .radio-label.data-v-643091e0 {
  76. padding: 0;
  77. margin-left: 10rpx;
  78. display: flex;
  79. flex-direction: row;
  80. font-size: 1rem;
  81. transform: scale(0.7);
  82. }
  83. .value.data-v-643091e0 {
  84. flex: 1;
  85. text-align: right;
  86. color: #737373;
  87. }
  88. .timePiker.data-v-643091e0 {
  89. display: flex;
  90. justify-content: center;
  91. /* align-items: center; */
  92. color: #3f3f3f;
  93. }
  94. .idCard-box.data-v-643091e0 {
  95. margin-top: 10%;
  96. width: 100%;
  97. height: 50%;
  98. display: flex;
  99. flex-direction: row;
  100. /* background-color: red; */
  101. flex-wrap: wrap;
  102. }
  103. .idCard-box .reverse.data-v-643091e0 {
  104. height: 30%;
  105. width: 40%;
  106. display: flex;
  107. align-items: center;
  108. justify-content: center;
  109. margin: 0 5% 0 5%;
  110. }
  111. .idCard-box .reverse image.data-v-643091e0 {
  112. width: 100%;
  113. height: 100%;
  114. }
  115. /* 表单分区样式 */
  116. .con_size.data-v-643091e0 {
  117. font-size: 1rem;
  118. font-weight: bold;
  119. margin: 1rem 0;
  120. color: #000000;
  121. display: flex;
  122. flex-direction: row;
  123. }
  124. .con_size_img.data-v-643091e0 {
  125. height: 100%;
  126. width: 2%;
  127. margin-right: 2%;
  128. }