/*--------------------------------------------------------------
# 操作手册
--------------------------------------------------------------*/
.anyGraphOperation {
  background-color: rgba(243, 248, 255, 1);
  border-radius: 12px;
  padding: 0;
}

.anyGraphOperation .operation-header {
  background-image: linear-gradient(150deg,
      rgba(114, 207, 255, 0.35) 0,
      rgba(45, 183, 255, 0.35) 100%);
  padding-top: 130px;
  padding-bottom: 30px;
  text-align: left;
}

.anyGraphOperation .operation-header .search-results {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
  padding: 20px;
  max-height: 420px;
  overflow-y: auto;
  margin-top: 5px;
}

.anyGraphOperation .operation-header .search-item {
  padding: 10px;
  cursor: pointer;
}

.anyGraphOperation .operation-header .search-item:hover {
  background-color: rgba(243, 248, 255, 1);
  border-radius: 12px;
}

.anyGraphOperation .operation-header .highlight {
  color: rgb(251, 78, 78);
  font-weight: bold;
}

.anyGraphOperation .operation-header .p-title {
  overflow-wrap: break-word;
  color: rgba(1, 151, 255, 1);
  font-size: 50px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 50px;
  text-align: center;
}

.anyGraphOperation .operation-header .p-category {
  color: rgba(51, 51, 51, 1);
}

.anyGraphOperation .operation-header .search-form {
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 29px;
  position: relative;
  max-width: 60%;
  left: 20%;
  top: 50px;
}

.anyGraphOperation .operation-header .search-form input[type=text] {
  outline: none;
  border: none;
  padding: 0 20px;
  margin: 0;
  height: 50px;
  width: 92%;
  background: #fff;
  border-radius: 29px;
}

.anyGraphOperation .operation-header .search-form input[type=text]:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.anyGraphOperation .operation-header .search-form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: rgba(0, 168, 255, 1);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.anyGraphOperation .operation-header .search-form .clear-search-input {
  position: absolute;
  top: 25%;
  right: 12%;
  bottom: 0;
  border: 0;
  font-size: 18px;
}

.anyGraphOperation .operation-header .search-form button i {
  line-height: 0;
}

.anyGraphOperation .operation-header .search-form img {
  position: absolute;
  top: 25%;
}

.anyGraphOperation .operation-header .search-noresult {
  text-align: center;
}

.anyGraphOperation .operation-header .key-word {
  color: rgba(255, 94, 94, 1);
  font-weight: 600;
}

.anyGraphOperation .operation-content {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
  padding-top: 20px;
  padding-bottom: 60px;
}

/* 标题图标 https://www.koudingke.cn/Tools/Icons/Collections?group=boxicons&currentPage=2*/
.anyGraphOperation .section-title i {
  font-size: 40px;
  color: rgba(255, 94, 94, 1);
  padding: 0 10px;
}

/* 内容 */
.anyGraphOperation .entry {
  padding-bottom: 10px;
  padding-left: 10px;
}

.anyGraphOperation .entry .operation-content h1 {
  padding-top: 30px;
  font-size: 28px;
}

.anyGraphOperation .entry .operation-content h2 {
  padding: 20px 0;
  font-size: 26px;
}

.anyGraphOperation .entry .operation-content h3 {
  padding: 20px 0;
  font-size: 24px;
}

.anyGraphOperation .entry .operation-content h4 {
  padding-top: 30px;
  font-size: 22px;
}

.anyGraphOperation .entry .operation-content {
  padding: 0 3.54vw 0 3vw;
  margin-top: 30px;
}

.anyGraphOperation .entry .operation-content p {
  line-height: 30px;
  margin-bottom: 1rem;
  text-indent: 2em;
}

.anyGraphOperation .entry .operation-content img {
  border-radius: 5px;
  margin-bottom: 20px;
  box-shadow: 5px 2px 15px rgba(0, 0, 0, 0.2);
}

.anyGraphOperation .entry .sidebar .opt-highlight {
  background-color: #d2f4ea;
}

.anyGraphOperation .entry .sidebar p {
  margin-top: 20px;
}

/* 左侧导航栏 */
.anyGraphOperation .sidebar {
  position: fixed;
  /* 固定定位 */
  /* top: 340px; */
  top: 250px;
  /* 紧贴顶部（可根据需要调整） */
  overflow-y: auto;
  height: calc(100vh - 170px);
  /* width: 280px; */
  width: 320px;
  padding: 15px;
  border-right: 1px solid rgba(236, 239, 246, 1);
  list-style: none;
}

/* 滚动条整体样式（轨道） */
.anyGraphOperation .sidebar::-webkit-scrollbar {
  width: 10px;
  /* 滚动条的宽度 */
}


