.context {
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}
.context .left {
  width: 220px;
  margin-right: 30px;
  position: relative;
  transition: all 1s linear;
}
.context .left ul li {
  height: 70px;
  line-height: 70px;
  padding-left: 30px;
  box-sizing: border-box;
  font-size: 16px;
  background-color: #F7F7F7;
  cursor: pointer;
}
.context .left ul li a {
  color: #101010;
}
.context .left ul li a img {
  width: 10px;
  margin-right: 20px;
}
.context .left ul li:nth-child(1) {
  background-color: #C7000A;
  height: 100px;
  color: #FBFBFB;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 30px;
  padding-left: 0;
}
.context .left ul li:nth-child(1) p:nth-child(1) {
  font-size: 26px;
}
.context .left ul li:nth-child(1) p:nth-child(2) {
  font-size: 16px;
  color: #FBFBFB;
}
.context .left ul li:nth-child(2) a {
  color: #C7000A;
}
.context .left ul li:hover a {
  color: #C7000A;
}
.context .left .img {
  width: 30px;
  height: 50px;
  line-height: 50px;
  color: #101010;
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 180px;
  text-align: center;
  background-color: #fff;
  display: none;
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}
.context .right {
  flex: 1;
}
.context .right ul {
  display: flex;
  flex-wrap: wrap;
}
.context .right ul li {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 10px;
}
.context .right ul li a .img {
  width: 100%;
  /* padding: 27px 0 38px; */
  border: 4px solid #F7F7F7;
  box-sizing: border-box;
	height: 300px;
	padding: 10px;
}
.context .right ul li a .img img {
  max-width: 100%;
  height: 100%;
  vertical-align: text-bottom;
	margin: 0 auto;
	display: block
}
.context .right ul li a p {
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #101010;
}
.context .right ul li:nth-child(3n) {
  margin-right: 0;
}
.context .right .page {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.context .right .page a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border: 1px solid #EDEDED;
  margin-right: 5px;
  border-radius: 4px;
  color: #415058;
}
.context .right .page a:nth-last-child(1) {
  margin-right: 0;
}
.context .right .page a:hover {
  border-color: #1684FC;
  color: #1684FC;
}
@media screen and (max-width: 768px) {
  .context {
    flex-direction: column;
    padding: 30px 0;
  }
  .context .left {
    width: 180px;
    height: 400px;
    position: fixed;
    left: -180px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .context .left ul li {
    height: 55px;
    line-height: 55px;
  }
  .context .left ul li:nth-child(1) {
    height: 70px;
  }
  .context .left ul li:nth-child(1) p:nth-child(1) {
    font-size: 20px;
  }
  .context .left ul li:nth-child(1) p:nth-child(2) {
    font-size: 14px;
  }
  .context .left .img {
    display: block;
  }
  .context .right {
    flex: auto;
    width: 100%;
  }
  .context .right ul li {
    width: 49%;
    margin-right: 2%;
  }
  .context .right ul li:nth-child(2n) {
    margin-right: 0;
  }
  .context .right ul li a p {
    font-size: 14px;
  }
  .context .right ul li a .img{
    height: 131px;
  }
}
