customermanage.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /* pages/customermanage/customermanage.wxss */
  2. .customer-manage {
  3. padding: 0;
  4. margin: 0;
  5. position: absolute;
  6. top: 0;
  7. right: 0;
  8. bottom: 0;
  9. left: 0;
  10. }
  11. .customer-manage .nocustomer-tip {
  12. width: 510rpx;
  13. height: 440rpx;
  14. display: block;
  15. margin: 160rpx auto 200rpx;
  16. }
  17. .customer-list {
  18. height: calc(100% - 160rpx);
  19. }
  20. .customer-list .item {
  21. width: calc(100% - 160rpx);
  22. height: 220rpx;
  23. position: relative;
  24. font-size: 28rpx;
  25. overflow: hidden;
  26. background: rgba(249, 250, 252, 1);
  27. border-radius: 16rpx;
  28. border: 2rpx solid rgba(241, 241, 241, 1);
  29. margin: 40rpx;
  30. padding: 40rpx;
  31. }
  32. .customer-list .item.default {
  33. background: linear-gradient(140deg, rgba(0, 145, 255, 1) 0%, rgba(78, 203, 255, 1) 100%);
  34. }
  35. .customer-list .item .bg-default {
  36. width: 120rpx;
  37. height: 110rpx;
  38. position: absolute;
  39. top: 40rpx;
  40. right: 40rpx;
  41. }
  42. .customer-list .item text {
  43. display: block;
  44. font-size: 28rpx;
  45. color: rgba(104, 107, 120, 1);
  46. line-height: 40rpx;
  47. text-overflow: ellipsis;
  48. white-space: nowrap;
  49. overflow: hidden;
  50. margin-bottom: 10rpx;
  51. }
  52. .customer-list .item .check {
  53. display: flex;
  54. align-items: center;
  55. width: 100%;
  56. font-size: 28rpx;
  57. color: rgba(255, 255, 255, 1);
  58. line-height: 40rpx;
  59. margin-top: 40rpx;
  60. }
  61. .customer-list .item .check image {
  62. width: 28rpx;
  63. height: 28rpx;
  64. margin-right: 10rpx;
  65. }
  66. .customer-list .item .check text {
  67. margin: 0;
  68. }
  69. .customer-list .item.default text {
  70. color: #FFF;
  71. }
  72. .customer-list .item .btn-unbind {
  73. width: 100rpx;
  74. height: 48rpx;
  75. background: rgba(255, 255, 255, 0.9);
  76. border-radius: 24rpx;
  77. border: 2rpx solid rgba(221, 223, 225, 1);
  78. position: absolute;
  79. bottom: 36rpx;
  80. right: 40rpx;
  81. font-size: 24rpx;
  82. color: rgba(0, 145, 255, 1);
  83. display: flex;
  84. align-items: center;
  85. justify-content: center;
  86. }
  87. .customer-list .item.default .btn-unbind {
  88. border: none;
  89. }
  90. button.btn-big {
  91. position: absolute;
  92. bottom: 0;
  93. left: 40rpx;
  94. }
  95. /* 定制弹窗样式 */
  96. .customer-popup .scc-popup-box view {
  97. display: flex;
  98. justify-content: left;
  99. text-align: left;
  100. padding: 0 30px;
  101. }