* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    background-color: #eee;
}

.wrap {
    width: 100%;
    height: 100%;
}

.container {
    width: 100%;
    padding: 15px;
    font-size: 24px;
}

.inp_box {
    display: flex;

    align-items: center;
    width: 100%;
    box-shadow: 0 4px 20px -2px #e9e9e9;
}
.inp_box_name {
    white-space: nowrap;
}
.inp_box > span {
    width: 72px;
}

.inp_box > span,
.inp_box > button {
    flex: none;
    /* white-space: nowrap; */
}

.search_inp {
    padding: 5px 10px;
    border-radius: 50px;
    border: 1px solid #ccc;
    font-size: 20px;
}

.search_inp + button {
    margin-left: 5px;
}

.search_btn {
    overflow: visible;
    position: relative;
    border: 0;
    padding: 0;
    cursor: pointer;
    height: 40px;
    /* width: 110px; */
    padding: 0 20px;
    color: #fff;
    text-transform: uppercase;
    background: #198cff;
    border-radius: 40px;
    text-shadow: 0 -1px 0 rgb(0 0 0 / 30%);
    font-size: 20px;
}

#show {
    font-size: 20px;
}

table {
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
}
table th {
    background-color: #ddd;
}
table td {
    padding: 0 3px;
}

table td:first-child {
    text-align: left;
}

.total {
    text-align: right;
}
.infoItem {
    padding: 20px 0;
}
.infoItem + .infoItem {
    border-top: 1px solid #aaa;
}
.mask {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #eee;
}

@media screen and (max-width: 768px) {
    .inp_box {
        flex-wrap: wrap;
    }
    .inp_box_name {
        width: 100%;
    }
    .search_inp {
        width: calc(100% - 90px);
    }
}
