@font-face {
    font-family: "方正何旭奶油体";
    src: url("fonts/方正何旭奶油体.woff2");
}

@font-face {
    font-family: "方正FW筑紫A老明朝 简 E";
    src: url("fonts/方正FW筑紫A老明朝 简 E.woff2");
}

:root {
    --animate-duration: 500ms;
}

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

body {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    font-family: "方正FW筑紫A老明朝 简 E";
    color: #4e5969;
    background: linear-gradient(135deg, #CD1818, #FFE569, #4acb4a, #4848cb, #d64bd6, pink) 0 0/800vmax 800vmax;
    animation: bg-move 100s linear infinite;
    backdrop-filter: blur(10px);
}

@keyframes bg-move {
    0% {
        background-position: 0 0
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0 0
    }
}

main {
    width: fit-content;
    margin: 100px auto 0;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .85);
    box-shadow: inset 1px 1px 3px #fff, 2px 2px 8px rgba(0, 0, 0, .1);
    backdrop-filter: blur(10px);
}

.title {
    font-family: "方正何旭奶油体";
    text-align: center;
    color: #1d2129;
}


.filter dl,
.filter dl dd,
section h2,
section div {
    display: flex;
    align-items: center;
}

.filter dl {
    margin-bottom: 8px;
}

.filter dl dt {
    margin-right: 16px;
}

.filter dl dd + dd {
    margin-left: 16px;
}

.filter dl dd label {
    margin-left: 8px;
}

.filter button {
    margin-left: 48px;
    padding: 4px 8px;
}

.section-wrap {
    margin-top: 32px;
    height: 141px;
    overflow: hidden;
}

section {
    padding: 16px;
    background: #fff;
    border-radius: 16px;
}

section h2 {
    justify-content: space-between;
    margin-bottom: 8px;
}

section div span:first-child {
    width: 80px;
    text-align: right;
    color: #555;
}

section div span:last-child {
    margin-left: 16px;
}

.empty {
    height: 100%;
    background: url(empty.svg) center center/contain no-repeat;
}
