select.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. page {
  2. height: 100vh;
  3. overflow: hidden;
  4. }
  5. .total {
  6. height: 60rpx;
  7. line-height: 60rpx;
  8. font-size: 24rpx;
  9. font-family: PingFang SC-Regular, PingFang SC;
  10. color: #666666;
  11. padding-left: 30rpx;
  12. }
  13. .setclient-list-item {
  14. width: 100vw;
  15. background-color: #fff;
  16. box-sizing: border-box;
  17. padding-left: 30rpx;
  18. .con {
  19. display: flex;
  20. align-items: center;
  21. width: 100%;
  22. border-bottom: 1px solid #EFEFEF;
  23. box-sizing: border-box;
  24. padding: 10rpx 0;
  25. padding-bottom: 14rpx;
  26. .mian {
  27. flex: 1;
  28. min-height: 60rpx;
  29. width: 0;
  30. font-family: PingFang SC-Regular, PingFang SC;
  31. .title {
  32. width: 100%;
  33. position: relative;
  34. display: flex;
  35. height: 42rpx;
  36. align-items: center;
  37. box-sizing: border-box;
  38. >text {
  39. display: inline-block;
  40. width: 80%;
  41. font-size: 30rpx;
  42. color: #333333;
  43. }
  44. .status {
  45. position: absolute;
  46. right: 0rpx;
  47. width: 132rpx;
  48. height: 40rpx;
  49. border-radius: 20rpx 0px 0px 20rpx;
  50. box-sizing: border-box;
  51. padding-left: 30rpx;
  52. line-height: 40rpx;
  53. font-size: 24rpx;
  54. font-family: PingFang SC-Regular, PingFang SC;
  55. color: #FFFFFF;
  56. }
  57. }
  58. .tag-box {
  59. display: flex;
  60. align-items: center;
  61. width: 90%;
  62. overflow: hidden;
  63. margin-bottom: 4rpx;
  64. .datatag,
  65. .systemtag {
  66. flex-shrink: 0;
  67. margin-top: 6rpx;
  68. background: #FAAB16;
  69. color: #ffffff;
  70. margin-right: 10rpx;
  71. display: flex;
  72. align-items: center;
  73. height: 30rpx;
  74. font-size: 18rpx;
  75. padding: 0 10rpx;
  76. border-radius: 20rpx;
  77. font-family: PingFang SC-Regular, PingFang SC;
  78. }
  79. .systemtag {
  80. background: #FA8C16;
  81. }
  82. }
  83. .exp {
  84. font-size: 24rpx;
  85. color: #666666;
  86. margin-top: 6rpx;
  87. }
  88. }
  89. }
  90. }
  91. .footer {
  92. display: flex;
  93. justify-content: space-between;
  94. align-items: center;
  95. padding: 0 30rpx;
  96. position: fixed;
  97. width: 100vw;
  98. height: 130rpx;
  99. background: #FFFFFF;
  100. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  101. bottom: 0;
  102. box-sizing: border-box;
  103. .count {
  104. font-size: 28rpx;
  105. font-family: PingFang SC-Regular, PingFang SC;
  106. color: #333333;
  107. }
  108. .but {
  109. width: 156rpx;
  110. height: 90rpx;
  111. background: #3874F6;
  112. border-radius: 8rpx;
  113. font-size: 28rpx;
  114. font-family: PingFang SC-Bold, PingFang SC;
  115. font-weight: bold;
  116. color: #FFFFFF;
  117. }
  118. }