.article_page_banner {
    position: relative;
    padding: 300px 0 100px;
    background: #232051;
}

.article_page_banner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(transparent, #232051 100%);
    pointer-events: none;
}


.article_page_banner {
    background-image: url(/assets/2025/img/blog/ar01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;

}

.article_page_banner .centred {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.faqs-title {
    text-align: center;
}

/* 列表展示 */
.containers {
    padding-top: 20px;
    width: 100%;
    /* background: white; */
    border-radius: 16px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); */
    /* padding: 2.5rem; */
    position: relative;
    overflow: hidden;
}


.expandable-list {
    list-style: none;
}

.list-item {
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* background: white; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ffffff;
}

.list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.list-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    /* background: #ffffff; */
    transition: background 0.3s ease;
}

.list-header span{
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
}
.list-header:hover {
    /* background: #ffffff; */
}

.list-header i {
    transition: transform 0.5s ease;
    color: #ffffff;
    font-size: 1.2rem;
}

.list-item.active .list-header i {
    transform: rotate(180deg);
    color: #ffffff;
}
.list-item.active {
    border: 1px solid #F8D37A;
}

.list-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    /* background: #ffffff; */
}

.content-inner {
    padding: 0 1.5rem 1.5rem;
    color: #F8D37A;
    line-height: 1.7;
    font-size: 14px;
}

.content-inner ul {
    padding-left: 1.5rem;
    margin: 0.8rem 0;
}

.content-inner li {
    margin-bottom: 0.5rem;
    position: relative;
}

.content-inner li::before {
    content: '•';
    color: #6a11cb;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}


@media (max-width: 600px) {
    
    .container {
        padding: 1.8rem;
    }


    .list-header {
        padding: 1.2rem;
        font-size: 1rem;
    }
}