/* 滚动条轨道的样式 */
.anyGraphOperation .sidebar::-webkit-scrollbar-track {
  /* background: #f1f1f1; */
  background: rgba(255, 255, 255, 0);
  /* 轨道背景色 */
}

/* 滚动条的滑块样式 */
.anyGraphOperation .sidebar::-webkit-scrollbar-thumb {
  /* background: rgb(193, 193, 193); */
  background: rgba(255, 255, 255, 0);
  /* 滑块背景色 */
  border-radius: 6px;
  /* 滑块圆角 */
}

.anyGraphOperation .sidebar i {
  font-size: 28px;
  color: rgba(69, 188, 250, 1);
  padding: 5px;
  vertical-align: middle;
}

/* modify 修改公共属性-子节点 */
.anyGraphOperation .sidebar .list-unstyled {
  padding-left: 40px;
  list-style: none;
}

.anyGraphOperation .sidebar .anyGraphOperation-to-title {
  font-size: 24px;
  font-weight: bold;
  padding: 10px 0;
}

/* 移动端样式 */
@media (max-width: 992px) {
  .anyGraphOperation .operation-content {
    padding: 30px 0;
  }

  .anyGraphOperation .sidebar {
    position: relative !important;
    top: auto !important;
    max-height: none;
    width: 98%;
    height: 100%;
    border-right: none;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow-y: hidden;
    right: 2%;
  }

  .anyGraphOperation .entry .operation-content {
    padding: 0 20px;
  }

  .anyGraphOperation .sidebar .btn-toggle,
  .anyGraphOperation .sidebar .level-1-btn {
    white-space: normal;
    text-overflow: clip;
  }
}

.anyGraphOperation .sidebar .b-example-divider {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15)
}

.anyGraphOperation .sidebar .bi {
  vertical-align: -.125em;
  pointer-events: none;
  fill: currentColor
}

.anyGraphOperation .sidebar .dropdown-toggle {
  outline: 0
}

.anyGraphOperation .sidebar .nav-flush .nav-link {
  border-radius: 0
}

.anyGraphOperation .sidebar .btn-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  white-space: nowrap;
  /* 防止文本换行 */
  overflow: hidden;
  /* 隐藏溢出内容 */
  text-overflow: ellipsis;
  /* 使用省略号表示溢出内容 */
  padding: .25rem .5rem;
  color: #373838;
  background-color: transparent;
  border: 0;
  font-size: 18px;
  text-align: left;
}

.anyGraphOperation .sidebar .btn-toggle:hover,
.anyGraphOperation .sidebar .btn-toggle:focus {
  color: rgba(0, 0, 0, .85);
  background-color: #d2f4ea
}

.anyGraphOperation .sidebar .btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("/assets/images/operating_manual/download.svg");
  transition: transform .35s ease;
  transform-origin: .5em 50%
}

.anyGraphOperation .sidebar .btn-toggle[aria-expanded="true"] {
  color: #373838;
}

.anyGraphOperation .sidebar .btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg)
}

.anyGraphOperation .sidebar .btn-toggle-nav a {
  display: inline-flex;
  padding: .1875rem .5rem;
  margin-top: .125rem;
  margin-left: 1.25rem;
  text-decoration: none;
  font-size: 16px;
  color: #373838;
  cursor: pointer;
}

.anyGraphOperation .sidebar .btn-toggle-nav a:hover,
.anyGraphOperation .sidebar .btn-toggle-nav a:focus {
  background-color: #d2f4ea
}

.anyGraphOperation .sidebar .level-1-btn {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  /* 防止文本换行 */
  overflow: hidden;
  /* 隐藏溢出内容 */
  text-overflow: ellipsis;
  /* 使用省略号表示溢出内容 */
  padding: .25rem .5rem;
  color: #373838;
  background-color: transparent;
  border: 0;
  font-size: 18px;
  cursor: pointer;
  margin-top: 5px;
  border-radius: 5px;
}

.anyGraphOperation .sidebar .link-title {
  color: #373838;
}

.anyGraphOperation .sidebar .level-1-btn:hover,
.anyGraphOperation .sidebar .level-1-btn:focus {
  color: rgba(0, 0, 0, .85);
  background-color: #d2f4ea
}

.anyGraphOperation .sidebar .scrollarea {
  overflow-y: auto
}

.anyGraphOperation .sidebar .fw-semibold {
  font-weight: 600
}

.anyGraphOperation .sidebar .lh-tight {
  line-height: 1.25
}

.anyGraphOperation .sidebar .bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}

.anyGraphOperation .entry .operation-content h3:target {
  scroll-margin-top: 70px;
}

