* {
  /*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: 15px;
  font-family: arial, "微软雅黑", Helvetica, sans-serif;
  /* font-family: "AlibabaPuHuiTi55", Arial, Helvetica, sans-serif, "微软雅黑"; */
}
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");
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 14px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.clear:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}
/* 禁止选中 */
.ban1{
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* 通用的标准属性 */
}

:root {
  --main-color: #df1e28;
  --bg-color1: #f2f5fa;
  --bg-color2: #f2faf4;
  --bg-color3: #faf8f2;
  --login-color1: #1A8894;
  --login-color2: #19BB9C;
  --login-color3: #EC2C3F;
  --transition-custom: all 0.4s ease-in-out;
  --head-height: 80px;
}

/*滚动条样式*/
body {
  /* margin-top: 90px; */
  min-height: 100vh;
  padding-top: var(--head-height);
  padding-bottom: 50px;
  overflow-y: auto;
}

body::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 10px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}

body::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 1px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, .9);
}

body::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 1px;
  background: #888;
}

.w80 {
  width: 80%;
  margin: 0 auto;
}
.w90 {
  width: 90%;
  margin: 0 auto;
}
.ph100 {
  padding: 1rem 0;
}
.ph80 {
  padding: 0.8rem 0;
}

@media screen and (max-width: 1600px) {
  .w80 {
    width: 90%;
  }
}

@media screen and (max-width: 1200px) {
  .w80 {
    width: 95%;
  }
  .w90 {
    width: 95%;
  }
}

