.section3 .content-faq {
  width: 100%;
  min-height: 100px;
  margin: 0 20px;
}
.section3 .content-faq .c-tab {
  width: 100%;
  height: 100%;
  margin-right: 0.03rem;
}
.section3 .content-faq .c-tab > ul.hide {
  display: none;
}
.section3 .content-faq .c-tab > ul > li {
  height: 1.46rem;
  font-size: 0.36rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #000;
  margin-bottom: 2px;
}
.section3 .hide {
  display: none;
}
.row {
  display: flex;
}
.row .col {
  flex: 1;
}
/* Accordion styles */
.tabs {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tab {
  width: 48%;
  color: #000;
  overflow: hidden;
  margin-top: -0.5rem;
}
.tab-label {
  display: flex;
  justify-content: space-between;
  padding: 20px 36px;
  font-weight: bold;
  color: #091133;
  cursor: pointer;
  border-radius: 16px;
  position: relative;
  margin-bottom: 16px;
  font-size: 24px;
  border: 1px solid #018FFF;
  background: #F0F3FF;
  /* Icon */
}
.tab-label img {
  position: absolute;
  left: -30px;
  top: 0px;
  height: 1rem;
}
.tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: #018FFF;
  transition: all 0.35s;
  font-size: 14px;
  display: none;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #fff;
  cursor: pointer;
}
.tab-close:hover {
  background: #fff;
}
input:checked + .tab-label {
  background: #018FFF;
  color: #fff;
  border-radius: 16px 16px 0 0;
}
input:checked + .tab-label::after {
  transform: rotate(90deg);
}
input:checked ~ .tab-content {
  max-height: 100vh;
  position: relative;
  padding: 0 36px 36px;
  max-width: 100%;
  background: #018FFF;
  border-radius: 0px 0px 8px 8px;
  margin: -16px 0 16px 0px;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  display: block;
  line-height: 24px;
}
input:checked ~ .tab-content img {
  position: absolute;
  right: -30px;
  top: 0px;
  height: 1rem;
}
