.chip {
    font-family: "UniversLTStd-Cn", sans-serif;
    font-size: 1rem;
    line-height: 16px;
    font-weight: 100;
    color: #666;
    background-color: #D1D4D3;
    display: inline-block;
    padding: 0.625rem 0.75rem;
    margin: 0.3125rem 0.1875rem 0.3125rem 0;
    cursor: pointer;
    transition: all 0.2s;
}

.chip:hover {
    color: #0046AD;
    background-color: #EEF2F4;
}

.chip.selected {
    color: #0046AD;
    background-color: #EEF2F4;
    padding: 0.625rem 0.5rem;
}

.chip.selected .close {
    font-size: 1.375rem;
    line-height: 0.6;
    font-weight: 100;
    color: #0046AD;
    margin-left: 0.5625rem;
    opacity: 1;
    cursor: pointer;
}