
.faq-grid {
    /*padding: 0 10px;*/
    /*display: flex;*/
    /*gap: 20px;*/
}

@media(max-width:767px) {
    .faq-grid {
        padding: 0;
    }
}

.faq-title h2 {
    font-size: 24px;
    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;
    justify-content: space-between;
    padding-bottom: 20px;
}
.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);
    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;*/
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.faq-list-item {
    /*padding: 10px 20px;*/
    /*border-radius: 50px;*/
    /*height: 50px;*/
    /*color: #999;*/
    padding: 15px 25px;
    background-color: #f4f4f4;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    min-width: 120px;
}
.faq-list-item.active {
    /*border: 1px solid #000;*/
    /*color: #000;*/
    background-color: #e2e2e2;
    color: #000;
}
.faq-list-item img {
    width: auto;
    height: 40px;
    stroke: #555;
}
.faq-list-item h2 {
    margin-bottom: 0;
    margin-top: 10px;
    color: #000;
    font-size: 18px;
    font-weight: normal;
}
.faq-grid-container {
    display: none;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.faq-grid-item {
    /*padding: 10px;*/
    /* border-radius: 10px; */
    border-bottom: 1px solid #999;
    padding-bottom: 0;
}
.faq-grid-item-box:nth-last-child(1) .faq-grid-item,.faq-grid-item-box:nth-last-child(2) .faq-grid-item {
    border-bottom: none;
}

/*.faq-grid-item-box.active h3 {*/
/*    font-weight: bold;*/
/*}*/
.faq-grid-item-box.active img {
    transform: rotate(0deg);
}

@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;
    }
}
.factory-form-container p {
    margin-bottom: 20px;
}
