/* ================= 基础重置与布局 (与上一版相同) ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif; background-color: #fff; color: #333; line-height: 1.6; overflow-x: hidden; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ================= 1. 头部 Banner ================= */
.page-header {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 318px;
    width: 100%;
    margin: 0;
    padding: 36px 24px;
    background: #071629 url('images/top.png') center / cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #2d79ff;
    border-bottom: 1px solid #2d79ff;
    animation: headerFadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 46% 50%, rgba(62, 180, 255, 0.18) 0%, rgba(62, 180, 255, 0.06) 24%, rgba(6, 18, 37, 0) 48%),
        linear-gradient(90deg, rgba(3, 15, 31, 0.92) 0%, rgba(4, 20, 40, 0.68) 42%, rgba(4, 20, 40, 0.34) 60%, rgba(3, 11, 25, 0.78) 100%),
        linear-gradient(180deg, rgba(6, 16, 31, 0.16) 0%, rgba(6, 16, 31, 0.38) 100%);
    z-index: -2;
}
.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 76%, rgba(52, 191, 255, 0.2) 0%, rgba(52, 191, 255, 0) 24%),
        radial-gradient(circle at 76% 20%, rgba(52, 191, 255, 0.14) 0%, rgba(52, 191, 255, 0) 22%);
    opacity: 0.9;
    z-index: -1;
}
.header-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.header-content > h1,
.header-content > p {
    display: none;
}
.header-brand {
    position: relative;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
}
.header-logo {
    position: absolute;
    right: calc(100% + 18px);
    top: calc(43% - 20px);
    width: clamp(84px, 7.5vw, 112px);
    height: auto;
    transform: translateY(-50%);
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2));
}
.header-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    text-shadow: 0 8px 24px rgba(2, 10, 22, 0.36);
}
.header-kicker {
    margin: 0;
    font-size: clamp(16px, 1.45vw, 20px);
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.96;
}
.header-main-title {
    margin: 0;
    width: min(38vw, 520px);
}
.header-main-title img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 10px 24px rgba(2, 10, 22, 0.4));
}
.header-subtitle {
    margin: 0;
    font-size: clamp(16px, 1.7vw, 21px);
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.94;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}
.header-subtitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 92px;
    height: 1px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.24) 18%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.24) 82%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
}
@keyframes headerFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= 2. 政策图文内容区 ================= */
.about-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    width: 100%;
    margin: 0;
    padding: 78px 24px 88px;
    background-color: #f7f9fc;
}
.about-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    transform: translateZ(0);
    backface-visibility: hidden;
}
.about-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: translateZ(0);
    backface-visibility: hidden;
}
.about-inner {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 332px) minmax(0, 660px);
    gap: 56px;
    align-items: center;
    justify-content: center;
}
.about-side {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.about-heading {
    width: min(100%, 310px);
}
.about-heading img {
    display: block;
    width: 100%;
    height: auto;
}
.about-contact {
    --contact-label-width: 5em;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    color: #32455f;
    font-weight: 600;
    line-height: 1.45;
}
.about-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(16px, 1.5vw, 18px);
    letter-spacing: 1px;
    white-space: normal;
}
.about-contact-text {
    display: inline-grid;
    grid-template-columns: var(--contact-label-width) auto;
    align-items: center;
    column-gap: 6px;
    font-size: clamp(16px, 1.55vw, 18px);
    line-height: 1.25;
    letter-spacing: 0.6px;
    white-space: nowrap;
}
.contact-info-label {
    display: inline-block;
    width: var(--contact-label-width);
    white-space: nowrap;
}
.contact-info-label-justify {
    display: inline-flex;
    justify-content: space-between;
}
.contact-info-value {
    white-space: nowrap;
}
.contact-phone-item {
    align-items: flex-start;
}
.contact-phone-content {
    display: inline-grid;
    grid-template-columns: var(--contact-label-width) auto;
    align-items: start;
    column-gap: 6px;
    row-gap: 0;
    white-space: nowrap;
}
.contact-phone-label {
    grid-column: 1;
    grid-row: 1;
}
.contact-phone-line {
    grid-column: 2;
    white-space: nowrap;
}
.contact-phone-secondary {
    grid-row: 2;
}
.contact-phone-item .about-contact-icon,
.contact-phone-item .footer-phone-icon {
    margin-top: -2px;
}
.about-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: #2d4465;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}
.about-contact-icon svg,
.footer-phone-icon svg {
    display: block;
    width: 14px;
    height: 14px;
    fill: currentColor;
}
.about-copy {
    color: #344457;
    max-width: 660px;
    font-family: 'Alibaba PuHuiTi', 'Alibaba PuHuiTi 3.0', 'Alibaba PuHuiTi 2.0', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    display: grid;
    gap: 12px;
    justify-self: start;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.72;
    letter-spacing: 0;
    text-wrap: pretty;
}
.about-copy p {
    margin: 0;
    text-indent: 2em;
}
.content-wrapper { padding: 40px 0; }
.policy-module {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 72px;
    padding: 72px 0;
    border-bottom: 1px solid rgba(19, 63, 108, 0.08);
}
.policy-module::before {
    content: "";
    position: absolute;
    left: 0;
    top: 42px;
    width: 72px;
    height: 1px;
    background: linear-gradient(90deg, rgba(24, 95, 162, 0.5), rgba(24, 95, 162, 0));
}
.policy-module:last-child { border-bottom: none; }
.policy-module:nth-child(even) { flex-direction: row-reverse; }

