html,
body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
}

.header {
    flex: 0 1 auto;
    max-height: 80px;

    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    border-bottom: 1px solid #727272;
}

.content {
    flex: 1 1 auto;
    height: 0;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

.footer {
    flex: 0 1 auto;
    height: 20px;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    border-top: 1px solid #727272;
}

.center {
    flex: 1 1 auto;
    overflow: auto;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

.right {
    flex: 0 0 auto;
    width: 382px;
    box-sizing: border-box;
    overflow: auto;
    margin: 0px;
    padding: 0px;
    border-left: 1px solid #727272;
}

canvas:active {
    border: 0px;
    outline: none;
}


canvas {
    outline: none;
    flex: 0 1 auto;
    background-color: #ffffff;
}

.menu-panel {
    background-color: #f5f5f5;
}

.title-panel {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    background-color: #f5f5f5;

    display: flex;
    align-items: center;
    justify-content: center;
}

.canvas-panel {
    display: flex;
    justify-content: center;
    background-color: #9b9b9b;
    padding: 2px;
}

.property-panel {
    background-color: #f5f5f5;
}


.status-panel {
    height: 20px;
    background-color: #dfdfdf;
    text-align: center;
}

.status-text {
    font-size: 12px;
    color: #000000;
    text-align: center;
}



.form-label {
    font-size: 16px;
    padding: 10px 10px;
    text-align: right;
    width: 100px;
}

.form-value {
    font-size: 16px;
    padding: 4px 10px;
}

.form-half {
    width: 110px !important;
}

.form-tip{
    color: #ff0000;
    padding: 0px 3px;
    border-radius: 4px;
    border: 1px solid #ff0000;
    font-size: 8px;
    cursor: pointer;
}

.form-input-select,
.form-input-number {
    font-size: 16px;
    height: 30px;
    box-sizing: border-box;
    width: 220px;
    vertical-align: middle;

}

.form-input-button {
    font-size: 16px;
    height: 30px;
    box-sizing: border-box;
    width: 220px;
    vertical-align: middle;
    cursor: pointer;
    background-color: #0075ff;
    color: #ffffff;
    border: 0;
}

.form-input-button.small {
    width: 90px;
}

.form-input-number {
    text-align: right;
}

.form-input-textarea {
    font-size: 16px;
    height: 100px;
    box-sizing: border-box;
    width: 220px;
    resize: none;
}

.form-input-color {
    font-size: 16px;
    height: 30px;
    box-sizing: border-box;
    width: 30px;
    vertical-align: bottom;
}

.form-input-checkbox {
    height: 30px;
    width: 30px;
    box-sizing: border-box;
    vertical-align: middle;
}

.form-icon-checkbox {
    display: inline-block;
    font-size: 16px;
    height: 30px;
    box-sizing: border-box;
    min-width: 30px;
    border: 1px solid #afb8d6;
    text-align: center;
    line-height: 28px;
    cursor: pointer;
    vertical-align: bottom;
}

.form-button-checkbox,
.form-button-radio {
    display: inline-block;
    font-size: 16px;
    height: 30px;
    box-sizing: border-box;
    min-width: 30px;
    border: 1px solid #a8c0db;
    text-align: center;
    line-height: 28px;
    cursor: pointer;
    vertical-align: bottom;
    padding: 0 10px;
}

.form-icon-checkbox:hover,
.form-button-checkbox:hover,
.form-button-radio:hover {
    border: 1px solid #11335a;
}

.form-icon-checkbox.selected,
.form-button-radio.selected,
.form-button-checkbox.selected {
    background-color: #a8c0db;
    color: #0c0c0c;
}

.test{
    font-weight: 1;
    border: 1px solid red;
}