header2.less 973 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. @import 'basic.less';
  2. @import 'reset.less';
  3. header {
  4. height: 55px;
  5. padding-bottom: 5px;
  6. overflow: hidden;
  7. .border-1px-bottom();
  8. .header-left {
  9. height: 100%;
  10. line-height: 55px;
  11. text-align: left;
  12. float: left;
  13. .center();
  14. img {
  15. width: 118px;
  16. }
  17. }
  18. .header-right {
  19. height: 100%;
  20. display: flex;
  21. align-content: flex-start;
  22. justify-content: center;
  23. flex-wrap: wrap;
  24. font-size: 12px;
  25. .hearder-right-item {
  26. height: auto;
  27. line-height: 65px;
  28. flex: 0 1 auto;
  29. padding-left: 5px;
  30. .item-lable {
  31. color: #E84542;
  32. font-weight: 900;
  33. font-size: 0.95rem;
  34. &.hdjb {
  35. color: #186EA7;
  36. /*font-weight: 500;
  37. font-size: 12px;*/
  38. }
  39. }
  40. }
  41. }
  42. }