/* 内容样式 */
.module-text {
    position: relative;
    flex: 0 0 40%;
    padding: 30px 30px 30px 0;
}
.module-meta {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 18px;
}
.serial-number {
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
    color: rgba(30, 136, 229, 0.22);
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
}
.module-title {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    color: #1c2f44;
    margin-bottom: 24px;
    padding-bottom: 18px;
    line-height: 1.35;
}
.module-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, #1e88e5, rgba(30, 136, 229, 0.15));
}
.module-desc {
    max-width: 500px;
    font-size: 16px;
    color: #5f6b7a;
    text-align: justify;
    line-height: 1.95;
}

.module-image-placeholder {
    position: relative;
    flex: 0 0 55%;
    aspect-ratio: 16 / 9;
    background-color: #e0e5ec;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 0;
    font-weight: bold;
    overflow: hidden;
    border: 1px solid rgba(19, 63, 108, 0.08);
    box-shadow: 0 24px 48px rgba(8, 28, 52, 0.1);
}
.module-image-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 24, 43, 0.02) 0%, rgba(7, 24, 43, 0.16) 100%);
}
.module-image-placeholder::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    pointer-events: none;
}
.module-image-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
/* ================= 3. 新闻资讯 ================= */
.news-section {
    padding: 40px 0 20px;
}
.section-heading {
    margin-bottom: 28px;
}
.section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(30, 136, 229, 0.08);
    color: #1e88e5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.section-heading h2 {
    font-size: 30px;
    color: #1f2d3d;
    margin-bottom: 10px;
}
.section-heading p {
    color: #667085;
    font-size: 15px;
}
.scenarios-section .section-heading {
    margin-bottom: 10px;
}
.scenarios-section .policy-module:first-child {
    padding-top: 40px;
}
.scenarios-section .policy-module:first-child::before {
    top: 24px;
}
.news-carousel {
    position: relative;
    overflow: visible;
}
.news-viewport {
    overflow: hidden;
    border-radius: 20px;
    transition: height 0.35s ease;
}
.news-viewport.is-dragging {
    cursor: grabbing;
}
.news-list {
    display: flex;
    align-items: flex-start;
    transform: translate3d(0, 0, 0);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}
.news-page {
    flex: 0 0 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-content: start;
    padding: 1px;
    box-sizing: border-box;
}
.news-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.news-card {
    height: 290px;
    padding: 24px;
    border: 1px solid #e8eef5;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 12px 32px rgba(15, 32, 39, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}
.news-card-link:hover .news-card {
    transform: translateY(-4px);
    border-color: rgba(30, 136, 229, 0.25);
    box-shadow: 0 18px 38px rgba(15, 32, 39, 0.1);
}
.news-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}
.news-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e3f2fd;
    color: #1e88e5;
    font-size: 12px;
    font-weight: 700;
}
.news-card-time {
    color: #98a2b3;
    font-size: 13px;
    white-space: nowrap;
}
.news-card-title {
    font-size: 20px;
    line-height: 1.5;
    color: #243447;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3em;
}
.news-card-desc {
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: calc(1.8em * 3);
}
.news-card-action {
    color: #1e88e5;
    font-size: 14px;
    font-weight: 700;
    margin-top: auto;
    align-self: flex-start;
}
.news-pagination {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 12px;
}
.news-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: rgba(52, 83, 119, 0.24);
    padding: 0;
    cursor: pointer;
    transition: width 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.news-dot:hover {
    transform: scale(1.05);
}
.news-dot.active {
    width: 26px;
    background: #2f5f92;
}
.news-empty {
    padding: 24px;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    text-align: center;
    color: #64748b;
    background: #f8fafc;
    width: 100%;
}

