#text-panel {
  width: 60%;  /* 控制面板的宽度 */
  max-width: 800px;  /* 最大宽度，避免过宽 */
  height: 180px;  /* 你可以根据需要调整高度 */
  background-color: rgba(255, 255, 255, 0.1); /* 白色，透明度10% */
  margin: 20px auto;  /* 水平居中 */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #333;
}

#text-panel h2 {
  color: #2c3e50;
  text-align: center; /* 标题居中 */
}

#text-panel p {
  font-size: 14px;
  line-height: 1.6;
  text-align: center; /* 内容居中 */
}
