/* ==================== 全局样式 ==================== */
:root {
    --color-bg: #fbfbfc;
    --color-surface: #ffffff;
    --color-surface-muted: #f5f6f8;
    --color-text: #17181a;
    --color-text-soft: #666c75;
    --color-dark: #2d3035;
    --color-dark-strong: #23262b;
    --color-border: rgba(20, 24, 30, 0.08);
    --color-primary: #ffdd4c;
    --color-primary-strong: #ffe470;
    --shadow-soft: 0 18px 40px rgba(18, 24, 33, 0.06);
    --shadow-card: 0 24px 56px rgba(17, 23, 32, 0.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 44px 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

section,
footer {
    position: relative;
}

.section-heading {
    margin-bottom: 28px;
    text-align: center;
    font-size: 56px;
    line-height: 1.14;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #0f1012;
}

/* ==================== CTA 按钮样式 ==================== */
.cta-button {
    display: inline-block;
    padding: 13px 26px;
    background: var(--color-primary);
    color: #000000;
    font-weight: 700;
    font-size: 15px;
    border-radius: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(255, 221, 76, 0.18);
}

.cta-button:hover {
    background: var(--color-primary-strong);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(255, 221, 76, 0.22);
}

.cta-button:active {
    transform: translateY(0);
}

/* ==================== 导航栏 ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.82);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
    backdrop-filter: blur(16px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-radius: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 78px;
}

.nav-left {
    display: flex;
    align-items: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.nav-left .logo {
    max-height: 32px;
    width: auto;
    min-width: 148px;
    border-radius: 0;
    background: transparent;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar .cta-button {
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.74);
    font-weight: 500;
    font-size: 14px;
}

.nav-links a:hover {
    color: #ffffff;
}

/* ==================== Banner 区域 ==================== */
.banner {
    margin: 0;
    padding: 132px 0 96px;
    background:
        radial-gradient(circle at top left, rgba(232, 179, 109, 0.12), transparent 24%),
        radial-gradient(circle at top right, rgba(102, 111, 117, 0.18), transparent 24%),
        linear-gradient(180deg, #050505 0%, #0b0b0c 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.banner .container {
    color: #ffffff;
    padding: 92px 24px 44px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.banner-text {
    flex: 1;
}

.banner-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.14;
    letter-spacing: -0.03em;
    max-width: 760px;
}

.banner-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
    max-width: 620px;
}

.banner-cta {
    min-width: 320px;
    text-align: center;
}

.banner-image {
    flex: 1;
}

.banner-img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, #dbe2ee 0%, #ccd6e6 100%);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

#tabs-1 {
    margin-top: 0;
    padding-top: 56px;
    z-index: 1;
}

/* ==================== 标签切换模块 ==================== */
.tabs-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 34px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.tabs-header {
    display: flex;
    gap: 8px;
    width: fit-content;
    margin: 0 auto 30px;
    padding: 6px;
    background: var(--color-surface-muted);
    border: 1px solid rgba(74, 61, 49, 0.08);
    border-radius: 999px;
}

.tab-button {
    padding: 11px 20px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-soft);
    cursor: pointer;
    position: relative;
    border-radius: 999px;
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.tab-button:hover {
    color: var(--color-text);
}

.tab-button.active {
    color: var(--color-dark-strong);
    font-weight: 600;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(17, 23, 32, 0.08);
}

.tab-button.active::after {
    display: none;
}

.tabs-content {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 标签内容 - 左图右文 */
.tabs-section .tab-content {
    align-items: center;
    gap: 42px;
}

.tabs-section .tab-image {
    flex: 1;
}

.tabs-section .tab-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(17, 24, 32, 0.06);
    background: linear-gradient(180deg, #f3f6fb 0%, #e5ebf4 100%);
    box-shadow: var(--shadow-soft);
}

.tabs-section .tab-text {
    flex: 1;
}

.tabs-section .tab-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.tabs-section .tab-description {
    font-size: 16px;
    color: var(--color-text-soft);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* 标签内容 - 左文右图 */
.tabs-reverse .tab-content {
    flex-direction: row-reverse;
}

#tabs-2 .tabs-container {
    background: rgba(255, 255, 255, 0.94);
    color: var(--color-text);
}

#tabs-2 .tabs-content {
    display: block;
}

#tabs-2 .tabs-header {
    display: none;
}

