/* faq */
.faq {
  padding: 30px 0;
}

.faq .title {
  text-align: left;
  margin-bottom: 20px;
}

.faq .item {
  padding: 20px 0;
  background: #F1F1F1;
}

.faq .item:not(:last-child) {
  margin-bottom: 20px;
}

.faq .item-title {
  color: var(--style-color);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq .item-title i {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-left: 15px;
  position: relative;
}

.faq .item-title i::before, .faq .item-title i::after {
  content: '';
  position: absolute;
  background: var(--style-color);
}

.faq .item-title i::before {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
}

.faq .item-title i::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 0;
  transition: height .3s;
}

.faq .item-title.active i::after {
  height: 100%;
}

.faq .item-info {
  margin-top: 15px;
  line-height: 1.8;
}

@media (min-width: 1200px) {
  .faq {
    padding: 60px 0;
  }

  .faq .title {
    margin-bottom: 40px;
  }

  .faq .item {
    padding-top: 41px;
    padding-bottom: 42px;
  }

  .faq .item-info {
    margin-top: 24px;
  }
}

@media (min-width: 1440px) {
  .faq {
    padding-bottom: 80px;
  }
}