/* === 1. 核心 CSS 变量 === */
/* :root {
  --bg-color: #f5f7fa; --card-bg: #ffffff; --text-color: #1f1f1f;
  --text-secondary: #666666; --text-tertiary: #999999;
  --border-color: #ebebeb; --primary-color: #52c41a;
  --error-color: #ff4d4f; --warning-color: #faad14;
  --info-color: #1890ff; --accent: #722ed1;
  --hover-bg: #f5f5f5; --input-bg: #ffffff; --input-border: #d9d9d9;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
body.dark-mode {
  --bg-color: #0a0a0a; --card-bg: #141414; --text-color: #e5e5e5;
  --text-secondary: #a3a3a3; --text-tertiary: #666666;
  --border-color: #262626; --hover-bg: #1f1f1f;
  --input-bg: #141414; --input-border: #434343;
} */
/* * { box-sizing: border-box; }
body { background-color: var(--bg-color); color: var(--text-color); margin: 0; font-family: 'Inter', sans-serif; overflow-y: scroll; }
a { text-decoration: none; color: inherit; }
button, input, select { font-family: inherit; border: none; outline: none; } */

/* === 2. 主容器与页面通用组件 === */
.container {
    margin: 0 auto;
    padding: 20px;
    min-height: calc(100vh - 140px);
}
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.dns-mode-badge {
    display: inline-block;
    background: var(--primary-color); /* Info Cyan */
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
    vertical-align: middle;
}
.dns-header {
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-color);
}
/* === 3. 控制面板与按钮 === */
.control-panel { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; padding: 20px; margin-bottom: 20px; display: flex; flex-direction: column; gap: 16px; border-top: 4px solid var(--primary-color); box-shadow: 0 2px 8px rgba(0,0,0,0.02); position: relative; margin-top: 20px;}
.global-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--primary-color); width: 0%; transition: width 0.4s ease-out; z-index: 10; }

.control-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; width: 100%; }
.input-group { display: flex; gap: 12px; flex: 1; min-width: 200px; align-items: center; flex-wrap: wrap; }

.input-addon-group { display: flex; border: 1px solid var(--input-border); border-radius: 8px; background-color: var(--input-bg); flex: 1; overflow: hidden; min-width: 250px; transition: var(--transition);}
.input-addon-group:focus-within { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(82, 196, 26, 0.15); transform: translateY(-1px); }
.select-method { -webkit-appearance: none; -moz-appearance: none; appearance: none; background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E") no-repeat right 10px center; border-right: 1px solid var(--border-color); padding: 0 28px 0 14px; font-weight: 600; font-size: 14px; color: var(--primary-color); height: 44px; cursor: pointer; transition: var(--transition); }
.select-method:hover { background-color: rgba(82, 196, 26, 0.06); }
.select-method:focus { outline: none; background-color: rgba(82, 196, 26, 0.06); }
.input-main { height: 44px; padding: 0 16px; font-size: 16px; flex: 1; background: transparent; color: var(--text-color); width: 100%; font-family: 'Roboto Mono', monospace; }

.inline-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; flex-shrink: 0; }
.inline-actions .btn { flex-shrink: 0; }

.route-map-btn { border: 1px solid var(--border-color); background: var(--card-bg); color: var(--text-secondary); border-radius: 6px; cursor: pointer; transition: var(--transition); }
.route-map-btn:hover { color: var(--primary-color); border-color: var(--primary-color); background: rgba(82, 196, 26, 0.08); }
.capture-page-btn { height: 44px; padding: 0 16px; border-radius: 8px; font-size: 14px; gap: 6px; display: inline-flex; align-items: center; font-weight: 600; }
.capture-page-btn:disabled { cursor: not-allowed; color: #94a3b8; background: #f1f5f9; border-color: #cbd5e1; filter: grayscale(1); opacity: 0.9; }
:root.dark-mode .capture-page-btn:disabled, body.dark-mode .capture-page-btn:disabled { color: #94a3b8; background: #1f2937; border-color: #334155; opacity: 0.85; }

.advanced-options { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; padding-top: 12px; border-top: 1px dashed var(--border-color); width: 100%; }
.option-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); }

