
.flex-container[data-v-61cb4fc2] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.panel[data-v-61cb4fc2] {
  position: absolute;
  z-index: 1000;
  top: 10%;
  left: 1%;
  width: 25%;
  height: 27%;
  background: url(../img/panel0102.b8d10546.png) no-repeat;
  background-size: 100% 100%;
  padding: 0 0.1875rem 0.5rem;
  color: #fff;
  overflow: hidden;
}
.panel .title[data-v-61cb4fc2] {
  font-weight: 600;
  font-size: 0.21rem;
  margin-top: 0.08rem;
  margin-left: 0.15rem;
  letter-spacing: 1px;
}
.contain[data-v-61cb4fc2] {
  width: 100%;
  height: calc(100% - 0.3rem); /* 减去标题高度 */
  margin-top: 0.1rem;
  padding: 0 0.15rem;
  /* --- 新增：开启Flex布局 --- */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 水平居中 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 垂直居中 */
  overflow: hidden;
}
.panel .description[data-v-61cb4fc2] {
  font-size: 0.15rem;
  padding: 0.05rem;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-align: justify;
  text-indent: 2em; /*缩进2个字符宽度 */
  width: 100%;
  height: 100%;
  max-height: 2.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  word-wrap: break-word; /* 自动换行 */
  word-break: break-all; /* 强制换行（英文单词内部也可断） */
  white-space: normal; /* 允许换行 */
  text-decoration: underline; /* 新增下划线 */
  -webkit-text-decoration-color: rgb(7, 142, 217);
          text-decoration-color: rgb(7, 142, 217);
  text-underline-offset: 0.2em;
}

/* 滚动条样式 */
[data-v-61cb4fc2]::-webkit-scrollbar {
  width: 6px;
}
[data-v-61cb4fc2]::-webkit-scrollbar-track {
  background-color: rgba(7, 166, 255, 0.2);
  border-radius: 2em;
}
[data-v-61cb4fc2]::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  background-clip: padding-box;
  min-height: 28px;
  border-radius: 2em;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
}
[data-v-61cb4fc2]::-webkit-scrollbar-thumb:hover {
  background-color: rgba(17, 166, 255, 1);
}

