<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
  @keyframes animMenuSelected {
    from {
      width: 7px;
      height: 7px;
      border-radius: 100px;
    }
    60% {
      width: 3px;
      height: 3px;
      border-radius: 100px;
    }
    to {
      width: 120%;
      height: 1px;
      border-radius: 50px;
    }
  }
  @keyframes animSubMenuMove {
    from {
      transform: scale(0, 1);
    }
    60% {
      transform: scale(0, 1);
    }
    to {
      transform: scale(1, 1);
    }
  }


  .header {
    left: 0;
    right: 0;
    top: 0;
    height: 100px;
    background-color: #ffffff;
    position: absolute;
    z-index: 2000;
    /* font-family: "等线 Light", "黑体 Regular", "Helvetica Neue", Helvetica, "PingFang SC", Tahoma, sans-serif; */
    border-bottom: 1px solid #f4f4f4;
    box-sizing: border-box;
    line-height: normal;
  }
  .header-main {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    height: 100%;
  }
  .header-logo {
    position: absolute;
    top: 18px;
    left: 60px;
  }
  .header-main .menu {
    position: absolute;
    top: 55px;
    left: 365px;
    font-size: 18px;
    white-space:nowrap;
    line-height: 22px;
  }
  .header-main .menuitem {
    position: relative;
    display: inline-block;
    margin-right: 25px;
  }
  .header-main .menuitem&gt;a {
    color: #444444;
  }
  .header-main .menu .menuSelectedBar {
    transform: translate(-50%, -50%);
    display: none;
    background-color: #444444;
    position: absolute;
    top: 30px;
    left: 50%;
  }
  .header-main .menuitem.selected .menuSelectedBar {
    animation-name: animMenuSelected;
    animation-duration: 500ms;
    animation-fill-mode: both;
    display: block;
  }

  .header-main .member-div {
    position: absolute;
    top: 57px;
    right: 20px;
    font-size: 14px;
    color: #bbbbbb;
    line-height: 20px;
  }
  .header-main .member-div a {
    display: inline-block;
    color: #666666;
  }
  .header-main .member-div a:hover {
    color: red;
  }
  .header-main .user-menu {
    position: absolute;
    left: 10%;
    width: 86px;
    background-color: white;
    border: 1px solid #3f3f49;
    text-align: center;
    z-index: 1000;
    display: none;
  }
  .header-main .user-menu li {
    margin: 10px 0;
  }

  .header-main .submenu {
    border: 1px solid #3f3f49;
  }

  .header .blue-bar {
    height: 20px;
    width: 100%;
    background-color: #3f3f49;
    bottom: -21px;
    position: absolute;
  }


  /* 子菜单 */
  .header-main .submenu {
    position: absolute;
    left: 0;
    top: 55px;
    font-size: 14px;
    margin-left: -50%;
    width: 200%;
    /* height: 120px; */
    z-index: 1;
    background-color: white;
    padding: 5px 0;
    overflow: hidden;
    animation-name: animSubMenuMove;
    animation-duration: 500ms;
    animation-fill-mode: both;
  }
  .header-main .submenu li {
    text-align: center;
  }
  .header-main .submenu a {
    color: #444444;
    line-height: 40px;
  }
  .header-main .submenu a:hover {
    color: #4ca219;
  }


  .main {
    margin-top: 120px;
    overflow-x: hidden;
  }


  .footer {
    padding: 100px 0 80px;
    margin: 0 auto;
    text-align: center;
    color: #666666;
    font-size: 16px;
    line-height: normal;
  }
  .footer .friend-linking {
    margin-bottom: 30px
  }
  .friend-linking a {
    color: #666666;
  }
  .footer .text {
    font-size: 13px;
  }


  @media only screen and (max-width: 1199px) {
    .header {
      height: 80px;
    }
    .header-logo {
      top: 22px;
      left: 25px;
    }
    .header-logo a img {
      width: 150px;
    }
    .header-main .menu {
      left: 200px;
      top: 40px;
    }
    .header-main .member-div {
      top: 42px;
    }
    .submenu-bar {
      top: 20px;
    }
    .submenu-bar .submenu {
      left: 200px;
    }
    .main {
      margin-top: 100px;
    }
  }
  @media only screen and (max-width: 991px) {
    .header {
      height: 60px;
    }
    .main {
      margin-top: 80px;
    }
    .header-logo {
      position: static;
      margin: 10px auto 0;
      width: 150px;
    }
    .header-menu-toggle {
      position: absolute;
      left: 0;
      top: 0;
    }
    .header-menu-toggle a {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 70px;
      height: 60px;
    }
    .header-menu-toggle .bar {
      position: absolute;
      background-color: black;
      display: block;
      width: 30px;
      height: 1px;
      top: 30px;
      left: 20px;
      border-radius: 100px;
      transition: all .25s ease;
    }
    .header-menu-toggle .bar:first-child {
      transform: translateY(-10px);
    }
    .header-menu-toggle .bar:last-child {
      transform: translateY(10px);
    }
    .header-menu-toggle.x .bar {
      transform: rotate(45deg);
    }
    .header-menu-toggle.x .bar:first-child {
      transform: rotate(135deg);
    }
    .header-menu-toggle.x .bar:last-child {
      opacity: 0;
    }
    .header-menu-mini {
      /* display: none; */
      position: absolute;
      left: 0;
      top: 60px;
      background-color: #eee;
      width: 100%;
      /* height: 270px; */
      height: 100vh;
      z-index: 10000;
      overflow-y: scroll;
      overflow-x: hidden;
    }
    .header-menu-mini .menu {
      width: 70%;
      margin: 0 auto;
      overflow-x: hidden;
    }
    .header-menu-mini .menu&gt;li {
      border-bottom: thin solid black;
      padding: 10px 0;
    }
    .header-menu-mini .menu&gt;li a {
      width: 100%;
      display: inline-block;
      margin-left: 15px;
      font-size: 16px;
    }
    .header-menu-mini a {
      color: black;
    }
    .header-menu-mini .submenu&gt;li {
      /* border-bottom: thin solid black; */
      padding: 10px 0;
    }
    .header-menu-mini .submenu&gt;li a  {
      width: 100%;
      display: inline-block;
      margin-left: 40px;
      font-size: 16px;
    }
    .header-menu-mini .member-div {
      width: 70%;
      font-size: 24px;
      text-align: center;
      margin: 20px auto 200px;
    }
  }
</pre></body></html>