select.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. font-size: 28rpx;
  33. color: #333333;
  34. font-weight: 600;
  35. }
  36. .tag-box {
  37. display: flex;
  38. align-items: center;
  39. width: 90%;
  40. overflow: hidden;
  41. margin-bottom: 4rpx;
  42. .datatag,
  43. .systemtag {
  44. flex-shrink: 0;
  45. margin-top: 6rpx;
  46. background: #FAAB16;
  47. color: #ffffff;
  48. margin-right: 10rpx;
  49. display: flex;
  50. align-items: center;
  51. height: 30rpx;
  52. font-size: 18rpx;
  53. padding: 0 10rpx;
  54. border-radius: 20rpx;
  55. font-family: PingFang SC-Regular, PingFang SC;
  56. }
  57. .systemtag {
  58. background: #FA8C16;
  59. }
  60. }
  61. .exp {
  62. font-size: 24rpx;
  63. color: #666666;
  64. }
  65. }
  66. }
  67. }
  68. .footer {
  69. display: flex;
  70. justify-content: space-between;
  71. align-items: center;
  72. padding: 0 30rpx;
  73. position: fixed;
  74. width: 100vw;
  75. height: 130rpx;
  76. background: #FFFFFF;
  77. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  78. bottom: 0;
  79. box-sizing: border-box;
  80. .count {
  81. font-size: 28rpx;
  82. font-family: PingFang SC-Regular, PingFang SC;
  83. color: #333333;
  84. }
  85. .but {
  86. width: 156rpx;
  87. height: 90rpx;
  88. background: #3874F6;
  89. border-radius: 8rpx;
  90. font-size: 28rpx;
  91. font-family: PingFang SC-Bold, PingFang SC;
  92. font-weight: bold;
  93. color: #FFFFFF;
  94. }
  95. }