
/* index 页面*/
.floating-image {
  position: absolute;
  top: 10px;
  right: 25px;
  width: 160px; /* 30% of the viewport width */
  height: auto;
}
/************************************************************/

/* signup 页面*/

  .notice-modal {       /* 弹窗背景 */
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
  }
  
 
  .notice-content {     /* 弹窗内容框 */
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    max-width: 400px;
    width: 80%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: fadeIn 0.5s;
    color: #000; /* ✅ 强制文字为黑色 */
  }
  
  .notice-btn {         /* 弹窗蓝色按钮样式 */
    padding: 0px 20px;       /* 水平宽度小一点 */
    line-height: 1;           /* 行高紧凑 */
    height: 40px;            /* 固定按钮高度 */
    border: none;
    background: #007BFF;
    color: white;
    font-size: 12px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;   /* 不占满整行 */
    margin: 0 auto;          /* 居中 */
  }
  
  @keyframes fadeIn {   /* 动画 */
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
  }
/************************************************************/