.component-according {
  width: 80%;
  margin: auto;
  align-items: center;
}

.component-according .header div {
  text-align: center;
}

.component-according .body {
  display: flex;
  flex-direction: row;
  column-gap: 50px;
}

.component-according .body .content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.component-according .body .content .content-item {
  border-bottom: 1px solid #000;
  padding-left: 12px;
  padding-right: 12px;
}

.header_icon {
  position: absolute;
  transform: translateX(-50px);
}

.component-according .body .content .content-item .content-item-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  font-size: 24px;
  z-index: 10px;
}

.component-according .body .content .content-item .content-item-body {
  transition: height 1s ease, opacity 1s ease;
  z-index: -10;
}

.component-according .body .content .content-item .content-item-body p {
  margin: 0;
}

.component-according .body .content .content-item .content-item-title h4 {
  font-size: 24px;
}

.component-according
  .body
  .content
  .content-item
  .content-item-title
  i {
  text-align: right;
  cursor: pointer;
}

/* show content */
.deactive {
  opacity: 0;
  height: 0;
  overflow: hidden;
  
}

.active {
  opacity: 1;
  height: auto;
  margin-bottom: 15px;
}

.component-according .body .img-wrapper .img-wrapper-item{
  transition: opacity 0.1s ease;
}