| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- .container {
- padding: 20rpx;
- background-color: #f5f5f5;
- }
- .list-item {
- margin-bottom: 24rpx;
- border-radius: 16rpx;
- overflow: hidden;
- box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.06);
- background-color: #fff;
- }
- .item {
- padding: 24rpx;
- transition: all 0.3s ease;
- }
- .item:active {
- background-color: #f9f9f9;
- }
- .top {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .name-row {
- display: flex;
- align-items: center;
- flex: 1;
- overflow: hidden;
- margin-right: 16rpx;
- }
- .name {
- font-size: 34rpx;
- font-weight: 600;
- color: #1a1a1a;
- line-height: 48rpx;
- flex-shrink: 0;
- margin-right: 16rpx;
- }
- .phone-tag {
- font-size: 26rpx;
- color: #666;
- line-height: 40rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .statu {
- padding: 6rpx 20rpx;
- border-radius: 8rpx;
- font-size: 24rpx;
- font-weight: 500;
- flex-shrink: 0;
- background-color: #fff;
- border: 2rpx solid;
- }
- .content {
- margin-bottom: 8rpx;
- }
- .row {
- display: flex;
- margin-bottom: 14rpx;
- flex-wrap: wrap;
- align-items: center;
- }
- .exp {
- flex: 1;
- font-size: 26rpx;
- color: #666;
- margin-right: 24rpx;
- line-height: 40rpx;
- }
- .exp.full-width {
- flex: 100%;
- margin-right: 0;
- }
- /* 操作按钮区域 */
- .actions {
- display: flex;
- padding: 20rpx 24rpx;
- gap: 16rpx;
- background: linear-gradient(180deg, #fafbfc 0%, #f5f6f8 100%);
- border-top: 1rpx solid #eef0f3;
- }
- /* 操作按钮基础样式 */
- .action-btn {
- flex: 1;
- height: 76rpx;
- border-radius: 38rpx;
- font-size: 26rpx;
- font-weight: 500;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- position: relative;
- overflow: hidden;
- text-decoration: none;
- letter-spacing: 1rpx;
- box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.12);
- transition: transform 0.15s ease, box-shadow 0.15s ease;
- }
- /* 转客户按钮 */
- .action-btn.convert {
- background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
- box-shadow: 0 4rpx 14rpx rgba(37, 99, 235, 0.3);
- }
- /* 分配按钮 */
- .action-btn.assign {
- background: linear-gradient(135deg, #10b981 0%, #059669 100%);
- box-shadow: 0 4rpx 14rpx rgba(5, 150, 105, 0.3);
- }
- /* 撤回按钮 */
- .action-btn.withdraw {
- background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
- box-shadow: 0 4rpx 14rpx rgba(217, 119, 6, 0.3);
- }
- /* 打电话按钮 */
- .action-btn.call {
- background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
- box-shadow: 0 4rpx 14rpx rgba(124, 58, 237, 0.3);
- }
- /* 按钮按压效果 */
- .action-btn:active {
- transform: scale(0.95);
- opacity: 0.9;
- }
- .action-btn.convert:active {
- box-shadow: 0 2rpx 6rpx rgba(37, 99, 235, 0.25);
- }
- .action-btn.assign:active {
- box-shadow: 0 2rpx 6rpx rgba(5, 150, 105, 0.25);
- }
- .action-btn.withdraw:active {
- box-shadow: 0 2rpx 6rpx rgba(217, 119, 6, 0.25);
- }
- .action-btn.call:active {
- box-shadow: 0 2rpx 6rpx rgba(124, 58, 237, 0.25);
- }
|