.switch-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 13px; font-weight: 500; color: var(--text-color); transition: var(--transition); }
.switch-label:hover { color: var(--primary-color); }
.switch { position: relative; width: 36px; height: 20px; background-color: #e5e5e5; border-radius: 20px; transition: var(--transition); }
.switch::after { content: ''; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; background-color: #fff; border-radius: 50%; transition: var(--transition); box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.switch-checkbox { display: none; }
.switch-checkbox:checked + .switch { background-color: var(--primary-color); }
.switch-checkbox:checked + .switch::after { transform: translateX(16px); }

/* === 4. 预期 IP 提示词与多标签组输入框样式 === */
.tooltip-wrapper { position: relative; display: inline-flex; align-items: center; cursor: pointer; }
.info-badge { position: absolute; top: -5px; right: -12px; background: var(--accent); color: white; border-radius: 50%; width: 14px; height: 14px; font-size: 10px; display: flex; align-items: center; justify-content: center; font-style: normal; font-weight: bold; }
.provider-trigger { position: relative; cursor: help; display: inline-block; }
.tooltip-content { position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%) translateY(10px); margin-bottom: 8px; width: max-content; max-width: 300px; background-color: #222; color: #f0f0f0; padding: 12px; border-radius: 8px; font-family: 'Roboto Mono', monospace; font-size: 11px; line-height: 1.5; opacity: 0; visibility: hidden; transition: all 0.2s var(--ease-out); z-index: 1000; box-shadow: 0 10px 30px rgba(0,0,0,0.3); text-align: left; white-space: pre-wrap; word-break: break-word; overflow-wrap: break-word; pointer-events: none; }
:root.dark-mode .tooltip-content, body.dark-mode .tooltip-content { background: #334155; }
.tooltip-content::after { content: ''; position: absolute; top: 100%; left: 50%; margin-left: -6px; border-width: 6px; border-style: solid; border-color: #222 transparent transparent transparent; }
:root.dark-mode .tooltip-content::after, body.dark-mode .tooltip-content::after { border-top-color: #334155; }
.tooltip-wrapper:hover .tooltip-content, .provider-trigger:hover .tooltip-content { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.expected-ip-container { width: 100%; display: none; margin-top: 12px; animation: fadeIn 0.3s ease-out; }
.tag-input-wrapper { display: flex; flex-wrap: wrap; gap: 8px; border: 1px solid var(--input-border); border-radius: 8px; background-color: var(--input-bg); padding: 6px 12px; min-height: 44px; align-items: center; transition: var(--transition); width: 100%; box-sizing: border-box; }
.tag-input-wrapper:focus-within { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(82, 196, 26, 0.15); transform: translateY(-1px); }
.tag-item { background: rgba(82, 196, 26, 0.1); color: var(--primary-color); padding: 4px 8px; border-radius: 4px; font-size: 13px; display: flex; align-items: center; gap: 6px; font-family: 'Roboto Mono', monospace; border: 1px solid rgba(82, 196, 26, 0.2); animation: fadeIn 0.2s ease-out; }
.tag-remove { cursor: pointer; font-weight: bold; opacity: 0.6; transition: var(--transition); display: inline-flex; }
.tag-remove:hover { opacity: 1; color: var(--error-color); transform: scale(1.1); }
.tag-input-field { border: none; outline: none; background: transparent; color: var(--text-color); font-family: 'Roboto Mono', monospace; font-size: 13px; flex: 1; min-width: 150px; height: 26px; }

/* === 5. 汇总信息面板 === */
.dns-summary-panel { display: none; grid-template-columns: 1fr 380px; gap: 20px; margin-bottom: 20px; align-items: start; }
.dns-summary-panel.active { display: grid; animation: fadeIn 0.5s ease-out forwards; }

.summary-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; gap: 16px; width: 100%; box-shadow: 0 4px 12px rgba(0,0,0,0.02); transition: var(--transition);}
.summary-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.05); border-color: rgba(114, 46, 209, 0.2); }
.summary-title { font-size: 15px; font-weight: 700; color: var(--text-color); border-bottom: 1px dashed var(--border-color); padding-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; }
.stat-box { background: var(--hover-bg); padding: 16px 12px; border-radius: 8px; border: 1px solid var(--border-color); display: flex; flex-direction: column; justify-content: center; transition: var(--transition); position: relative; overflow: hidden;}
.stat-box:hover { transform: translateY(-3px); background: var(--card-bg); box-shadow: 0 6px 16px rgba(0,0,0,0.06); border-color: var(--accent); }
.stat-label { font-size: 12px; color: var(--text-tertiary); margin-bottom: 6px; z-index: 1;}
.stat-value { font-size: 22px; font-weight: 800; color: var(--text-color); font-family: 'Roboto Mono', monospace; display: flex; align-items: baseline; gap: 4px; z-index: 1;}

.ip-dist-list { display: flex; flex-direction: column; gap: 10px; max-height: 260px; overflow-y: auto; padding-right: 6px; scroll-behavior: smooth; }
.ip-dist-list::-webkit-scrollbar { width: 4px; }
.ip-dist-list::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }

.ip-dist-item { border: 1px solid var(--border-color); background: var(--hover-bg); padding: 12px; border-radius: 8px; position: relative; transition: all 0.5s ease-out; cursor: default; }
.ip-dist-item:hover { transform: translateX(4px); border-color: var(--primary-color); box-shadow: 0 4px 12px rgba(114, 46, 209, 0.1); }
.ip-dist-bg { position: absolute; left: 0; top: 0; height: 100%; background: rgba(114, 46, 209, 0.08); z-index: 0; transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); border-radius: 8px; }
.ip-dist-content { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; min-height: 20px; }
.ip-dist-ip { font-family: 'Roboto Mono', monospace; font-size: 13px; font-weight: 700; color: var(--text-color); }
.ip-dist-percent { font-size: 16px; font-weight: 800; color: var(--primary-color); }

/* === 6. 解析地图样式 === */
.route-map-card { border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; background: var(--card-bg); margin-bottom: 20px; box-shadow: 0 4px 16px rgba(0,0,0,0.04); display: none; animation: fadeIn 0.6s ease-out forwards; }
.route-map-head { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--border-color); background: var(--hover-bg); }
.route-map-title { font-size: 14px; font-weight: 700; color: var(--text-color); display: flex; align-items: center; gap: 8px;}
.route-map-chart { height: 560px; width: 100%; }
@media (max-width: 992px) { .route-map-chart { height: 320px; } }

