| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 | .hc-ledger-copy-time {    :deep(.uv-checkbox-group) {        display: block;    }    .hc-operation-bar {        display: flex;        align-items: center;        .selected-bar {            position: relative;            margin-right: 38rpx;            display: flex;            align-items: center;            flex: 1;            .label {                margin-right: 20rpx;            }            .text {                font-size: 26rpx;                color: #7A7B7C;            }            .icon {                font-size: 38rpx;                color: #007aff;            }        }        .btn-bar .cu-btn.blue {            color: white;            background-color: #007aff;        }    }    .popup-selected-log-time {        position: relative;        background: white;        display: flex;        align-items: center;        padding: 10rpx 20rpx;        .content-bar {            position: relative;            display: flex;            align-items: center;            margin-right: 26rpx;            flex: 1;            .avatar {                position: relative;                margin-right: 24rpx;                height: 66rpx;                width: 66rpx;                background: #2b8cf5;                border-radius: 8rpx;                color: white;                display: flex;                justify-content: center;                align-items: center;                font-size: 26rpx;            }            .content {                position: relative;                padding-right: 18rpx;                flex: 1;                .text {                    font-size: 25rpx;                    color: #7A7B7C;                    margin-top: 3rpx;                }            }        }    }    .popup-selected-log-time + .popup-selected-log-time {        border-top: 1px solid #eee;    }}
 |