/*文本溢出变...*/
@-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-education {
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 100px;
  width: 1200px;
}
.page-content-question {
  width: 100%;
  height: 200px;
  box-shadow: 0px 0px 5px 5px #eee;
  display: flex;
  align-items: center;
}
.question-box-box1 {
  width: 150px;
  height: 150px;
  margin-left: 30px;
}
.question-box-box1 img {
  width: 100%;
  height: 100%;
}
.question-box-box2 {
  display: flex;
  flex-direction: column;
  margin-left: 40px;
  width: 700px;
  height: 150px;
  justify-content: space-around;
}
.question-box-box3 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.question-box-box3>div {
  width: 150px;
  height: 66px;
  border-right: 1px solid #eee;
}
.question-box-box3>div>p:nth-child(1) {
  font-size: 30px;
  color: #c21f08;
}
.page-education-nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 40px;
  height: 120px;
  background: #FFFFFF;
  margin-top: 40px;
}
.page-education-nav .li {
  display: block;
  margin-right: 10px;
  box-sizing: border-box;
  min-width: 120px;
  padding: 0 10px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.page-education-nav .active,
.page-education-nav .li:hover {
  color: #a62226;
  border-bottom: 3px solid #a62226;
}
.page-education-content {
  margin-top: 20px;
  background: #FFFFFF;
}
.page-education-content-head {
  height: 72px;
  border-bottom: 1px solid #e5e5e5;
  line-height: 72px;
  font-size: 24px;
  color: #333;
  font-weight: bold;
}
.page-education-content-a {
  margin-top: 30px;
}
.page-education-content-a .question-box-box2 {
  justify-content: flex-start;
}
.page-education-content-a .title {
  font-size: 18px;
  color: #333333;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 10px;
}
.page-education-content-a p {
  color:#868686;
  line-height: 30px;
}
.page-education-content-a .title:hover {
  color: #a62226;
}
.page-education-content-a .date {
  font-size: 16px;
  color: #999999;
}
