/* ============================================================
   期货开户页 — futures/index.css
   ============================================================ */
:root {
    --ft-primary:   #ff7244;
    --ft-primary-d: #e85d30;
    --ft-primary-l: rgba(255,114,68,.1);
    --ft-bg:        #f0f2f5;
    --ft-surface:   #ffffff;
    --ft-border:    #eaecef;
    --ft-text-1:    #1a1d24;
    --ft-text-2:    #6b7280;
    --ft-text-3:    #9ca3af;
    --ft-success:   #22c55e;
    --ft-radius:    16px;
    --ft-radius-sm: 10px;
    --ft-shadow:    0 2px 12px rgba(0,0,0,.08);
    --ft-shadow-lg: 0 8px 32px rgba(0,0,0,.13);
}

/* ── 页面 ──────────────────────────────────── */
.ft-page {
    min-height: calc(100vh - 140px);
    background: var(--ft-bg);
    padding-bottom: 80px;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* ── Hero Banner ───────────────────────────── */
.ft-hero {
    background: linear-gradient(135deg, #1a1d24 0%, #23263a 55%, #1f2235 100%);
    position: relative;
    overflow: hidden;
}
.ft-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,114,68,.18) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff7244' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.ft-hero-inner {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto;
    padding: 56px 32px 48px;
}
.ft-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 14px;
    background: rgba(255,114,68,.15);
    border: 1px solid rgba(255,114,68,.3);
    border-radius: 20px;
    font-size: 12px; color: var(--ft-primary);
    font-weight: 600; letter-spacing: 1px;
    margin-bottom: 20px;
}
.ft-hero-badge span {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--ft-primary);
    animation: ftPulse 1.8s ease-in-out infinite;
}
@keyframes ftPulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.7); }
}
.ft-hero-text h1 {
    font-size: 38px; font-weight: 800;
    color: #fff; margin: 0 0 12px;
    letter-spacing: -1px; line-height: 1.2;
}
.ft-hero-text p {
    font-size: 15px; color: rgba(255,255,255,.55);
    margin: 0 0 32px;
}
.ft-hero-stats {
    display: flex; align-items: center; gap: 0;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 16px 28px;
    display: inline-flex;
}
.ft-stat {
    display: flex; flex-direction: column; align-items: center;
    padding: 0 24px;
}
.ft-stat strong {
    font-size: 22px; font-weight: 800;
    color: var(--ft-primary); line-height: 1.2;
}
.ft-stat span { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 3px; }
.ft-stat-divider {
    width: 1px; height: 36px;
    background: rgba(255,255,255,.12);
}
/* 装饰 */
.ft-hero-deco { position: absolute; right: 0; top: 0; bottom: 0; width: 45%; pointer-events: none; }
.ft-deco-orb {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,114,68,.2) 0%, transparent 70%);
}
.ft-deco-orb-1 { width: 360px; height: 360px; top: -80px; right: -60px; }
.ft-deco-orb-2 { width: 220px; height: 220px; bottom: -40px; right: 120px; background: radial-gradient(circle, rgba(255,180,68,.15) 0%, transparent 70%); }
.ft-deco-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ── 主体双栏 ──────────────────────────────── */
.ft-main {
    max-width: 1200px; margin: 0 auto;
    padding: 32px 20px 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    align-items: start;
}

/* ── 左侧列表面板 ──────────────────────────── */
.ft-list-panel {
    background: var(--ft-surface);
    border-radius: var(--ft-radius);
    border: 1px solid var(--ft-border);
    overflow: hidden;
    box-shadow: var(--ft-shadow);
    position: sticky; top: 80px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    min-width: 0;
}
.ft-list-panel::-webkit-scrollbar { width: 4px; }
.ft-list-panel::-webkit-scrollbar-track { background: transparent; }
.ft-list-panel::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 4px; }

