.nav {
    border-bottom: 1px solid #ccc;
    width: 100%;
    height: auto;
    background-color: white;
    display: flex;
    justify-content: center;
    position: fixed;
    z-index: 1000;
    top: 42px;
  }
  .nav_kuan {
    width: 1200px;
    height: 95px;
    display: flex;
    justify-content: flex-start;
  }
  .nav_left {
    width: 358px;
    height: 95px;
    display: flex;
    justify-content: center;
    align-content: center;
  }
  .companylogo {
    width: 354px;
    align-self: center;
  }
  .companylogo_img {
    width: 240px;
    height: auto;
  }
  .nav_center {
    width: 136px;
    height: 100%;
  }
  .nav_right {
    width: 750px;
    height: 95px;
    display: flex;
  }
  .nav_content {
    width: 750px;
    height: 60px;
    font-size: 16px;
    align-self: center;
    display: flex;
    justify-content: flex-start;
  }
  .nav_cont_one{
    width: 105px;
    display: flex;
    height: 60px;
    line-height: 56px;
    margin: 0;
    padding: 0;
    text-align: right;
    justify-content: space-around;
  }
  .nav_cont_one>li{
    width: auto;
    text-align: center;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: bold;
  }
  .nav_cont_one>li:hover{
    cursor: pointer;
    color: #000;
  }
  .nav_content ul {
    width: 750px;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-around;
  }
  .nav_content ul li {
    display: inline-block;
    width: auto;
    padding: 15px 5px;
    text-align: right;
    font-size: 16px;
    font-weight: bold;
   
  }
  .nav_content ul li:hover{
    cursor: pointer;
    color: #000;
  }
  
  /* ── 以下两条选择器被收窄过，原因见下 ────────────────────────────────────
   * 老项目 PCNav.vue 用的是 <style scoped>，vue-loader 会把选择器编译成
   *     .active  →  .active[data-v-xxx]
   * 作用域限定在导航组件内。
   *
   * 新项目 CSS 是全局的，如果保持裸 .active，会把顶部信息条、页尾等其他
   * 地方带 active 的元素也染成红色 —— 那是老页面没有的效果。
   *
   * 所以加上 .nav 前缀，等价还原原来的 scoped 作用域。
   * 改动理由：为了「和老页面一模一样」，不是为了好看。
   * ------------------------------------------------------------------------ */
  .nav .active {
    color: red;
    border-bottom: 2px solid red;
  }
  .nav .activeone {
    color: red;
  }