index.less 365 B

123456789101112131415161718192021222324
  1. @import "~@less/variables.less";
  2. .list{
  3. .pop;
  4. left: 85px;
  5. padding: 0 0 10px;
  6. .listBox{
  7. max-height: 370px;
  8. overflow-y: auto;
  9. }
  10. li{
  11. width: 200px;
  12. line-height: 35px;
  13. border:1px #fff solid;
  14. padding: 0 20px 0 30px;
  15. white-space: nowrap;
  16. cursor: pointer;
  17. }
  18. li:hover{
  19. border-color:#3B9ED0;
  20. }
  21. }
  22. .hide{
  23. display: none;
  24. }