/* === 7. 详情表格 === */
.table-wrap { overflow-x: auto; overflow-y: hidden; border: 1px solid var(--border-color); border-radius: 12px; background: var(--card-bg); display: none; box-shadow: 0 4px 16px rgba(0,0,0,0.04); margin-bottom: 20px;}
.table-wrap::-webkit-scrollbar { height: 8px; }
.table-wrap::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
.table-wrap::-webkit-scrollbar-track { background: transparent; }

.table-wrap.active { display: block; animation: fadeIn 0.6s ease-out forwards; }
.dns-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 1200px; font-size: 13px; }

.dns-table th, .dns-table td { padding: 16px; border-bottom: 1px solid var(--border-color); text-align: left; vertical-align: top; }
.dns-table th { position: sticky; top: 0; z-index: 2; background: rgba(245, 247, 250, 0.95); backdrop-filter: blur(4px); color: var(--text-secondary); font-weight: 600; white-space: nowrap; padding: 14px 16px;}
:root.dark-mode .dns-table th, body.dark-mode .dns-table th { background: rgba(20, 20, 20, 0.95); }

.dns-table tbody tr { animation: slideInUp 0.4s ease-out forwards; opacity: 0; transform: translateY(10px); transition: background-color 0.2s; }
.dns-table tbody tr:hover { background: rgba(114, 46, 209, 0.03); }

.td-line-1 { min-height: 26px; display: flex; align-items: center; }
.td-line-2 { margin-top: 6px; display: flex; flex-direction: column; gap: 4px; }

.rcode-badge { padding: 3px 8px; border-radius: 6px; font-family: 'Roboto Mono', monospace; font-weight: 700; font-size: 11px; border: 1px solid transparent; line-height: 1;}
.rcode-noerror { background: rgba(82, 196, 26, 0.1); color: var(--primary-color); border-color: rgba(82, 196, 26, 0.3); }
.rcode-nxdomain { background: rgba(250, 173, 20, 0.1); color: var(--warning-color); border-color: rgba(250, 173, 20, 0.3); }
.rcode-servfail { background: rgba(255, 77, 79, 0.1); color: var(--error-color); border-color: rgba(255, 77, 79, 0.3); }

