/*文本溢出变...*/
@-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;
}
.page-article {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding-bottom: 100px;
  width: 1200px;
}
.page-article-content {
  box-sizing: border-box;
  width: 880px;
  padding: 0 40px 40px;
  background: #fff;
  /*第一种标题格式*/
  /*第二种标题格式*/
}
.page-article-content-title {
  box-sizing: border-box;
  height: 140px;
  padding: 36px 0;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1;
}
.page-article-content-title .title {
  font-size: 30px;
  font-weight: bold;
}
.page-article-content-title .date {
  margin-top: 20px;
  font-size: 16px;
  color: #999;
}
.page-article-content-title2 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  box-sizing: border-box;
  height: 160px;
  padding: 40px 0;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1;
}
.page-article-content-title2 .title {
  font-size: 30px;
  font-weight: bold;
}
.page-article-content-title2 .sub {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  height: 16px;
}
.page-article-content-title2 .date,
.page-article-content-title2 .author,
.page-article-content-title2 .from {
  font-size: 16px;
  color: #999;
}
.page-article-content-title2 .line {
  margin: 0 50px;
  width: 1px;
  height: 16px;
  background: #e5e5e5;
}
.page-article-content-body {
  padding-top: 40px;
  padding-bottom: 1px;
  line-height: 1.8;
}
.page-foot-text {
  line-height: 1.8;
}
.page-article-content-body > p {
  margin-bottom: 10px;
}
.page-article-content-body > p > img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.page-article-content-nav {
  padding-bottom: 10px;
  line-height: 2;
  color: #333;
}
.page-article-content-nav .link {
  cursor: pointer;
}
.page-article-content-nav .link:hover {
  color: #a62226;
}
.page-article-side {
  width: 280px;
  background: #FFFFFF;
}
.page-article-side-title {
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  color: #FFFFFF;
  font-weight: bold;
  background: #a62226;
}
.page-article-side-a {
  display: block;
  margin: 0 8px;
  height: 64px;
  line-height: 64px;
  color: #333333;
  font-size: 16px;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-article-side-a:hover {
  color: #a62226;
}
