html {
    width:100%;
    height:100%;
}
body {
    width:100%;
    height:100%;
}
div {
    padding: 2px;
}
label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: right;
    width: 100%;
    line-height: 26px;
    margin-bottom: 10px;
}
input {
    height: 20px;
    margin-left: 10px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
button.punch {
    box-shadow: 0px 1px 0px 0px #f0f7fa;
    background:linear-gradient(to bottom, #33bdef 5%, #019ad2 100%);
    background-color:#33bdef;
    border-radius:6px;
    border:1px solid #057fd0;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:15px;
    font-weight:bold;
    padding:6px 24px;
    text-decoration:none;
    text-shadow:0px -1px 0px #5b6178;
}
button.punch:hover {
    background:linear-gradient(to bottom, #019ad2 5%, #33bdef 100%);
    background-color:#019ad2;
}
button.punch:active {
    position:relative;
    top:1px;
}
ul {
    display: table;
    margin: 0 auto;
}

#mainPanel {
    border-radius: 15px;
    background: #ffffff;
    width: 70%;
    margin: 20px auto;
    padding: 20px 30px 20px 30px;
    overflow: hidden;
}
#copyright {
    text-align: center;
}
#tips {
    display: block;
    margin: 0 auto;
}
#password {
    display: block;
    overflow: hidden;
    resize: none;
}
#advancedPanel {
    display: none;
    background: #bad2f5;
    opacity: 0;
    visibility: hidden;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}