#tabs-2 .feature-tab-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

#tabs-2 .feature-visual {
    display: flex;
    align-items: center;
    min-width: 0;
    height: 100%;
}

#tabs-2 .feature-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center 28%;
}

#tabs-2 .feature-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

#tabs-2 .feature-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    padding: 14px 18px;
    border-radius: 22px;
    cursor: pointer;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

#tabs-2 .feature-item:hover,
#tabs-2 .feature-item.active {
    background: #f3f4f6;
    box-shadow: inset 0 0 0 1px rgba(20, 24, 30, 0.04);
}

#tabs-2 .feature-copy {
    flex: 1;
    max-width: 100%;
    padding-right: 0;
}

#tabs-2 .feature-title {
    margin-bottom: 6px;
    font-size: 24px;
    line-height: 1.24;
    font-weight: 700;
}

#tabs-2 .feature-description {
    color: #2a2d31;
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
}

#tabs-2 .feature-cta {
    position: absolute;
    top: 14px;
    right: 14px;
    display: none;
    min-width: 104px;
    padding: 8px 16px;
    border-radius: 999px;
    text-align: center;
    font-size: 13px;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(255, 221, 76, 0.18);
    z-index: 1;
}

#tabs-2 .feature-item:hover .feature-cta,
#tabs-2 .feature-item.active .feature-cta {
    display: inline-block;
}

/* 标签内容 - 双列布局 */
.tabs-grid .tab-content {
    flex-direction: column;
    text-align: center;
}

.tabs-grid .tab-title,
.tabs-grid .tab-description {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.tabs-grid .tab-image-grid {
    display: flex;
    gap: 24px;
    margin-top: 14px;
    justify-content: center;
}

.tabs-grid .tab-image-card {
    width: 48%;
    text-align: center;
}

.tabs-grid .tab-description {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.7;
}

.tabs-grid-cta {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.tabs-grid-cta .cta-button {
    min-width: 320px;
    text-align: center;
}

.tabs-grid .tab-img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(17, 24, 32, 0.06);
    background: linear-gradient(180deg, #f3f6fb 0%, #e5ebf4 100%);
    box-shadow: var(--shadow-soft);
}

.tabs-grid .tab-image-label {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #0f1012;
}

/* ==================== 单内容模块 ==================== */
.single-section .single-content {
    display: flex;
    align-items: center;
    gap: 42px;
    max-width: 1040px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 24, 30, 0.06);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(17, 23, 32, 0.04);
}

.single-section .single-image {
    flex: 1;
}

.single-section .single-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(17, 24, 32, 0.06);
    background: linear-gradient(180deg, #f3f6fb 0%, #e5ebf4 100%);
    box-shadow: var(--shadow-soft);
}

.single-section .single-text {
    flex: 1;
}

.single-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.single-description {
    font-size: 16px;
    color: var(--color-text-soft);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* 单内容 - 左文右图 */
.single-reverse .single-content {
    flex-direction: row-reverse;
}

#single-2.single-reverse .single-content {
    flex-direction: row;
}

#single-3 .single-comparison {
    display: block;
}

#single-3 .single-comparison-intro {
    max-width: 860px;
    margin: 0 auto 30px;
    text-align: center;
}

#single-3 .single-description {
    max-width: 760px;
    margin: 0 auto 18px;
}

#single-3 .single-comparison-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    align-items: start;
}

#single-3 .comparison-card {
    text-align: center;
}

#single-3 .comparison-img {
    margin-bottom: 16px;
}

#single-3 .comparison-label {
    font-size: 18px;
    font-weight: 700;
    color: #0f1012;
}

#single-3 .single-comparison-cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

#single-3 .single-comparison-cta .cta-button {
    min-width: 320px;
    text-align: center;
}

