/* AI 详情弹窗样式（从 AIConceptMap.css 提取，避免全局 body overflow 影响页面滚动） */

.dialogDetail {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  display: none;
}

.dialogDetail-content {
  position: absolute;
  padding: 24px;
  text-align: left;
  display: flex;
  top: calc(50% - 372px);
  left: calc(50% - 481px);
  flex-direction: column;
  z-index: 500;
  width: 962px;
  height: 744px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow:
    0px 12px 48px 16px rgba(0, 0, 0, 0.03),
    0px 9px 28px 0px rgba(0, 0, 0, 0.05),
    0px 6px 16px -8px rgba(0, 0, 0, 0.08);
}

.dialogDetail .detail-close {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  color: #fff;
  padding: 14px 15px;
}

.dialogDetail .detail-close i {
  font-weight: 200;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialogDetail .arrow-wrap {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.28);
  position: absolute;
  border-radius: 50%;
  top: calc(50% - 25px);
  cursor: pointer;
}

.dialogDetail .arrow-wrap-right {
  right: calc(50% - 545px);
}

.dialogDetail .arrow-wrap-left {
  left: calc(50% - 545px);
}

.dialogDetail .arrow {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-top: 17px;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform-origin: center;
  transition: all 0.3s;
  opacity: 1;
}

.dialogDetail .arrow-left {
  transform: rotate(315deg);
  margin-left: 20px;
}

.dialogDetail .arrow-right {
  transform: rotate(135deg);
  margin-left: 14px;
}

.dialogDetail .collect {
  color: #646566;
  padding-top: 3px;
  cursor: pointer;
}

.dialogDetail .collect span {
  display: inline-block;
  margin-left: 3px;
  font-size: 16px;
}

.dialogDetail .IdShow {
  font-weight: 400;
  font-size: 14px;
  color: #646566;
  margin-bottom: 10px;
}

.dialogDetail .collected {
  color: red;
}

.dialogDetail .img-detail {
  display: flex;
}

.dialogDetail .bigImg {
  width: 580px;
  height: 625px;
  overflow: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
}

.dialogDetail .bigImg::-webkit-scrollbar {
  display: block;
  width: 6px;
}

.dialogDetail .bigImg img {
  border-radius: 6px;
}

.dialogDetail .img-detail label {
  position: relative;
  margin-top: 20px;
  font-size: 16px;
  padding-left: 14px;
  font-family:
    PingFangSC,
    PingFang SC;
  font-weight: 500;
  display: block;
  color: #000000;
  margin-bottom: 20px;
}

.dialogDetail .img-detail label::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background-color: #2858f8;
  left: 0;
  top: calc(50% - 7px);
}

.dialogDetail .img-detail .title {
  width: 310px;
  margin-left: 24px;
}

.dialogDetail .title-content {
  margin-bottom: 10px;
}

.dialogDetail .btnBox,
.dialogDetail .title-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.dialogDetail .img-detail .title .btnBox {
  text-align: right;
}

.dialogDetail .defaultBtn,
.dialogDetail .primaryBtn {
  display: inline-block;
  text-align: center;
  padding: 9px 17px;
  border: 1px solid #2858f8;
  border-radius: 4px;
  width: 146px;
  font-size: 16px;
  cursor: pointer;
  justify-content: center;
}

.dialogDetail .defaultBtn {
  background-color: #2858f8;
  color: #fff;
}

.dialogDetail .primaryBtn {
  color: #2858f8;
}

.dialogDetail .empower {
  padding: 3px 0;
  border-radius: 4px;
  vertical-align: middle;
  color: #faad14;
}

.dialogDetail .empower .icon {
  color: #faad14;
  font-size: 16px;
  line-height: 17px;
  margin-right: 2px;
}

.dialogDetail .ontherContent {
  overflow-y: auto;
  height: 552px;
}

.dialogDetail .ontherImg {
  columns: 2;
  column-gap: 10px;
}

.dialogDetail .img-li {
  width: 149px;
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: 6px;
}

.dialogDetail > .loading {
  display: none;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.dialogDetail > .loading > div {
  animation: yst-ai-detail-rotate infinite linear 0.5s;
}

.dialogHint {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 502;
  display: none;
}

.dialogHint .mask {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.dialogDetail .mask {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.dialogHint .dialogContainer {
  position: absolute;
  padding: 24px;
  text-align: left;
  display: flex;
  top: calc(50% - 104px);
  left: calc(50% - 202px);
  flex-direction: column;
  z-index: 503;
  width: 404px;
  height: 208px;
  border-radius: 4px;
  background: #ffffff;
  box-shadow:
    0px 12px 48px 16px rgba(0, 0, 0, 0.03),
    0px 9px 28px 0px rgba(0, 0, 0, 0.05),
    0px 6px 16px -8px rgba(0, 0, 0, 0.08);
}

.dialogHint .head {
  display: flex;
  justify-content: space-between;
}

.dialogHint .head span {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.dialogHint .head i {
  color: #666;
}

.dialogHint .dialogContent {
  flex: 1;
  padding: 28px 0;
  font-size: 14px;
  color: #333;
}

.dialogHint .dialogContent p {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

.dialogHint .dialogContent p span {
  color: #2858f8;
}

.dialogHint .btnBox {
  text-align: right;
}

.dialogHint .btnBox button {
  width: 104px;
  border-radius: 2px;
  border: 1px solid #2858f8;
  padding: 9px 0;
  background-color: #2858f8;
  color: #fff;
}

.applyForDialog .btnBox,
.acceptDialog .btnBox {
  justify-content: right;
}

@keyframes yst-ai-detail-rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
