/* 轮询弹窗样式 */
.polling-modal-lightbox {
  z-index: 1051;
}
.polling-modal-lightbox + .i-spzhtml-lightbox-mask {
  z-index: 1050;
  pointer-events: none;
}
.polling-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 2px 4px 0px rgba(144, 2, 2, 0.05), 0px 4px 30px 0px rgba(143, 143, 239, 0.12);
  font-family: 'HarmonyOS Sans SC', 'PingFang SC', 'DM Sans', sans-serif;
  width: fit-content;
  min-width: 300px;
  max-width: 90vw;
  box-sizing: border-box;
}

.polling-icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.polling-spinner {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  transform-origin: center;
  animation: spin 1s linear infinite;
}

.polling-circle {
  transform-origin: center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.polling-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #27293a;
  text-align: center;
  margin: 0;
  font-family: 'HarmonyOS Sans SC', 'PingFang SC', sans-serif;
}

@media (max-width: 767px) {
  .polling-modal {
    padding: 16px;
    gap: 10px;
    min-width: 280px;
  }

  .polling-icon {
    width: 24px;
    height: 24px;
  }

  .polling-text {
    font-size: 13px;
    line-height: 18px;
  }
}

