index.less 470 B

123456789101112131415161718192021222324
  1. .check-box{
  2. max-width: 120px;
  3. height: 35px;
  4. line-height: 35px;
  5. cursor: pointer;
  6. .img{
  7. display: inline-block;
  8. width: 14px;
  9. height: 14px;
  10. vertical-align: middle;
  11. margin-right: 4px;
  12. background: #fff;
  13. -webkit-appearance: none;
  14. border: 1px solid #c9c9c9;
  15. border-radius: 4px;
  16. outline: none;
  17. cursor: pointer;
  18. }
  19. .on{
  20. .img;
  21. background: url("../../images/first.png") no-repeat;
  22. background-size: 93% 100%;
  23. }
  24. }