.row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;

    .valueStyle {
        padding: 4px 11px;
        color: #4A4A4A;
        font-size: 14px;
        line-height: 1.5;
        border: 1px solid #d9d9d9;
        border-radius: 4px;
        transition: all 0.3s;
        // word-break: break-all;  // 切分所有
        word-break: break-word; // 切分文字
        // height: 30.8px;

        &:hover {
            border-color: #3fa4fc;
        }
    }

    .keyStyle {
        // TODO:文字不知道高度的情况下实现垂直居中
        text-align: right;
        // line-height: 30.8px;
    }
}
