.sym-page {
    padding: 0;
}

.sym-header {
    margin-bottom: 24px;
}

    .sym-header h2 {
        margin: 0 0 8px 0;
        font-size: 26px;
        color: #0a1430;
        font-weight: 700;
    }

    .sym-header p {
        margin: 0;
        color: #666;
        font-size: 13px;
    }

        .sym-header p .hl {
            color: #1890ff;
            font-weight: 600;
        }

.sym-search-card {
    background: #fff;
    border-radius:4px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f5;
    margin-bottom: 20px;
}

.sym-search-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

    .sym-search-row .sym-input-wrap {
        position: relative;
        min-width: 240px;
    }

        .sym-search-row .sym-input-wrap svg {
            position: absolute;
            left: 13px;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            stroke: #999;
        }

    .sym-search-row #inpkey {
        width: 100%;
        height: 42px;
        padding: 0 14px 0 40px;
        border: 1.5px solid #e4e7ec;
        border-radius: 4px;
        font-size: 13px;
        box-sizing: border-box;
        transition: border-color 0.2s;
    }

        .sym-search-row #inpkey:focus {
            outline: none;
            border-color: #1890ff;
            box-shadow: 0 0 0 3px rgba(24,144,255,0.1);
        }

    .sym-search-row #seltype {
        height: 42px;
        padding: 0 12px;
        border: 1.5px solid #e4e7ec;
        border-radius: 4px;
        font-size: 13px;
        background: #fff;
        min-width: 180px;
        transition: border-color 0.2s;
    }

        .sym-search-row #seltype:focus {
            outline: none;
            border-color: #1890ff;
        }

.sym-btn-search {
    height: 42px;
    padding: 0 28px;
    background: linear-gradient(135deg, #1890ff, #00d0ff);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(24,144,255,0.3);
}

    .sym-btn-search:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(24,144,255,0.4);
    }

.sym-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed #eee;
}

.sym-cats-label {
    font-size: 13px;
    color: #888;
    margin-right: 4px;
    display: flex;
    align-items: center;
    line-height: 32px;
}

.sym-cat-tag {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 14px;
    border-radius: 16px;
    background: #f5f7fa;
    color: #555;
    font-size: 12px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s;
    user-select: none;
}

    .sym-cat-tag:hover {
        background: #e8f4ff;
        color: #1890ff;
    }

    .sym-cat-tag.active {
        background: linear-gradient(135deg, #1890ff, #00d0ff);
        color: #fff;
        border-color: transparent;
        font-weight: 500;
        box-shadow: 0 2px 8px rgba(24,144,255,0.3);
    }

.sym-sub-filter {
    margin-top: 16px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

    .sym-sub-filter:empty {
        display: none;
        padding: 0;
        margin: 0;
    }

    .sym-sub-filter a {
        display: inline-flex;
        align-items: center;
        height: 28px;
        padding: 0 12px;
        border-radius: 6px;
        background: #fff;
        color: #555;
        font-size: 12px;
        text-decoration: none;
        border: 1px solid #e4e7ec;
        transition: all 0.15s;
    }

        .sym-sub-filter a:hover {
            background: #1890ff;
            color: #fff;
            border-color: #1890ff;
        }

#spanmsg {
    display: block;
    padding: 10px 16px;
    background: #fff7ed;
    color: #ea580c;
    border-radius: 8px;
    font-size: 13px;
    border-left: 3px solid #f97316;
    margin-bottom: 16px;
}

    #spanmsg:empty {
        display: none;
        padding: 0;
        margin: 0;
        border: none;
    }

.sym-result-card {
    background: #fff;
    border-radius: 4px;
    /*box-shadow: 0 2px 16px rgba(0,0,0,0.06);*/
    border: 1px solid #dedede;
    overflow: hidden;
}

    .sym-result-card table {
        width: 100%;
        border-collapse: collapse;
        font-size: 12px;
    }

    .sym-result-card thead {
        display: none;
    }

    .sym-result-card tbody tr:first-child td {
        background: #f3f1ff;
        font-weight: 600;
        color: #777777;
        font-size: 13px;
        border-bottom: 1px solid #dedede;
    }

        .sym-result-card tbody tr:first-child td:first-child {
            border-top-left-radius: 8px;
        }

        .sym-result-card tbody tr:first-child td:last-child {
            border-top-right-radius: 4px;
        }

    .sym-result-card td {
        padding: 8px 16px;
        border-bottom: 1px solid #f5f5f7;
        vertical-align: middle;
    }

    .sym-result-card tbody tr:not(:first-child):hover td {
        background: #f8fbff;
    }

    .sym-result-card tbody tr:last-child td {
        border-bottom: none;
    }

    .sym-result-card td a {
        color: #1890ff;
        text-decoration: none;
        font-weight: 500;
    }

        .sym-result-card td a:hover {
            text-decoration: underline;
        }

    .sym-result-card .sym-col-contract {
        width: 22%;
    }

    .sym-result-card .sym-col-product {
        width: 10%;
        color: #666;
        font-family: monospace;
        font-size: 12px;
    }

    .sym-result-card .sym-col-name {
        width: 35%;
        color: #333;
    }

    .sym-result-card .sym-col-market {
        width: 18%;
        text-align: center;
    }

    .sym-result-card .sym-col-region {
        width: 15%;
        color: #666;
    }

.sym-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    margin-right: 4px;
}

.sym-badge-main {
    background: #fff4e6;
    color: #ea580c;
}

.sym-badge-cont {
    background: #fef3c7;
    color: #b45309;
}

.sym-type-badge {
    display: inline-block;
    padding: 2px 6px;
    background: #eef2ff;
    color: #4f46e5;
    border-radius: 4px;
    font-size: 11px;
    margin-left: 4px;
}

.sym-chart-icon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #1890ff;
    font-weight: 500;
}

    .sym-chart-icon img {
        vertical-align: middle;
    }

.sym-ltd {
    color: #999;
    font-size: 12px;
    margin-left: 6px;
}

.sym-pager {
    padding: 16px 20px;
    text-align: center;
    background: #fafbfc;
    border-top: 1px solid #f0f0f5;
}

    .sym-pager a {
        display: inline-block;
        padding: 6px 14px;
        background: #fff;
        color: #1890ff;
        border: 1px solid #e4e7ec;
        border-radius: 6px;
        text-decoration: none;
        font-size: 13px;
        margin: 0 4px;
        transition: all 0.15s;
    }

        .sym-pager a:hover {
            background: #1890ff;
            color: #fff;
            border-color: #1890ff;
        }

.sym-stats {
    padding: 12px 20px;
    text-align: center;
    color: #888;
    font-size: 12px;
    background: #fafbfc;
    border-top: 1px dashed #eee;
}

    .sym-stats b {
        color: #1890ff;
    }

.sym-loading {
    padding: 40px;
    text-align: center;
}

.sym-empty {
    padding: 60px 20px;
    text-align: center;
    color: #999!important;
    font-size: 13px;
}

    .sym-empty svg {
        width: 64px;
        height: 64px;
        stroke: #ccc;
        margin-bottom: 12px;
    }