@media (max-width: 768px) {
  .anyGraphOperation .operation-header {
    padding-top: 120px;
    padding-bottom: 0;
  }

  .anyGraphOperation .sidebar .bd-placeholder-img-lg {
    font-size: 3.5rem
  }

  .anyGraphOperation .operation-header .p-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
  }

  .anyGraphOperation .operation-header .search-form {
    max-width: 90%;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
  }

  .anyGraphOperation .operation-header .search-form input[type=text] {
    height: 40px;
  }

  .anyGraphOperation .entry .operation-content h2 {
    color: rgb(80 80 80);
    font-size: 20px;
  }

  .anyGraphOperation .entry .operation-content p {
    text-indent: 1rem;
    color: rgba(51, 51, 51, 1);
    font-size: 15px;
  }

  .anyGraphOperation .entry .operation-content {
    padding: 0 20px 0 20px;
  }

  .anyGraphOperation .sidebar .level-1-btn {
    font-size: 16px;
  }

  .anyGraphOperation .sidebar .btn-toggle {
    font-size: 16px;
  }

  .anyGraphOperation .entry .operation-content h3 {
    padding: 10px 0;
    font-size: 18px;
    color: rgb(80 80 80);
  }

  .anyGraphOperation .operation-header .p-category {
    color: rgb(80 80 80);
  }
}

/*--------------------------------------------------------------
# 图文教程
--------------------------------------------------------------*/
.picture-text-header {
  background-image: linear-gradient(150deg,
      rgba(114, 207, 255, 0.35) 0,
      rgba(45, 183, 255, 0.35) 100%);
  padding-top: 130px;
  padding-bottom: 30px;
  text-align: left;
}

.picture-text-header .container .p-title {
  overflow-wrap: break-word;
  color: rgba(1, 151, 255, 1);
  font-size: 50px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 50px;
  text-align: center;
}

.picture-text-header .p-category {
  color: rgba(51, 51, 51, 1);
}

.picture-text-header .tabStyle {
  display: flex;
  justify-content: center;
  font-size: 22px;
  text-align: center;
}

.picture-text-header .tab-1 {
  background-image: linear-gradient(90deg,
      rgba(69, 188, 250, 1) 0,
      rgba(69, 188, 250, 1) 0,
      rgba(0, 150, 255, 1) 100%,
      rgba(0, 150, 255, 1) 100%);
  width: 268px;
  line-height: 49px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-right: -10px;
  position: relative;
}

.picture-text-header .tab-2 {
  width: 268px;
  height: 49px;
  color: rgba(102, 102, 102, 1);
  font-weight: 700;
  line-height: 49px;
  box-shadow: 15px 0px 15px 5px rgba(0, 0, 0, 0.05),
    -25px 10px 25px rgba(0, 0, 0, 0) inset;
  border-radius: 10px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 1);
}

.picture-text-header .container .search-form {
  background: #fff;
  /* border: 1px solid #ddd; */
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 29px;
  position: relative;
  max-width: 60%;
  left: 20%;
  top: 50px;
}

.picture-text-header .container .search-form input[type=text] {
  outline: none;
  border: none;
  padding: 0 20px;
  margin: 0;
  height: 50px;
  width: 92%;
  background: #fff;
  border-radius: 29px;
}

.picture-text-header .container .search-form input[type=text]:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.picture-text-header .container .search-form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: rgba(0, 168, 255, 1);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.picture-text-header .container .search-form span {
  position: absolute;
  top: 25%;
  right: 12%;
  bottom: 0;
  border: 0;
  font-size: 18px;
}

.picture-text-header .container .search-form button i {
  line-height: 0;
}

.picture-text-header .container .search-form img {
  position: absolute;
  top: 25%;
}

.picture-text-body {
  margin: 60px 0;
}

.picture-text-body .container .border-line {
  border-top: 1px solid rgb(223, 224, 225);
  margin: 30px 0 30px 0;
}

.picture-text-body .line-content {
  margin-bottom: 50px;
}

.picture-text-body .tag-button {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  padding: 5px 15px;
  margin: 0 5px;
}

.picture-text-body .tag-button:hover {
  border: 1px solid rgba(1, 151, 255, 1);
  color: rgba(1, 151, 255, 1);
  font-weight: 700;
}

.picture-text-body .tag-button .tag-active {
  border: 1px solid rgba(1, 151, 255, 1);
  color: rgba(1, 151, 255, 1);
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 15px;
  margin: 0 5px;
}

.picture-text-body .container #pageContext .content-render .content-details .reads {
  /* display: none; */
  display: flex;
}

.picture-text-body .container #pageContext .content-render {
  margin-left: 20px;
}

.picture-text-body .container #pageContext .img-content {
  text-align: left;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  width: 300px;
  height: 170px;
  border: 1px solid rgb(223, 224, 225);
  border-radius: 10px;
  transition: all 0.8s ease-in-out;
}

.picture-text-body .container #pageContext .img-content:hover {
  transform: scale(1.2);
}

.picture-text-body .cotent-title {
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 32px;
  font-weight: 700;
  text-align: left;
  line-height: 33px;
  margin-top: 5px
}

