@charset "utf-8";
/* CSS Document */


          .consult-bar {
            position: fixed;
            bottom: -100px; /* 初始在屏幕外 */
            left:50%;
            width:900px; margin-left:-450px; 
            background: #3a7d8d;
            color: white;
            padding: 10px 0;
            text-align: center;
            z-index: 1000;
            transition: bottom 0.3s ease; border-radius:5px 5px 0 0;
        }
        
        /* 显示状态 */
        .consult-bar.show {
            bottom: 0;
        }
        
        /* 按钮样式 */
        .consult-btn, .email-btn {  font-family: "biaoti";
            padding:5px 20px;
            margin: 0 15px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
        }
        
        .consult-btn {
            background: #ff0000;
            color: white;
        }
        
        .email-btn {
            background: #ff0000;
            color: white;
        }