/*文本溢出变...*/
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.loading {
  -webkit-animation-name: loading;
          animation-name: loading;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-duration: 200ms;
          animation-duration: 200ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
/**{margin: 0;padding: 0;list-style: none;}*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
body {
  min-width: 1200px;
  overflow: auto;
  font-size: 14px;
  line-height: 1.5;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, PingFang SC, Microsoft YaHei, Source Han Sans SC, Noto Sans CJK SC, WenQuanYi Micro Hei, sans-serif;
}
input,
button,
select {
  outline: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  margin: 0;
  padding: 0;
}
/*清楚浮动*/
.clearfix:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}
.clearfix {
  zoom: 1;
}
/*面包屑导航*/
.crumbs {
  margin: 0 auto;
  width: 1200px;
  height: 64px;
  line-height: 64px;
  font-size: 16px;
  color: #333333;
}
.crumbs-add {
  cursor: pointer;
}
.crumbs-add:hover {
  color: #a62226;
}
.crumbs-add:before {
  display: inline;
  padding: 0 5px;
  content: ">";
}
/*分页*/
.pagination {
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 120px;
}
