.faq-container{
  padding: 2rem 10%;
  background-color: #fff;
}
.faq-title{
  font-weight: 500;
  font-size: 1rem;
  color: #000000;
  line-height: 1.4rem;
  text-align: center;
}
.faq-list{
  margin-top: 1.6rem;
}

.faq-search{
  display: flex;
  justify-content: center;
  margin-top: 0.6rem;
}
.faq-search-box{
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0.4rem 0.6rem;
  background: #F5F5F5;
}
.faq-search-image{
  width: 0.6rem;
  height: 0.6rem;
}
.faq-search-input{
  padding-left: 0.3rem;
  font-weight: 400;
  font-size: 0.45rem;
  color: #999999;
  line-height: 0.6rem;
  flex: 1;
  background-color: transparent;
}

.faq-item{
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 0.8rem;
  overflow: hidden;
}
.faq-item-head{
  padding-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq-item-title{
  font-weight: 400;
  font-size: 0.5rem;
  color: #1A1A1A;
  line-height: 0.7rem;
  padding-right: 0.3rem;
}
.faq-item-image{
  width: 0.6rem;
  height: 0.6rem;
}
.faq-item-content{
  font-weight: 400;
  font-size: 0.45rem;
  color: #4D4D4D;
  line-height: 0.8rem;
  margin-top: 0.6rem;
  display: none;
}

@media screen and (max-width: 1000px) {
  
}

@media screen and (max-width: 500px) {
  .faq-container {
    padding: 1rem 5%;
  }
  
}