 body {
            font-family: Arial, sans-serif;
        }

        /* 弹窗按钮样式 */
        .chat-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: white;
            color: #007BFF;
            border: none; /* 去掉蓝色圆边 */
            padding: 15px 20px;
            border-radius: 10px; /* 增加圆形弧度 */
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 添加阴影 */
            font-size: 16px;
            width: 60px; /* 固定宽度 */
            height: 60px; /* 固定高度 */
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000; /* 确保按钮在最上层 */
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out; /* 添加变换过渡 */
        }

        .chat-button:hover {
            transform: scale(1.05); /* 鼠标悬停时稍微放大按钮 */
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* 放大阴影 */
            background-color: #e0f7fa; /* 浅蓝色背景 */
            color: #0056b3; /* 深蓝色文字 */
        }

        .chat-button:active {
            transform: scale(0.95); /* 按下时稍微缩小按钮 */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 缩小阴影 */
        }

        /* 更多信息按钮样式 */
        .additional-button {
            position: fixed;
            right: 20px;
            background: linear-gradient(to bottom, #ff6347, #ffa500); /* 红橙渐变颜色 */
            color: white;
            border: none;
            padding: 15px 20px;
            border-radius: 30px; /* 增加圆形弧度 */
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 添加阴影 */
            font-size: 14px;
            writing-mode: vertical-lr; /* 文字垂直排列 */
            text-orientation: upright; /* 文字直立 */
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out; /* 添加变换过渡 */
            width: 60px; /* 与客服按钮相同宽度 */
            height: 120px; /* 延伸高度 */
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000; /* 确保按钮在最上层 */
        }

        .additional-button:hover {
            transform: scale(1.05); /* 鼠标悬停时稍微放大按钮 */
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* 放大阴影 */
            background: linear-gradient(to bottom, #ff4500, #ffa07a); /* 更深的红橙渐变颜色 */
        }

        .additional-button:active {
            transform: scale(0.95); /* 按下时稍微缩小按钮 */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 缩小阴影 */
        }

        /* 第一个更多信息按钮样式 */
        #original-additional-button {
            background-color: white;
            color: gray;
            writing-mode: unset; /* 取消垂直排列 */
            text-orientation: mixed; /* 恢复默认文字方向 */
            font-size: 14px;
            border: 1px solid #ddd; /* 添加边框以便更好地显示 */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 添加轻微阴影 */
            transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease; /* 添加变换过渡 */
        }

        #original-additional-button:hover {
            background-color: #f0f0f0; /* 浅灰色背景 */
            color: darkgray; /* 较深的灰色文字 */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 加强阴影 */
        }

        #original-additional-button:active {
            background-color: #d0d0d0; /* 更深的浅灰色背景 */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* 加强阴影 */
        }

        /* 第二个更多信息按钮样式 */
        #additional-button1 {
            background-color: white;
            color: gray;
            writing-mode: unset; /* 取消垂直排列 */
            text-orientation: mixed; /* 恢复默认文字方向 */
            font-size: 14px;
            border: 1px solid #ddd; /* 添加边框以便更好地显示 */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 添加轻微阴影 */
            transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease; /* 添加变换过渡 */
        }

        #additional-button1:hover {
            background-color: #f0f0f0; /* 浅灰色背景 */
            color: darkgray; /* 较深的灰色文字 */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 加强阴影 */
        }

        #additional-button1:active {
            background-color: #d0d0d0; /* 更深的浅灰色背景 */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* 加强阴影 */
        }

        /* 客服弹窗内容样式 */
        .popup-box {
            position: fixed;
            bottom: -500px; /* 初始位置在屏幕外 */
            right: 20px;
            width: 350px; /* 增加宽度以容纳更多内容 */
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            padding: 20px;
            opacity: 0; /* 初始透明度为0 */
            transition: all 0.5s ease-in-out; /* 平滑过渡所有属性 */
            z-index: 999; /* 确保弹窗在按钮下方 */
        }

        /* 弹窗显示时的样式 */
        .popup-box.active {
            bottom: 140px; /* 弹窗显示位置 */
            opacity: 1; /* 完全显示 */
        }

        .popup-box h3 {
            margin-top: 0;
            color: #007BFF;
            transition: color 0.3s ease-in-out;
        }

        .popup-box p {
            margin: 10px 0;
            transition: color 0.3s ease-in-out;
        }

        .popup-box a {
            color: #007BFF;
            text-decoration: none;
            transition: color 0.3s ease-in-out;
        }

        .popup-box a:hover {
            text-decoration: underline;
        }

        /* 关闭按钮样式 */
        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: transparent;
            color: #007BFF;
            border: none;
            padding: 5px;
            font-size: 20px;
            cursor: pointer;
            transition: color 0.3s ease-in-out; /* 文字颜色过渡 */
        }

        .close-btn:hover {
            color: #0056b3; /* 悬停时改变文字颜色 */
        }

        /* 更多信息样式 */
        .more-info {
            margin-top: 20px;
        }

        .more-info h4 {
            margin-bottom: 10px;
            color: #333;
            transition: color 0.3s ease-in-out;
        }

        .more-info ul {
            list-style-type: none;
            padding: 0;
        }

        .more-info ul li {
            margin: 5px 0;
            display: flex;
            align-items: center;
            transition: transform 0.3s ease-in-out;
        }

        .more-info ul li:hover {
            transform: translateX(5px); /* 悬停时向右移动 */
        }

        .more-info ul li img {
            width: 24px;
            height: 24px;
            margin-right: 10px;
            transition: transform 0.3s ease-in-out;
        }

        .more-info ul li img:hover {
            transform: scale(1.1); /* 悬停时放大图片 */
        }

        .more-info ul li button {
            display: inline-block;
            padding: 10px 20px;
            font-size: 14px;
            color: white; /* 白色文字 */
            background-color: #007BFF; /* 蓝色背景 */
            text-align: center;
            text-decoration: none;
            border-radius: 25px; /* 圆角 */
            transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .more-info ul li button:hover {
            background-color: #0056b3; /* 深蓝色背景 */
            transform: scale(1.05); /* 悬停时稍微放大按钮 */
        }

        .more-info ul li button:active {
            transform: scale(0.95); /* 按下时稍微缩小按钮 */
        }

        /* 二维码区域样式 */
        .qrcode-section {
            text-align: center;
            margin-top: 20px;
        }

        .qrcode-section img {
            width: 150px; /* 二维码图片大小 */
            height: 150px;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 10px;
            background-color: #f9f9f9;
            transition: transform 0.3s ease-in-out; /* 图片变换过渡 */
        }

        .qrcode-section img:hover {
            transform: scale(1.05); /* 鼠标悬停时放大图片 */
        }

        .qrcode-section p {
            margin-top: 10px;
            font-size: 14px;
            color: #666;
            transition: color 0.3s ease-in-out;
        }