@charset "UTF-8";
@media (min-width: 1024px) {
  body {
    font-size: 18px;
  }
} /*>=1024的设备*/
@media (min-width: 1100px) {
  body {
    font-size: 20px;
  }
} /*>=1100的设备*/
@media (min-width: 1280px) {
  body {
    font-size: 22px;
  }
} /*>=1280的设备*/
@media (min-width: 1366px) {
  body {
    font-size: 24px;
  }
}
@media (min-width: 1440px) {
  body {
    font-size: 25px !important;
  }
}
@media (min-width: 1680px) {
  body {
    font-size: 28px;
  }
}
@media (min-width: 1920px) {
  body {
    font-size: 33px;
  }
}body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
button,
input,
textarea,
th,
td,
span {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  background-color: #ecf2f2;
}

body {
  color: rgb(34, 34, 34);
}