/* 基础样式 */
html {
    font-size: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
 body {
    min-height: 100vh;
    font-family: 'Blinker', Arial, 'Microsoft YaHei', sans-serif;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
}

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

ul,
ol,
li {
    list-style: none;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
textarea {
    border: 0;
    outline: none;
    background: none;
}

.btn {
    padding: 0.95rem 2.4rem;
    color: #000;
    font-size: 1.4rem !important;
    border-radius: 9999px;
    font-weight: 600 !important;
}


.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}