customermanage.wxss 2.0 KB

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