.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(6) 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 li {
  background-color: #F7F7F7;
  display: flex;
  align-items: center;
  padding: 30px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.context .right ul li .img {
  width: 100px;
  margin-right: 20px;
}
.context .right ul li .img img {
  width: 100%;
  vertical-align: text-bottom;
}
.context .right ul li .text {
  flex: 1;
}
.context .right ul li .text .title {
  font-size: 20px;
  color: #101010;
  font-weight: bold;
  margin-bottom: 10px;
}
.context .right ul li .text p {
  font-size: 16px;
  color: #777;
  line-height: 26px;
  text-align: justify;
}
@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 {
    padding: 15px;
  }
  .context .right ul li .text .title {
    font-size: 16px;
  }
  .context .right ul li .text p {
    font-size: 14px;
    line-height: 24px;
  }
}