.ft-panel-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 22px 16px;
    border-bottom: 1px solid var(--ft-border);
    position: sticky; top: 0;
    background: var(--ft-surface); z-index: 10;
}
.ft-panel-head h2 {
    font-size: 16px; font-weight: 700; color: var(--ft-text-1);
    margin: 0;
    display: flex; align-items: center; gap: 8px;
}
#ft-count {
    font-size: 12px; color: var(--ft-text-3);
    background: var(--ft-bg);
    padding: 3px 10px; border-radius: 10px;
}
.ft-type-stats {
    display: flex; gap: 6px;
}
.ft-type-chip {
    display: inline-flex; align-items: center; justify-content: center;
    height: 22px; padding: 0 8px; border-radius: 11px;
    font-size: 11px; font-weight: 600;
}
.ft-type-chip-stock {
    color: #0b6bf2;
    background: rgba(11,107,242,.12);
    border: 1px solid rgba(11,107,242,.22);
}
.ft-type-chip-futures {
    color: var(--ft-primary);
    background: rgba(255,114,68,.12);
    border: 1px solid rgba(255,114,68,.22);
}

/* 骨架屏 */
.ft-skeleton-wrap { padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.ft-skeleton-card {
    height: 90px; border-radius: 12px;
    background: linear-gradient(90deg, #e8eaed 25%, #f3f4f6 50%, #e8eaed 75%);
    background-size: 200% 100%;
    animation: ftShimmer 1.4s infinite;
}
@keyframes ftShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* 公司列表 */
.ft-companies { padding: 10px 10px; display: flex; flex-direction: column; gap: 8px; }

/* 公司卡片 */
.ft-company-card {
    border: 1.5px solid var(--ft-border);
    border-radius: 13px;
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    animation: ftFadeUp .4s ease both;
    position: relative; overflow: hidden;
    min-width: 0;
}
@keyframes ftFadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ft-company-card::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--ft-primary);
    transform: scaleY(0); transition: transform .2s ease;
    border-radius: 3px 0 0 3px;
}
.ft-company-card:hover { border-color: rgba(255,114,68,.35); box-shadow: 0 4px 16px rgba(255,114,68,.1); }
.ft-company-card:hover::before { transform: scaleY(1); }
.ft-company-card.active {
    border-color: var(--ft-primary);
    box-shadow: 0 4px 20px rgba(255,114,68,.18);
    background: rgba(255,114,68,.02);
}
.ft-company-card.active::before { transform: scaleY(1); }

