@charset "UTF-8";
* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    background: url('./watermark-icon.png');
}

.tips {
    padding: 20px 12px 0;
    text-align: center;
    color: #999999;
    display: none;
}

.content {
    padding: 12px;
}

.content li:not(:last-child) {
    margin-bottom: 10px;
}

.content li .dict-name {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.content li .dict-name .decoration {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #108ee9;
}

.content li .dict-name .decoration::after {
    content: ' ';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    left: 4px;
    top: 4px;
}

.content li .dict-value {
    color: #666;
}