@charset "utf-8";
/* CSS Document */






















.nav {

  display: inline-flex;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  padding: 0 20px;

}

.nav-item {
  width:145px;
  text-align: center;
  font-family:Microsoft YaHei;
  color: #1A1A1A;
  font-size:16px;
  padding-top:5px;
  padding-bottom:5px;	
  text-decoration: none;
  transition: .3s;
  margin: 0 6px;
  z-index: 1;
  font-family: 'DM Sans', sans-serif;
  position: relative;
}


.nav-jian {
  color: #cccccc;
  font-size:20px;
  padding-top:0px;
  padding-bottom:0px;
  padding-left:0px;
  padding-right:0px;	
  text-decoration: none;
  transition: .3s;
  margin: 0 0px;
  z-index: 1;
  font-family: 'DM Sans', sans-serif;
  position: relative;
}


.nav-item span {
  color:#999999;
  font-size:6px;
  font-weight:100;
}
.nav-item:before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #dfe2ea;
  border-radius: 8px 8px 0 0;
  opacity: 0;
  transition: .3s;
}

.nav-item:not(.is-active):hover:before {
  opacity: 1;
  bottom: 0;
}

.nav-item:not(.is-active):hover {
  color: #333;
}

.nav-indicator {
  width:0px;
  position: absolute;
  left: 0px;
  bottom: 0;
  height: 4px;
  transition: .4s;
  height: 5px;
  z-index: 1;
  border-radius: 8px 8px 0 0;
  background-color: orange;
}

@media (max-width: 580px) {
  .nav {
    overflow: auto;
  }
}

