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

145 lines
3.4 KiB

3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
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. .search-box.data-v-6e742b06 {
  29. height: 10%;
  30. display: flex;
  31. flex-direction: row;
  32. margin-bottom: 30rpx;
  33. align-items: center;
  34. }
  35. .search-box .search-input.data-v-6e742b06 {
  36. flex: 1;
  37. background: #fff;
  38. padding: 20rpx;
  39. border-radius: 8rpx;
  40. }
  41. .search-box .search-btn.data-v-6e742b06 {
  42. width: 20%;
  43. height: 40%;
  44. margin-right: 10%;
  45. display: flex;
  46. justify-content: center;
  47. align-items: center;
  48. font-size: 1rem;
  49. color: #044f7a;
  50. border: none;
  51. }
  52. .search-box .search-btn.data-v-6e742b06:after {
  53. border: none;
  54. }
  55. .search-box .isshow-header-content-icon.data-v-6e742b06 {
  56. display: flex;
  57. justify-content: center;
  58. margin-left: 10%;
  59. align-items: center;
  60. }
  61. .filter-tabs.data-v-6e742b06 {
  62. display: flex;
  63. flex-direction: row;
  64. margin-bottom: 30rpx;
  65. position: relative;
  66. }
  67. .filter-tabs .tab-item.data-v-6e742b06 {
  68. flex: 1;
  69. width: 10%;
  70. text-align: center;
  71. padding: 20rpx;
  72. color: #000000;
  73. border-bottom: 4rpx solid transparent;
  74. }
  75. .filter-tabs .tab-item.active.data-v-6e742b06 {
  76. color: #044f7a;
  77. }
  78. .filter-tabs .tab-item.active.data-v-6e742b06:after {
  79. content: "";
  80. width: 50%;
  81. height: 1px;
  82. display: block;
  83. margin: 0 auto;
  84. border-bottom: 2px solid #044f7a;
  85. color: #044f7a;
  86. padding: 1px;
  87. }
  88. .order-item.data-v-6e742b06 {
  89. margin: 0 auto;
  90. width: 80%;
  91. height: 30%;
  92. box-shadow: -0.1rem 0.1rem #e4e4e4;
  93. border: 1px solid #e1e1e1;
  94. border-radius: 0.5rem;
  95. position: relative;
  96. background: white;
  97. border-radius: 12rpx;
  98. margin-bottom: 20rpx;
  99. padding: 20rpx;
  100. }
  101. .order-item .order-header.data-v-6e742b06 {
  102. display: flex;
  103. flex-direction: row;
  104. justify-content: space-between;
  105. align-items: center;
  106. padding-bottom: 20rpx;
  107. border-bottom: 1rpx solid #eee;
  108. }
  109. .order-item .order-header .order-no.data-v-6e742b06 {
  110. color: #06507b;
  111. font-size: 28rpx;
  112. }
  113. .order-item .order-header .copy-btn.data-v-6e742b06 {
  114. color: #06507b;
  115. font-size: 24rpx;
  116. }
  117. .order-item .order-info.data-v-6e742b06 {
  118. padding: 20rpx 0;
  119. }
  120. .order-item .order-info text.data-v-6e742b06 {
  121. display: block;
  122. color: #666;
  123. font-size: 24rpx;
  124. line-height: 1.8;
  125. }
  126. .order-item .download-btn.data-v-6e742b06 {
  127. width: 28%;
  128. height: 15%;
  129. background-color: #044f7a;
  130. position: absolute;
  131. color: #ffffff;
  132. bottom: 10%;
  133. right: 10%;
  134. font-size: 0.5rem;
  135. display: flex;
  136. justify-content: center;
  137. align-items: center;
  138. border-radius: 1rem;
  139. }
  140. .status.data-v-6e742b06 {
  141. position: absolute;
  142. width: 25%;
  143. height: 25%;
  144. right: 10%;
  145. top: 30%;
  146. }