<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
    margin: 0;
    padding: 0;
}

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

body {
    font-family: "Microsoft Yahei";
}

a {
    outline: 0;
    text-decoration: none
}

strong {
    font-weight: 400
}

.strong {
    font-weight: 700
}

::selection {
    background: #0080ff;
    color: #fff
}

img {
    border: 0
}

::-moz-selection {
    background: #1EACDF;
    color: #fff
}


/* flex éƒ¨åˆ† */
.flex {
    display: flex;
}

.flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-ac {
    align-items: center;
}

.flex-hc {
    justify-content: center;
}

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

.flex-zBetween {
    justify-content: space-between;
}

.flex-zAround {
    justify-content: space-around;
}

.checkBox {
    cursor: pointer;
}
.Btn {
    cursor: pointer;
}
.pointer {
    cursor: pointer;
}
.container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1560px) {
    .container {
        padding: 0 4rem;
    }
}
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}
@media (max-width: 750px) {
    .container {
        padding: 0 0.6rem;
    }
}</pre></body></html>