/*文本溢出变...*/
@-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-list {
  width: 790px;
  padding: 0 40px;
  box-sizing: border-box;
  box-shadow: 0 0 24px rgba(68, 162, 242, 0.2);
  background: #fff;
}
.info-list-head {
  height: 72px;
  line-height: 72px;
  border-bottom: 1px solid #f2f2f2;
  font-size: 24px;
  color: #333333;
}
.info-list-content-li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #f2f2f2;
}
.info-list-content-li-img {
  display: block;
  width: 160px;
  height: 90px;
  cursor: pointer;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.info-list-content-li-img:hover {
  opacity: .8;
}
.info-list-content-li-info {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -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;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 40px;
}
.info-list-content-li .info-head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  height: 90px;
}
.info-list-content-li .info-title {
  font-size: 24px;
  color: #333333;
  line-height: 1;
  cursor: pointer;
}
.info-list-content-li .info-title:hover {
  color: #44a2f2;
}
.info-list-content-li .info-sub {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1;
  color: #999999;
}
.info-list-content-li .info-text {
  margin-bottom: 10px;
  height: 48px;
  font-size: 16px;
  color: #666666;
}
.info-hot-list {
  width: 380px;
  padding: 0 25px;
  box-sizing: border-box;
  box-shadow: 0 0 24px rgba(68, 162, 242, 0.2);
  background: #fff;
}
.info-hot-list-head {
  height: 72px;
  line-height: 72px;
  border-bottom: 1px solid #f2f2f2;
  font-size: 24px;
  color: #333333;
}
.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;
}
