* {
  margin: 0;
  padding: 0;
  list-style: none;
  border-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 1vw;
}

body {
  /* font: 14px/1.5 "Gotham SSm A", "Gotham SSm B", 'Helvetica Neue', Helvetica, "Microsoft Yahei", "Yahei", "微软雅黑", Arial; */
  overflow-x: hidden;
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
  -moz-text-size-adjust: 100% !important;
  min-width: 1200px;
  min-height: 100vh;
  font-size: calc(14px + 0.02rem);
}

.container-w {
  min-width: 1200px;
}

a {
  text-decoration: none;
  transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

/* @font-face {
  font-family: "CITIC-Numbers-Medium";
  src: url("../assets/PenumbraSansStd-Bold.otf");
} */
/* 分页 */
.paging {
  float: left;
  width: 100%;
  margin: auto;
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paging button {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  margin: 0 2px;
}

.paging ul {

  display: flex;
  align-items: center;
  justify-content: center;
}

.paging ul li {
  /* float: left; */
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  margin: 0 3px;
  position: relative;
}


.paging ul .action {
  background: #2054A7;
  color: #fff;
  border-radius: 4px;
}

.paging ul li:hover {
  background: #2054A7;
  color: #fff;
  border-radius: 4px;
}
.paging ul li:hover,.paging div:hover {
  background: #2054A7;
  color: #fff;
  border-radius: 4px;
  border-color: #fff;
}
.paging div{
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  margin: 0 3px;
  position: relative;
}
.paging div p {
  position:absolute;
  height: 11px;
  width: 11px;
  border-width: 2px 2px 0 0;
  border-color: #646566;
  border-style: solid;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  transform-origin: center;
}
.paging .previous p {
  transform: rotate(-135deg);
  left: 15px;
}
.paging .next-page p {
  transform: rotate(45deg);
  right: 15px;
}
.paging  .previous:hover p{
  border-radius: 0px;
  border-color: #fff;
}
.paging .next-page:hover p{
  border-radius: 0px;
  border-color: #fff;
}