:global {
  /* 清除内外边距 */
  body, h1, h2, h3, h4, h5, h6, hr, p, dl, dt, dd, ul, ol, li, img {
    margin: 0;
    padding: 0;
    border: medium none;
  }
  /* 重置列表元素 */
  ul, li {
    list-style: none;
  }
  /* 重置超链接元素 */
  a {
    text-decoration: none;
    &:hover{
      text-decoration: none;
    }
  }
  /* 全局公用样式 */
  html, body, #app {
    height: 100%;
  }
  body {
    min-width: 1300px;
    background-color: $bgColorPrimary;
    font-size: $textSizeMedium;
    color: $textColorPrimary;
    font-family: "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  }
  /*页面容器*/
  .page {
    background-color: $bgColorPrimary;
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    line-height: normal;
  }
  .container {
    width: 1300px;
    margin: 0px auto;
  }

  /*文字省略号*/
  .text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  // 去掉mac safari浏览器input右边的小图标/小按钮
  input::-webkit-contacts-auto-fill-button {
    visibility:hidden;
    display:none！important;
    pointer-events:none;
    position:absolute;
    right:0;
  }
}