/* 回到顶部 begin */
/* #back-to-top {
  position: fixed;
  right: 30px;
  bottom: 120px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 50px;
  height: 50px;
  font-weight: 600;
  background-color: rgb(20, 20, 20);
  box-shadow: 0 0 0 4px rgba(180, 160, 255, .253);
  border: none;
  border-radius: 50%;
  transition-duration: .3s;
  cursor: pointer;
}

#back-to-top .svgIcon {
  width: 12px;
  transition-duration: .3s;
}

#back-to-top .svgIcon path {
  fill: white;
}

#back-to-top:hover {
  align-items: center;
  width: 140px;
  border-radius: 50px;
  transition-duration: .3s;
}

#back-to-top:hover .svgIcon {
  transform: translateY(-250%);
  transition-duration: .3s;
}

#back-to-top::before {
  content: "Back To Top";
  position: absolute;
  bottom: -20px;
  color: white;
  font-size: 0;
}

#back-to-top:hover::before {
  bottom: unset;
  font-size: 13px;
  transition-duration: .3s;
  opacity: 1;
} */

/* 移动端适配 */
/* @media (max-width: 768px) {
  #back-to-top {
    right: 20px;
    bottom: 90px;
  }
} */

/* 回到顶部 end */

/* Wooxing Message 弹窗美化样式 */
.wooxing-message {
  position: fixed;
  top: 48px;
  left: 50%;
  z-index: 9999;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-width: 180px;
  max-width: 92vw;
  padding: 8px 14px 8px 36px;
  margin-top: 10px;
  margin-bottom: 12px;
  color: #333;
  font-size: 15px;
  background: #eafbe5; /* 默认色，后面会被类型覆盖 */
  box-shadow: 0 4px 16px 0 rgba(0,0,0,.10), 0 1.5px 4px 0 rgba(0,0,0,.08);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  transform: translateX(-50%);
  transition: all .3s cubic-bezier(.55,0,.1,1);
  opacity: 0;
  pointer-events: none;

  backdrop-filter: blur(1.5px);
}
.wooxing-message.wooxing-message-show {
  margin-top: 0;
  opacity: 1;
  pointer-events: auto;
}
.wooxing-message-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}
.wooxing-message-success {
  color: #3fa63f;
  background: #eafbe5;
}
.wooxing-message-error {
  color: #e53935;
  background: #fdeaea;
}
.wooxing-message-info {
  color: #606266;
  background: #f4f4f5;
}
.wooxing-message-warning {
  color: #e6a23c;
  background: #fff7e6;
}
.wooxing-message + .wooxing-message {
  margin-top: 0;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .wooxing-message {
    top: 24px;
    left: 50%;
    min-width: 100px;
    max-width: 98vw;
    padding: 6px 6px 6px 28px;
    font-size: 13px;
    border-radius: 14px;
  }
  .wooxing-message-icon {
    left: 5px;
    width: 14px;
    height: 14px;
  }
}
