.panel-body {
    width: 100%;
    min-height: 500px;
    background-color: #fff;
    border-radius: 8px
}

.desc {
    line-height: 26px;
    padding-bottom: 10px;
}

.margin_auto {
    width: 500px;
    margin: auto;
}

.conter {
    padding: 50px;
    display: flex;
    justify-content: center;

}

.panel-body tr td {
    line-height: 30px;
    padding: 5px;
}

input[type=number] {
    border-radius: 3px;
    border: 1px solid #ADADAD;
    padding: 3px;
    outline: none;
    line-height: 20px;
}

.panel-body select {
    padding: 10px;
    border-radius: 4px;
    line-height: 26px;
    font-size: 16px;
}

.panel-body .btn {
    display: flex;
    justify-content: center;
    padding: 10px 0;

}

.panel-body button {
    border: 0;
    border-radius: 4px;
    padding: 5px 15px;
    line-height: 20px;
    margin: 0 5px;
    font-size: 14px;
    cursor: pointer;
}

.panel-body .result {
    position: relative;
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
    overflow: hidden;
}

.panel-body .result span {
    display: block;
    line-height: 26px;
}

.panel-body .result .read {
    line-height: 26px;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    padding: 0 5px;
    box-sizing: border-box;
}

.panel-body .views {
    width: 100%;
    border: 1px solid #000;
    border-radius: 4px;
}





@media screen and (max-width: 760px) {
    .main {
        padding: 10px;
    }

    .desc {
        display: none;
    }

    .main .is_title {
        background-color: #fff;
        border-radius: 6px 6px 0px 0;
    }

    .main .is_title img {
        width: 30px;
        height: 30px;
    }

    .margin_auto {
        width: 100%;
        margin: 0;
    }

    .conter {
        padding: 20px 10px;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
    }

    .panel-body {
        width: 100%;
        min-height: auto;
        background-color: #fff;
        border-radius: 0 0 8px 8px;
    }

    input {
        width: 98%;
    }

}