qzy.scss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. // 状态栏
  2. .status_bar,
  3. .fit {
  4. height: var(--status-bar-height);
  5. width: 100%;
  6. }
  7. // 导航栏
  8. .uni-page-head {
  9. .uni-page-head__title {
  10. // font-size: 36upx !important;
  11. font-size: 28upx !important;
  12. font-weight: 500;
  13. }
  14. }
  15. // 二次确实提示框
  16. ::v-deep .second-confirm-btn {
  17. height: 90upx;
  18. border-radius: 12upx !important;
  19. font-size: 32upx !important;
  20. font-weight: bold;
  21. .u-button__text {
  22. font-size: 32upx !important;
  23. font-weight: bold;
  24. }
  25. }
  26. ::v-deep .u-popup__content {
  27. overflow: visible !important;
  28. }
  29. ::v-deep .u-modal {
  30. background: linear-gradient(179deg, #e7ebff 0%, #ffffff 100%);
  31. position: relative;
  32. overflow: visible !important;
  33. .tip-icon {
  34. display: block;
  35. width: 284upx;
  36. height: 224upx;
  37. position: absolute;
  38. top: -122upx;
  39. left: calc(50% - 142upx);
  40. z-index: 1000000;
  41. }
  42. .close-btn {
  43. width: 42upx;
  44. height: 40upx;
  45. position: absolute;
  46. top: 26upx;
  47. right: 26upx;
  48. }
  49. .u-modal__title {
  50. font-weight: 700 !important;
  51. font-size: 40upx !important;
  52. color: #333333 !important;
  53. padding-top: 112upx !important;
  54. }
  55. .u-modal__content {
  56. padding: 14upx 92upx 48upx !important;
  57. text-align: center;
  58. font-weight: 500;
  59. line-height: 40upx;
  60. }
  61. .u-modal__content__text {
  62. font-size: 28upx !important;
  63. color: #999999 !important;
  64. }
  65. }
  66. ::v-deep .u-navbar__content__title {
  67. font-size: 32upx;
  68. font-weight: 500;
  69. }
  70. .list-status {
  71. padding: 20upx;
  72. text-align: center;
  73. color: #a4a4a4;
  74. }
  75. .delete-info-btn {
  76. .u-button__text {
  77. color: #666666;
  78. }
  79. }
  80. .empty-container {
  81. height: 100%;
  82. display: flex;
  83. align-items: center;
  84. justify-content: center;
  85. }
  86. ::v-deep {
  87. .u-search__content {
  88. padding: 0 8upx !important;
  89. }
  90. }
  91. .tab-box {
  92. margin: 22upx 0 0upx;
  93. white-space: nowrap;
  94. width: 100%;
  95. padding-bottom: 4upx;
  96. .item {
  97. display: inline-block;
  98. margin-right: 60upx;
  99. position: relative;
  100. height: 68upx;
  101. margin-top: 8upx;
  102. &:last-child {
  103. margin-right: 0;
  104. }
  105. image {
  106. position: absolute;
  107. width: 62upx;
  108. height: 30upx;
  109. left: 100%;
  110. top: -10upx;
  111. }
  112. }
  113. .active {
  114. color: $main-color;
  115. font-weight: 600;
  116. &:after {
  117. content: "";
  118. display: block;
  119. width: 78upx;
  120. height: 16upx;
  121. // background: url("https://qianzhiy-applet.oss-rg-china-mainland.aliyuncs.com/h5/images/static/home/active-bg.png")
  122. // center center no-repeat;
  123. // background: url("@/static/images/user/active-line.png") center center no-repeat;
  124. background-size: 100% 100%;
  125. position: absolute;
  126. bottom: 22upx;
  127. left: 0;
  128. }
  129. }
  130. }
  131. .list-search-box {
  132. height: 100upx;
  133. padding: 0 24upx;
  134. background: #fff;
  135. position: fixed;
  136. top: 0;
  137. width: 100%;
  138. box-sizing: border-box;
  139. z-index: 1000;
  140. >view {
  141. position: relative;
  142. }
  143. .u-search__content {
  144. margin-left: 160upx;
  145. }
  146. .city-box {
  147. position: absolute;
  148. left: 38upx;
  149. top: 0;
  150. height: 34px;
  151. .arrow-down {
  152. width: 20upx;
  153. height: 20upx;
  154. margin-left: 6upx;
  155. }
  156. .city {
  157. display: inline-block;
  158. width: 90upx;
  159. }
  160. .line {
  161. color: #ccc;
  162. }
  163. }
  164. }