.qcy-about-hero {
    background: url("/static/images/faq-bg1.png") no-repeat center center;
    background-size: cover;
    padding: 120px 0;
}
.qcy-faq-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-title-item{
    padding: 12px 60px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    transform: translateY(0);
}
.faq-title-item:hover:not(.faq-active){
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(95, 141, 255, 0.15);
}
.faq-active{
    background: linear-gradient(135deg, #5f8dff 0%, #4a78ff 45%, #3f6fff 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(63, 111, 255, 0.35);
    transform: translateY(-2px);
}
.faq-active:hover{
    cursor: default;
}
.qcy-faq-content {
    min-height: 200px;
    position: relative;
}
.faq-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}
.faq-loading.show {
    display: block;
}
.faq-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #5f8dff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.faq-loading-text {
    text-align: center;
    margin-top: 12px;
    color: #999;
    font-size: 14px;
}
.faq-content-item {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    background: #fff;
    border: 1px solid #e4ebf5;
    border-radius: 18px;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-content-item:hover {
    border-color: #5f8dff;
    box-shadow: 0 4px 20px rgba(95, 141, 255, 0.12);
    transform: translateX(8px);
}
.faq-content-item.fade-out {
    opacity: 0;
    transform: translateX(-20px);
}
.faq-content-item.fade-in {
    animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.notice-section {
    padding: 30px 0 96px;
}
.notice-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}
.notice-title h2 {
    font-size: 26px;
    font-weight: 900;
    color: #0b1d3d;
}
.notice-title p {
    margin-top: 8px;
    font-size: 14px;
    color: #7b8aa5;
}
.notice-more {
    height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid #dfe8f8;
    color: #2d6cff;
    font-size: 14px;
    font-weight: 700;
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .25s ease;
}
.notice-more:hover {
    background: #2f6fff;
    border-color: #2f6fff;
    color: #fff;
    box-shadow: 0 12px 26px rgba(47, 111, 255, .24);
    transform: translateY(-2px);
}
.notice-tabs {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}
.notice-tab {
    min-height: 96px;
    border: 1px solid #e5ecf8;
    border-radius: 22px;
    background: rgba(255,255,255,.86);
    padding: 20px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: .25s ease;
    position: relative;
    overflow: hidden;
}
.notice-tab:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 111, 255, .36);
    box-shadow: 0 16px 38px rgba(21, 63, 135, .09);
}
.notice-tab.active {
    border-color: transparent;
    background: linear-gradient(135deg, #2f70ff, #5485ff);
    box-shadow: 0 18px 40px rgba(47, 111, 255, .28);
}
.notice-tab.active::before {
    background: rgba(255,255,255,.14);
}
.tab-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #eef5ff;
    color: #2f70ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}
.notice-tab.active .tab-icon {
    background: rgba(255,255,255,.2);
    color: #fff;
}
.tab-text {
    position: relative;
    z-index: 1;
}
.tab-text strong {
    display: block;
    font-size: 16px;
    color: #0b1d3d;
    font-weight: 900;
}
.tab-text span {
    display: block;
    margin-top: 5px;
    color: #7c8ca8;
    font-size: 13px;
    font-weight: 700;
}
.notice-tab.active .tab-text strong,
.notice-tab.active .tab-text span {
    color: #fff;
}
.notice-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.notice-item {
    min-height: 66px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e5ecf8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 22px;
    transition: .25s ease;
}
.notice-item:hover {
    border-color: rgba(47, 111, 255, .38);
    box-shadow: 0 14px 34px rgba(21, 63, 135, .08);
    transform: translateY(-2px);
}
.notice-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.notice-dot {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eef5ff, #f8fbff);
    border: 1px solid #e1eaff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f70ff;
    flex: 0 0 auto;
}
.notice-item-title {
    font-size: 15px;
    color: #132542;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.notice-item-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
    color: #7d8aa2;
    font-size: 14px;
}
.notice-tag {
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f1f6ff;
    color: #2f70ff;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
}
.notice-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f6f9ff;
    color: #8fa2c4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
}
.notice-item:hover .notice-arrow {
    background: #2f70ff;
    color: #fff;
}
.article-wrap {
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
}
.article-card {
    position: relative;
    background: #fff;
    /*border: 1px solid #e4ecf8;*/
    /*border-radius: 28px;*/
    /*box-shadow: 0 24px 70px rgba(21, 63, 135, .08), inset 0 1px 0 rgba(255,255,255,.9);*/
    overflow: hidden;
}
.article-head {
    position: relative;
    z-index: 1;
    padding: 38px 46px 28px;
    border-bottom: 1px solid #edf2fa;
    /*background: linear-gradient(180deg, rgba(250,252,255,.95), rgba(255,255,255,.95));*/
    text-align: center;
}
.article-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef5ff;
    color: #2f70ff;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}
.article-title {
    font-size: 30px;
    line-height: 1.35;
    color: #0c1e3d;
    font-weight: 900;
    letter-spacing: -.4px;
}
.article-info {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    color: #76869f;
    font-size: 14px;
    font-weight: 700;
}
.article-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.article-body {
    position: relative;
    z-index: 1;
    padding: 42px 46px 50px;
    font-size: 16px;
    line-height: 2.05;
    color: #172846;
    /*font-weight: 600;*/
    word-break: break-word;
}
.article-body p {
    margin-bottom: 22px;
}
.article-body h1, .article-body h2, .article-body h3, .article-body h4, .article-body h5, .article-body h6 {
    color: #0b1d3d;
    font-weight: 900;
    line-height: 1.45;
    margin: 28px 0 16px;
}
.article-body h1 {
    font-size: 30px;
}
.article-body h2 {
    font-size: 26px;
}
.article-body h3 {
    font-size: 22px;
}
.article-body h4 {
    font-size: 18px;
}
.article-body strong, .article-body b {
    color: #0b1d3d;
    font-weight: 900;
}
.article-body a {
    color: #2868ff;
    font-weight: 800;
    border-bottom: 1px solid rgba(40, 104, 255, .25);
}
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 22px auto;
    box-shadow: 0 16px 42px rgba(21, 63, 135, .08);
}
.article-body ul, .article-body ol {
    padding-left: 24px;
    margin: 18px 0 24px;
}
.article-body li {
    margin-bottom: 10px;
}
.article-body blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid #2f70ff;
    border-radius: 14px;
    background: #f3f7ff;
    color: #23395f;
}
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    overflow: hidden;
    border-radius: 14px;
}
.article-body table th, .article-body table td {
    border: 1px solid #e3ebf7;
    padding: 12px 14px;
    text-align: left;
}
.article-body table th {
    background: #f2f7ff;
    color: #0b1d3d;
    font-weight: 900;
}
.article-body hr {
    border: none;
    height: 1px;
    background: #edf2fa;
    margin: 30px 0;
}
.article-body pre {
    background: #0f1f3d;
    color: #fff;
    padding: 18px;
    border-radius: 16px;
    overflow-x: auto;
    margin: 24px 0;
    line-height: 1.7;
    font-weight: 400;
}
.article-body code {
    font-family: Consolas, Monaco, monospace;
}
.qcy-section {
    margin-bottom: 40px;
}