.ft-company-card-top {
    display: flex; align-items: center; gap: 12px;
}
.ft-company-logo-wrap { flex-shrink: 0; }
.ft-company-logo {
    width: 46px; height: 46px; border-radius: 10px;
    object-fit: contain; background: #f8f9fa;
    border: 1px solid #f0f0f0; padding: 4px;
}
.ft-company-logo-placeholder {
    width: 46px; height: 46px; border-radius: 10px;
    background: linear-gradient(135deg, var(--ft-primary), #ffb347);
    color: #fff; font-size: 14px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.ft-company-card-info { flex: 1; min-width: 0; }
.ft-company-card-name {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 700; color: var(--ft-text-1);
    margin-bottom: 3px;
}
.ft-company-card-name span {
    min-width: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ft-type-badge {
    display: inline-flex; align-items: center; justify-content: center;
    height: 20px; padding: 0 8px; border-radius: 10px;
    font-size: 11px; font-weight: 600; flex-shrink: 0;
    font-style: normal;
}
.ft-type-1 {
    color: #0b6bf2;
    background: rgba(11,107,242,.12);
    border: 1px solid rgba(11,107,242,.22);
}
.ft-type-3 {
    color: var(--ft-primary);
    background: rgba(255,114,68,.12);
    border: 1px solid rgba(255,114,68,.22);
}
.ft-company-card-desc {
    font-size: 12px; color: var(--ft-text-3);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ft-company-card-arrow {
    width: 18px; height: 18px; color: var(--ft-text-3);
    flex-shrink: 0; transition: transform .2s, color .2s;
}
.ft-company-card-arrow svg { width: 100%; height: 100%; }
.ft-company-card:hover .ft-company-card-arrow,
.ft-company-card.active .ft-company-card-arrow {
    transform: translateX(3px); color: var(--ft-primary);
}
.ft-company-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.ft-tag {
    font-size: 11px; padding: 2px 8px;
    background: var(--ft-primary-l); color: var(--ft-primary);
    border-radius: 8px; font-weight: 500;
}
.ft-company-card-action {
    display: none;
}

/* 空状态 */
.ft-empty { text-align: center; padding: 60px 20px; }
.ft-empty svg { width: 64px; height: 64px; margin: 0 auto 14px; display: block; }
.ft-empty p { font-size: 14px; color: var(--ft-text-3); margin: 0; }

/* ── 右侧表单面板 ──────────────────────────── */
.ft-form-panel {
    background: linear-gradient(135deg, var(--ft-surface) 0%, rgba(255,114,68,.02) 100%);
    border-radius: var(--ft-radius);
    border: 1px solid var(--ft-border);
    box-shadow: var(--ft-shadow);
    position: sticky; top: 80px;
    overflow: hidden;
}

/* 默认占位 */
.ft-form-placeholder {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 80px 32px;
    text-align: center;
    color: var(--ft-text-3);
}
.ft-form-placeholder svg {
    width: 64px; height: 64px;
    margin-bottom: 18px; opacity: .5;
}
.ft-form-placeholder p {
    font-size: 15px; font-weight: 600;
    color: var(--ft-text-2); margin: 0 0 6px;
}
.ft-form-placeholder span {
    font-size: 13px; color: var(--ft-text-3);
}

/* 表单容器 */
.ft-form-wrap { padding: 28px 28px 32px; }

/* 公司信息头 */
.ft-form-company {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 18px;
    background: var(--ft-bg);
    border-radius: 12px;
    margin-bottom: 20px;
}
#ft-form-logo {
    width: 52px; height: 52px; border-radius: 10px;
    object-fit: contain; background: #fff;
    border: 1px solid var(--ft-border); padding: 4px;
    flex-shrink: 0;
}
.ft-form-company-info { flex: 1; min-width: 0; }
.ft-form-company-name {
    font-size: 15px; font-weight: 700; color: var(--ft-text-1);
    margin-bottom: 4px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ft-form-company-desc {
    font-size: 12px; color: var(--ft-text-3);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* 特权区 */
.ft-privileges {
    background: linear-gradient(135deg, rgba(255,114,68,.07) 0%, rgba(255,179,68,.05) 100%);
    border: 1px solid rgba(255,114,68,.18);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 22px;
}
.ft-privileges-title {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 700; color: var(--ft-primary);
    margin-bottom: 12px;
}
.ft-privileges-title svg { width: 16px; height: 16px; flex-shrink: 0; }
.ft-privileges-list { display: flex; flex-wrap: wrap; gap: 7px; }
.ft-privilege-tag {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; color: var(--ft-text-1);
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(255,114,68,.2);
    border-radius: 8px; padding: 4px 10px;
}
.ft-privilege-tag svg { width: 12px; height: 12px; flex-shrink: 0; }

/* 表单字段 */
.ft-field {
    margin-bottom: 18px;
}
.ft-field label {
    display: block;
    font-size: 13px; font-weight: 600; color: var(--ft-text-2);
    margin-bottom: 7px;
}
.ft-required { color: #ef4444; }
.ft-field input[type=text],
.ft-field input[type=tel] {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--ft-border);
    border-radius: 10px;
    font-size: 14px; color: var(--ft-text-1);
    background: var(--ft-surface);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    -webkit-appearance: none;
}
.ft-field input[type=text]:focus,
.ft-field input[type=tel]:focus {
    border-color: var(--ft-primary);
    box-shadow: 0 0 0 3px rgba(255,114,68,.12);
}
.ft-field input::placeholder { color: var(--ft-text-3); }

/* 单选手机类型 */
.ft-radio-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--ft-text-1);
    cursor: pointer; margin-bottom: 8px;
}
.ft-radio-label input[type=radio] { accent-color: var(--ft-primary); }
#ft-mobile-input-wrap { margin-top: 8px; }

/* 验证码行 */
.ft-code-row {
    display: flex; gap: 10px;
}
.ft-code-row input {
    flex: 1;
    padding: 11px 14px;
    border: 1.5px solid var(--ft-border);
    border-radius: 10px;
    font-size: 14px; color: var(--ft-text-1);
    outline: none; transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
}
.ft-code-row input:focus {
    border-color: var(--ft-primary);
    box-shadow: 0 0 0 3px rgba(255,114,68,.12);
}
.ft-send-code-btn {
    flex-shrink: 0;
    padding: 0 16px; height: 44px;
    background: var(--ft-primary-l);
    color: var(--ft-primary);
    border: 1.5px solid rgba(255,114,68,.3);
    border-radius: 10px;
    font-size: 13px; font-weight: 600;
    cursor: pointer; white-space: nowrap;
    transition: background .2s, color .2s;
}
.ft-send-code-btn:hover { background: rgba(255,114,68,.18); }
.ft-send-code-btn.disabled { color: var(--ft-text-3); background: var(--ft-bg); border-color: var(--ft-border); cursor: not-allowed; }

/* 隐私协议 */
.ft-agree {
    margin-bottom: 12px;
}
.ft-agree label {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 12px; color: var(--ft-text-2); cursor: pointer;
    line-height: 1.6;
}
.ft-agree input[type=checkbox] {
    margin-top: 2px; flex-shrink: 0;
    accent-color: var(--ft-primary);
    width: 15px; height: 15px;
}
.ft-agree a { color: var(--ft-primary); text-decoration: none; }
.ft-agree a:hover { text-decoration: underline; }

/* 提示文字 */
.ft-notice {
    display: flex; align-items: flex-start; gap: 6px;
    font-size: 12px; color: var(--ft-text-3);
    background: var(--ft-bg); border-radius: 8px;
    padding: 10px 12px; margin-bottom: 20px; line-height: 1.6;
}
.ft-notice svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; }

/* 提交按钮 */
.ft-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--ft-primary) 0%, #ffb347 100%);
    color: #fff;
    border: none; border-radius: 12px;
    font-size: 16px; font-weight: 700;
    cursor: pointer; letter-spacing: .5px;
    box-shadow: 0 4px 18px rgba(255,114,68,.35);
    transition: transform .18s, box-shadow .18s, opacity .18s;
    position: relative; overflow: hidden;
}
.ft-submit-btn::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,.18) 100%);
    pointer-events: none;
}
.ft-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,114,68,.45); }
.ft-submit-btn:active { transform: translateY(0); }
.ft-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── 成功状态 ──────────────────────────────── */
.ft-success {
    text-align: center; padding: 40px 20px;
}
.ft-success-icon { margin-bottom: 20px; }
.ft-success-icon svg { width: 64px; height: 64px; }
.ft-success h3 {
    font-size: 20px; font-weight: 800; color: var(--ft-text-1);
    margin: 0 0 10px;
}
.ft-success p {
    font-size: 14px; color: var(--ft-text-2);
    line-height: 1.7; margin: 0 0 24px;
}
.ft-success strong { color: var(--ft-primary); }
.ft-qrcode-wrap {
    background: var(--ft-bg); border-radius: 14px;
    padding: 20px; margin-bottom: 24px;
}
.ft-qrcode-title {
    font-size: 13px; font-weight: 600; color: var(--ft-text-2);
    margin-bottom: 14px;
}
.ft-qrcode-wrap img {
    max-width: 160px; border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.ft-back-btn {
    display: inline-block;
    padding: 10px 28px;
    border: 1.5px solid var(--ft-border);
    border-radius: 10px;
    font-size: 14px; font-weight: 600;
    color: var(--ft-text-2); background: none;
    cursor: pointer; transition: border-color .2s, color .2s;
}
.ft-back-btn:hover { border-color: var(--ft-primary); color: var(--ft-primary); }

/* ── 已预约（不展示表单）──────────────────── */
.ft-already-wrap {
    padding: 8px 0 24px;
}
.ft-already-banner {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 18px; margin-bottom: 20px;
    background: rgba(34, 197, 94, .08);
    border: 1px solid rgba(34, 197, 94, .2);
    border-radius: var(--ft-radius-sm);
}
.ft-already-title {
    font-size: 17px; font-weight: 800; color: var(--ft-text-1);
    margin: 0 0 6px;
}
.ft-already-sub {
    font-size: 13px; color: var(--ft-text-2); margin: 0;
    line-height: 1.5;
}
.ft-already-wechat { margin-bottom: 8px; }
.ft-already-open {
    background: var(--ft-bg); border-radius: 14px;
    padding: 20px; margin-bottom: 20px; text-align: center;
}
.ft-open-qr-box img {
    max-width: 200px; width: 100%; height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,.1);
    margin-bottom: 16px;
}
.ft-quick-open-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 200px; padding: 12px 28px;
    background: linear-gradient(135deg, var(--ft-primary) 0%, #ffb347 100%);
    color: #fff !important; text-decoration: none;
    font-size: 15px; font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(255,114,68,.35);
    transition: transform .2s, box-shadow .2s;
}
.ft-quick-open-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255,114,68,.45);
}

