*,
::before,
::after {
    box-sizing: border-box;
    border-color: currentColor;
    border-style: solid;
    border-width: 0;
}

#app {
    width: 100%;
    height: 100%;
}

html {
    --font-size: 6px;
    --color1: #f0ffff;
    --borderRadius: 1em;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    line-height: 1.5;
    -moz-tab-size: 4;
      -o-tab-size: 4;
         tab-size: 4;
    -webkit-text-size-adjust: 100%;
       -moz-text-size-adjust: 100%;
            text-size-adjust: 100%;
    font-size: calc(100vw / 19.2);
}

@media (min-width: 1200px) and (max-width: 1365px) {
    html {
        font-size: calc(100vw * 1.2 / 19.2);
    }
}

@media (min-width: 991px) and (max-width: 1199px) {
    html {
        font-size: calc(100vw * 1.3 / 19.2);
    }
}

@media (min-width: 700px) and (max-width: 990px) {
    html {
        font-size: calc(100vw * 2.2 / 19.2);
    }
}

@media (max-width: 699px) {
    html {
        font-size: 50px;
    }
}

.row {
    --bs-gutter-x: 0.16rem;
    --bs-gutter-y: 0.16rem;
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.04rem
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.04rem
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.08rem
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.08rem
}

.g-3,
.gx-3 {
    --bs-gutter-x: 0.16rem
}

.g-3,
.gy-3 {
    --bs-gutter-y: 0.16rem
}

.g-4,
.gx-4 {
    --bs-gutter-x: 0.24rem
}

.g-4,
.gy-4 {
    --bs-gutter-y: 0.24rem
}

.g-5,
.gx-5 {
    --bs-gutter-x: 0.32rem
}

.g-5,
.gy-5 {
    --bs-gutter-y: 0.32rem
}


.g-6,
.gx-6 {
    --bs-gutter-x: 0.38rem
}

.g-6,
.gy-6 {
    --bs-gutter-y: 0.38rem
}

body {
    overflow-x: hidden;
    background-color: #fff;
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: "OPPOSans-R", "Helvetica Neue", Helvetica, "PingFang SC",
        "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    line-height: inherit;
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
}

abbr[title] {
    -webkit-text-decoration: underline dotted;
            text-decoration: underline dotted;
}

a {
    color: #ccd1dd;
    text-decoration: inherit;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp,
pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

table {
    text-indent: 0;
    border-collapse: collapse;
    border-color: inherit;
}

button,
input,
optgroup,
select,
textarea {
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: 100%;
    line-height: inherit;
    color: inherit;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    background-image: none;
}

:-moz-focusring {
    outline: auto;
}

:-moz-ui-invalid {
    box-shadow: none;
}

progress {
    vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
}

::-webkit-file-upload-button {
    display: none;
    font: inherit;
}

summary {
    display: list-item;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
    margin: 0;
}

fieldset {
    padding: 0;
    margin: 0;
}

legend {
    padding: 0;
}

ol,
ul,
menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

textarea {
    resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: #9ca3af;
    opacity: 1;
}

input::placeholder,
textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

button,
[role="button"] {
    cursor: pointer;
}

:disabled {
    cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    vertical-align: middle;
}

img,
video {
    max-width: 100%;
    height: auto;
}

[hidden] {
    display: none;
}

.dark {
    color-scheme: dark;
}

label {
    font-weight: 600;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a:focus,
button:focus {
    outline: none;
}

a,
a:link,
a:hover,
a:active,
a:visited {
    text-decoration: none;
    outline: none;
}

div:focus {
    outline: none;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}