html,
body {
  font-size: 1rem;
  color: #333333;
  margin: 0px;
  padding: 0px;
  top: 0 !important;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
}

ul,
ol,
li {
  margin: 0px;
  padding: 0px;
}

ul {
  list-style-type: none;
}

ol {
  list-style-type: decimal;
}

img {
  max-width: 100%;
  border: 0px;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: blue;
  text-decoration: none;
}

button {
  outline: none;
}

table {
  float: none;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  width: 100%;
  font-weight: normal;
  margin: 0px;
}

.cont_wrap,
.cont_box {
  width: 100%;
}

.w1240 {
  width: 1240px;
  margin: 0 auto;
}

.page_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
}

.page_com {
  width: 25px;
  height: 25px;
  background-color: #ffffff;
  border: solid 1px #969696;
  text-align: center;
  line-height: 25px;
  font-size: 16px;
  color: #969696;
  cursor: pointer;
}

.page_com.active {
  background: #c80000;
  color: #fff;
  border: solid 1px #c80000;
}

.phone_hide {
  display: block;
}

.phone_show {
  display: none;
}

@media screen and (max-width: 1240px) {
  .w1240 {
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 992px) {
  .phone_hide {
    display: none;
  }

  .phone_show {
    display: block;
  }
}