
.faq-grid {
    /*padding: 0 10px;*/
    /*display: flex;*/
    /*gap: 20px;*/
}

@media(max-width:767px) {
    .faq-grid {
        padding: 0;
    }
}

.faq-title h2 {
    font-size: 24px;
    font-family: InterBold;
    width: 100%;
    max-width: 1680px;
    text-align: center;
}

.faq-item {
    padding: 20px;
    border: 1px solid #F0F0F0;
    background: #F9F9F9;
    padding-right: 40px;
    border-radius: 18px;
}

.faq-item-title {
    display: flex;
    gap: 20px;
    font-size: 18px;
    overflow: hidden;
    /*font-weight: 700;*/
    color: #000000;
    position: relative;
    cursor: pointer;
    font-family: InterBold;
}

.faq-item-title h3 {
    font-size: 18px;
    margin: 0;
    color: #000;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.11px;
}

.faq-item-title img {
    width: 20px;
    height: 20px;
    filter: drop-shadow(100px 0 #999);
    transform: rotate(-90deg)translateX(-100px);
    transition: transform 0.5s;
}

.faq-item-content {
    margin-top: 20px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
}

@media(min-width:768px) and (max-width:1365px) {
    .faq-item-title h3 {
        font-size: 16px;
    }

    .faq-item-content {
        font-size: 14px;
    }
}
.faq-list {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}
.faq-list-item {
    padding: 10px 20px;
    border-radius: 50px;
    height: 50px;
    color: #999;
}
.faq-list-item.active {
    border: 1px solid #000;
    color: #000;
}
.faq-list-item h2 {
    margin-bottom: 0;
    font-size: 20px;
}
.faq-grid-container {
    display: none;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.faq-grid-item {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #999;
}
.faq-grid-item-box.active h3 {
    font-weight: bold;
}
.faq-grid-item-box.active img {
    transform: rotate(0deg) translateX(-100px);
}

@media (max-width: 767px) {
    .faq-list-item h2 {
        font-size: 18px;
    }
    .faq-list-item {
        height: 46px;
    }
    .faq-item-title h3 {
        font-size: 16px;
    }
    .faq-grid-container {
        grid-template-columns: repeat(1,1fr);
    }
    .faq-item-content {
        font-size: 14px;
    }
    .faq-list {
        gap: 20px;
    }
}
/* 表单 */
.visit-form {
    width: 70% !important;
}
@media (max-width: 767px) {
    .visit-form {
        width: auto !important;
    }
}
