* {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans SC",Arial,Helvetica,serif;
  font-weight: normal;
  font-size: 16px;
}

a{
  text-decoration: none;
}

ul{
  list-style: none;
}

body {
  background: #f2f2f2;
}

.fixed{
  position: fixed;
  top: 0;
  left: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.flex{
  display: flex;
}

.fs-18{
  font-size: 18px;
}

.fs-22{
  font-size: 22px;
}

.fs-28{
  font-size: 28px;
}

/* 禁止选中文字内容 */
.user-select {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/* 禁止拖动元素 */
.drag-none {
  -webkit-user-drag: none;
}

/*抖动动画*/
@keyframes shake {
  0% {
   -webkit-transform: translate(0);
   transform: translate(0);
  }
 
  20% {
   -webkit-transform: translate(-2px, 2px);
   transform: translate(-2px, 2px);
  }
 
  40% {
   -webkit-transform: translate(-2px, -2px);
   transform: translate(-2px, -2px);
  }
 
  60% {
   -webkit-transform: translate(2px, 2px);
   transform: translate(2px, 2px);
  }
 
  80% {
   -webkit-transform: translate(2px, -2px);
   transform: translate(2px, -2px);
  }
 
  100% {
   -webkit-transform: translate(0);
   transform: translate(0);
  }
 }

 @keyframes rotate624 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

@keyframes storm1261 {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }

  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }

  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }

  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }

  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}

/* 彩虹 */
@keyframes rainbowan{
  to{background-position:-2000vw}
}

/* 页脚 */
.footer{
  margin-top: 50px;
  height: 120px;
  background: #fff;
  box-shadow: rgba(255, 255, 255, 0.7) 0 4px 8px;
}

.footer .show{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
}

.footer .show a{
  color: #376bf9;
}

.footer .copyright{
  width: 100%;
  height: 42px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .copyright img{
  width: 110px;
  height: auto;
  vertical-align: middle;
}

.footer .copyright:hover {
  animation: shake 0.3s linear infinite both;
 }

/* --------------------------------------------------------------------------------> 公共页码 */
.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  list-style: none;
  background: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.051);
  border-radius: 12px;
  transition: all .5s ease;
}

.page-item {
  height: 60px;
  line-height: 60px;
  margin-right: 20px;
}

.page-item:last-child {
  margin-right: 0;
}

.page-item a {
  padding: 5px 10px;
  color: #3e3a39;
}

.page-link {
  font-size: 18px;
  color: #3e3a39;
}

.pagination .active a {
  font-weight: 700;
  color: #376bf9;
}

.pagination .disabled a {
  color: #ccc;
  cursor: not-allowed;
}

.page-link:hover{
  color: #376bf9;
}

.pagination:hover{
  box-shadow: rgba(199,197,197,.7) 0 4px 8px;
}