.runfeng_faq_contact {
  padding-bottom: calc(var(--text-gap-lg) * 2);
}

.runfeng_faq_contact_title {
  font-size: var(--title-size-h4);
  font-weight: 700;
  color: var(--title-text-color);
  line-height: 1.53;
  
}

.runfeng_faq_contact_desc {
  font-size: var(--text-size);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.375;
  
  margin-top: calc(var(--text-gap-md) / 2);
  max-width: 60%;
}

.runfeng_faq_contact_content_list_item_content {
  display: none;
  padding: 28px 26px 24px;
  border: 1px solid #E1E1E1;
  margin-bottom: calc(var(--text-gap-md) / 2);
  border-top: none;
}

.runfeng_faq_contact_content_list_item.active .runfeng_faq_contact_content_list_item_content {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
  padding-top: 0;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.runfeng_faq_contact_content_list_item_content_sub_title {
  color: #333;
  font-size: var(--text-title-size);
  font-weight: 600;
  line-height: 1.555;
  
}

.runfeng_faq_contact_content_list_item_content_line {
  width: 100%;
  height: 1px;
  background: #E1E1E1;
}

.runfeng_faq_contact_content_list_item_content_content {
  color: var(--text-color);
  font-size: var(--text-size);
  font-weight: 400;
  line-height: 1.375;
  
}
.runfeng_faq_contact_content_list_item.active .runfeng_faq_contact_content_list_item_content_content{
  padding-top: 20px;
}
.runfeng_faq_contact_content {
  display: flex;
  align-items: flex-start;
  gap: calc(var(--text-gap-lg) * 2);
  margin-top: calc(var(--text-gap-lg) * 2);
}
.runfeng_faq_contact_content_pic_wapper{
  width: 49.3%;
  height: -webkit-fill-available;
}
.runfeng_faq_contact_content_pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.runfeng_faq_contact_content_list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: calc(var(--text-gap-md) / 2);
}

.runfeng_faq_contact_content_list_item_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border: 1px solid #E1E1E1;
  background: rgba(40, 40, 40, 0.00);
  transition: all 0.3s ease;
  padding: 28px 26px 24px;
}

.runfeng_faq_contact_content_list_item_title h3 {
  flex: 1;
  color: #333;
  font-size: var(--text-title-size);
  font-weight: 600;
  line-height: 1.555;
  
  padding-right: var(--text-gap-md);
}

.runfeng_faq_contact_content_list_item:hover .runfeng_faq_contact_content_list_item_title {
  background: var(--title-text-color);
}
.runfeng_faq_contact_content_list_item.active:hover .runfeng_faq_contact_content_list_item_title {
  background: #fff;
}
.runfeng_faq_contact_content_list_item.active .runfeng_faq_contact_content_list_item_title{
  border-bottom: none;
}

.runfeng_faq_contact_content_list_item:hover .runfeng_faq_contact_content_list_item_title h3 {
  color: #FFF;
}
.runfeng_faq_contact_content_list_item.active .runfeng_faq_contact_content_list_item_title h3{
  padding-right: 0;
  color: #282828;
}

.runfeng_faq_contact_content_list_item:hover .runfeng_faq_contact_content_list_item_title svg path {
  fill: #FFF;
}
.runfeng_faq_contact_content_list_item.active .runfeng_faq_contact_content_list_item_title svg {
  display: none;
}
.runfeng_faq_contact_content_list_item:last-child .runfeng_faq_contact_content_list_item_content{
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .runfeng_faq_contact_content_list_item_title,
  .runfeng_faq_contact_content_list_item_content{
    padding: 16px 16px 14px;
  }
}