.web-main {
  overflow: hidden;
}
.content {
  width: 1200px;
  padding: 40px 0;
  margin: auto;
}
.content .l-aside {
  width: 260px;
  display: flex;
  flex-direction: column;
  padding: 0rem;
  background: #ffffff;
  box-shadow: 0rem 4px 10px 0rem rgba(204, 204, 204, 0.3);
  min-height: 708px;
  border-radius: 8px;
}
.content .l-aside .item {
  cursor: pointer;
  width: 100%;
  height: auto;
  padding: 10px 24px;
  transition: all 0.6s;
}
.content .l-aside .item:not(.header):not(.active):hover {
  transform: translateX(5px);
  color: #046339;
}
.content .l-aside .item.active {
  background-color: rgba(4, 99, 57, 0.1);
  color: #046339;
}
.content .l-aside .item .text {
  font-size: 16px;
  line-height: 36px;
}
.content .l-aside .item .icon {
  width: 20px;
  height: 20px;
  background-image: url(../assets/icons/right-arrow.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.content .l-aside .header {
  background-color: #046339;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.content .l-aside .header .text {
  font-family: Microsoft YaHei;
  font-size: 22px;
  color: #fff;
}
.content .l-aside .header .icon {
  width: 24px;
  height: 24px;
  background-image: url(../assets/icons/expand.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.content .m-list {
  width: 940px;
  padding: 0 24px;
}
.content .m-list .breadcrumb {
  width: 100%;
  height: 48px;
  opacity: 1;
  /* 自动布局 */
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 6px 0rem;
  gap: 8px;
  box-sizing: border-box;
  border-width: 0rem 0rem 2px 0rem;
  border-style: solid;
  border-color: #046339;
}
.content .m-list .breadcrumb .bread * {
  flex: 0 1 max-content;
  color: #999999;
}
.content .m-list .breadcrumb a:not(:nth-last-child(1)) {
  color: #999999;
}
.content .m-list .breadcrumb a:not(:nth-last-child(1))::after {
  content: '>';
  margin-left: 8px;
  font-size: 16px;
}
.content .m-list .breadcrumb a:nth-last-child(1) {
  color: #046339;
  font-weight: 600;
  font-size: 16px;
  margin-right: 0;
  margin-left: 8px;
}
.content .m-list .breadcrumb a:hover {
  color: #046339;
}
.content .m-list .list {
  padding: 24px 0;
  width: 100%;
  gap: 14px;
}
.content .m-list .list .item {
  height: 44px;
  line-height: 40px;
}
.content .m-list .list .item .text {
  max-width: 530px;
}
.content .m-list .list .item .text:before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #046339;
  transform: rotate(45deg);
  display: inline-block;
  margin-left: 6px;
  margin-right: 10px;
}
.content .m-list .list .item .date {
  padding-right: 10px;
  color: #999999;
}
.content .m-list .pagination {
  width: 100%;
  height: auto;
}
.content .m-list .pagination .inner {
  width: 330px;
  height: 26px;
}