.active {
  background-color: #efefef;
  display: flex;
  height: 100%;
  padding: 30px 30px 30px 0;
}
.active-nav {
  background: #fff;
  width: 180px;
  font-size: 28px;
}
.active-nav li {
  text-align: center;
  padding: 15px 0;
  position: relative;
  letter-spacing: 2px;
}
.active-nav li::after {
  content: "";
  width: 80%;
  height: 1px;
  background: #efefef;
  display: block;
  position: absolute;
  bottom: 0;
  left: 10%;
}
.active-nav li._active {
  background: #efefef;
  color: #5da5e0;
}
.active-nav li._active::before {
  content: "";
  display: block;
  width: 2px;
  height: 80%;
  background: #5da5e0;
  left: 0;
  top: 10%;
  position: absolute;
}
.active-main {
  flex: 1;
  overflow: auto;
  padding-left: 30px;
}
.active-main-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.active-main-item a {
  display: block;
  position: relative;
}
.list-item {
  padding: 0 15px;
}
.list-title {
  padding: 20px 0;
  font-size: 28px;
  border-bottom: 1px solid #efefef;
}
.list-say {
  padding: 20px 0;
  font-size: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-say span:last-of-type {
  color: rgb(209, 34, 34);
}
