123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- @import "~assets/less/variable";
- .header {
- height: 64px;
- background-color: @body-background;
- box-shadow: @header-box-shadow;
- flex-shrink: 0;
- z-index: @header-index;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- &.hide {
- display: none;
- }
- }
- .logo {
- width: 200px;
- height: 64px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- a {
- line-height: 0;
- }
- img {
- width: 160px;
- height: 32px;
- }
- }
- @media (min-width: 768px) {
- .logoPc {
- display: block;
- }
- .logoMobile {
- display: none;
- }
- }
- @media (max-width: 768px) {
- .logoPc {
- display: none;
- }
- .logoMobile {
- display: block;
- img {
- margin-left: -142px;
- }
- }
- }
- .tools {
- margin-right: 16px;
- display: flex;
- flex-direction: row;
- li {
- width: 50px;
- height: 50px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- i {
- font-size: 24px;
- cursor: pointer;
- }
- }
- }
|