.second-nav-warp {
  box-shadow: -4px 0px 8px 0px rgba(151, 154, 157, 0.16);
}
.second-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* width: 1200px; */
  margin: 0 auto;
  background: #fff;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  white-space: nowrap;
  overflow: scroll;
}
.second-nav li {
  margin: 0 15px;
  padding: 0 10px;
  line-height: 57px;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
}
.second-nav li a {
  color: #000;
}
.second-nav li:nth-of-type(1) {
  margin-left: 0;
}

.second-nav li::after {
  display: block;
  position: absolute;
  top: 53px;
  left: 50%;
  right: 50%;
  content: '';
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 2px;
}
.second-nav li:hover {
  color: #135bd2 !important;
}
.second-nav li:hover::after {
  background: #135bd2 !important;
  left: 0;
  right: 0;
}

.second-nav .active {
  color: #135bd2;
}
.second-nav .active::after {
  background: #135bd2 !important;
  left: 0;
  right: 0;
}

