static.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /* 列表搜索样式*/
  2. .search-pop {
  3. width: 560rpx;
  4. position: relative;
  5. height: 100vh;
  6. overflow: auto;
  7. .form-view {
  8. padding: 0 20rpx;
  9. .check-li {
  10. display: inline-block;
  11. font-size: 24rpx;
  12. line-height: 64rpx;
  13. border: 1px solid #f2f5fc;
  14. background-color: #f2f5fc;
  15. text-align: center;
  16. height: 64rpx;
  17. width: 188rpx;
  18. margin-right: 10rpx;
  19. border-radius: 8rpx;
  20. &:last-child {
  21. margin-right: 0;
  22. }
  23. &.active {
  24. background-color: #ffffff;
  25. border-color: $uni-color-primary;
  26. color: $uni-color-primary;
  27. }
  28. }
  29. .date-li {
  30. display: inline-block;
  31. font-size: 24rpx;
  32. border-radius: 8rpx;
  33. width: 230rpx;
  34. background-color: #f2f5fc;
  35. text-align: center;
  36. }
  37. .date-line {
  38. display: inline-block;
  39. margin: 0 20rpx;
  40. }
  41. .form-val {
  42. width: 100%;
  43. .float_left {
  44. width: calc(100% - 30rpx);
  45. }
  46. }
  47. }
  48. .search-btn {
  49. display: flex;
  50. position: absolute;
  51. bottom: 0;
  52. left: 0;
  53. width: 100%;
  54. background-color: #ffffff;
  55. border-top: 1px solid #f5f5f5;
  56. .btn-li {
  57. flex: 2;
  58. line-height: 88rpx;
  59. text-align: center;
  60. &:first-child {
  61. color: $uni-color-primary;
  62. }
  63. &:last-child {
  64. color: #ffffff;
  65. background-color: $uni-color-primary;
  66. }
  67. }
  68. }
  69. }
  70. .detail-bottom {
  71. position: fixed;
  72. bottom: 0;
  73. left: 0;
  74. width: 100%;
  75. display: flex;
  76. height: 100rpx;
  77. padding: 0 10rpx;
  78. z-index: 9;
  79. .handel-btn {
  80. flex: 3;
  81. text-align: center;
  82. margin: 10rpx;
  83. border: 1px solid $uni-color-primary;
  84. background-color: $uni-color-primary;
  85. color: #ffffff;
  86. line-height: 80rpx;
  87. height: 80rpx;
  88. border-radius: 8rpx;
  89. &.info-btn {
  90. background-color: #ffffff;
  91. border-color: #eeeeee;
  92. color: #333333;
  93. }
  94. }
  95. }
  96. .detail-view {
  97. padding-bottom: 100rpx;
  98. .form-model-view {
  99. padding: 0 20rpx;
  100. background-color: #ffffff;
  101. margin-bottom: 20rpx;
  102. input {
  103. text-align: right;
  104. }
  105. .form-value {
  106. text-align: right;
  107. width: 100%;
  108. &.add-btn-go {
  109. color: $uni-color-primary;
  110. font-size: 24rpx;
  111. text {
  112. margin-left: 10rpx;
  113. }
  114. }
  115. }
  116. .u-input {
  117. .u-input__input {
  118. text-align: right;
  119. }
  120. .u-input__textarea {
  121. text-align: left;
  122. }
  123. }
  124. input {
  125. &.dis-input {
  126. display: inline-block;
  127. width: calc(100% - 40rpx);
  128. vertical-align: middle;
  129. margin-right: 10rpx;
  130. }
  131. }
  132. .dis-input {
  133. .u-input {
  134. display: inline-block;
  135. width: calc(100% - 40rpx);
  136. vertical-align: middle;
  137. margin-right: 10rpx;
  138. }
  139. }
  140. }
  141. }
  142. .u-tabbar__content {
  143. box-shadow: 0px -4rpx 32rpx 0px rgba(156, 170, 175, 0.16);
  144. }
  145. .u-tabbar__content__item__text {
  146. .u-line-1 {
  147. font-size: 20rpx !important;
  148. }
  149. }