.output
{
    font-size: medium;
    font-weight: 600;
    background-color: #f6f99c; /* 背景颜色 */
    color: #232323c8; /* 字体颜色 */
    border: 2px solid #1f1d1d; /* 边框颜色 */
    padding: 8px; /* 内边距 */
    border-radius: 12px; /* 圆角边框 */
    height: 22px; /* 最小高度 */
    width: 160px; /* 宽度 */
    user-select: all; /* 禁用文本选择 */
    margin-top: 12px;
    margin-bottom: 10px;
    text-align: center; /* 文本居中 */
    margin-left: auto;
    margin-right: auto;
    transition: all 0.15s ease;
    line-height: 160%;
}
.output:hover
{
    scale: 1.1;
}