
  body,
  html {
      margin: 0;
      padding: 0;
font-family: "PingFang SC", XHW-pzh, "Lantinghei SC", "Helvetica Neue", Helvetica, Arial, "Microsoft YaHei", 微软雅黑, STHeitiSC-Light, simsun, 宋体, "WenQuanYi Zen Hei", "WenQuanYi Micro Hei", sans-serif;
  }
 a{
		  text-decoration: none;
			color: inherit;
	}
  ul,
  li {
      list-style: none;
  }

  .flex {
      display: flex;
  }

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

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

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

  .justify-end {
      justify-content: flex-end;
  }

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

  .ellipse-2 {
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow-wrap: break-word;
  }

 ::-webkit-scrollbar {
      width: 8px;
    }

  /* 滚动槽 */
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3);
    border-radius: 10px;
  }

  /* 滚动条滑块 */
  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5);
  }

  ::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(155, 155, 155, 0.4);
  }

