/* faqs */
.faqs {
  padding: 30px 0;
}

.faqs .title {
  margin-bottom: 10px;
}

.faqs .item {
  border-bottom: 1px solid #D1D1D1;
}

.faqs .item-title {
  padding-top: 15px;
  padding-right: 40px;
  padding-bottom: 15px;
  background: #fff;
  font-family: 'Roboto-Bold';
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.faqs .item-title.active {
  color: var(--btn-color);
  border-color: #CCC;
}

.faqs .tips {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-right: 20px;
  border-radius: 8px;
  color: var(--btn-color);
  background: var(--style-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: margin .3s;
}

.faqs .item-title.active .tips {
  color: #fff;
  margin-right: 15px;
  background: var(--btn-color);
}

.faqs .item-title i {
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 15px;
  margin-left: 15px;
  transform: translateY(-50%);
}

.faqs .item-title i::before, .faqs .item-title i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--style-color);
}

.faqs .item-title i::before {
  width: 100%;
  height: 2px;
}

.faqs .item-title.active i::before {
  background: var(--btn-color);
}

.faqs .item-title i::after {
  width: 2px;
  height: 100%;
  transition: height .3s;
}

.faqs .item-title.active i::after {
  height: 0;
}

.faqs .item-info {
  margin-top: -2px;
  line-height: 30px;
  padding-left: 45px;
  padding-right: 40px;
  padding-bottom: 9px;
  display: none;
}

@media (min-width: 1200px) {
  .faqs {
    padding: 60px 0;
  }

  .faqs .title {
    margin-bottom: 20px;
  }

  .faqs .item {
    border-width: 2px;
  }

  .faqs .item-title {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 50px;
  }

  .faqs .tips {
    width: 36px;
    height: 36px;
    margin-right: 30px;
  }

  .faqs .item-title.active .tips {
    margin-right: 15px;
  }

  .faqs .item-title i {
    width: 21px;
    height: 21px;
  }

  .faqs .item-title i::before {
    height: 3px;
  }

  .faqs .item-title i::after {
    width: 3px;
  }

  .faqs .item-info {
    margin-top: -5px;
    padding-left: 51px;
    padding-right: 51px;
  }
}

@media (min-width: 1440px) {
  .faqs {
    padding-top: 74px;
    padding-bottom: 80px;
  }

  .faqs .title {
    margin-bottom: 35px;
  }
}