* {
    margin: 0;
    padding: 0;
    color: #161633;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.title {
    /* display: flex; */
    position: relative;
    padding: 6px;
    background-color: #e7ebbb;
}

.title>h1 {
    display: inline-block;
}

.title>span {
    margin-left: 30px;
}

.title .sousuo {
    display: flex;
    align-items: center;
    margin: 5px;
    gap: 6px;
}

.title .sousuo input {
    box-sizing: border-box;
    flex: 1;
    height: 2em;
    padding: 3px;
    border: none;
    box-shadow: #666 0 0 2px;
    background-color: #fafafa;
    border-radius: 6px;
    outline: none;
}

.title .code_lang {
    background-color: inherit;
    border: none;
    outline: none;
}

.title .sousuo button {
    border: none;
    height: 2em;
    background-color: #fafafa;
    padding: 3px;
    border-radius: 6px;
    box-shadow: #666 0 0 2px;
}

.lis {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(auto, 5em);
    grid-auto-rows: minmax(auto, 5em);
    gap: 14px;
    margin: 5px 0;
    padding: 5px 10px;
    overflow-x: hidden;
    overflow-y: auto;
}

.box {
    padding: 4px 5px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: #d5edff 0 0 4px 1px;
    overflow: hidden;
    min-height: 4.3em;
    max-height: 5em;
}

.box h4 {
    font-size: 14px;
}

.box p {
    color: #767676;
    font-size: 12px;
    word-break: break-all;
}