/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100;300;400;500;700;900&display=swap');
@font-face {
    font-family: 'PingFang';
    src: url('../font/PingFangSC-Light.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}*/
*,
*::before,
*::after {
    margin: 0;
    padding:0;
    list-style: none;
    outline-style:none;
    text-decoration: none;
    box-sizing: border-box;
}
/* Set core body defaults */
html,body {
    min-height: 100vh;
    width:100%;
    font-size:100px;
    line-height: 1.5;
    /*font-family:"PingFang","Noto Sans SC","PingFang SC", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Source Han Sans", "Noto Sans CJK Sc", "Microsoft YaHei", "Microsoft Jhenghei", sans-serif;*/
    font-family: 'PingFang SC','Microsoft YaHei','Hiragino Sans GB','Helvetica','Tahoma','Arial','SimSun','Heiti','sans-serif';
}
.hidden{
    display: none;
}
.show {
    display: block;
}
.pointer{
    cursor: pointer;
}
.fl{float:left;}
.fr{float:right;}
.hp100{height:100%;}
.my-bullet{
    background: rgba(0, 0, 0, 0.2);
    width:16px;height:4px;border-radius:9px;display: inline-block;
    margin:0 4px;cursor: pointer;
}
.my-bullet-active{
    background:#61C13A;
}