* {
    margin: 0;
    padding: 0;
}

body,
html,
div,
button,
tr,
td,
table {
    box-sizing: border-box;
}

.editor {
    width: 100%;
    height: 300px;
    position: relative;
}

.editor_toolbar {
    width: 100%;
    height: 40px;
    background-color: rgba(69, 207, 212, 0.83);
    text-align: left;
    margin-bottom: 0;
}

.editor_toolbar .editor_img {
    width: 42px;
    height: 22px;
    font-size: 14px;
    color: #fff;
    background-color: transparent;
    outline: none;
    border: none;
    margin-top: 10px;
    margin-left: 15px;
    cursor: pointer;
}

.editor_bqdiv {
    min-height: 200px;
    position: absolute;
    left: 0;
    top: 45px;
    display: none;
    border: 1px solid #999;
    background-color: #fff;
}

.editor_bqdiv td {
    width: 46px;
    height: 36px;
    cursor: pointer;
    border: 1px solid #999;
    font-size: 0;
}

.editor_bqdiv td img {
    display: inline-block;
    width: 100%;
    height: 100%;
    border: none;
}

.editor_text {
    width: 100%;
    height: 200px;
    border: 1px solid rgba(74, 179, 193, 0.82);
    outline: none;
    overflow-x: hidden;
    overflow-y: auto;
}

.editor_text img {
    width: 46px;
    height: 40px;
    display: inline-block;
}

.editor_text:focus {
    box-shadow: 0 0 10px #999;
}

.recommon {
    width: 100px;
    height: 50px;
    font: 16px/50px "方正兰亭";
    color: #fff;
    background-color: rgba(74, 179, 193, 0.82);
    border: none;
    outline: none;
    text-align: center;
    float: right;
    cursor: pointer;
    margin-top: 2px;
}

.recommon:hover {
    background-color: rgba(10, 229, 195, 0.87);
}

.commonPanel {
    width: 100%;
    height: 120px;
    margin-top: 15px;
    border: 1px solid rgba(74, 179, 193, 0.82);
    position: relative;
    margin-bottom: 10px;
    overflow-x: hidden;
    overflow-y: auto;
}

.commonPanel .logo {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    background: url('../img/1.jpg')no-repeat center/cover;
    position: absolute;
    top: 5px;
    left: 5px;
}

.commonPanel .headerTool {
    width: calc(100% - 50px);
    margin-left: 45px;
    position: relative;
}

.commonPanel .logoName,
.commonPanel .floor,
.commonPanel .date {
    margin-left: 15px;
    text-align: center;
    font-size: 16px;
}

.commonPanel p {
    width: 100%;
    height: auto;
    position: absolute;
    left: 55px;
    top: 30px;
    text-align: left;
    font-size: 16px;
    color: #999;
}

::-webkit-scrollbar {
    width: 0;
}