/*文本溢出变...*/
@-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;
}
.container {
  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;
  width: 1200px;
}
.info-content {
  padding: 40px 40px 0;
  width: 800px;
  box-sizing: border-box;
  background: #fff;
}
.page-container {
  width: 720px;
}
.page-canvas {
  display: block;
  width: 720px;
  height: auto;
}
.page-PDF-foot {
  padding: 10px 0;
}
.page-PDF-foot .page-PDF-control {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-PDF-foot .btn {
  cursor: pointer;
}
.page-PDF-foot .btn.disable {
  color: gray;
  cursor: not-allowed;
}
.page-PDF-foot .show-index {
  padding: 0 10px;
}
.page-article-content-nav {
  margin-top: 40px;
  padding-bottom: 10px;
  line-height: 2;
  color: #333;
}
.page-article-content-nav .link {
  cursor: pointer;
}
.page-article-content-nav .link:hover {
  color: #44a2f2;
}
.info-hot-list {
  margin-bottom: 100px;
  width: 370px;
  box-sizing: border-box;
  background: #fff;
}
.info-hot-list-head {
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  color: #FFFFFF;
  font-weight: bold;
  background: #44a2f2;
}
.info-hot-list-content {
  padding: 10px 25px;
}
.info-hot-list-content-box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0;
}
.info-hot-list-content-box-img {
  cursor: pointer;
}
.info-hot-list-content-box-img:hover {
  opacity: .8;
}
.info-hot-list-content-box-title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 0;
  width: 100%;
}
.info-hot-list-content-box-title .word {
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.info-hot-list-content-box-title .word:hover {
  color: #44a2f2;
}
.info-hot-list-content-box-title .sub {
  color: #999999;
  font-size: 12px;
}
