* {
    box-sizing: border-box;
  }
  
  @media (max-width: 768px) {
   
  }
 
  .main-titleFAQ {
    margin-bottom: 0.5rem;
    text-align: center;
    font-family: 'Abril Fatface', cursive;
    /* font-size: 0.32rem; */
    color: #ffb30e;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-titleFAQ:before, .main-titleFAQ:after {
    content: '';
    display: block;
    margin: 0 0.2rem;
    flex: 1;
    border-bottom: 1px solid #ffb30e;
  }
  .wrapper {
    width: 80%;
    margin: auto;
    font-family: 'Source Sans Pro', sans-serif;
  }
  @media (max-width: 768px) {
    .wrapper {
      width: auto;
      padding: 0 0.3rem;
    }
  }
  input[type='radio'] {
    display: none;
  }
  input[type='radio']:checked + .item .titleFAQ {
    color: #fff;
    border-color: #616161;
    background-color: #616161;
  }
  input[type='radio']:checked + .item .titleFAQ:after {
    transform: rotate(180deg);
  }
  input[type='radio']:checked + .item .content {
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s, opacity 0.7s;
  }
  .item {
    display: block;
    margin-bottom: 0.1rem;
  }
  .titleFAQ {
    padding: 0.1rem 0.3rem;
    border-radius: 0.3rem;
    color: #616161;
    border: 1px solid;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .titleFAQ:after {
    content: '\25bc';
    display: inline-block;
    font-size: 12px;
  }
  .content {
    width: 95%;
    margin: 0 auto;
    padding: 0 0.3rem;
    line-height: 1.6;
    color: #eeeeee;
    border: 1px solid;
    border-width: 0 1px;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
  }