.otherlink-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 1000;
  transition: opacity 0.3s ease-in-out;
}

.otherlink-bg.in {
  display: block;
  opacity: 1;
}

.otherlink-pop {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 500px;
  background-color: #ffffff;
  padding: 30px 32px;
  text-align: left;
  z-index: 1001;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.otherlink-pop.in {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.otherlink-pop-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.otherlink-pop-head-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.otherlink-pop-head-title {
  color: #000000;
  font-size: 18px;
  line-height: 26px;
}

.otherlink-pop-content {
  color: #4e5969;
  font-size: 14px;
  line-height: 22px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.otherlink-pop .btns {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.otherlink-pop .btns .closeBtn,
.otherlink-pop .btns .toOtherLink {
  padding: 7px 16px;
  cursor: pointer;
  font-size: 14px;
  line-height: 22px;
}

.otherlink-pop .btns .closeBtn {
  background-color: #f2f3f5;
  color: #4e5969;
}

.otherlink-pop .btns .toOtherLink {
  background-color: #18a2df;
  color: #fff;
}
