body {
    padding: 0px;
    margin: 0px;
    overflow: hidden auto;
    -webkit-appearance: none !important;

    font-family: "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
}

* {
    box-sizing: border-box;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

header {
    width: 100vw;
    height: 64px;
    padding: 20px;
    background: inherit;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 0px 20px;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000;
}

.quickLink {
    margin:0px;
    margin-left: 10px;
    margin-right: 4px;
}

.appsBtn {
    width: 36px;
    height: 36px;
    margin: 0px 5px;
    border: none;
    border-radius: 50%;
    background: rgba(127, 127, 127, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.appsBtn:hover {
    background: rgba(127, 127, 127, 0.2);
}

.appsBtn:active {
    background: rgba(127, 127, 127, 0.4);
}

.appsBtn img {
    width: 20px;
    height: 20px;
}

.appsMenu {
    width: 320px;
    padding: 0px;
    height: 60vh;
    min-height: 250px;
    max-height: 450px;
    line-height: calc(1.5rem);
    background: #FFF;
    border-radius: 28px;
    background: #e9eef6;
    font-size: small;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px 2px, rgba(0, 0, 0, 0.3) 0px 1px 2px 0px;

    overflow: hidden;
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 10000;
    text-align: center;
    vertical-align: middle;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.appsMenu iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* background:#f8fafd; */
    border-radius: 10px;
}

.loginBtn {
    border-radius: 100px;
    background: #0b57d0;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    min-height: 40px;
    outline: none;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    line-height: 18px;
    min-width: 85px;
    padding: 10px 12px;
    margin-left: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.loginBtn:hover {
    filter: brightness(1.1);
	box-shadow: 0 1px 2px 0 rgba(0,0,0,.3),0 1px 3px 1px rgba(0,0,0,.15);
}


footer {
    width: 100vw;
    background: #f2f2f2;
    color: #1f1f1f;
    font-size: 15px;
    padding: 20px;
    height: fit-content;
    word-break: break-all;
}



@media screen and (max-height:500px) {
    /*自适应*/
}