1. overflow:hidden;
    2. text-overflow:ellipsis;
    3. white-space:nowrap;
    1. // 更改滚动条样式
    2. ::-webkit-scrollbar {
    3. width: 6px;
    4. height: 6px;
    5. background-color: transparent;
    6. }
    7. ::-webkit-scrollbar-track {
    8. background-color: transparent;
    9. }
    10. ::-webkit-scrollbar-thumb {
    11. border-radius: 3px;
    12. background-color: #c7c7c7;
    13. &:hover {
    14. background-color: #888;
    15. }
    1. .hasPower{
    2. color: #dddde3;
    3. cursor:not-allowed;
    4. }