.picture-text-body .container #pageContext .content-render .cotent-text {
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 18px;
  text-align: left;
  line-height: 28px;
  margin: 25px 0 0 2px;
  /* 让文字产生省略号
  width: 98%;
  text-align: right;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap; */
}

.picture-text-body .container #pageContext .content-render .content-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 25px;
}

.picture-text-body .container #pageContext .content-render .content-details ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.picture-text-body .container #pageContext .content-render .content-details li {
  list-style: none;
  padding-right: 3vw;
}

.picture-text-body .container #pageContext .content-render .content-details img {
  padding-right: 5px;
}

.picture-text-body .container #pageContext .content-render .content-details .reader-article {
  background-color: rgb(255, 255, 2551);
  border-radius: 20px;
  padding: 8px 16px 8px 16px;
  cursor: pointer;
  color: #000;
  border: 1px solid rgba(232, 232, 232, 1);
  font-size: 14px;
}

.picture-text-body .container #pageContext .content-render .content-details .reader-article:hover {
  background-color: rgba(1, 151, 255, 1);
  color: rgb(255, 255, 255);
}

.picture-text-body .reader-article-active {
  background-color: rgba(1, 151, 255, 1);
  border-radius: 20px;
  padding: 8px 16px 8px 16px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-size: 14px;
}

/* 告警提示 */
.picture-text-body .container .promptFlash {
  max-width: 250px;
  background: linear-gradient(90deg,
      rgb(249, 170, 170) 0,
      rgba(255, 131, 131, 1) 0,
      rgba(255, 113, 113, 1) 100%,
      rgba(255, 94, 94, 1) 100%);
  animation: promptFlash 1s infinite alternate;
  /* 1s 持续时间，无限次播放，交替执行 */
  animation-iteration-count: 1;
  /* 将动画次数限制为1次 */
  color: rgb(255, 255, 255);
  border-radius: 10px;
  text-align: center;
  line-height: 40px;
  margin-bottom: 30px;
  display: none;
}

@keyframes promptFlash {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.picture-text-body .container .promptNoResult {
  display: none;
  text-align: center;
  margin-top: 80px;
}

.picture-text-body .container .promptNoResult .promptNoResultInfo {
  margin-top: 30px;
}

.picture-text-body .container #pageContext .content-render .content-details .m-reader-article {
  display: none;
}

.picture-text-body .container #pageContext .content-render .cotent-text .search-highlight {
  /* color: rgb(251, 78, 78); */
  background-color: gold;
  font-weight: bold;
  padding: 0 2px;
}

.picture-text-body .container .tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto 10px auto;
}

.picture-text-body .container .tags-container .tag {
  padding: 8px 20px;
  background: #f1f3f5;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.picture-text-body .container .tags-container .tag:hover,
.picture-text-body .container .tags-container .tag.active {
  /* background: #0f4eb8; */
  background: #0197ff;
  color: white;
}

@media (max-width: 768px) {
  .picture-text-header .container .p-title {
    font-size: 36px;
    font-weight: 700;
  }

  .picture-text-header {
    padding-top: 110px;
    padding-bottom: 0;
  }

  .picture-text.p-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin: 0;
  }

  .picture-text-header .container .search-form {
    max-width: 90%;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
  }

  .picture-text-header .container .search-form input[type=text] {
    height: 40px;
  }

  .picture-text-body .cotent-title {
    color: rgb(80 80 80);
    font-size: 18px;
  }

  .picture-text-body .container #pageContext .content-render .cotent-text {
    color: rgba(51, 51, 51, 1);
    font-size: 16px;
    line-height: 30px;
    margin: 0;
  }

  .picture-text-body .container #pageContext .content-render .content-details {
    font-size: 12px;
  }

  .picture-text-body .container #pageContext .content-render .content-details .reads {
    margin-top: 10px;
    font-size: 12px;
  }

  .picture-text-body .container #pageContext .content-render .content-details .reader-article {
    display: none;
  }

  .picture-text-body .container #pageContext .content-render .content-details .m-reader-article {
    background-color: rgb(255, 255, 2551);
    border-radius: 20px;
    padding: 5px 8px;
    cursor: pointer;
    color: #000;
    border: 1px solid rgba(232, 232, 232, 1);
    font-size: 12px;
    display: inline;
  }

  .picture-text-body .container #pageContext .content-render .content-details .m-reader-article:hover {
    background-color: rgba(1, 151, 255, 1);
    color: rgb(255, 255, 255);
  }

  .picture-text-body .container #pageContext .img-content {
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: 100%;
    height: auto;
  }
  .picture-text-body .container #pageContext .content-render .content-details li {
    list-style: none;
    padding-right: 25px;
  }

  .picture-text-body .container .tags-container {
     margin: 0 auto 20px auto;
  }
}