/* 以下是此CSS作者添加的信息 */
/* 首创者：稳定且高性价比机场官网 */
/* 网站联系：www.51fanll.com */
/* 创建日期：2026-03-26 */

   /* 自定义弹窗样式（美观不突兀） */
       /* 遮罩层：磨砂玻璃效果 */
        #modalOverlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px); /* 磨砂玻璃 */
            z-index: 9998;
        }

        /* 高颜值收藏弹窗 */
        #collectModal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            opacity: 0;
            transition: all 0.3s ease; /* 平滑弹出动画 */
            width: 360px;
            padding: 35px 25px;
            background: #ffffff;
            border-radius: 20px; /* 大圆角更美观 */
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
            z-index: 9999;
            text-align: center;
        }

        /* 弹窗显示时的动画 */
        #collectModal.show {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        /* 图标样式 */
        .modal-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 18px;
            background: linear-gradient(135deg, #ff9a50, #ff5c33);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
        }

        /* 标题 */
        #collectModal h3 {
            font-size: 22px;
            color: #2a2a2a;
            margin-bottom: 10px;
            font-weight: 600;
        }

        /* 描述文本 */
        #collectModal p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* 快捷键提示 */
        .key-tip {
            display: inline-block;
            padding: 6px 14px;
            background: #f5f7fa;
            border-radius: 10px;
            color: #333;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 25px;
            border: 1px solid #e4e7ed;
        }

        /* 按钮样式 */
        .modal-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #409eff, #64b5f6);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .modal-btn:hover {
            background: linear-gradient(135deg, #338eff, #4fa3f0);
        }
