* {
  /*box-sizing:content-box;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 100px;
}
ul,
li {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: #000;
}
* {
  margin: 0px;
  padding: 0px;
  font-size: 16px;
  /* font-family: "微软雅黑", arial, Helvetica, sans-serif; */
  font-family: "AlibabaPuHuiTi55", Arial, Helvetica, sans-serif, Microsoft Yahei;
}
li {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
}
img {
  border: 0px;
  max-width: 100%;
  display: inline-block;
}

@font-face {
  font-family: "iconfont";
  src: url("../fonts/iconfont.woff2?t=1688373229607") format("woff2"),
    url("../fonts/iconfont.woff?t=1688373229607") format("woff"),
    url("../fonts/iconfont.ttf?t=1688373229607") format("truetype");
}
@font-face {
  font-family: "AlibabaPuHuiTi55";
  src: url("../fonts/Alibaba_PuHuiTi_2.0_55_Regular_55_Regular.ttf")
    format("truetype");
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.tel_font{
  font-family: 'Barlow-Bold',PingFang SC,Microsoft Yahei,Helvetica Neue,Arial;
}

.clear:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}

/*滚动条样式*/
body {
  margin-top: 100px;
  height: 100%;
  overflow-y: auto;
}

body::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}

body::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 1px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #fff;
}

body::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 1px;
  background: #aaa;
}

.w80 {
  width: 80%;
  margin: 0 auto;
}
.ph100{
  padding: 1rem 0;
}
.ph80{
  padding: 0.8rem 0;
}