123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- /* pages/customermanage/customermanage.wxss */
- .customer-manage {
- padding: 0;
- margin: 0;
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- }
- .customer-manage .nocustomer-tip {
- width: 510rpx;
- height: 440rpx;
- display: block;
- margin: 160rpx auto 200rpx;
- }
- .customer-list {
- height: calc(100% - 160rpx);
- }
- .customer-list .item {
- width: calc(100% - 160rpx);
- height: 220rpx;
- position: relative;
- font-size: 28rpx;
- overflow: hidden;
- background: rgba(249, 250, 252, 1);
- border-radius: 16rpx;
- border: 2rpx solid rgba(241, 241, 241, 1);
- margin: 40rpx;
- padding: 40rpx;
- }
- .customer-list .item.default {
- background: linear-gradient(140deg, rgba(0, 145, 255, 1) 0%, rgba(78, 203, 255, 1) 100%);
- }
- .customer-list .item .bg-default {
- width: 120rpx;
- height: 110rpx;
- position: absolute;
- top: 40rpx;
- right: 40rpx;
- }
- .customer-list .item text {
- display: block;
- font-size: 28rpx;
- color: rgba(104, 107, 120, 1);
- line-height: 40rpx;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- margin-bottom: 10rpx;
- }
- .customer-list .item .check {
- display: flex;
- align-items: center;
- width: 100%;
- font-size: 28rpx;
- color: rgba(255, 255, 255, 1);
- line-height: 40rpx;
- margin-top: 40rpx;
- }
- .customer-list .item .check image {
- width: 28rpx;
- height: 28rpx;
- margin-right: 10rpx;
- }
- .customer-list .item .check text {
- margin: 0;
- }
- .customer-list .item.default text {
- color: #FFF;
- }
- .customer-list .item .btn-unbind {
- width: 100rpx;
- height: 48rpx;
- background: rgba(255, 255, 255, 0.9);
- border-radius: 24rpx;
- border: 2rpx solid rgba(221, 223, 225, 1);
- position: absolute;
- bottom: 36rpx;
- right: 40rpx;
- font-size: 24rpx;
- color: rgba(0, 145, 255, 1);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .customer-list .item.default .btn-unbind {
- border: none;
- }
- button.btn-big {
- position: absolute;
- bottom: 0;
- left: 40rpx;
- }
- /* 定制弹窗样式 */
- .customer-popup .scc-popup-box view {
- display: flex;
- justify-content: left;
- text-align: left;
- padding: 0 30px;
- }
|