style.less 999 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .dialog-main-1{
  2. width: 1000px;
  3. padding: 20px;
  4. .brand-select{
  5. overflow-y: auto;
  6. height: 500px;
  7. }
  8. .brand-select-item-title{
  9. height:30px;
  10. background:rgba(246,246,246,1);
  11. font-size:14px;
  12. font-family:PingFangSC-Medium,PingFang SC;
  13. font-weight:500;
  14. color:rgba(51,51,51,1);
  15. line-height: 30px;
  16. padding-left: 10px;
  17. }
  18. .brand-select-item-children-box{
  19. display: flex;
  20. flex-wrap: wrap;
  21. padding: 8px 0;
  22. .brand-select-item-children-item{
  23. height:40px;
  24. border-radius:5px;
  25. border:1px solid rgba(221,221,221,1);
  26. font-size:13px;
  27. font-family:PingFangSC-Regular,PingFang SC;
  28. font-weight:400;
  29. color:rgba(51,51,51,1);
  30. line-height: 40px;
  31. margin: 7px 20px 7px 0;
  32. width:102px;
  33. overflow: hidden;
  34. text-overflow: ellipsis;
  35. text-align: center;
  36. cursor: pointer;
  37. &.selected{
  38. border:1px solid rgba(38,150,92,1);
  39. color:rgba(38,150,92,1);
  40. }
  41. }
  42. }
  43. }