*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
html {
   font-size: 100px;
}
body {
   width: 100%;
   font-size: 14px;
   font-family: "PingFang SC", "Microsoft YaHei", "Arial", sans-serif;
   color: #fff;
   background-color: #132222;
}

a {
   text-decoration: none;
}

li,
ol {
   list-style-type: none;
}

.iconfont {
   font-size: inherit !important;
   font-style: normal;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   position: relative;
   /* top: -1px; */
}

/* 全局隐藏滚动条 */
::-webkit-scrollbar {
   display: none;
}

/* 兼容 Firefox */
* {
   scrollbar-width: none;
}

/* 兼容 IE */
* {
   -ms-overflow-style: none;
}
.g-container {
   max-width: 100%;
   width: 12rem;
   margin: 0 auto;
}
.two-line {
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   line-clamp: 2;
   overflow: hidden;
   text-overflow: ellipsis;
   word-break: break-word;
}
