* {
  margin: 0;
  padding: 0;
  font-size: 13px;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: var(--font-color);
  font-family: AlibabaPuHuiTi, Microsoft YaHei, PingFang SC, Arial,
    BlinkMacSystemFont, Helvetica Neue, Open Sans, Hiragino Sans GB, sans-serif;
}

[v-cloak] {
  display: none;
}

body {
  overflow: hidden;
  position: relative;
}

.scrollContainer {
  height: .65rem;
  display: flex;
  overflow-y: hidden;
  justify-content: center;
  /* background: linear-gradient(to top, rgb(60, 100, 188) 0%, rgba(60, 100, 188, 0.7) 30%, rgba(191, 203, 234, 0) 100%); */
  position: absolute;
  top: -.4rem;
  left: 0px;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;

}

.scrollContainer.showScrollContainer {
  opacity: 1;
  transition: opacity .3s;
}

.scrollContainer svg {
  width: .8rem;
  height: .8rem;
  pointer-events: all;
  cursor: pointer;
  user-select: none;
  opacity: 0.7;
  transition: transform 0.3s, opacity 0.3s;

}

.scrollContainer svg:hover {
  opacity: 1;
  transform: scale(1.1);
  transition: transform 0.3s, opacity 0.3s;
}


.operateBox {
  display: flex;
  align-items: center;
  gap: .2rem;
  padding-top: .2rem;
  margin-top: .34rem;
  border-top: 1px solid #E2E6F0;
}

.operateBox img {
  width: .16rem;
  object-fit: contain;
}

.operateBox span {
  cursor: pointer;
  transition: all 0.2s ease-in;
}

.operateBox span:hover {
  transform: scale(1.2);
}

.operateBox.touch-device span:hover {
  animation: trans .4s ease-in 1;
  transform: scale(1);
}

@keyframes trans {

  0% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }

}

.operateBox span.active svg path,
.operateBox span.active svg ellipse,
.operateBox span:hover svg path,
.operateBox span:hover svg ellipse {
  fill: var(--primary-color);
}

.operateBox span.disabled:hover {
  cursor: not-allowed;
}

.operateBox span.disabled:hover svg path,
.operateBox span.disabled:hover svg ellipse {
  fill: var(--font-color);
}

.operateBox span svg {
  width: 16px;
  height: 16px;
}

.operateBox span svg path,
.operateBox span svg ellipse {
  fill: var(--font-color);
}

.operateBox .line {
  width: 1px;
  height: 10px;
  background: #e6e8ed;
}

/* .operateBox .tips {
  margin-left: auto;
  line-height: 12px;
  font-size: 12px;
  background: linear-gradient(270deg, #d68686 3%, #9d88eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-clip: text;
} */


.QAInfo {
  color: var(--font-color);
  ;
  font-size: 14px;
  line-height: 200%;
  word-break: break-all;
}

.QAInfo hr {
  margin: 10px 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: none;
}

.QAInfo blockquote {
  border: 1px solid #E2E6F0;
  border-radius: 6px;
  padding: 8px 16px;
  margin: 12px 0;
  color: rgba(31, 35, 41, 0.5);
  font-style: normal;
}

.QAInfo img {
  max-width: 80%;
  max-height: 200px;
  margin: 5px;
  border-radius: 10px;
}

.QAInfo a {
  color: #2060EA;
  word-break: break-all;
}

.QAInfo pre {
  max-width: 100%;
  white-space: pre-wrap;
}

.QAInfo table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(36, 216, 213, .4);
  font-family: Arial, sans-serif;
  font-size: 14px;

}

/* 表头样式 */
.QAInfo table th {
  font-weight: bold;
  border: 1px solid rgba(36, 216, 213, .4);
  padding: 8px;
  text-align: left;
}

/* 表格单元格样式 */
.QAInfo table td {
  border: 1px solid rgba(36, 216, 213, .4);
  padding: 8px;
  text-align: left;
  font-size: 16px;
}

.QAInfo .pre-loading {
  margin-left: 17px;
  display: flex;
  gap: 6px;
  height: 26px;
  align-items: center;
}

@keyframes ball-pulse {

  0%,
  60%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  30% {
    opacity: 0.1;
    transform: scale(0.01);
  }
}

.QAInfo .pre-loading>div {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  animation: ball-pulse 0.7s ease-in-out infinite;
}

.QAInfo .pre-loading .circle-loading-first {
  background: linear-gradient(to right, #4a7bfd, #3a99fd);
  animation-delay: -200ms;
}

.QAInfo .pre-loading .circle-loading-second {
  background: linear-gradient(to right, #3a99fd, #3aadfb);
  animation-delay: -100ms;
}

.QAInfo .pre-loading .circle-loading-third {
  background: linear-gradient(to right, #3aadfb, #3cd1f9);
  animation-delay: 0ms;
}