king
2021-08-26 e9c48bd7356462ba9257540b130a47a65ad1861d
src/components/header/index.scss
@@ -178,3 +178,42 @@
    padding-right: 30px;
  }
}
.menu-board {
  background: #ffffff;
  padding: 20px 50px;
  border-radius: 4px;
  box-shadow: 0 0 3px #959595;
  position: relative;
  left: 11.8%;
  .menu-wrap {
    .title {
      color: #1890ff;
      font-size: 15px;
      font-weight: 600;
    }
    .menu-detail {
      max-width: 60vw;
      padding: 5px 0 10px 15px;
      div {
        float: left;
        margin-bottom: 5px;
        width: 120px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        cursor: pointer;
      }
      div:hover {
        color: #40a9ff;
      }
      div:not(:last-child) {
        margin-right: 20px;
      }
    }
    .menu-detail::after {
      content: ' ';
      display: block;
      clear: both;
    }
  }
}