* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer,
.main {
    /* background-color: yellow; */
    width: 400px;
    margin: 20px auto;
}

.beian {
    text-align: center;
}

a {
    text-decoration: none;
}

a:hover {
    background-color: gold;
}

.panel {
    background-color: #f5f1f1;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 10px 20px 20px 10px;
    margin-bottom: 20px;
}

.panel-title {
    text-align: center;
    margin-bottom: 10px;
}

.search-row,
.result-row {
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 10px;
}

.search-label,
.result-label {
    width: 130px;
    /* background-color: greenyellow; */
    /* flex-shrink: 0; */
    text-align: right;
}

.search-input,
.result-input {
    flex: 1;
}