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: #ffffff;
    color: #111111;
    cursor: default;
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.caise_header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.caise_back {
    position: absolute;
    left: 10px;
    top: 0;
    width: 42px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #111111;
    cursor: pointer;
    font-size: 32px;
    line-height: 44px;
}

.caise_header h1 {
    max-width: calc(100% - 110px);
    margin: 0;
    overflow: hidden;
    font-size: 18px;
    font-weight: 500;
    line-height: 44px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.caise_main {
    width: 100%;
    padding: 8px 26px 20px;
    box-sizing: border-box;
    background: #ffffff;
}

.caise_group_title {
    margin: 0;
    padding: 8px 0 8px;
    color: #06c160;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.caise_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 0 6px 0 0;
    box-sizing: border-box;
    border-bottom: 1px solid #eeeeee;
    color: #111111;
    font-size: 16px;
    line-height: 1.35;
    text-decoration: none;
}

.caise_name {
    flex: 1;
    min-width: 0;
    padding-right: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.caise_qishu {
    flex: 0 0 auto;
    min-width: 66px;
    height: 24px;
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 3px;
    background: #f1f1f1;
    color: #06c160;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.caise_loading {
    display: none;
    width: 100%;
    padding: 24px 0;
    box-sizing: border-box;
    color: #888888;
    font-size: 15px;
    text-align: center;
}

.caise_loading.is-visible {
    display: block;
}

@media (max-width: 600px) {
    .caise_main {
        padding: 8px 16px 18px;
    }

    .caise_item {
        min-height: 44px;
        font-size: 15px;
    }

    .caise_qishu {
        min-width: 66px;
        font-size: 15px;
    }
}