/* =========================
   Base Reset
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Hiragino Sans GB",
        "Microsoft YaHei", sans-serif;
    color: #1f2937;
    background: #f6f8fb;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* =========================
   Section
========================= */
.section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 14px;
    color: #64748b;
}

/* =========================
   HERO
========================= */
.hero {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #fff;
    padding: 90px 0;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-desc {
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: #3b82f6;
    color: #fff;
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
}

.hero-meta {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

.hero-meta span {
    margin: 0 10px;
}


/* =========================
   Definition
========================= */
.definition-block {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* 居中容器统一风格 */
.definition-block .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 主卡片 */
.definition-card {
    background: #ffffff;
    border: 1px solid #e6eaf0;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

/* 左侧强调线（专业感关键） */
.definition-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #2563eb, #22c55e);
}

/* 标题 */
.definition-card h2 {
    font-size: 26px;
    font-weight: 700;
	text-align: center;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

/* 正文 */
.definition-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #475569;
    max-width: 900px;
}

/* 悬浮效果（轻微高级感） */
.definition-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
    transition: all 0.25s ease;
}

/* =========================
   响应式优化
========================= */

@media (max-width: 768px) {

    .definition-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .definition-card h2 {
        font-size: 20px;
    }

    .definition-card p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* =========================
   Broker Cards Grid
========================= */
.broker-section-wrapper {
    background: #f6f8fb;
    padding: 40px 0;
}

/* 统一 1200 居中 */
.broker-section-wrapper .section-title,
.broker-section-wrapper .broker-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}

/* ===========================
   标题区（更专业一点）
=========================== */
.broker-section-wrapper .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.broker-section-wrapper .section-title h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1f2d3d;
}

.broker-section-wrapper .section-title p {
    font-size: 14px;
    color: #6b7a90;
}

/* ===========================
   网格（核心）
=========================== */
.broker-section-wrapper .broker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* 响应式 */
@media (max-width: 992px) {
    .broker-section-wrapper .broker-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .broker-section-wrapper .broker-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   卡片
=========================== */
.broker-section-wrapper .broker-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #eef1f6;
    box-shadow: 0 6px 18px rgba(20, 30, 60, 0.06);
    display: flex;
    flex-direction: column;
    transition: 0.25s ease;
}

.broker-section-wrapper .broker-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(20, 30, 60, 0.12);
}

/* ===========================
   Logo
=========================== */
.broker-section-wrapper .broker-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.broker-section-wrapper .broker-logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

/* ===========================
   Header
=========================== */
.broker-section-wrapper .broker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.broker-section-wrapper .broker-header h3 {
    font-size: 18px;
    margin: 0;
}

/* ===========================
   Badge
=========================== */
.broker-section-wrapper .badge {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef2f7;
    color: #516074;
}

.broker-section-wrapper .badge-hot {
    background: #ff4d4f;
    color: #fff;
}

.broker-section-wrapper .badge-top {
    background: #1677ff;
    color: #fff;
}

/* ===========================
   Meta（重点优化整齐）
=========================== */
.broker-section-wrapper .broker-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.broker-section-wrapper .meta-item {
    background: #f7f9fc;
    padding: 8px 10px;
    border-radius: 10px;
}

.broker-section-wrapper .meta-item .label {
    font-size: 12px;
    color: #7a8aa0;
    display: block;
}

.broker-section-wrapper .meta-item .value {
    font-size: 13px;
    font-weight: 600;
    color: #1f2d3d;
}

/* ===========================
   Tags
=========================== */
.broker-section-wrapper .broker-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0;
    padding: 0;
    list-style: none;
}

.broker-section-wrapper .broker-tags li {
    font-size: 12px;
    padding: 4px 8px;
    background: #eef5ff;
    color: #2b5cff;
    border-radius: 999px;
}

/* ===========================
   简介
=========================== */
.broker-section-wrapper .broker-snippet {
    font-size: 13px;
    color: #5b6b7d;
    margin-bottom: 14px;
    line-height: 1.6;
}

.broker-section-wrapper .broker-snippet strong {
    color: #1f2d3d;
}

