customermanage.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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: 100%;
  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 .underline{
  72. text-decoration-line: underline;
  73. }
  74. .customer-list .item.default .underline{
  75. text-decoration-line: underline;
  76. }
  77. .customer-list .item .nounderline{
  78. text-decoration-line: none;
  79. }
  80. .customer-list .item .btn-unbind {
  81. width: 100rpx;
  82. height: 48rpx;
  83. background: rgba(255, 255, 255, 0.9);
  84. border-radius: 24rpx;
  85. border: 2rpx solid rgba(221, 223, 225, 1);
  86. position: absolute;
  87. bottom: 36rpx;
  88. right: 40rpx;
  89. font-size: 24rpx;
  90. color: rgba(0, 145, 255, 1);
  91. display: flex;
  92. align-items: center;
  93. justify-content: center;
  94. }
  95. .customer-list .item.default .btn-unbind {
  96. border: none;
  97. }
  98. button.btn-big {
  99. position: absolute;
  100. bottom: 0;
  101. left: 40rpx;
  102. }
  103. /* 定制弹窗样式 */
  104. .customer-popup .scc-popup-box view {
  105. display: flex;
  106. justify-content: left;
  107. text-align: left;
  108. padding: 0 30px;
  109. }