index.less 580 B

123456789101112131415161718192021222324252627282930
  1. .radio-box{
  2. display: inline-block;
  3. vertical-align: top;
  4. margin-left: 10px;
  5. }
  6. .radio{
  7. // width: 120px;
  8. height: 44px;
  9. line-height: 44px;
  10. cursor: pointer;
  11. display: block;
  12. padding-left: 10px;
  13. .tab{
  14. color:#000000;
  15. padding:0 10px 0 20px;
  16. }
  17. .disabled{
  18. opacity: 0.3;
  19. filter:alpha(opacity=30);
  20. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=30);";
  21. }
  22. }
  23. .selected{
  24. background: rgba(59,158,208,0.1);
  25. background-image: url(../../images/first.png);
  26. background-repeat: no-repeat;
  27. background-position: 12px 15px;
  28. }