/* ── 响应式 ────────────────────────────────── */
@media (max-width: 900px) {
    .ft-page {
        overflow-x: hidden;
    }
    .ft-main {
        grid-template-columns: 1fr;
        padding: 16px 12px 0;
        width: 100%;
        box-sizing: border-box;
    }
    .ft-form-panel { display: none; }
    .ft-list-panel {
        position: static;
        max-height: none;
        overflow: visible;
        width: 100%;
        box-sizing: border-box;
        min-width: 0;
    }
    .ft-panel-head {
        width: 100%;
        box-sizing: border-box;
        min-width: 0;
        overflow: hidden;
    }
    .ft-panel-head h2 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
        flex-shrink: 1;
    }
    #ft-count {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .ft-companies { 
        gap: 10px;
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    .ft-company-card {
        width: 100%;
        box-sizing: border-box;
        min-width: 0;
    }
    .ft-company-card-top {
        min-width: 0;
    }
    .ft-company-card-info {
        flex: 1;
        min-width: 0;
    }
    .ft-company-card-action {
        display: block;
        margin-top: 12px;
        padding: 9px 0;
        text-align: center;
        background: linear-gradient(135deg, var(--ft-primary) 0%, #ffb347 100%);
        color: #fff; border-radius: 9px;
        font-size: 14px; font-weight: 700;
        letter-spacing: .5px;
        box-shadow: 0 3px 12px rgba(255,114,68,.3);
    }
    .ft-hero-inner { padding: 36px 16px 32px; }
    .ft-hero-text h1 { font-size: 26px; }
    .ft-hero-stats { padding: 12px 16px; max-width: 100%; box-sizing: border-box; }
    .ft-stat { padding: 0 14px; }
    .ft-stat strong { font-size: 18px; }
    .ft-hero-deco { display: none; }
}
@media (max-width: 480px) {
    .ft-hero-inner { padding: 28px 12px 24px; }
    .ft-hero-text h1 { font-size: 22px; }
    .ft-hero-stats {
        display: grid;
        grid-template-columns: 1fr 1px 1fr 1px 1fr;
        width: 100%;
        box-sizing: border-box;
    }
    .ft-stat { padding: 0 8px; }
    .ft-companies {
        padding: 8px;
        gap: 8px;
    }
    .ft-company-card {
        padding: 12px 14px;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .ft-company-card-top {
        gap: 10px;
        min-width: 0;
    }
    .ft-company-logo {
        width: 42px;
        height: 42px;
    }
    .ft-company-logo-placeholder {
        width: 42px;
        height: 42px;
        font-size: 12px;
    }
    .ft-company-card-name {
        font-size: 13px;
    }
    .ft-company-card-desc {
        font-size: 11px;
    }
    .ft-company-card-arrow {
        width: 16px;
        height: 16px;
    }
    .ft-tag {
        font-size: 10px;
        padding: 2px 6px;
    }
    .ft-company-card-action {
        font-size: 13px;
        padding: 8px 0;
        margin-top: 10px;
    }
}

