@media (min-width: 0px) {
  .sub_content_right {
    width: 100%;
  }
}
@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
  .sub_content_right {
    width: 80%;
  }
}
@media (min-width: 1200px) {
}
.sub_content {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 500px;
  margin: auto;
  background: #f6f4f1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
/* 左侧导航 */
.sub_content_left {
  position: relative;
  /* top: -45px; */
  right: 10px;
  width: 200px;
  height: auto;
  margin-right: 10px;
  /* background-color: rgb(236, 165, 165); */
}
.sub_content_right {
  /* width: 80%; */
  height: auto;
  /* background-color: rgb(200, 236, 165); */
}
.left_title {
  width: 100%;
  height: 90px;
  line-height: 90px;
  font-size: 18px;
  text-align: center;
  color: #ffffff;
  background: #01c490;
}
.left_nav {
  width: 100%;
  height: auto;
  margin-top: 10px;
  background: #ffffff;
}
.left_nav li {
  width: 100%;
  height: 55px;
}
.left_nav li a {
  display: inline-block;
  width: 100%;
  height: 55px;
  line-height: 55px;
  text-align: center;
  color: #565656;
  font-size: 14px;
  transition: all 0.3s;
}
.left_nav_active a {
  background: #205cc6 !important;
  color: #ffffff !important;
}
.left_nav li:hover a {
  background: #205cc6 !important;
  color: #ffffff !important;
}
.left_nav li.active a {
  background: #205cc6 !important;
  color: #ffffff !important;
}
/* 面包屑 */
.crumbs {
  width: 100%;
  height: 50px;
  /* background-color: aqua; */
}
.crumbs li {
  width: auto;
  height: 50px;
  float: left;
}
.crumbs li:last-of-type a {
  color: #205cc6 !important;
}
.crumbs li a {
  position: relative;
  display: inline-block;
  width: auto;
  height: 50px;
  padding-left: 30px;
  font-size: 14px;
  line-height: 50px;
  color: #565656;
}
.crumbs li:first-child a::before {
  display: none;
}
.crumbs li:first-child {
  background: url(../images/others/crumb_index.png) no-repeat left;
  background-size: 14px 14px;
}
.crumbs li:first-child a {
  padding-left: 20px !important;
}
.crumbs li a::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-left: 6px solid #88848b;
  border-bottom: 3px solid transparent;
}