/* ==================== CTA 区域 ==================== */
.cta-section {
    margin: 0;
    background: linear-gradient(135deg, #101114 0%, #1a1d22 100%);
    color: #fff8f2;
    text-align: center;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(242, 181, 107, 0.18), transparent 34%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 52px 20px 58px;
}

.cta-logo {
    width: auto;
    height: 42px;
    margin: 0 auto 32px;
}

.cta-title {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 26px;
    line-height: 1.18;
}

.cta-subtitle {
    font-size: 0;
    color: rgba(255, 244, 232, 0.72);
    margin-bottom: 0;
}

.cta-large {
    display: inline-block;
    background: var(--color-primary);
    color: #000000;
    min-width: 290px;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: none;
}

.cta-large:hover {
    background: var(--color-primary-strong);
    transform: translateY(-2px);
    box-shadow: none;
}

.cta-rating {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.6;
}

.cta-rating-text {
    font-weight: 500;
}

.cta-rating-prefix,
.cta-rating-suffix {
    display: inline-block;
}

.cta-rating-number {
    display: inline-block;
    min-width: 112px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    transform-origin: center bottom;
}

.cta-rating-number.is-animated {
    animation: numberPop 0.5s ease-out;
}

.cta-rating-stars {
    color: #ffdd4c;
    letter-spacing: 0.08em;
    font-size: 26px;
    line-height: 1;
}

.cta-rating-stars-label {
    display: inline-block;
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: normal;
    vertical-align: middle;
}

@keyframes numberPop {
    0% {
        transform: scale(1);
    }
    35% {
        transform: scale(1.12);
    }
    70% {
        transform: scale(0.96);
    }
    100% {
        transform: scale(1);
    }
}

/* ==================== Footer ==================== */
.footer {
    color: #0000008c;
    padding: 36px 0 32px;
    background: #ffffff;
    border-top: 1px solid rgba(20, 24, 30, 0.08);
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
}

.footer-security-auth-info {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 24px 32px;
    margin-bottom: 0;
}

.footer-auth-list {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    list-style: none;
}

.footer-auth-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 203px;
    padding: 0 24px;
    margin-right: 24px;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
    color: #0000008c;
}

.footer-auth-item:last-child {
    margin-right: 0;
}

.footer-auth-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-record-content {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    width: 100%;
}

.footer-record-item {
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 16px;
    color: #0000008c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-record-group {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
}

.footer-company-info,
.footer-phone,
.footer-record-group span,
.footer-link-inline {
    color: #0000008c;
}

.footer-address {
    color: #0000008c;
}

.footer-divider {
    display: inline-block;
    width: 1px;
    height: 12px;
    margin: 0 12px;
    background: #0000001f;
}

.footer-divider-mobile {
    display: none;
}

