/* IE浏览器不兼容提示样式 */
.ie-browser-warning {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  justify-content: center;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.ie-warning-content {
  background: #fff;
  border-radius: 6px;
  padding: 40px;
  max-width: 540px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ie-warning-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #faad14 0%, #ff7a45 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
}

.ie-warning-title {
  font-size: 24px;
  font-weight: 600;
  color: #262626;
  margin-bottom: 16px;
}

.ie-warning-message {
  font-size: 16px;
  color: #595959;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* 浏览器列表 - 左右排列 */
.ie-browser-list {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
}

.ie-browser-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid transparent;
  flex: 1;
  max-width: 200px;
}

.ie-browser-item:hover {
  background: #e6f7ff;
  border-color: #91d5ff;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Edge浏览器 - 优先推荐 (左侧) */
.ie-browser-primary {
  /* background: linear-gradient(135deg, #e6f7ff 0%, #bae7ff 100%);
  border-color: #1890ff; */
  margin-right: 10px;
}

.ie-browser-primary:hover {
  background: linear-gradient(135deg, #bae7ff 0%, #91d5ff 100%);
  border-color: #0078d4;
}

.ie-browser-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  object-fit: contain;
}

.ie-browser-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.ie-browser-name {
  font-size: 16px;
  font-weight: 600;
  color: #262626;
}

.ie-browser-badge {
  display: inline-block;
  padding: 3px 10px;
  background: #1890ff;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}

