* {
    margin: 0;
    padding: 0;
}
body,html {
    overflow: hidden;
    font:16px "微软雅黑","楷体";
}
button {
    outline: none;
    border-radius: 4px;
    display: inline-block;
    background-color: transparent;
    padding: 4px 8px;
    border:1px solid #b1aeae;
    text-align: center;
    cursor: pointer;
    color: #767676;
    transition: all .1s .2s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
button:hover,button:active {
    background-color: #2396ef;
    border-color: #2396ef;
    color: #ffffff;
}
.add-btn {
    margin: 1em;
}
.table {
    width: calc(100% - 20px);
    border-collapse: collapse;
    border: 1px solid #192919;
    margin: 0 10px;
}
.table th,.table td {
    border: 1px solid #192919;
    padding: 6px 8px;
    text-align: center;
}
.table thead {
    background-color: #59d1e6;
}
.table thead th {
    color: #fff;
}
.table input[type="checkbox"]{
    width: 15px;
    height: 15px;
}
.my-form-container {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);
    z-index: 1;
    display: none;
}
.my-form {
    position: absolute;
    background-color: #ffffff;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    min-width: 400px;
    border-radius: 4px;
}
.my-form > div {
    padding:15px;
}
.my-form > div label,.my-form > div input {
    vertical-align: middle;
    display: inline-block;
}
.my-form > div label {
    width: 80px;
    text-align: right;
    color: #535353;
}
.my-form > div input{
    min-width: 200px;
    outline: none;
    border: 1px solid #ededed;
    background-color: transparent;
    color: #535354;
    padding: 6px 8px;
    transition: all .3s cubic-bezier(0.6, -0.28, 0.735, 0.045);
    border-radius: 4px;
}
.my-form > div input:focus{
    border-color:#334455
}

.my-form > div:last-of-type {
    text-align: center;
}
.my-form > div:last-of-type button {
    width: 150px;
}