body, html {
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-color: white;
}
* {
    font-family:'Nunito', PingFang SC, Microsoft YaHei;
    font-weight: 400;
}
[v-cloak] {
    visibility: hidden !important;
}
#app {
}

.body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #f5f5f5;
}

.body .header {
    background: white;
    width: 100%;
    box-shadow: 0px 0px 20px #00000010;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0px;
}

.body .header .title {
    padding: 0px 20px;
    font-size: 20px;
    font-weight: bold;
}

.body .card {
    flex: 1;
    height: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.body .card .box{
    margin: 20px;
    display: flex;
    flex-direction: row;
    box-shadow: 0px 0px 20px #00000010;
    background: white;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    height: 0;
    overflow: hidden;
}

.body .card .left {
    width: 38%;
    border-right: 3px solid #f8f8f8;
    margin-right: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
}

.left .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.left .top .el-button{
    margin-left: 10px;
    width: 108px;
}

.left .timer {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

.left .timer .content {
    margin-left: 10px;
}

.left .timer .el-switch {
    margin-left: 10px;
}

.left .input{
    margin-top: 20px;
    display: flex;
}

.body .card .left .log{
    flex: 1;
    height: 0;
    overflow: hidden;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.left .log .title{
    font-size: 16px;
    font-weight: bold;
}

.left .log .list{
    background: #f8f8f8;
    padding: 20px;
    margin-top: 10px;
    border-radius: 10px;
    flex: 1;
    height: 0;
    overflow: hidden;
    overflow-y: auto;
}

.left .log .list .time{
    color: #999;
    font-size: 14px;
}


.left .log .list .info{
    font-size: 16px;
    color: #333;
    margin-top: 5px;
    margin-bottom: 20px;
}

.right {
    flex: 1;
    width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.right .log {
    flex: 1;
    overflow: hidden;
    overflow-y: auto;
    height: 0;
    margin-top: 20px;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.right .title {
    font-size: 16px;
    font-weight: bold;
}

.right .list {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 0;
    overflow: hidden;
    overflow-y: auto;
}

.right .time {
    color: #999;
    font-size: 14px;
}

.right .time span{
    margin-left: 5px;
    color: white;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 3px;
}

.right .time .success{
    background: #93cc6b;
}

.right .time .info{
    background: #aaa;
}

.right .info {
    font-size: 16px;
    color: #333;
    margin-top: 5px;
    margin-bottom: 20px;
}

.right .item {
    background: white;
    margin: 5px 0px;
    padding: 10px;
    border-radius: 5px;
}

.copyright{
    font-size: 14px;
    color: #999;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0px 10px 10px 10px;
}

.copyright a{
    margin-left: 5px;
}