        /*弹窗样式*/
            /* 隐藏默认滚动条，适用于部分浏览器 */
    *::-webkit-scrollbar {
      display: none;
    }

    /* 新增的遮盖层样式 */
   .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.2); /* 半透明黑色背景 */
      z-index: 999; /* 确保遮盖层在页面上层 */
      display: none; /* 初始隐藏 */
    }

   .popup {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: white;
      border-radius: 5px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      width: 90%; /* 适配手机端，宽度设为90% */
      z-index: 1000; /* 确保弹框在遮盖层上层 */
    }

    /* 使用媒体查询，当屏幕宽度大于某个值（例如768px，可根据实际调整）时应用max-width限制 */
    @media (min-width: 768px) {
     .popup {
        max-width: 50%; /* 最大宽度限制 */
      }
    }

   .popup-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
      border-bottom: 1px solid #F0F0F0;
    }

   .title {
      font-size: 14px;
      font-weight: bold;
    }

   .close {
      font-size: 20px;
      cursor: pointer;
    }

   .popup-content {
      padding: 10px;
    }

   .popup-content h2 {
      font-size: 16px;
      margin-bottom: 5px;
    }

   .popup-content p {
      margin: 5px 0;
    }

   .popup-content ul {
      padding-left: 20px;
    }

   .popup-content li {
      margin-bottom: 5px;
    }

   .highlight {
      color: green;
      font-weight: bold;
    }

   .popup-footer {
      display: flex;
      justify-content: flex-end;
      padding: 10px;
    }

   .confirm {
      background-color: #007bff;
      color: white;
      border: none;
      padding: 8px 15px;
      border-radius: 3px;
      cursor: pointer;
    }