.func-container {
    font-family: "Microsoft YaHei", "Arial", "Verdana", "宋体", sans-serif;
    margin-bottom: 30px;
}

.func-container-content {
    display: table-cell;
    margin: 0 auto;
    width: 1040px;
}

.data_tab {
    width: 100%;
}

.data_tab_img {
    display: none;
    width: 100%;
    max-height: 600px;
    /*width: 480px;*/
    /*height: 480px;*/
    object-fit: contain;
    border: 1px #ececec solid;
}

.data_tab_img_display {
    width: 100%;
    max-height: 600px;
    /*width: 480px;*/
    /*height: 480px;*/
    object-fit: contain;
    border: 1px #ececec solid;
}

/*.fileDiv {*/
/*    width: 500px;*/
/*    height: 80px;*/
/*    background-color: #00a2d4;*/
/*    line-height: 40px;*/
/*    text-align: center;*/
/*    color: #FFF;*/
/*    border-radius: 9px;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.fileDiv input {*/
/*    width: 500px;*/
/*    height: 80px;*/
/*    background-color: #FFF;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    opacity: 0;*/
/*    -ms-filter: 'alpha(opacity=0)';*/
/*}*/

#file {
    display: none;
}

#file + label {
    display: inline-block;
    width: 100px;
    height: 30px;
    background-color: rgb(90, 152, 222);
    text-align: center;
    line-height: 30px;
    border-radius: 5px;
}

.func-io-div {
    float: left;
    width: 49%;
    min-height: 100px;
    min-width: 300px;
    max-width: 500px;
    background: #FAFAFA;
    border-radius: 5px;
    border: 1px #ececec solid;
    margin: 2px;
    padding: 5px;
    font-family: "Microsoft YaHei";
    font-size: 12px;
    color: #555555;
    font-weight: normal;
}

.param-name {
    float: left;
    width: 49%;
}

.param-tip {
    float: left;
    width: 49%;
    text-align: right;
    color: #aaaaaa;

}

.param-input {
    width: 95%;
    margin-left: 3%;
    margin-right: 2%;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px #ececec solid;
    /*margin: 2px;*/
    padding: 5px;
}

.func-submit {
    width: 100%;
    height: 42px;
    margin-top: 10px;
    background: #5897fb;
    border-radius: 10px;
    border: 1px #ececec solid;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: bold;
}

.output_frame {
    width: 100%;
    min-height: 200px;
    max-height: 600px;
    border: 0px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th {
    height: 30px;
    background: #ececec;
}

td {
    padding: 5px;
}

table, th, td {
    border: 1px solid #aaaaaa;
    font-size: 12px;
}

.code-block {
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    background: #f9f9f9;
    padding: 16px;
    font-size: 13px;
    color: #595959;
}

pre {
    display: block;
    font-family: monospace;
    white-space: pre;
    margin: 1em 0px;
}

.layout_qrcode {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.8);
    -webkit-animation: bg_w 0.5s ease-out both;
    -moz-animation: bg_w 0.5s ease-out both;
    animation: bg_w 0.5s ease-out both
}
@-webkit-keyframes bg_w {
    0% {
        background: rgba(255, 255, 255, 0)
    }
    100% {
        background: rgba(255, 255, 255, 0.8)
    }
}
@keyframes bg_w {
    0% {
        background: rgba(255, 255, 255, 0)
    }
    100% {
        background: rgba(255, 255, 255, 0.8)
    }
}
