/* 网站转让通知弹窗 - 极简版 */

/* 遮罩层 */
.transfer-notice-pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.transfer-notice-pop.active {
  display: flex;
  opacity: 1;
}

/* 弹窗卡片 */
.transfer-notice-body {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 320px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.transfer-notice-pop.active .transfer-notice-body {
  transform: scale(1);
  opacity: 1;
}

/* 标题 */
.transfer-notice-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

/* 电话号码 */
.transfer-notice-phone {
  font-size: 24px;
  font-weight: bold;
  color: #1989FA;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

/* 按钮容器 */
.transfer-notice-footer {
  display: flex;
  gap: 12px;
}

/* 拨打电话按钮 */
.btn-phone {
  flex: 1;
  height: 44px;
  background: #1989FA;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-phone:active {
  background: #0066CC;
}

/* 关闭按钮 */
.btn-close {
  width: 44px;
  height: 44px;
  background: #f5f5f5;
  color: #999;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-close:active {
  background: #e5e5e5;
}