/* ===========================
   按钮
=========================== */
.broker-section-wrapper .broker-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.broker-section-wrapper .broker-open-btn {
    flex: 1;
    text-align: center;
    background: linear-gradient(135deg, #1677ff, #4096ff);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

.broker-section-wrapper .broker-btn {
    flex: 1;
    text-align: center;
    background: #f0f3f8;
    color: #2f3b4c;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

/* =========================
   外汇返佣排行榜
========================= */

.rebate-rank {
    padding: 60px 0;
    background: #f8fafc;
}

/* 容器统一 */
.rebate-rank .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   标题区
========================= */

.rebate-rank .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.rebate-rank .section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.rebate-rank .section-title p {
    font-size: 15px;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================
   表格外层
========================= */

.table-wrap {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

/* =========================
   表格主体
========================= */

.rebate-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

/* 表头 */
.rebate-table thead {
    background: #0f172a;
}

.rebate-table thead th {
    color: #ffffff;
    text-align: left;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
}

/* 行 */
.rebate-table tbody tr {
    border-bottom: 1px solid #eef2f7;
    transition: all 0.2s ease;
}

.rebate-table tbody tr:hover {
    background: #f8fafc;
}

/* 单元格 */
.rebate-table td {
    padding: 14px 16px;
    color: #334155;
    vertical-align: middle;
}

/* =========================
   Broker name
========================= */

.broker-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0f172a;
}

.broker-name img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
}

/* =========================
   Tag 标签系统
========================= */

.tag {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
}

.tag.top {
    background: #dcfce7;
    color: #166534;
}

.tag.hot {
    background: #fee2e2;
    color: #991b1b;
}

.tag.newbie {
    background: #dbeafe;
    color: #1e40af;
}

/* =========================
   按钮
========================= */

.table-btn {
    display: inline-block;
    padding: 6px 12px;
    background: #2563eb;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.table-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* =========================
   SEO内容区（rank snippet）
========================= */

.broker-rank-content {
    margin-top: 40px;
    display: grid;
    gap: 18px;
}

.rank-snippet {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
    transition: all 0.2s ease;
}

.rank-snippet:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.rank-snippet h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.rank-snippet p {
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
}

/* CTA按钮 */
.broker-open-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.broker-open-btn:hover {
    opacity: 0.9;
}

/* =========================
   无数据状态
========================= */

.no-data {
    padding: 30px;
    text-align: center;
    color: #94a3b8;
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
}

/* =========================
   响应式
========================= */

@media (max-width: 768px) {

    .rebate-table {
        font-size: 12px;
    }

    .rebate-table thead th,
    .rebate-table td {
        padding: 10px 8px;
    }

    .broker-name {
        flex-direction: column;
        align-items: flex-start;
    }

    .rank-snippet {
        padding: 18px;
    }
}



/* =========================
   Calculator
========================= */
.calculator-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.calculator-form input,
.calculator-form select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-top: 6px;
}

.calc-btn {
    margin-top: 15px;
    background: #0f172a;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
}

.calculator-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg,#1d4ed8,#2563eb);
    color: #fff;
    border-radius: 12px;
}

.result-value {
    font-size: 32px;
    font-weight: 800;
}

/* =========================
   Flow
========================= */
.flow-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.flow-step {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    display: flex;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.step-number {
    width: 32px;
    height: 32px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   VS Cards
========================= */

/* =========================
   VS Section 样式（专业版）
========================= */
.vs-section {
    padding: 80px 0;
    background: #0f1626;
    color: #e8eefc;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.vs-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.vs-section .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.vs-section .section-title p {
    font-size: 16px;
    color: #a0b0d0;
}

/* -------------------------
   表格主体
------------------------- */
.vs-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
}

.vs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 600px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.vs-table thead {
    background: rgba(255,255,255,0.06);
}

.vs-table th,
.vs-table td {
    padding: 16px 14px;
    font-size: 14px;
    text-align: center;
    color: #d0e0ff;
}

.vs-table th {
    font-weight: 600;
    color: #cfe3ff;
    font-size: 15px;
}

.vs-label {
    text-align: left;
    font-weight: 600;
    color: #9fb3d9;
}

/* 奇偶行区分 */
.vs-table tbody tr:nth-child(odd) {
    background: rgba(255,255,255,0.02);
}

.vs-table tbody tr:nth-child(even) {
    background: rgba(255,255,255,0.05);
}

/* -------------------------
   CTA 单独区域
------------------------- */
.vs-cta-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.vs-cta-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vs-cta-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.vs-cta-title {
    font-size: 16px;
    font-weight: 600;
    color: #cfe3ff;
    margin-bottom: 12px;
}

/* CTA 按钮 */
.vs-open-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    background: linear-gradient(135deg, #4f8cff, #6aa6ff);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s;
}

.vs-open-btn:hover {
    opacity: 0.95;
    transform: translateY(-2px);
}

/* 无链接状态 */
.vs-disabled {
    font-size: 13px;
    color: #777;
}

/* -------------------------
   移动端优化
------------------------- */
@media (max-width: 768px) {
    .vs-table th,
    .vs-table td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .vs-section .section-title h2 {
        font-size: 26px;
    }

    .vs-section .section-title p {
        font-size: 14px;
    }
}


/* =========================
   Features
========================= */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* =========================
   Guide
========================= */
.section.bg-light {
    background: #f6f8fb;
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1f2b;
}

.section-title p {
    color: #6b7280;
    margin-top: 8px;
}

/* =========================
   GRID
========================= */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =========================
   CARD
========================= */
.guide-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06);
    transition: all 0.2s ease;
    border: 1px solid #eef2f7;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.10);
}

.guide-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.guide-card h3 a {
    color: #111827;
    text-decoration: none;
}

.guide-card h3 a:hover {
    color: #2563eb;
}

.guide-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
Page Content
========================= */
.page-content {
    padding: 80px 0;
    background: var(--bg); /* 保持和全局一致 */
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.page-content .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* =========================
Typography
========================= */
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    font-weight: 700;
    line-height: 1.4;
    margin-top: 1.8em;
    margin-bottom: 0.8em;
    color: var(--text);
	text-align: center;
}

.page-content h1 { font-size: 36px; }
.page-content h2 { font-size: 28px; }
.page-content h3 { font-size: 22px; }
.page-content h4 { font-size: 18px; }

.page-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Links */
.page-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: var(--transition);
}
.page-content a:hover {
    color: var(--primary-hover);
}