/* ================= 新增核心：滚动动画类 (Scroll Animation Classes) ================= */
/* 默认状态：隐藏并向下偏移 50px */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); /* 贝塞尔曲线让动画更柔和高级 */
}

/* 触发状态：当 JS 添加 .active 类时，恢复透明度和位置 */
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* 动画时间差 (Staggering)：让文字和图片产生先后顺序，避免死板 */
/* 正常顺序：文字先出，图片后出 */
.policy-module:nth-child(odd) .module-text.reveal-up { transition-delay: 0.1s; }
.policy-module:nth-child(odd) .module-image-placeholder.reveal-up { transition-delay: 0.3s; }

/* 交错顺序：图片在左先出，文字在右后出 */
.policy-module:nth-child(even) .module-image-placeholder.reveal-up { transition-delay: 0.1s; }
.policy-module:nth-child(even) .module-text.reveal-up { transition-delay: 0.3s; }


/* ================= 4. 尾部二维码 ================= */
.page-footer { background-color: #fafafa; padding: 60px 20px; border-top: 1px solid #eee; text-align: center; margin-top: 40px; }
.footer-title { font-size: 20px; font-weight: bold; color: #333; margin-bottom: 6px; }
.footer-phone {
    --contact-label-width: 5em;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}
.footer-pc {
    --contact-label-width: 5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}
.footer-phone-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.footer-phone-text {
    display: inline-grid;
    grid-template-columns: var(--contact-label-width) auto;
    align-items: center;
    column-gap: 6px;
    white-space: nowrap;
}
.footer-phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: #2d4465;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}
.footer-pc .contact-phone-item {
    align-items: center;
}
.footer-pc .contact-phone-item .footer-phone-icon {
    margin-top: 0;
}
.footer-pc .footer-phone-text {
    grid-template-columns: auto auto;
    column-gap: 4px;
}
.footer-pc .contact-info-label {
    width: auto;
}
.footer-pc .contact-info-label-justify {
    letter-spacing: 0;
}
.qr-group { display: flex; justify-content: center; align-items: stretch; gap: 80px; margin-bottom: 40px; }
.qr-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 244px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    text-align: center;
}
.qr-card-link {
    display: flex;
    color: inherit;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.qr-card-link:hover {
    transform: translateY(-4px);
}
.qr-placeholder { width: 140px; height: 140px; margin: 0 auto 12px; display: flex; justify-content: center; align-items: center; font-size: 13px; color: #aaa; background: transparent; border: none; }
.qr-placeholder img { width: 100%; height: 100%; display: block; object-fit: contain; }
.qr-card p { font-size: 15px; color: #333; font-weight: bold; margin: 0; }
.qr-card-note { margin-top: 8px; font-size: 13px; font-weight: 500; color: #333; line-height: 1.5; }
.copyright { font-size: 13px; color: #999; line-height: 1.8; }

/* ================= 移动端适配 ================= */
@media (max-width: 900px) {
    .page-header {
        min-height: 232px;
        width: 100%;
        margin: 0;
        padding: 30px 22px;
        background-position: center;
    }
    .about-section {
        padding: 56px 22px 64px;
    }
    .about-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: flex-start;
    }
    .about-side {
        gap: 20px;
    }
    .about-heading {
        width: min(100%, 300px);
    }
    .about-copy {
        font-size: 15px;
        max-width: none;
        gap: 14px;
        line-height: 1.75;
    }
    .header-content {
        width: 100%;
    }
    .header-logo {
        width: 62px;
        right: calc(100% + 12px);
        top: calc(43% - 20px);
    }
    .header-kicker {
        font-size: 13px;
    }
    .header-main-title {
        width: min(58vw, 430px);
    }
    .header-subtitle {
        font-size: 14px;
        padding-bottom: 18px;
    }
    .header-subtitle::after {
        bottom: 3px;
        width: 76px;
    }
    .policy-module, .policy-module:nth-child(even) {
        flex-direction: column !important;
        gap: 34px;
        padding: 40px 0;
    }
    .policy-module::before {
        top: 24px;
        width: 56px;
    }
    .module-text, .module-image-placeholder { flex: 1 1 auto; width: 100%; }
    .module-text {
        padding: 10px 0 0;
    }
    .module-title {
        font-size: 24px;
        margin-bottom: 18px;
        padding-bottom: 14px;
    }
    .serial-number {
        font-size: 38px;
    }
    .qr-group { gap: 30px; }
    .qr-card { padding: 15px; }
    .qr-placeholder { width: 110px; height: 110px; }
    
    /* 移动端重置动画延迟，统一从上到下依次出现 */
    .policy-module:nth-child(odd) .module-image-placeholder.reveal-up,
    .policy-module:nth-child(even) .module-image-placeholder.reveal-up { transition-delay: 0.1s; }
    .policy-module:nth-child(odd) .module-text.reveal-up,
    .policy-module:nth-child(even) .module-text.reveal-up { transition-delay: 0.2s; }

    .news-page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .news-card {
        padding: 20px;
        height: 312px;
    }
}

@media (max-width: 560px) {
    .page-header {
        min-height: 196px;
        padding: 22px 16px;
        background-position: 68% center;
    }
    .about-section {
        padding: 42px 16px 48px;
    }
    .about-heading {
        width: min(78vw, 280px);
    }
    .about-contact {
        gap: 12px;
        width: 100%;
    }
    .about-contact-item {
        display: grid;
        grid-template-columns: 24px minmax(0, 1fr);
        align-items: start;
        gap: 10px;
        width: min(100%, 320px);
    }
    .about-contact-text {
        display: inline-grid;
        grid-template-columns: var(--contact-label-width) minmax(0, 1fr);
        align-items: start;
        column-gap: 6px;
        min-width: 0;
        font-size: 16px;
        line-height: 1.3;
        white-space: normal;
    }
    .about-contact-icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
        font-size: 13px;
    }
    .about-copy {
        font-size: 14px;
        gap: 12px;
        line-height: 1.78;
    }
    .news-page {
        grid-template-columns: 1fr;
    }
    .news-pagination {
        margin-top: 12px;
    }
    .news-card {
        height: 300px;
    }
    .header-brand {
        display: block;
        width: 100%;
    }
    .header-logo {
        position: static;
        width: 46px;
        transform: none;
        margin: 0 auto 8px;
    }
    .header-kicker {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    .header-main-title {
        width: min(78vw, 320px);
    }
    .header-subtitle {
        font-size: 12px;
        letter-spacing: 0.5px;
        padding-bottom: 15px;
    }
    .header-subtitle::after {
        bottom: 2px;
        width: 60px;
    }
    .page-footer {
        padding: 48px 16px;
    }
    .footer-title {
        font-size: 18px;
    }
    .footer-phone {
        display: flex;
        width: 100%;
        align-items: center;
        margin-bottom: 22px;
        font-size: 16px;
    }
    .footer-pc {
        display: none;
    }
    .footer-phone-item {
        display: grid;
        grid-template-columns: 24px minmax(0, 1fr);
        align-items: start;
        gap: 8px;
        width: min(100%, 320px);
        text-align: left;
    }
    .footer-phone-icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
        font-size: 13px;
    }
    .footer-phone-text {
        display: inline-grid;
        grid-template-columns: var(--contact-label-width) minmax(0, 1fr);
        align-items: start;
        column-gap: 6px;
        min-width: 0;
        line-height: 1.35;
        white-space: normal;
    }
    .contact-info-value {
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .contact-phone-content {
        display: inline-grid;
        grid-template-columns: var(--contact-label-width) minmax(0, 1fr);
        align-items: start;
        column-gap: 6px;
        row-gap: 0;
        min-width: 0;
        white-space: normal;
    }
    .contact-phone-line {
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
        white-space: normal;
    }
    .qr-group {
        gap: 10px;
        align-items: stretch;
    }
    .qr-card,
    .qr-card-link {
        flex: 1 1 0;
        min-width: 0;
    }
    .qr-card {
        min-height: 186px;
        padding: 14px 10px;
    }
    .qr-placeholder {
        width: 88px;
        height: 88px;
        margin-bottom: 10px;
    }
    .qr-card p,
    .qr-card-note {
        white-space: normal;
        word-break: break-word;
        font-size: 11px;
        line-height: 1.45;
        letter-spacing: 0;
    }
    .qr-card-note {
        margin-top: 6px;
    }
}
