.container {
    color: white;
    padding: 0 12px;
}

#a_headerset {
    display: flex;
}

.content_top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.content_top .top_time {
    padding: 3px 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #A4AAB6;
    font-weight: bold;
}

.top_title {
    text-align: center;
    font-family: Helvetica;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.top_subtitle {
    color: #A4AAB6;
    text-align: center;
    font-family: Helvetica;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.contact_list .item {
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #303847;
    background: #1C1F26;
    padding: 8px 14px;
    margin-bottom: 12px;
    gap: 10px
}

.contact_list .item_icon {
    width: 24px;
    height: 24px;
}

.contact_list .item_center {
    flex: 1;
    color: #A4AAB6;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
}

.contact_list .item_center .item_title {
    color: white;
    font-family: Helvetica;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 2px;
}

.faq_container {
    margin: 20px 10px;
}

.faq_container .faq_block {
    color: #A4AAB6;
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 20px 0 15px;
}

.faq_container .faq_title {
    font-size: 20px;
    font-weight: 700;
}


.faq_list {
    margin-bottom: 32px;
}

.faq_list>.item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.faq_list a {
    color: var(--theme-hili-color);
}

.faq_question {
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.faq_question .faq_title {
    flex-grow: 1;
    display: flex;
    align-items: center;
    color: #FFF;
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
}

.faq_question>.arrow {
    transition: all .3s ease;
    margin-left: 15px;
}

.faq_question>.arrow img {
    transform: rotate(90deg);
    transition: .3s;
    filter: var(--filter-to-supporting-color);
}

.faq_list>.item.active .faq_question>.arrow img {
    transform: rotate(-90deg);
}

.faq_answer {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff;
    display: none;
}