/* 非小号主题 — 靛紫 + 琥珀，与旧版蓝色渐变区分 */
:root {
    --primary-color: #5b21b6;
    --primary-dark: #4c1d95;
    --primary-light: #7c3aed;
    --accent-color: #f59e0b;
    --accent-dark: #d97706;
    --surface: #faf8ff;
    --surface-card: #ffffff;
    --text-color: #1e1b2e;
    --text-muted: #6b6280;
    --border-color: rgba(91, 33, 182, 0.12);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 12px rgba(76, 29, 149, 0.06);
    --shadow-md: 0 8px 28px rgba(76, 29, 149, 0.1);
    --transition-speed: 0.25s;
    --transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.65;
    background: var(--surface);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* —— 导航 —— */
.fxh-nav.z8587bnavbar,
.z8587bnavbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 0.65rem 0;
}

.z8587bnavbar-brand img {
    height: 42px;
    width: auto;
}

.z8587bnav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.45rem 0.85rem !important;
    border-radius: var(--radius-sm);
    transition: color var(--transition-speed), background var(--transition-speed);
}

.z8587bnav-link:hover,
.z8587bnav-link.active {
    color: var(--primary-color) !important;
    background: rgba(91, 33, 182, 0.06);
}

.navbar-toggler {
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.55rem;
}

.navbar-collapse {
    background: var(--surface-card);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
}

/* —— 按钮 —— */
.btn-fxh-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: #1a1200;
    border: none;
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 0.7rem 1.4rem;
}

.btn-fxh-accent:hover {
    filter: brightness(1.05);
    color: #1a1200;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35);
}

.btn-fxh-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.btn-fxh-primary:hover {
    color: #fff;
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.btn-fxh-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.65);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.btn-fxh-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
}

.fxh-section .btn-fxh-outline {
    color: var(--primary-color);
    border-color: var(--border-color);
    background: var(--surface-card);
}

.fxh-section .btn-fxh-outline:hover {
    background: rgba(91, 33, 182, 0.06);
    color: var(--primary-dark);
    border-color: var(--primary-light);
}

.btn {
    border-radius: var(--radius-sm);
}

/* —— 主视觉 —— */
.fxh-hero.z8587bhero-section {
    position: relative;
    padding: 4.5rem 0 3.5rem;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(145deg, #2e1064 0%, #5b21b6 45%, #7c3aed 100%);
}

.fxh-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.18) 0%, transparent 42%),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 38%);
    pointer-events: none;
}

.fxh-hero .container {
    position: relative;
    z-index: 1;
}

.fxh-badge {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    margin-bottom: 1rem;
}

.z8587bhero-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.z8587bhero-subtitle {
    font-size: 1.05rem;
    opacity: 0.92;
    margin-bottom: 1.5rem;
    max-width: 36rem;
}

.fxh-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.fxh-hero-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.fxh-hero-points li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fxh-hero-panel {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    backdrop-filter: blur(8px);
}

.fxh-hero-panel-head {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fxh-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.fxh-dot-live {
    animation: fxh-pulse 2s ease infinite;
}

@keyframes fxh-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

.z8587bhero-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0 1rem;
    min-height: auto;
    margin-top: 0;
}

.z8587bhero-image {
    width: 100%;
    max-width: 260px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    object-fit: contain;
    margin: 0 auto;
}

.z8587bhero-image-shadow {
    display: none;
}

.fxh-hero-panel-note {
    font-size: 0.85rem;
    line-height: 1.55;
    opacity: 0.88;
}

/* 简介条 */
.fxh-intro-strip {
    background: var(--surface-card);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
}

.fxh-intro-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 52rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* 区块通用 */
.fxh-section {
    padding: 4rem 0;
}

.fxh-section-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.fxh-section-head h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.fxh-section-head p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1rem;
}

.fxh-section-head-light h2,
.fxh-section-head-light p {
    color: #fff;
}

.fxh-section-head-light p {
    opacity: 0.88;
}

/* Bento 能力区 */
.fxh-features {
    background: var(--surface);
}

.fxh-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.fxh-bento-item {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.35rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-speed), border-color var(--transition-speed);
    overflow: hidden;
    min-width: 0;
}

.fxh-bento-item:hover {
    border-color: rgba(91, 33, 182, 0.22);
    box-shadow: var(--shadow-md);
}

.fxh-bento-main {
    grid-column: span 2;
}

.fxh-bento-wide {
    grid-column: span 2;
}