.footer-link-inline {
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link-inline:hover {
    color: #000000b3;
}

.footer-police-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-police-link img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.footer-company-info .footer-address {
    display: inline-block;
}

.footer-phone .footer-label {
    display: inline-block;
}

.footer-copyright p {
    display: none;
}

@media (max-width: 768px) {
    .container {
        padding: 0 14px;
    }

    .section {
        padding: 22px 0;
    }

    .navbar .container {
        height: auto;
        padding-top: 8px;
        padding-bottom: 8px;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .nav-right {
        width: 100%;
        align-items: stretch;
        gap: 10px;
    }

    .nav-links {
        display: none;
    }

    .nav-left {
        width: 100%;
        justify-content: center;
    }

    .cta-button,
    .cta-large {
        width: 100%;
        text-align: center;
    }

    .section .cta-button {
        width: 100%;
        min-width: 0;
        min-height: 56px;
        padding: 16px 20px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 14px;
        line-height: 1.2;
        box-shadow: none;
    }

    .navbar .cta-button {
        width: 100%;
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .navbar {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        background: linear-gradient(180deg, #050505 0%, #0b0b0c 100%);
        border-bottom: none;
        backdrop-filter: none;
    }

    .banner {
        margin: 0;
        padding: 14px 0 42px;
        border-bottom: none;
    }

    .banner .container {
        padding: 10px 14px 18px;
    }

    .banner-content,
    .single-section .single-content,
    .single-reverse .single-content,
    .tabs-section .tab-content,
    .tabs-reverse .tab-content {
        flex-direction: column;
        gap: 28px;
    }

    #single-2 .single-content {
        flex-direction: column-reverse;
    }

    .banner-content {
        display: flex;
    }

    .banner-image {
        order: -1;
        width: 100%;
    }

    .banner-text {
        width: 100%;
        text-align: center;
    }

    .nav-right > .cta-button {
        display: none;
    }

    .banner-title,
    .cta-title {
        font-size: 32px;
    }

    .section-heading {
        margin-bottom: 16px;
        font-size: 26px;
        line-height: 1.22;
    }

    .banner-subtitle,
    .cta-subtitle {
        font-size: 15px;
    }

    .banner-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .banner-cta {
        margin-left: auto;
        margin-right: auto;
    }

    .single-title,
    .tabs-section .tab-title {
        font-size: 22px;
    }

    .tabs-header {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 4px;
        width: 100%;
        justify-content: center;
        margin-bottom: 20px;
    }

    .tab-button {
        flex: 0 0 auto;
        padding: 9px 16px;
        font-size: 13px;
    }

    .tabs-grid .tab-image-grid {
        flex-direction: row;
        gap: 12px;
    }

    .tabs-grid .tab-image-card {
        width: calc(50% - 6px);
    }

    .tabs-grid .tab-img {
        width: 100%;
    }

    .tabs-grid .tab-image-label {
        margin-top: 8px;
        font-size: 14px;
    }

    #single-3 .single-comparison-images {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    #single-3 .single-comparison-intro {
        margin-bottom: 18px;
    }

    #single-3 .single-description {
        text-align: left;
    }

    #single-3 .single-comparison-cta {
        margin-top: 18px;
    }

    #single-3 .comparison-label {
        margin-top: 8px;
        font-size: 14px;
    }

    #tabs-2 .feature-tab-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    #tabs-2 .tabs-header {
        display: flex;
        margin-bottom: 18px;
    }

    #tabs-2 .feature-img {
        aspect-ratio: 3 / 2;
    }

    #tabs-2 .feature-stack {
        gap: 0;
    }

    #tabs-2 .feature-item,
    #tabs-2 .feature-item.active {
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    #tabs-2 .feature-item {
        display: none;
    }

    #tabs-2 .feature-item.active {
        display: block;
    }

    #tabs-2 .feature-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    #tabs-2 .feature-description {
        font-size: 15px;
        line-height: 1.65;
    }

    #tabs-2 .feature-cta {
        display: block;
        position: static;
        margin-top: 12px;
        width: 100%;
        min-width: 0;
        min-height: 56px;
        padding: 16px 20px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 14px;
        line-height: 1.2;
    }

    #tabs-2 .feature-copy {
        padding-right: 0;
    }

    .tabs-container,
    .single-section .single-content {
        padding: 18px;
        border-radius: 18px;
    }

    .single-section .single-content {
        padding: 18px;
        border-radius: 18px;
    }

    #tabs-1 {
        margin-top: 0;
        padding-top: 18px;
    }

    .cta-content {
        padding: 38px 0 40px;
    }

    .cta-logo {
        height: 30px;
        margin-bottom: 18px;
    }

    .banner-cta,
    .tabs-grid-cta .cta-button,
    #single-3 .single-comparison-cta .cta-button {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .cta-large {
        min-width: 200px;
        padding: 13px 24px;
        font-size: 16px;
    }

    .cta-section .cta-large {
        display: none;
    }

    .tabs-grid-cta {
        width: 100%;
        justify-content: stretch;
    }

    #single-3 .single-comparison-cta {
        width: 100%;
        justify-content: stretch;
    }

    .cta-rating {
        gap: 8px;
        font-size: 15px;
        line-height: 1.7;
        flex-direction: column;
        align-items: center;
    }

    .cta-rating-text {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 6px;
    }

    .cta-rating-suffix {
        width: 100%;
        text-align: center;
    }

    .cta-rating-stars {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .cta-rating-stars-label {
        font-size: 15px;
    }

    .footer {
        padding: 24px 0 26px;
    }

    .footer-content {
        padding: 0 14px;
    }

    .footer-auth-list {
        width: 100%;
        gap: 0;
    }

    .footer-record-group {
        flex-wrap: wrap;
        display: flex;
        margin-top: 8px;
    }

    .footer-record-group:first-child {
        margin-top: 0;
    }

    .footer-divider {
        height: 14px;
        margin: 0 10px;
    }

    .footer-divider-mobile {
        display: none;
    }

    .footer-record-item {
        flex-direction: column;
        margin-bottom: 10px;
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-auth-item {
        flex: 1;
        max-width: 260px;
        width: auto;
        padding: 0;
        margin-right: 0;
        gap: 8px;
        font-size: 13px;
    }

    .footer-auth-icon {
        width: 52px;
        height: 52px;
    }

    .footer-police-link img {
        width: 16px;
        height: 16px;
    }

    .footer-company-info .footer-address {
        display: none;
    }

    .footer-phone .footer-label {
        display: none;
    }

}
