.z-case-list .bg0 {
  height: 20rem;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.z-case-list .tabs {
  display: flex;
  align-items: center;
}
.z-case-list .tabs .tab {
  flex: 1;
  height: 4.875rem;
  line-height: 4.875rem;
  text-align: center;
  overflow: hidden;
  color: #000000;
  font-size: 1rem;
}
.z-case-list .tabs .tab .inner {
  width: max-content;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding: 0 2rem;
}
.z-case-list .tabs .tab .animate__animated {
  position: absolute;
  width: 100%;
  height: 0.125rem;
  background-color: #2183e9;
  left: 0;
  bottom: 0;
  display: none;
  animation-duration: 0.3s;
}
.z-case-list .tabs .tab.active {
  font-weight: bold;
}
.z-case-list .tabs .tab.active > span {
  background-color: #2183e9;
  color: white;
  padding: 0.4375rem 3rem;
  border-radius: 0.375rem;
}
.z-case-list .tabs .tab.active .animate__animated {
  display: block;
}

