/* ========== 基础重置样式 ========== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: break-word;
}

html {
    font-size: 62.5%;
}

body {
    height: 100%;
    margin: 0;
    font-family: 'Open Sans', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a2e;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .3s ease;
}

p {
    word-break: break-word;
    margin: 0 0 1rem;
}