.lt_faq{
    width:100%;
    box-sizing: border-box;
    padding:100px 16px 0 16px;
}
.lt_faq h1{
    width:100%;
    height:60px;
    line-height: 60px;
    box-sizing: border-box;
    border-bottom:3px solid #000;
    font-size:22px;
    font-weight:700;
}
.lt_faq .faq-tab{
    width:100%;
    margin-top:10px;
}
.lt_faq .faq-tab ul{
    width:100%;
    display:flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap:6px;
}
.lt_faq .faq-tab ul li{
    width:calc(100%/3 - 4px);
    text-align: center;
    font-size: 14px;
    color:#c4c4c4;
    background:#f2f2f2;
    font-weight: 500;
    line-height: 40px;
    box-sizing: border-box;
    border:1px solid #d4d4d4;
    cursor:pointer;
}
.lt_faq .faq-tab ul li.clicked{
    background:#000;
    color:#fff;
    border:none;
}
.lt_faq .faq-detail{
    margin-top:10px;
}
.lt_faq .faq-detail .faq-box .faq-q{
    width:100%;
    background:#fff;
    height:48px;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom:1px solid #e4e4e4;
    cursor:pointer;
    box-sizing: border-box;
}
.lt_faq .faq-detail .faq-box .faq-q.opened{
    background:#f8f8f8;
    border-bottom:1px solid #f8f8f8;
}
.lt_faq .faq-detail .faq-box .faq-q p{
    font-size:13px;
    color:#1a1919;
    font-weight:500;
}
.lt_faq .faq-detail .faq-box .faq-q p span{
    padding-right:20px;
}
.lt_faq .faq-detail .faq-box .faq-a{
    width:100%;
    box-sizing: border-box;
    padding:10px;
    background:#f8f8f8;
    display:none;
}
.lt_faq .faq-detail .faq-box .faq-a p,
.lt_faq .faq-detail .faq-box .faq-a li{
    font-size:13px;
    color:#1a1919;
    line-height: 1.5;
    word-break: keep-all;
}