/* 整体灰色背景 */

.bg-color {
    background-color: rgb(238, 238, 238);
}


/* 主题颜色 */

.all-color {
    color: rgb(236, 110, 0);
}


/* 按钮样式 */

.button-style {
    background-color: rgb(236, 110, 0);
    color: white;
    border-radius: 5px;
    padding: 2px 15px;
    border: 0;
}


/* 隐藏样式 */

.all-hide {
    display: none;
}

.input-style {
    width: 100%;
    border: 0px solid #eeeeee;
    padding: 5px 10px;
    font-size: 90%;
    /* color: #eeeeee; */
    background-color: rgb(238, 238, 238);
    border-radius: 5px;
    outline: none;
    box-shadow: none;
}


/* .input-style :focus {
    outline: none;
    box-shadow: none;
} */


/* 白背景 */

.bg-white-color {
    background-color: white;
}