@charset "UTF-8";
/* 遮罩层样式 */
.overlay {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 999;
  display: none;
  /* 默认隐藏 */ }

/* 飘窗主体样式 */
.popup {
  background: #e6f4ff;
  border-radius: 8px;
  /* 窗体变小，圆角也稍微收一点 */
  padding: 10px 15px;
  /* 内边距适中，不挤也不空 */
  max-width: 240px;
  /* 限制最大宽度，防止邮箱换行太难看 */
  width: auto;
  /* 宽度随内容自适应 */
  text-align: left;
  /* 举报信息左对齐更易阅读 */
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
  color: #1e3a5f;
  font-size: 10px;
  line-height: 1.5;
  -webkit-animation: slideIn 0.3s ease;
          animation: slideIn 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 防止 padding 把窗体撑大 */ }

@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translate(-20px, -20px);
            transform: translate(-20px, -20px); }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translate(-20px, -20px);
            transform: translate(-20px, -20px); }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.popup h2 {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: bold;
  color: #333; }

.popup p {
  margin: 0;
  font-size: 12px;
  color: #333;
  word-break: break-all;
  /* 防止长邮箱撑破窗体 */ }

/* 倒计时文字 */
.countdown-text {
  font-size: 13px;
  color: #999;
  margin-bottom: 15px; }

.countdown-text span {
  color: #e74c3c;
  font-weight: bold;
  font-size: 16px; }

/* 关闭按钮 */
.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
  color: #aaa;
  background: none;
  border: none;
  line-height: 1;
  -webkit-transition: color 0.2s;
  transition: color 0.2s; }

.close-btn:hover {
  color: #333; }

/* 确认按钮（可选） */
.confirm-btn {
  padding: 10px 30px;
  background: #4a90d9;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s; }

.confirm-btn:hover {
  background: #357abd; }
