/* Windows下载弹窗样式 */
.popup-win-download {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
}

.popup-win-download .black-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-win-download .modal-box {
  position: relative;
  background: #fff;
  width: 550px;
  border-radius: 18px;
  text-align: center;
  padding: 44px;
  box-shadow: 0 11px 33px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

/* 关闭按钮 */
.popup-win-download .modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 31px;
  height: 31px;
  line-height: 31px;
  font-size: 22px;
  color: #6b7280;
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.popup-win-download .modal-close:hover {
  background-color: #f3f4f6;
  color: #1f2937;
}

/* 标题 */
.popup-win-download .modal-title {
  font-size: 26px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 13px;
}

.popup-win-download .modal-divider {
  width: 66px;
  height: 3px;
  background-color: #165DFF;
  margin: 0 auto 33px;
  border-radius: 3px;
}

/* 版本选择区域 */
.popup-win-download .version-section {
  margin-bottom: 38px;
}

.popup-win-download .version-label {
  font-size: 15px;
  color: #666;
  margin-bottom: 17px;
}

.popup-win-download .version-buttons {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
  margin-bottom: 17px;
}

.popup-win-download .version-btn {
  width: 308px;
  height: 48px;
  background-color: #165DFF;
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.popup-win-download .version-btn:hover {
  background-color: #0E42D2;
}

.popup-win-download .version-btn:active {
  transform: scale(0.98);
}

.popup-win-download .edge-tip {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  padding: 0 11px;
}

.popup-win-download .edge-tip a,
.popup-win-download .edge-tip .link {
  color: #165DFF;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.popup-win-download .edge-tip a:hover,
.popup-win-download .edge-tip .link:hover {
  text-decoration: underline;
  background-color: #f0f5ff;
  border-radius: 3px;
  padding: 2px 4px;
}

/* 客服区域 */
.popup-win-download .kf-section-title {
  font-size: 18px;
  color: #444;
  font-weight: 500;
  margin-bottom: 22px;
}

.popup-win-download .kf-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
  padding: 22px;
  background-color: #f9fafb;
  border-radius: 13px;
}

.popup-win-download .kf-qrcode-wrap {
  text-align: center;
}

.popup-win-download .kf-qrcode {
  width: 154px;
  height: 154px;
  padding: 9px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 9px;
}

.popup-win-download .kf-qrcode img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-win-download .kf-qrcode-label {
  font-size: 13px;
  color: #999;
  margin-top: 7px;
}

.popup-win-download .kf-info {
  text-align: left;
}

.popup-win-download .kf-info-label {
  font-size: 15px;
  color: #888;
  margin-bottom: 9px;
}

.popup-win-download .kf-wechat {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 13px;
}

.popup-win-download .kf-copy-btn {
  padding: 9px 22px;
  background-color: #165DFF;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
}

.popup-win-download .kf-copy-btn:hover {
  background-color: #0E42D2;
}

.popup-win-download .kf-copy-success {
  font-size: 14px;
  color: #00B42A;
  margin-top: 9px;
}

/* 底部提示 */
.popup-win-download .modal-footer-tip {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 22px;
}

/* 视频弹窗 */
.popup-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 400;
  background-color: rgba(0, 0, 0, 0.8);
}

.popup-video-modal .video-container {
  position: relative;
  width: 80%;
  max-width: 800px;
}

.popup-video-modal .video-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  background: #fff;
  color: #1f2937;
  font-size: 20px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup-video-modal .video-box {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.popup-video-modal video {
  width: 100%;
  display: block;
  outline: none;
}
