/*修改滚动条*/
/*火狐*/
*  {
    scrollbar-color: #007be0 rgba(0, 0, 0, 0.1);
    /* 第一个方块颜色，第二个轨道颜色(用于更改火狐浏览器样式) */
    scrollbar-width: thin;
    /* 火狐滚动条无法自定义宽度，只能通过此属性使滚动条宽度变细 */
}
/*IE*/
*{
    scrollbar-face-color: #007be0;
    scrollbar-highlight-color: #ffffff;
    scrollbar-3dlight-color: #ffffff;
}
/*谷歌*/
/*滚动条整体样式*/
*::-webkit-scrollbar {
    width: 10px;/*   高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}
/*滚动条里面小方块*/
*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px #007be0;
    background: #E5E5E5;
}
/*滚动条里面轨道*/
*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px #ffffff;
    border-radius: 10px;
    background: #ffffff;
}
/*滚动条上下的箭头按钮*/
*::-webkit-scrollbar-button {
    display: none;
}
/*修改滚动条*/

.submit button{
    float: right;
}
.submit .ajax-post{
    margin-right: 10px;
}
.edui-button.edui-for-135editor .edui-button-wrap .edui-button-body .edui-icon{
    background-image: url("http://static.135editor.com/img/icons/editor-135-icon.png") !important;
    background-size: 85%;
    background-position: center;
    background-repeat: no-repeat;
}

.float-left{float: left}
.float-right{float: right}
.hide{display: none}
.m-r-5{margin-right: 5px}
.m-r-10{margin-right: 10px}
.m-l-5{margin-left: 5px}
.m-l-10{margin-left: 10px}
.m-t-5{margin-top: 5px}
.m-t-10{margin-top: 10px}
.m-b-5{margin-bottom: 5px}
.m-b-10{margin-bottom: 10px}
.btn-sm{padding: 0.20rem 0.35rem;}
#think_page_trace,#think_page_trace_open{display: none;}