.container {
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.search-bar {
    width: 100%;
    height: 44px;
    padding: 7px 0px;
    box-sizing: border-box;
    display: flex;
    color: #fff;
}

.search-bg {
    flex: 1;
    display: flex;
    width: 100%;
    height: 30px;
    border-radius: 15px;
    background: #7E88AC1A;
    align-items: center;
    padding: 5px 15px 5px 12px;
    box-sizing: border-box;
}

.search-icon {
    width: 20px;
    height: 20px;
    background: url(../img/search.svg)
}

.search-input {
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    outline: none;
    margin-left: 10px;
}

.search-focus .search-cancel {
    margin-left: 12px;
    width: 32px;
}


.search-cancel {
    margin-left: 0px;
    width: 0px;
    line-height: 30px;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s;
}

.section {
    display: flex;
    flex-direction: column;
}

.section-title {
    color: #06E5D1;
    font-size: 18px;
    font-weight: 600;
}

.section-list {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.question .section-list li {
    position: relative;
    height: 54px;
    padding: 16px;
    box-sizing: border-box;
}

.question .section-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #838693;
    margin-right: 10px;
    left: 0px;
    top: 24px;
    position: absolute;
}

.question .section-list li::after {
    content: '';
    background: url(../img/arrow-right.svg);
    width: 16px;
    height: 16px;
    position: absolute;
    right: 2px;
    top: 18px;
}

.section-hr {
    height: 1px;
    background: #FFFFFF1A;
    margin-top: 12px;
}

.section.category .section-list a li {
    display: flex;
    align-items: center;
    height: 75px;
    padding: 16px 0px;
    box-sizing: border-box;
}

.section.category .cate-icon {
    width: 36px;
    height: 36px;
}

.section.category .cate-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 8px;
    gap: 4px;
}

.section.category .cate-text span:nth-child(1) {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
}

.section.category .cate-text span:nth-child(2) {
    color: #838693;
    font-size: 12px;
    font-weight: 400;
}

/* 父容器 */
.tab-container {
    overflow: hidden;
    position: relative;
}

/* tab 项 */
.tab {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s;
}

.tab.index {
    height: auto;
    opacity: 1;
    transform: scaleY(1);
}

.tab.search {
    height: 0px;
    transform: scaleY(0);
}

.search-focus .tab.index {
    height: 0px;
    transform: scaleY(0);
}

.search-focus .tab.search {
    height: auto;
    transform: scaleY(1);
}

.content-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
}

.content-desc {
    color: #838693;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.content-body {
    font-size: 14px;
    line-height: 24px;
}

.content-body img {
    width: 100%;
}

.content-body a {
    color: #23D2C3;
}

.error {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 12px;
}

.error-icon {
    width: 150px;
    height: 140px;
    background: url(../img/vk-ip.svg);
    background-size: 100%;
    margin: 0 auto;
}

.error-msg {
    color: #838693;
    font-size: 14px;
}

.submit-btn {
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: linear-gradient(180deg, #23D2C3 0%, #21D2DD 100%);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 22px;
    margin: 20px 16px 0px 16px;
    display: block;
}

.report-title {
    font-size: 16px;
    font-weight: 500;
}

.report-types {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.report-types input {
    display: none;
}

.report-types label span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    background: #1F1F29;
    color: #838693;
    font-size: 14px;
    font-weight: 400;
    border-radius: 18px;
    cursor: pointer;
    padding: 8px 22px;
    box-sizing: border-box;
}

.report-types input:checked+span {
    background: #23D2C3;
    color: #fff;
}

.report-textarea {
    width: 100%;
    height: 100px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border-radius: 8px;
    padding: 8px;
    box-sizing: border-box;
    outline: none;
}

.report-text-count {
    color: #838693;
    font-size: 12px;
    text-align: right;
    margin-top: 8px;
}

.report-attachment {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.report-attachment .attachment {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.report-attachment .attachment.add-file {
    background: url(../img/file-select.svg);
    background-size: 100%;
}

.report-attachment img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.tips {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background: #1f1f1f;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.tips-icon {
    width: 20px;
    height: 20px;
    background-image: url(../img/info-circle.svg);
    background-size: 100%;
    margin-right: 8px;
    box-sizing: border-box;
}

.tips-icon.success {
    background-image: url(../img/tick-circle.svg);
}

.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
}

.contact .content {
    color: #838693;
    font-size: 14px;
    font-family: PingFang SC;
    text-align: center;
    line-height: 32px;
}

.contact .card-btn {
    margin: 2rem 0;
    box-sizing: border-box;
    width: 100%;
    background: #12121C;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.contact .card-btn .icon {
    margin: 1rem;
}

.contact .card-btn .text {
    line-height: 28px;
}

.contact .card-btn .highlight {
    color: #06E5D1;
    font-weight: bold;
}