.faq-list {
    max-width: 1100px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 35px;
}
.faq-question {
    position: relative;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 18px;
    color: #444;
    font-weight: normal;
    letter-spacing: 1px;
    padding: 8px 40px 8px 70px;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-question .ic {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background: #52A9A4;
    color: #fff;
    font-size: 20px;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
}
.faq-question .ic::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 98%;
    height: 97%;
    border: 1px solid #52A9A4;
}
.faq-question:before {
    content: '';
    position: absolute;
    text-align: center;
    top: 24px;
    right: 12px;
    width: 20px;
    height: 1px;
    border-radius: 0;
    font-size: 16px;
    background: #ccc;
    transition: all 0.3s ease;
}
.faq-question::after{
    content: '';
    position: absolute;
    text-align: center;
    top: 15px;
    right: 21px;
    width: 1px;
    height: 20px;
    border-radius: 0;
    font-size: 16px;
    background: #ccc;
    transition: all 0.3s ease;
}
.faq-question:hover:before {
    color: #52A9A4;
}
.faq-item.active .faq-question:before,
.faq-item.active .faq-question::after {
    background: #52A9A4;
}
.faq-item.active .faq-question::after {
    transform: rotate(90deg);
}
.faq-answer {
    display: none;
    position: relative;
    overflow: hidden;
    padding-top: 20px;
}
.faq-answer .ic {
    position: absolute;
    box-sizing: border-box;
    text-align: center;
    top: 0;
    left: 20px;
    font-size: 22px;
    font-weight: bold;
    background: #fff;
    color: #52A9A4;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    z-index: 10;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    display: none;
}
.faq-item.active .faq-answer .ic {
    top: 45px;
}
.faq-answer .editor {
    position: relative;
    border-radius: 0;
    min-height: 40px;
    padding: 20px 20px 20px 80px;
    background: #F5F5F5;
}
.faq-answer .editor:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 16px 8px;
    border-color: transparent transparent #F5F5F5 transparent;
    position: absolute;
    top: -16px;
    left: 86px;
    margin-left: -8px;
}
.faq-answer .editor::after {
    content: 'A';
    position: absolute;
    box-sizing: border-box;
    text-align: center;
    top: 25px;
    left: 20px;
    font-size: 22px;
    font-weight: bold;
    background: #fff;
    color: #52A9A4;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    z-index: 10;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}
@media screen and (max-width: 1000px) {
    .faq-question:before {
        width: 15px;
    }
    .faq-question::after {
        top: 17px;
        right: 19px;
        height: 15px;
    }
    .faq-item {
        margin-bottom: 20px;
    }
    .faq-question{
        font-size: 16px;
    }
}