.proto-badge { font-size: 10px; color: var(--text-tertiary); border: 1px solid var(--border-color); padding: 3px 6px; border-radius: 4px; font-weight: bold; background: var(--card-bg); line-height: 1;}

.flags-box { display: flex; gap: 4px; flex-wrap: wrap; font-family: 'Roboto Mono', monospace; font-size: 10px; line-height: 1; }
.flag { padding: 4px 5px; border-radius: 4px; background: var(--border-color); color: var(--text-secondary); font-weight: bold; transition: var(--transition);}
.flag.active { background: rgba(24, 144, 255, 0.15); color: var(--info-color); }
.flag.auth { background: rgba(114, 46, 209, 0.15); color: var(--accent); }

.node-geo { font-weight: 600; color: var(--text-color); font-size: 13px; }
.sponsor-badge { font-size: 11px; padding: 2px 8px; border-radius: 4px; background: rgba(24, 144, 255, 0.1); color: #1890ff; font-weight: 600; border: 1px solid rgba(24, 144, 255, 0.2); white-space: nowrap; display: inline-block; transition: var(--transition);}
tr:hover .sponsor-badge { background: rgba(24, 144, 255, 0.15); }

.ip-result-item { padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px dashed var(--border-color); }
.ip-result-item:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }

.ip-value { font-family: 'Roboto Mono', monospace; font-size: 13px; font-weight: 600; color: var(--text-color); display: flex; align-items: center; flex-wrap: wrap; gap: 6px;}
.record-parsed { font-size: 11px; color: var(--info-color); background: rgba(24,144,255,0.08); padding: 2px 6px; border-radius: 4px; display: inline-block;}
.record-mx-pref { background: var(--accent); color: #fff; padding: 1px 6px; border-radius: 3px; font-size: 10px; font-weight: 700; margin-right: 4px; }
.ip-asn-geo { font-size: 11px; color: var(--text-tertiary); font-family: 'Inter', sans-serif; display: flex; align-items: center; gap: 6px;}
.ttl-val { font-family: 'Roboto Mono', monospace; font-size: 13px; font-weight: 600; color: var(--text-secondary);}

.tech-badge { font-size: 10px; padding: 2px 6px; border-radius: 4px; font-weight: 600; display: inline-flex; align-items: center; gap: 3px; border: 1px solid transparent; line-height: 1;}
.tech-badge.hijack-warn { color: var(--error-color); background: rgba(255, 77, 79, 0.1); border-color: rgba(255, 77, 79, 0.2); animation: pulse-red 2s infinite;}

.raw-btn { cursor: pointer; background: transparent; border: 1px solid var(--border-color); border-radius: 6px; height: 26px; padding: 0 10px; font-size: 12px; color: var(--text-secondary); transition: var(--transition); display: flex; align-items: center; gap: 4px; font-weight: 600; }
.raw-btn:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); transform: scale(1.05);}
.btn-loading { pointer-events: none; opacity: 0.8; }
.btn-loading .icon { animation: spin 1s linear infinite; display: inline-block; }

.status-bar { margin-bottom: 16px; color: var(--text-secondary); font-size: 14px; opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; gap: 8px; font-weight: 500;}
.pulse-dot { width: 10px; height: 10px; background-color: var(--primary-color); border-radius: 50%; animation: pulse 1.5s infinite; }

/* === 8. FAQ 区 & Legend === */
.page-info { border: 1px solid var(--border-color); border-radius: 12px; background: var(--card-bg); padding: 20px; margin-bottom: 12px; margin-top: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.02);}
.page-info h2 { font-size: 17px; line-height: 1.4; margin: 0 0 12px; color: var(--text-color); }
.page-info p { margin: 0 0 10px; color: var(--text-secondary); font-size: 14px; line-height: 1.65; }
.page-info ul { margin: 0 0 12px; padding-left: 18px; color: var(--text-secondary); font-size: 14px; line-height: 1.65; }
.page-info details { border-top: 1px dashed var(--border-color); margin-top: 10px; padding-top: 10px; }
.page-info summary { cursor: pointer; color: var(--text-color); font-weight: 600; font-size: 14px; outline: none; }

