@charset "utf-8";
/* ==========================================================================
   申请表单“提交前温馨提示”弹窗公共样式
   被城市分站首页与在线申请页等引用（页面 link 时引入）
   ========================================================================== */
.kc-confirm-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.kc-confirm {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: kcPop 0.18s ease;
}
@keyframes kcPop {
  from { transform: translateY(14px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.kc-confirm-close {
  position: absolute;
  top: 6px;
  right: 12px;
  z-index: 2;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.9;
}
.kc-confirm-close:hover {
  opacity: 1;
}
.kc-confirm-head {
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #ed3f16;
}
.kc-confirm-body {
  padding: 16px 18px 6px;
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}
.kc-confirm-body .kc-confirm-tip {
  color: #999;
  font-size: 12px;
  margin-top: 8px;
}
.kc-confirm-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 18px;
}
.kc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  height: 38px;
  padding: 0 14px;
  border-radius: 6px;
  border: none;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
}
.kc-btn-primary {
  background: #ed3f16;
  color: #fff;
}
.kc-btn-primary:hover {
  background: #d6350f;
  color: #fff;
  text-decoration: none;
}
.kc-btn-default {
  background: #d9d9d9;
  color: #fff;
}
.kc-btn-default:hover {
  background: #c7c7c7;
  color: #fff;
}
