.text-container {
    padding: 10px;
    display: flex; /* 使用Flexbox布局 */
    justify-content: space-between; /* 两个子元素分别位于容器两端 */
    align-items: flex-start; /* 子元素在交叉轴上向起始位置对齐 */
}
.text-left{
    align-self: flex-start; /* 子元素在主轴上向起始位置对齐 */
    text-align: left; /* 文本内容向左对齐 */
}
.text-right {
    align-self: flex-end; /* 子元素在主轴上向结束位置对齐 */
    text-align: right; /* 文本内容向右对齐 */
    font-size: 13px;
    color: red;
}
.text-red{
    color: red;
    text-decoration: none; /* 去掉下划线 */
    transition: none; /* 移除过渡效果，因为点击时不希望背景颜色变化 */
}

.text-left,
.text-right {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}