.fxh-bento-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(245, 158, 11, 0.15));
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
}

.fxh-bento-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.fxh-bento-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* 统计 */
.fxh-stats.z8587bstats-section {
    background: linear-gradient(120deg, var(--primary-dark), var(--primary-color));
    padding: 3.5rem 0;
    color: #fff;
}

.fxh-stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
    text-align: center;
    height: 100%;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.z8587bstat-number {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.z8587bstat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* 下载区 */
.fxh-download.z8587bdownload-section {
    background: var(--surface-card);
    padding: 4rem 0;
}

.fxh-dl-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    overflow: hidden;
}

.fxh-dl-card:hover {
    box-shadow: var(--shadow-md);
}

.fxh-dl-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.fxh-dl-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: var(--primary-dark);
}

.z8587bplatform-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.z8587bandroid-icon {
    background: linear-gradient(135deg, #34d399, #059669);
    color: #fff;
}

.z8587bios-icon {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    color: #fff;
}

.fxh-dl-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    flex: 1;
}

.fxh-dl-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.55rem;
    line-height: 1.5;
}

.fxh-dl-list li i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.z8587bdownload-info {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.fxh-dl-tip {
    margin-top: 1.5rem;
    padding: 1rem 1.15rem;
    background: rgba(91, 33, 182, 0.06);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    line-height: 1.6;
}

.fxh-dl-tip i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* 信任保障 */
.fxh-security.z8587bsecurity-section {
    background: var(--surface);
    padding: 4rem 0;
}

.fxh-trust-card.z8587bsecurity-card {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.35rem;
    height: 100%;
    min-height: 180px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: box-shadow var(--transition-speed);
    overflow: hidden;
}

.fxh-trust-card:hover {
    box-shadow: var(--shadow-md);
}

.z8587bsecurity-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fxh-trust-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.6rem;
    text-align: center;
}

.fxh-trust-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
    text-align: center;
}

.fxh-knowledge {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.fxh-knowledge-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.fxh-knowledge-item {
    padding: 0.85rem 1rem;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    height: 100%;
    min-width: 0;
}

.fxh-knowledge-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.fxh-knowledge-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

/* FAQ */
.fxh-faq {
    background: var(--surface-card);
}

.fxh-faq-grid {
    display: grid;
    gap: 0.75rem;
    max-width: 48rem;
    margin: 0 auto;
}

.fxh-faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--surface);
    overflow: hidden;
}

.fxh-faq-item summary {
    padding: 1rem 1.15rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.fxh-faq-item summary::-webkit-details-marker {
    display: none;
}

.fxh-faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

.fxh-faq-item[open] summary::after {
    content: '−';
}

.fxh-faq-item p {
    padding: 0 1.15rem 1rem;
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* 文章区 */
.fxh-articles {
    background: var(--surface);
    border-top: 1px solid var(--border-color);
}

.fxh-articles-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.fxh-article-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--surface-card);
    transition: box-shadow var(--transition-speed);
}

.fxh-article-card:hover {
    box-shadow: var(--shadow-md);
}

.fxh-article-thumb-wrap {
    overflow: hidden;
}

.fxh-article-thumb,
.z8587bthumb-home {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.fxh-article-title a {
    color: var(--text-color);
}

.fxh-article-title a:hover {
    color: var(--primary-color);
}

.fxh-article-card .card-body {
    padding: 0.85rem 1rem;
}

/* 页脚 */
.fxh-footer.z8587bfooter {
    background: #1e1b2e;
    color: rgba(255, 255, 255, 0.75);
    padding: 3rem 0 1.5rem;
}

.fxh-footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.z8587bfooter-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.z8587bfooter-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z8587bfooter-links li {
    margin-bottom: 0.5rem;
}

.z8587bfooter-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-speed);
}

.z8587bfooter-link:hover {
    color: var(--accent-color);
}

.fxh-friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.fxh-friend-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    text-decoration: none;
}

.fxh-friend-links a:hover {
    color: var(--accent-color);
}

.z8587bfooter-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.25rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
}

.z8587bfooter-bottom a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.z8587bfooter-bottom a:hover {
    color: var(--accent-color);
}

/* 列表页 / 内页 */
.fxh-page-main {
    padding: 2.5rem 0 3rem;
    background: var(--surface);
}

.fxh-page-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--surface-card);
}

.fxh-page-card .card-body {
    padding: 1.25rem 1.5rem;
}

