/* 区块1 */
.faq-section1-container{
    width: 100%;
}
.faq-section1-container-header{
    width: 100%;
    height: 18.125rem;
    position: relative;
}
.faq-section1-container-header-bg{
    width: 100%;
    height: 18.125rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.faq-section1-container-header-bg-img{
    width: 100%;
    height: 18.125rem;
    object-fit: cover;
}
.faq-section1-container-header-content{
    width: 100%;
    height: 18.125rem;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(27,29,54,0.75);
}
.faq-section1-container-header-content-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.faq-section1-container-header-title{
    width: 100%;
    text-align: left;
    font-size: 4.5rem;
    color: #ffffff;
    font-weight: bold;
}
.faq-section1-container-body{
    padding-top: 2.5rem;
}
.faq-section1-container-description{
    width: 100%;
    text-align: left;
    font-size: 1rem;
}
.faq-section1-container-description a{
    text-decoration: none;
    color: #e9511d;
}
.faq-section1-faq-list{
    width: 100%;
    padding-top: 2.5rem;
}
.faq-section1-faq{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}
.faq-section1-faq:last-of-type{
    margin-bottom: 0;
}
.faq-section1-faq-header{
    width: calc(100% - 2.5rem);
    padding: 1rem 1.25rem;
    background: rgba(117, 119, 123, 0.2);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-section1-faq-header-icon{
    width: 2rem;
    height: 2rem;
    background: #e9511d;
    border-radius: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.faq-section1-faq-header-icon-img{
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
}
.faq-section1-faq-header-icon-img:last-of-type{
    display: none;
}
.faq-section1-faq-body{
    width: calc(100% - 2.5rem);
    padding: 1.25rem;
    text-align: left;
    font-size: 1rem;
    display: none;
}
.faq-section1-faq-open .faq-section1-faq-body{
    display: block;
}
.faq-section1-faq-open .faq-section1-faq-header-icon-img:first-of-type{
    display: none;
}
.faq-section1-faq-open .faq-section1-faq-header-icon-img:last-of-type{
    display: block;
}
.faq-section1-faq-body a{
    text-decoration: none;
    color: #e9511d;
}