body{
    background-color: #f4f7f9;
}
h1{
    font-size: 2em;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}
.box{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box .center{
    /* width: 60%; */
    /* 改用限制最大长度，从而满足手机屏幕自适应 */
    max-width: 90vw;
    margin-top: 30px;
    background-color: #fff;
}
.box .content {
    padding: 30px 50px 30px 50px;
    border-bottom: 2px solid #e2e8f0;
}
.box .column{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    color: #7c7d7e;
}
/* 各span 行间距 */
.box .column span{
    line-height: 30px;
}
/* Board */
.Board{
    display: flex;
    flex-direction: column;
    background-color: #f7f7f7;
    color: #e2e8f0;
    border-radius: 5px;
    margin-bottom: 10px;
}
.Board .BoardHead{
    width: 100%;
    height: 30px;
    color: black;
    font-size: 15px;
    border-radius: 5px 5px 0px 0px;
    background-color: #e4e4e4;
}
.Board .BoardHead .title{
    margin-left: 10px; 
    color: #7e7d7d; 
    font-size: 12px;
}
.Board .BoardHead button{
    height: 100%;
    margin-right: 20px;
    background-color: #e4e4e4;
    float: right;
    border: none;
}
.Board .BoardHead button:hover .icon{
    fill: #2c2c2c;
}
.Board .BoardHead button:hover .icon{
    fill: #ff0000;
    cursor: pointer;
}
.Board .BoardText{
    color: rgb(93, 193, 240);
    padding: 10px;
    /* 关键：当内容在水平方向上溢出时，显示滚动条 */
    max-height: 300px;/* 最大高度 */
    overflow-x: auto;/* 水平滚动条 */
    overflow-y: auto;/* 垂直滚动条 */
  /* 为了更好的视觉效果，可以加上一些内边距 */
  padding: 8px 12px;
  /* 为了美观，可以给容器添加背景色和圆角 */
  background-color: #f0f2f5;
  border-radius: 4px;
}
.Board .BoardText span{
    /* 关键：强制文本在同一行显示，禁止换行 */
  white-space: nowrap;
}
/* code */
code {
    background-color: #f1f5f9;
    color: #dc2626;
    padding: 2px 6px;
    border-radius: 4px;
    /* 关键：强制文本在同一行显示，禁止换行 */
    /* white-space:normal; */
    white-space:unset;
}