html {
    font-size: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body {
    width: 100%;
    max-width: 800px;
    min-height: 100vh;
    margin: 0 auto;
    box-sizing: border-box;
    background: #eef3fb;
    color: #1f2933;
    cursor: default;
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.xilie_header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    background: #ffffff;
    border-bottom: 1px solid #e6eaf0;
}

.xilie_back {
    position: absolute;
    left: 12px;
    top: 0;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #1f2933;
    cursor: pointer;
    font-size: 32px;
    line-height: 42px;
}

.xilie_header h1 {
    max-width: calc(100% - 100px);
    margin: 0;
    overflow: hidden;
    font-size: 18px;
    font-weight: 700;
    line-height: 42px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.xilie_main {
    width: 100%;
    padding: 10px 10px 18px;
    box-sizing: border-box;
    background: #ffffff;
}

.xilie_cards {
    column-count: 2;
    column-gap: 10px;
}

.xilie_card {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 0 10px;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 3px;
    background: #ffffff;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    break-inside: avoid;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.xilie_card img {
    display: block;
    width: 100%;
    height: auto;
    background: #ffffff;
}

.xilie_card span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    height: 38px;
    padding: 0 8px;
    box-sizing: border-box;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.52);
    font-size: 17px;
    line-height: 38px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.xilie_loading {
    display: none;
    width: 100%;
    padding: 14px 0 4px;
    box-sizing: border-box;
    color: #777777;
    font-size: 15px;
    text-align: center;
}

.xilie_loading.is-visible {
    display: block;
}

@media (max-width: 600px) {
    .xilie_main {
        padding: 10px 8px 16px;
    }

    .xilie_cards {
        column-gap: 8px;
    }

    .xilie_card {
        margin-bottom: 8px;
    }

    .xilie_card span {
        height: 34px;
        font-size: 16px;
        line-height: 34px;
    }
}

@media (max-width: 360px) {
    .xilie_card span {
        font-size: 15px;
    }
}