#basket{
    th {
        white-space:nowrap;   zborder:dotted 1px;
        padding:.35em 0;
        &.title {
            display:flex;
            flex-flow:row wrap;
            justify-content:space-between;
            align-items:center;
            gap:7px;
            :first-child{
                flex-grow:1;
                text-align:left;
                padding-left:.7em;
            }
        }
    }
    a{
        padding:0 .5em;
        margin:.2em;
        font-weight:600;
        font-size:smaller;
        background:#eee;
        border:outset 1px #ddd;
        border-radius:var(--radius-small);
        &.del{color:red; border:none}
    }
    tbody {
        td:first-child {
            text-align:left;
            span{
              padding:0 7px;
              font-size:smaller;
              color:#666;
            }
            p {
                font-weight:500;
                font-size:18px;
            }
        }
        td:last-child {
            padding: 0;
            p {
                white-space:nowrap;
            }
            .num{
                display:inline-block;
                width:2em;
                background:#eee;
            }
        }
    }
}