/* 浮动按钮样式 */
        .floating-buttons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .floating-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #8B4513;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            border: none;
        }

        .floating-button:hover {
            background-color: #6B3403;
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
	/* 自定义SVG箭头样式 */
        .floating-button svg {
            width: 24px;
            height: 24px;
            fill: white;
            transition: transform 0.3s ease;
        }

        .floating-button:hover svg {
            transform: scale(1.1);
        }

	@media (max-width: 600px) {
	.floating-buttons {
                right: 10px;
                bottom: 10px;
            }

            .floating-button {
                width: 40px;
                height: 40px;
            }

            .floating-button svg {
                width: 20px;
                height: 20px;
            }
        }

