@charset "utf-8";

@-webkit-keyframes movingTab {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes movingTab {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0%);
  }
}
.main-tab-box{border-radius:4px;background:var(--color-widget-box-primary);box-shadow:var(--color-widget-box-shadow)}
.tabs {
  margin: auto;
}
.tabs .tabs--list {
  display: block;
  margin: auto;
  position: relative;
  background-color: var(--color-ui-bg-primary-30);
  border-radius: 4px 4px 0px 0px;
}
.tabs .tabs--list li {
  display: inline-block;
  vertical-align: middle;
  width: 20%;
  position: relative;
  z-index: 2;
}
.tabs .tabs--list li a {
  display: block;
  padding: 15px;
  font-size: 16px;
  line-height: 26px;
  color: #636363;
  transition: color ease 0.7s, box-shadow 0.5s;
  text-align: center;
}
.tabs .tabs--list li a.actived {
  color: #ffffff;
}
.tabs .tabs--list li a.actived:hover {
  box-shadow: none;
}
.tabs .tabs--list li a:hover {
  box-shadow: 0 24px 18px -15px rgba(0, 0, 0, 0.09);
}
.tabs .tabs--list li.moving-tab {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 110%;
  top: -5%;
  background-color: var(--color-ui-bg-primary-800);
  box-shadow: 0 24px 18px -15px rgba(0, 0, 0, 0.45);
  transition: left 0.7s, box-shadow 0.5s;
  z-index: 1;
  border-radius: 4px;
}
.tabs .tabs--list li.moving-tab:hover {
  box-shadow: 0 24px 18px -15px rgba(0, 0, 0, 0.65);
}
.tabs .tabs--list li.moving-tab--interaction {
  animation: movingTab 0.4s forwards;
  transition: left 0.4s cubic-bezier(0.29, 1.42, 0.79, 1);
}
.tabs .tabs--content {
  padding: 15px;
}
.tabs .tabs--content {
  position: relative;
  width: 100%;
  border-radius: 0px 0px 4px 4px;
}
.tabs .tabs--content > li {
  width: 100%;
  top: 0;
  left: 0;
  display: none;
  list-style: none;
}
.tabs .tabs--content li.actived {
  display: block;
}