* {
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,body,p,ul,dl,dt,dd,br,hr,h1,h2,h3,h4,h5,h6,ol {
    margin: 0;
    padding: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    text-size-adjust: 100%;
    counter-reset: section;
    touch-action: manipulation;
}

/* @media screen and (min-width: 375px) {
    html {
        font-size:100px;
        font-size: 1000vw/37.5
    }
} */
body,button,input,select,textarea {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Microsoft Yahei";
    outline: 0;
}

body,html {
    height: 100%;
}

body {
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
    background-color: #f7f8fa;
}

button {
    font-size: inherit;
}

input,textarea {
    -webkit-user-select: auto !important;
    -webkit-touch-callout: inherit !important;
}

:focus {
    outline: none;
}

a,a:hover,a:visited,a:focus,a:link {
    color: inherit;
    text-decoration: none;
    outline: none;
}

img {
    max-width: 100%;
}

li {
    list-style: none;
}

.app {
    position: relative;
    max-width: 640px;
    min-width: 320px;
    margin: 0 auto;
    height: 100%;
    background: #fefefe;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.btn {
    position: relative;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    outline: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
}

.btn svg {
    position: absolute;
    left: 20px;
}

.cover {
    position: relative;
    width: 100%;
    height: 70%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.btn:active {
    opacity: 0.6;
}

.style .btn {
    margin: 30px;
    box-shadow: 0 10px 12px -6px #9b9b9b;
}


.theme {
    --theme-color: #fb7299;
}

.theme .btn.ios {
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
}

.theme.style .btn.android {
    background-color: var(--theme-color);
    color: #fff;
}

.theme .cover {
    background-color: var(--theme-color);
}
