_chat.css 1023 Bytes
.service-chat {
    #chat-send-box {
        border-top: 1PX solid #e5e5e5;
        border-bottom: 1PX solid #e5e5e5;
        padding: 16px 20px 14px;

        .input-method,
        .menu-trigger {
            display: block;
            width: 60px;
            height: 60px;
            background-repeat: no-repeat;
            background-size: 60px 60px;
        }

        /* 输入方式 */
        .input-method {
            margin-right: 20px;
        }

        .input-text {
            background-image: resolve("service/chat/input-text.png");
        }

        .input-voice {
            background-image: resolve("service/chat/input-voice.png");
        }

        /* 输入框 */
        .input-in {
            display: block;
            width: 100%;
            height: 70px;
            border: 1PX solid #e0e0e0;
            border-radius: 8px;
        }

        .menu-trigger {
            margin-left: 20px;
            background-image: resolve("service/chat/menu-trigger.png");
        }
    }
}