index.less 1.26 KB
Newer Older
wanli's avatar
wanli committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
.top-nav-header{
.head {
    width: 100%;
    transition: background 0.3s, width 0.2s;
    height: 64px;
    // padding: 0 12px 0 0;
    padding:0px;
    box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
    position: relative;
    :global {
      .ant-menu-submenu.ant-menu-submenu-horizontal {
        height: 100%;
        padding-top: 9px;
        .ant-menu-submenu-title {
          height: 100%;
        }
      }
    }
    &.light {
      background-color: #fff;
    }
    .main {
      display: flex;
      height: 64px;
      padding-left: 24px;
      &.wide {
        max-width: 1200px;
        margin: auto;
        padding-left: 4px;
      }
      .left {
        flex: 1;
        display: flex;
      }
      .right {
        width: 324px;
      }
    }
  }
  
  .logo {
    width: 165px;
    height: 64px;
    position: relative;
    line-height: 64px;
    transition: all 0.3s;
    overflow: hidden;
    a{
      position: absolute;
      top: -2px;
    }
    img {
      display: inline-block;
      vertical-align: middle;
      height: 32px;
    }
    h1 {
      color: #fff;
      display: inline-block;
      vertical-align: middle;
      font-size: 16px;
      margin: 0 0 0 12px;
      font-weight: 600;
    }
  }
  
  .light {
    h1 {
      color: #002140;
    }
  }
}