.legend-panel { border: 1px solid var(--border-color); border-radius: 12px; padding: 20px; background: var(--hover-bg); margin-top: 20px; display: block; margin-bottom: 20px;}
.legend-panel.active { display: block; animation: fadeIn 0.8s ease-out forwards; }
.legend-panel h4 { margin: 0 0 16px 0; color: var(--text-color); font-size: 15px; display: flex; align-items: center; gap: 8px;}
.legend-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.legend-item { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--text-secondary); line-height: 1.5;}
.legend-item .flag { flex-shrink: 0; margin-top: 2px;}
.legend-item b { color: var(--text-color); }

/* Dig Modal - Overlay */
#dnsModal { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; backdrop-filter: blur(4px); transition: all 0.3s var(--ease-out, cubic-bezier(0.16,1,0.3,1)); }
#dnsModal.show { opacity: 1; visibility: visible; }

/* Dig Modal - Box */
.dig-modal-box { background: var(--card-bg); width: 92%; max-width: 720px; border-radius: 20px; border: 1px solid var(--border-color); box-shadow: 0 20px 60px -10px rgba(0,0,0,0.3); transform: scale(0.95) translateY(10px); transition: all 0.35s var(--ease-bounce, cubic-bezier(0.34,1.56,0.64,1)); display: flex; flex-direction: column; overflow: hidden; max-height: 85vh; }
#dnsModal.show .dig-modal-box { transform: scale(1) translateY(0); }

/* Dig Modal - Header */
.dig-modal-header { padding: 18px 24px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.dig-modal-title { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; color: var(--text-color); }
.dig-modal-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(114,46,209,0.1); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.dig-modal-close { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-tertiary); font-size: 20px; transition: all 0.2s; line-height: 1; }
.dig-modal-close:hover { background: rgba(255,77,79,0.1); color: var(--error-color); }

/* Dig Modal - Meta info bar */
.dig-modal-meta { padding: 12px 24px; background: var(--hover-bg); border-bottom: 1px solid var(--border-color); display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--text-secondary); flex-shrink: 0; }
.dig-meta-item { display: flex; align-items: center; gap: 5px; }
.dig-meta-label { color: var(--text-tertiary); }
.dig-meta-value { font-family: 'Roboto Mono', monospace; font-weight: 600; color: var(--text-color); }

/* Dig Modal - Body */
.dig-modal-body { flex: 1; overflow-y: auto; padding: 0; min-height: 0; }
.dig-code-block { padding: 20px 24px; background: #1a1a2e; color: #d4d4d4; font-family: 'Roboto Mono', monospace; font-size: 13px; white-space: pre-wrap; word-break: break-all; line-height: 1.7; min-height: 200px; }
body.dark-mode .dig-code-block { background: #0d0d1a; }

/* Dig Modal - Footer */
.dig-modal-footer { padding: 16px 24px; border-top: 1px solid var(--border-color); display: flex; justify-content: flex-end; gap: 12px; flex-shrink: 0; }
.dig-modal-footer .btn { height: 40px; padding: 0 20px; border-radius: 10px; font-size: 13px; font-weight: 600; }
.dig-modal-footer .btn-secondary { background: var(--hover-bg); color: var(--text-secondary); border: 1px solid var(--border-color); }
.dig-modal-footer .btn-secondary:hover { background: var(--border-color); color: var(--text-color); }
.dig-modal-footer .btn-primary { background: var(--primary-color); color: #fff; }

/* === 10. 动画 === */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(114, 46, 209, 0.6); } 70% { box-shadow: 0 0 0 8px rgba(114, 46, 209, 0); } 100% { box-shadow: 0 0 0 0 rgba(114, 46, 209, 0); } }
@keyframes pulse-red { 0% { box-shadow: 0 0 0 0 rgba(255, 77, 79, 0.4); } 70% { box-shadow: 0 0 0 4px rgba(255, 77, 79, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 77, 79, 0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInUp { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* === 11. 响应式 === */
@media (max-width: 992px) {
    .dns-summary-panel {
        grid-template-columns: 1fr;
    }
    .control-row {
        flex-direction: column;
        align-items: stretch;
    }
    .input-group {
        flex-direction: column;
    }
    .input-addon-group {
        min-width: 100%;
    }
    .inline-actions {
        justify-content: center;
    }
}

/** asdf **/