
.navArea {
    z-index: 99;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    position: relative;
    transition: 0.3s;
    /*黏*/
  }
  .navArea ul {
    color: unset;
    background: #cb1a44;
    padding: 0 24px;
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0px;
  }
  .navArea ul * {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .navArea ul * {
      font-size: 18px;
      font-weight: 500;
    }
  }
  @media (max-width: 576px) {
    .navArea ul {
      flex-wrap: nowrap;
      justify-content: left;
      -webkit-overflow-scrolling: touch;
      overflow-scrolling: touch;
      overflow-x: scroll;
      margin-left: 0%;
      margin: 0px auto;
      padding: 0 8px;
    }
  }
  .navArea ul .nav-tab {
    cursor: pointer;
    text-align: center;
    position: relative;
    padding: 16px;
    white-space: nowrap;
    color: #fff;
    background: unset;
  }
  .navArea ul .nav-tab:hover {
    color: #fff;
    background: #20497f;
  }
  @media (max-width: 576px) {
    .navArea ul .nav-tab:hover {
      color: #20497f;
      background: unset;
    }
  }
  .navArea ul .nav-tab.on {
    color: #fff;
    background: #20497f;
  }
  .navArea.sticky {
    position: sticky;
    top: 0;
    left: 0;
    margin: 0px auto;
  }
  