/* Strong / Bold */
.page-content strong {
    font-weight: 700;
    color: var(--text);
}

/* =========================
Lists
========================= */
.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
}

/* =========================
Images
========================= */
.page-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* =========================
Blockquotes
========================= */
.page-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    color: var(--text-light);
    font-style: italic;
    margin: 20px 0;
    background: var(--bg-light);
    border-radius: 8px;
}

/* =========================
Tables
========================= */
.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.page-content table th,
.page-content table td {
    padding: 12px 15px;
    border: 1px solid var(--border);
}
.page-content table th {
    background: var(--primary);
    color: #fff;
}
.page-content table tr:nth-child(even) {
    background: var(--bg-light);
}

/* =========================
Shortcodes / Buttons
========================= */
.page-content .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin: 10px 0;
}

.page-content .btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* =========================
Responsive
========================= */
@media (max-width: 768px) {
    .page-content {
        padding: 60px 15px;
    }

    .page-content h1 { font-size: 28px; }
    .page-content h2 { font-size: 24px; }
    .page-content h3 { font-size: 20px; }
}

/* =========================
   Testimonials
========================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   FAQ
========================= */
.faq details {
    background: #fff;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.wp-faq-title {
    text-align:center;
	font-size: 28px;
    font-weight: 700;
    color: #1a1f2b;
}

/* =========================
   About
========================= */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.about-stats {
    display: grid;
    gap: 10px;
}

.stat-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #2563eb;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px) {
    .broker-grid,
    .vs-grid,
    .feature-grid,
    .guide-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calculator-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .broker-grid,
    .vs-grid,
    .feature-grid,
    .guide-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 26px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .broker-actions {
        flex-direction: column;
    }
}