shuangchuang.wxss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  4. * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
  5. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  6. */
  7. page {
  8. position: relative;
  9. background-color: #F7F7F7;
  10. }
  11. .shuangchaung .enptyStatus {
  12. display: flex;
  13. justify-content: center;
  14. align-items: center;
  15. flex-direction: column;
  16. padding: 30px 10px;
  17. }
  18. .shuangchaung .enptyStatus image {
  19. width: 120px;
  20. height: 150px;
  21. margin-top: 100px;
  22. }
  23. .shuangchaung .enptyStatus .words {
  24. color: #ffae21;
  25. font-size: 18px;
  26. padding-top: 18px;
  27. }
  28. .shuangchaung .search {
  29. background-color: #FFFFFF;
  30. padding: 8px 15px;
  31. display: flex;
  32. justify-items: center;
  33. justify-content: center;
  34. align-items: center;
  35. }
  36. .shuangchaung .search .search-button {
  37. padding: 0 10px;
  38. color: #D12727;
  39. font-size: 15px;
  40. text-align: center;
  41. }
  42. .shuangchaung .search .u-demo-block__content {
  43. flex: 1;
  44. }
  45. .shuangchaung .search .u-action {
  46. color: #D12727 !important;
  47. }
  48. .shuangchaung .item_wrap {
  49. padding: 15px;
  50. }
  51. .shuangchaung .item_wrap .item {
  52. background-color: #fff;
  53. opacity: 1;
  54. border-radius: 4px;
  55. padding: 16px 15px;
  56. position: relative;
  57. display: flex;
  58. align-items: center;
  59. justify-content: space-between;
  60. margin-bottom: 10px;
  61. overflow: hidden;
  62. }
  63. .shuangchaung .item_wrap .item .right {
  64. width: 30%;
  65. flex-shrink: 0;
  66. border-left: 1px solid #eee;
  67. text-align: center;
  68. display: flex;
  69. align-items: center;
  70. justify-content: space-between;
  71. }
  72. .shuangchaung .item_wrap .item .right text {
  73. display: block;
  74. font-size: 12px;
  75. color: #999;
  76. }
  77. .shuangchaung .item_wrap .item .right .nums {
  78. display: inline-block;
  79. width: 70%;
  80. text-align: center;
  81. font-size: 20px;
  82. color: #D12727;
  83. padding-left: 5px;
  84. }
  85. .shuangchaung .item_wrap .item .right .detail {
  86. display: flex;
  87. align-items: center;
  88. justify-content: center;
  89. flex-shrink: 0;
  90. width: 25px;
  91. height: 25px;
  92. text-align: center;
  93. border-radius: 50%;
  94. border: 1px solid #eee;
  95. color: #999;
  96. font-size: 16px;
  97. }
  98. .shuangchaung .item_wrap .item .left {
  99. width: 70%;
  100. flex-shrink: 0;
  101. }
  102. .shuangchaung .item_wrap .item .left .center {
  103. flex-shrink: 0;
  104. }
  105. .shuangchaung .item_wrap .item .left .center .title {
  106. font-size: 16px;
  107. color: #333;
  108. overflow: hidden;
  109. text-overflow: ellipsis;
  110. white-space: nowrap;
  111. }
  112. .shuangchaung .item_wrap .item .left .center .name {
  113. margin-top: 5px;
  114. font-size: 14px;
  115. color: #666;
  116. overflow: hidden;
  117. text-overflow: ellipsis;
  118. white-space: nowrap;
  119. display: flex;
  120. align-items: center;
  121. justify-content: space-between;
  122. }
  123. .shuangchaung .item_wrap .item .left .center .name text {
  124. flex-shrink: 0;
  125. overflow: hidden;
  126. text-overflow: ellipsis;
  127. white-space: nowrap;
  128. }
  129. .shuangchaung .item_wrap .item .left .center .name text:first-child {
  130. width: calc(100% - 75px);
  131. }
  132. .shuangchaung .item_wrap .item .left .center .name .success {
  133. display: inline-block;
  134. color: #67C23A;
  135. background-color: rgba(103, 194, 58, 0.2);
  136. padding: 2px 5px;
  137. font-size: 12px;
  138. border-radius: 3px;
  139. margin-right: 15px;
  140. }
  141. .shuangchaung .item_wrap .item .left .center .name .wrang {
  142. display: inline-block;
  143. color: #F56C6C;
  144. background-color: rgba(245, 108, 108, 0.2);
  145. padding: 2px 5px;
  146. font-size: 12px;
  147. border-radius: 3px;
  148. margin-right: 15px;
  149. }
  150. .shuangchaung .item_wrap .item .left .center .name .wait {
  151. display: inline-block;
  152. color: #E6A23C;
  153. background-color: rgba(230, 162, 60, 0.2);
  154. padding: 2px 5px;
  155. font-size: 12px;
  156. border-radius: 3px;
  157. margin-right: 15px;
  158. }