@media screen and (min-width: 801px) {
  .header {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 60px;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.14);
    background-color: #fff;
    z-index: 50;
  }
  .header > .head-nav {
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .header > .head-nav > .logo {
    display: flex;
    align-items: center;
    width: 120px;
    height: 100%;
    overflow: hidden;
  }
  .header > .head-nav > .logo > img {
    height: 96px;
  }
  .header > .head-nav .nav_box ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .header > .head-nav .nav_box ul > li div > a {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0 30px;
    color: rgb(89, 89, 89);
  }
  .header > .head-nav .nav_box ul > li div span {
    display: none;
  }
  .header > .head-nav .nav_box ul > li #nav_sub_list {
    display: none !important;
  }
  .header > .head-nav .nav_box ul > li .active {
    color: #0065ae;
    font-weight: 700;
  }
  .header > .head-nav > .login {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .header > .head-nav > .login .select {
    position: relative;
    cursor: pointer;
    font-size: 14px;
  }
  .header > .head-nav > .login .select > .selcet-list {
    display: none;
    position: absolute;
    max-height: 208px;
    top: 30px;
    left: -15px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.14);
    box-sizing: border-box;
    overflow: auto;
  }
  .header > .head-nav > .login .select > .selcet-list li:hover {
    background-color: rgb(230, 240, 255);
  }
  .header > .head-nav > .login .select > .selcet-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 124px;
    height: 52px;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    box-sizing: border-box;
  }
  .header > .head-nav > .login .select > .selcet-list li img {
    flex: 0 0 auto;
    width: 30px;
    height: 20px;
    margin-right: 10px;
  }
  .header > .head-nav > .login .select > .selcet-list li span {
    flex: 0 0 auto;
  }
  .header > .head-nav > .login .select > .selcet-list li:last-child {
    border-bottom: none;
  }
  .header > .head-nav > .login .select .selcet-frame {
    display: flex;
    align-items: center;
    margin-right: 20px;
  }
  .header > .head-nav > .login .select .selcet-frame .coun-img {
    width: 30px;
    height: 20px;
  }
  .header > .head-nav > .login .select .selcet-frame .lang {
    padding: 0 5px;
    color: #626466;
    line-height: 16px;
  }
  .header > .head-nav > .login .select .selcet-frame .arrow {
    width: 16px;
    height: 16px;
  }
  .header > .head-nav > .login .header_nav {
    display: none;
  }
  .header > .head-nav > .login > .button a {
    display: inline-block;
    padding: 5px 0;
    border: 1px solid #0065ae;
    border-radius: 4px;
    font-size: 14px;
    color: #0065ae;
    text-align: center;
    min-width: 70px;
    white-space: nowrap;
    outline: none;
    cursor: pointer;
  }
  .header > .head-nav > .login > .button .register {
    margin-left: 12px;
    color: #fff;
    background-color: #0065ae;
  }
}