html,
body {
    /* height: -webkit-fill-available; */
    font-family: "Microsoft YaHei", 'PingFangSC-Regular', 'PingFangSC-MEDIUM', 'HanHei SC', 'sans-serif';
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1;
    user-select: none;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    padding: 0 12px;
    box-sizing: border-box;
    width: 100%;
    height: 44px;
    background-color: transparent;
}

.header-logo {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 44px;
}

.header-logo img {
    margin-right: 6px;
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.header-list {
    display: flex;
    align-items: center;
}

.header-list span {
    margin-right: 24px;
    width: 24px;
    height: 24px;
}

.header-list img {
    margin-right: 24px;
    width: 24px;
    height: 24px;
}

.header-list span:last-child {
    margin-right: 0;
}

#close {
    display: none;
}