<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PingFang SC", "Microsoft Yahei",
    sans-serif;
}

.menu-box {
  width: 100%;
  background-color: white;
}

nav {
  margin: 0px auto;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: initial;
  /* å·¦å³padding */
  /* padding: 0 5vw; */
  padding: 0px 20px;
  height: 70px;
  background-color: white;
  width: 100%;
  /* max-width: 1200px; */
}

.logo {
  /* margin-left: 20px; */
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  /* å&nbsp;ä¸€åŠå®½åº¦ */
  /* flex: 1; */
}

.logo img {
  width: 130px;
}

.nav-menu {
  margin-left: 50px;
  /* å&nbsp;ä»¤ä¸€åŠå®½åº¦ */
  flex: 1;
  display: flex;
  justify-content: space-between;

  /* æœ€å®½550px */
  max-width: 600px;
  font-size: 14px;
}

.nav-menu li {
  cursor: pointer;
  list-style: none;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: black;
  opacity: 1;
}

.burger div {
  /* è®¾ç½®æ±‰å&nbsp;¡æŒ‰é’®ä¸‰å±‚æ¡ */
  width: 25px;
  height: 3px;
  background-color: #000000;
  margin: 4px;
}

.burger {
  display: none;
}

.selectMenu {
  color: #958a6f !important;
  opacity: 1 !important;
}

.userInfoBox {
  color: black;
  position: absolute;
  right: 10px;
  top: 22px;
  z-index: 10;
  display: flex;
  align-items: center;
}

.userInfoBox .userName {
  display: inline-block;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.userInfoBox span {
  padding: 0px 20px;
}

.userInfoBox .userSelect {
  cursor: pointer;
}

.userInfoBox .userSelect:hover {
  color: #958a6f;
}

.userInfoBox .managementCenter {
  padding: 2px 10px;
  border: 1px solid black;
  border-radius: 4px;
}

.userInfoBox .managementCenter:hover {
  border: 1px solid #958a6f;
}

.userBox {
  display: none;
}

/* å¯¼èˆªæ&nbsp;å±å¹•é€‚é… ï¼ˆæ‰‹æœºï¼‰ */
@media screen and (max-width: 1200px) {
  .menu-box .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-box .userBox {
    display: inline-block;
    /* position: absolute;
    right: 50px; */
    width: 40px;
    height: 40px;
    padding: 7px;
    z-index: 1000;
  }

  .menu-box .userBox img {
    width: 100%;
    height: 100%;
  }

  .burger {
    display: block;
  }

  nav {
    justify-content: space-between;
  }

  /* å°å±å¹•èœå•æ˜¾ç¤ºä½ç½®ä¸ºå³ä¾§æŠ½å±‰å½¢å¼ */
  .nav-menu {
    max-width: 250px;
    z-index: 10000;
    /* position: absolute; */
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    width: 50vw;
    /* height: calc(100vh - 80px); */
    height: 100vh;
    background-color: #a89976;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    /* åŠ¨ç”» */
    transform: translateX(100%);
  }

  /* èœå•æ‰“å¼€æ—¶ï¼Œæ»‘åˆ°åˆå§‹ä½ç½® */
  .nav-menu.open {
    transform: translateX(0);
    transition: 0.4s ease-in-out;
  }

  .page.open {
    overflow-y: hidden;
  }

  .FBBox_hide.open {
    content: '';
    width: 100vw;
    height: 100%;
    background: black;
    opacity: 0.5;
    position: absolute;
    z-index: 100;
    top: 0px;
  }

  .nav-menu a {
    width: 100%;
  }

  /* æ¯ä¸ªèœå•é¡¹é»˜è®¤çœ‹ä¸åˆ°ï¼Œå‘å³ç§»åŠ¨20è±¡ç´&nbsp; */
  .nav-menu li {
    font-size: 18px;
    color: white;
    /* ä¸Šä¸‹é—´è· */
    margin: 2vh;
    transform: translateX(20px);
    opacity: 0;
    width: 100%;
    margin-left: 30px;
    margin-right: 0px;
  }

  /* æ±‰å&nbsp;¡æŒ‰é’®è¢«ç‚¹å¼€æ—¶ï¼Œè®¾ç½®æŒ‰é’®è¿‡æ¸¡ */
  .burger.active div {
    transition: 0.15s ease-in-out 0.15s;
  }

  /* ç¬¬ä¸€æ¡çº¿æ—‹è½¬45åº¦ */
  .burger.active .top-line {
    transform: rotate(45deg) translate(4px, 6px);
  }

  /* ç¬¬ä¸‰æ¡çº¿æ—‹è½¬-45åº¦ */
  .burger.active .bottom-line {
    transform: rotate(-45deg) translate(4px, -6px);
  }

  /* ä¸­é—´çº¿å‘å³ç§»åŠ¨å¹¶å˜ä¸ºé€æ˜Ž */
  .burger.active .middle-line {
    opacity: 0;
    transform: translateX(10px);
    transition: 0.15s ease-in-out;
  }

  /* èœå•é¡¹æ»‘å…¥åŠ¨ç”» */
  @keyframes slideIn {
    from {
      transform: translateX(20px);
      opacity: 1;
    }

    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .userInfoBox {
    display: none;
  }

}

@media screen and (min-width: 1200px) {
  .selectMenu:after {
    content: '';
    width: auto;
    min-width: 30px;
    height: 2px;
    background: #BB381A;
    border-radius: 1px;
    display: block;
    margin-top: 6px;
  }

  nav {
    /* line-height: 50px; */
    z-index: 10;
  }

  /* .nav-menu li {
    margin-top: 10px;
  } */

  .nav-menu li:hover {
    color: #958a6f;
    opacity: 1;
  }
}</pre></body></html>