.fxh-sidebar-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    background: var(--surface-card);
    overflow: hidden;
    margin-bottom: 1rem;
}

.fxh-sidebar-card .card-body {
    padding: 1.15rem 1.25rem;
}

.fxh-sidebar-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

/* 兼容旧类名 */
.z8587bfeature-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    height: 100%;
}

.z8587bdownload-card {
    border: none;
    background: transparent;
    box-shadow: none;
}

.z8587bdownload-card:hover {
    transform: none;
}

.z8587bdownload-header h2 {
    color: var(--primary-dark);
    font-weight: 700;
}

.z8587bdownload-subtitle {
    color: var(--text-muted);
}

.z8587bsecurity-header h2 {
    color: var(--primary-dark);
    font-weight: 700;
}

.z8587bsecurity-subtitle {
    color: var(--text-muted);
}

/* 分页 */
.pagebar .pagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pagebar .pagelist li {
    display: inline-flex;
    margin: 0;
}

/* 内页文章 */
.z8587barticle-content {
    line-height: 1.75;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.z8587barticle-content img {
    max-width: 100%;
    height: auto;
}

.z8587bthumb-list,
.z8587bthumb-related {
    width: 100%;
    height: 84px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.z8587bthumb-side {
    width: 100%;
    height: 54px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.fxh-article-cover-wrap {
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.z8587bthumb-cover {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.listbox .e2 li:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* —— 响应式 —— */
@media (max-width: 991px) {
    .fxh-bento {
        grid-template-columns: 1fr;
    }

    .fxh-bento-main,
    .fxh-bento-wide {
        grid-column: span 1;
    }

    .fxh-hero.z8587bhero-section {
        padding: 3rem 0 2.5rem;
    }

    .fxh-hero-panel {
        margin-top: 0.5rem;
    }
}

@media (max-width: 767px) {
    .fxh-section {
        padding: 2.75rem 0;
    }

    .fxh-section-head {
        margin-bottom: 1.75rem;
    }

    .fxh-hero-actions {
        flex-direction: column;
    }

    .fxh-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .fxh-hero-points {
        font-size: 0.85rem;
    }

    .z8587bnavbar {
        padding: 0.5rem 0;
    }

    .navbar-collapse {
        margin-top: 0.5rem;
        max-height: 70vh;
        overflow-y: auto;
    }

    .z8587bnav-link {
        padding: 0.5rem 0.35rem !important;
    }

    .fxh-dl-card {
        padding: 1.15rem;
    }

    .fxh-dl-card-top {
        flex-wrap: wrap;
    }

    .fxh-trust-card {
        min-height: auto;
    }

    .fxh-knowledge {
        padding: 1.15rem;
    }

    .fxh-stat-card {
        padding: 1rem 0.75rem;
        min-height: 88px;
    }

    .fxh-article-thumb,
    .z8587bthumb-home {
        height: 96px !important;
    }

    .fxh-article-title {
        font-size: 0.95rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .listbox .e2 li {
        padding-bottom: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .listbox .e2 li h2.h5 {
        font-size: 1rem;
        line-height: 1.35;
    }

    .z8587bthumb-list,
    .z8587bthumb-related {
        height: 72px !important;
    }

    .z8587bthumb-side {
        height: 50px !important;
    }

    .z8587bthumb-cover {
        max-height: 200px !important;
    }

    .fxh-footer .row > [class*="col-"] {
        text-align: center;
    }

    .fxh-friend-links {
        justify-content: center;
    }

    .z8587bdownload-action .btn {
        white-space: normal;
    }
}

@media (max-width: 575px) {
    .fxh-intro-text {
        font-size: 0.88rem;
        text-align: left;
    }

    .fxh-dl-tip {
        flex-direction: column;
        font-size: 0.85rem;
    }

    .fxh-article-thumb,
    .z8587bthumb-home {
        height: 88px !important;
    }

    .z8587bthumb-list,
    .z8587bthumb-related {
        height: 64px !important;
    }

    .z8587bthumb-cover {
        max-height: 180px !important;
    }

    .pagebar .pagelist {
        gap: 0.35rem;
    }
}

/* 防止卡片内容撑破边框 */
.card,
.fxh-bento-item,
.fxh-dl-card,
.fxh-trust-card,
.fxh-article-card,
.fxh-page-card,
.fxh-sidebar-card {
    max-width: 100%;
}

.container {
    max-width: 1140px;
    padding-left: 1rem;
    padding-right: 1rem;
}
