/* 输入框 */
.inputBox{
    margin:6px;
    color: #292929;
    background-color: #e4e4e4;
    font-size: 18px;
    border: 1px solid #6c6c6c;
    text-align: center;
    box-shadow: 0 0 6px #000000;
    border-radius: 12px;
    outline: none;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
}
.inputBox:hover{
    box-shadow: 0 0 6px #000000;
}
.inputBox:focus{
    background-color: #ffffff;
    border-radius: 7px;
    border: 1px solid #000;
    box-shadow: 0 0 6px #000000;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
}

/* 信息表格 */
.tableInfo{
    background-color: #fff;
    border: 1px solid #000;
    border-collapse: collapse;
    color: #666;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
}
.tableInfo tbody tr:hover{
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
    background-color: #ededed;
}
.tableInfo thead{
    background-color: #eaeaea;
}
.tableInfo th, .tableInfo td{
    padding: 9px 15px;
    text-align: left;
    border: 1px solid #979595;
}

/* 按钮 */
.btnGreen{
    font-size: 18px;
    color: #b9ddba;
    border: 1px solid #0000000a;
    background-color: #257825;
    box-shadow: 0 0 6px #1b9f12;
    cursor: pointer;
    border-radius: 5px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    width:fit-content;
    width:-webkit-fit-content;
    width:-moz-fit-content;
}
.btnGreen:hover{
    color: #fdfdfd;
    background-color: #8de08d;
    box-shadow: 0 0 8px #10c303;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}
.btnBlue{
    font-size: 18px;
    color: #c0c1e9;
    border: 1px solid #0000000a;
    background-color: #37498d;
    box-shadow: 0 0 6px #3554af;
    cursor: pointer;
    border-radius: 5px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    width:fit-content;
    width:-webkit-fit-content;
    width:-moz-fit-content;
}
.btnBlue:hover{
    color: #fdfdfd;
    background-color: #7d90d6;
    box-shadow: 0 0 8px #0440eb;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}
.btnRed{
    font-size: 18px;
    color: #fff;
    border: 1px solid #0000000a;
    background-color: #ce6c6c;
    box-shadow: 0 0 6px #b30c0c;
    cursor: pointer;
    border-radius: 5px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    width:fit-content;
    width:-webkit-fit-content;
    width:-moz-fit-content;
}
.btnRed:hover{
    color: #fdfdfd;
    background-color: #ea7373;
    box-shadow: 0 0 8px #d70404;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}