
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.all_outer {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
}

.header {
    height: 60px;
    width: 100%;
    flex: none;
    background: #f3f3f3;
    color: #333;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    font-size: 20px;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
}

.content_outer {
    width: 100vw;
    height: 0;
    flex: 1;
    display: flex;
}

.left {
    width: 600px;
    flex: none;
    background-color: #fff;

    overflow-x: hidden;
    height: 100%;
    border-right: 1px solid #ccc;
    display: flex;
    flex-flow: column;
    padding: 10px;
}

.title {
    color: deepskyblue;
}

.left textarea {
    height: 100%;
    border: 1px solid #ccc;
    outline: none;
    resize: none;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 4px;
    margin-bottom: 10px;
}


.right {
    display: flex;
    flex-direction: column;
    width: 0;
    flex: auto;
    background: white;
    padding: 10px;
}

.c_item {
    display: flex;
    height: 32px;
    border: 1px solid deepskyblue;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.c_item .zb_name {
    width: 120px;
    height: 100%;
    background: deepskyblue;
    color: white;
}

.content_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.c_item .zb_value {
    width: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
}

.line {
    height: 1px;
    background-color: deepskyblue;
}

.space_v {
    height: 10px;
}