﻿#open-chat-btn {
    /* 布局 */
    position: relative; /* 或者 static，取决于你的容器 */
    display: block;
    margin: 20px auto;
    width: 80%;         /* 移动端建议宽一点，方便点击 */
    max-width: 300px;   /* 限制最大宽度 */
    padding: 15px 0;
    
    /* 外观 */
    background-color: #ff4b4b;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    border-radius: 8px;
    border: none;
    
    /* 关键：确保层级最高，不被遮挡 */
    z-index: 999999;
    cursor: pointer;
    
    /* 移动端优化：移除点击高亮背景色 */
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* 点击态反馈 */
#open-chat-btn:active {
    background-color: #e03e3e;
    transform: scale(0.98);
}
