html{
    font-size: 16px!important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-family: microsoft yahei ui;
    line-height: 1;
}
body{
    font-family: "source han sans cn" !important;
}
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
a {text-decoration: none;}
a:hover{text-decoration: none !important;}
a:active{text-decoration: none !important;}
a:visited{text-decoration: none !important;}
.container{min-width: 1200px; }

/* background: tan; */
.full{min-width: 1200px;}
[v-cloak] {
    visibility: hidden;
}
@media screen and (max-width: 768px) {
    .container{min-width: 100%;}
    .full{min-width: 100%;}
    html{
        width: 100%;
        height: 100%;
        font-size: calc(100vw / 375 * 100)!important;
    }
    .top-action{
        width: 100%;
        height:0.5rem;
    }
}
li{
    list-style:none;
    text-decoration: none;
}
.flex-column-space {
    display: flex;
    display: -ms-flex;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}
.flex-row-space {
    display: flex;
    display: -ms-flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    align-content: space-between;
    -webkit-align-items: center;
}
.flex-row-left {
    display: flex;
    display: -ms-flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
}
.flex-row-center {
    display: flex;
    display: -ms-flex;
    display: -webkit-flex;
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}
.flex-column-center {
    display: flex;
    display: -ms-flex;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}