.main {
  background: url(../images/bg_body.png) repeat-x;
}
.main .breadcrumbs {
  display: flex;
  align-items: center;
  height: 40px;
  font-size: 12px;
  color: #567591;
}
.main .breadcrumbs img {
  margin-right: 10px;
}
.main .breadcrumbs a {
  color: #1f6db5;
}
.main .inner {
  display: flex;
  justify-content: space-between;
}
.main .inner .side {
  width: 264px;
}
.main .inner .side .side_title {
  width: 100%;
}
.main .inner .side .side_title img {
  width: 100%;
}
.main .inner .side .side_nav {
  width: 100%;
}
.main .inner .side .side_nav li {
  height: 55px;
  background-color: #f7f9fe;
  padding: 0 20px;
}
.main .inner .side .side_nav li:hover,
.main .inner .side .side_nav li.active {
  background-color: #dfedfd;
}
.main .inner .side .side_nav li:last-child a {
  border: 0;
}
.main .inner .side .side_nav li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  border-bottom: 1px dashed #eee;
  color: #333;
  font-size: 16px;
}
.main .inner .side .side_nav li a .dot {
  width: 8px;
  height: 8px;
  background-color: #2d589b;
  margin-right: 15px;
}
.main .inner .content {
  flex: 1;
  margin-left: 30px;
}
.main .inner .content .module .module_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  border-bottom: 3px solid #206db9;
}
.main .inner .content .module .module_title .title {
  display: flex;
  align-items: center;
  background-color: #206db9;
  height: 100%;
  padding: 0 20px;
  color: #fff;
  font-size: 16px;
  border-radius: 5px 5px 0 0;
}
.main .inner .content .module .module_title .more {
  font-size: 12px;
  color: #333;
}
.main .inner .content .module .module_title .more:hover {
  color: #1f6db5;
}
.main .inner .content .module .module_list {
  margin-top: 20px;
}
.main .inner .content .module .module_list li {
  position: relative;
  font-size: 15px;
  line-height: 35px;
  padding-left: 15px;
}
.main .inner .content .module .module_list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #1f6db5;
  transform: translateY(-50%);
  border-radius: 50%;
}
.main .inner .content .module .module_list li a {
  display: flex;
  justify-content: space-between;
  color: #333;
}
.main .inner .content .module .module_list li a:hover {
  color: #1f6db5;
}
.main .news {
  margin-top: 20px;
}
.main .news .news_head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 42px;
  background: url(../images/bg_news_head.png) no-repeat;
}
.main .news .news_head .more {
  font-size: 12px;
  padding-right: 15px;
  color: #fff;
}
.main .news .news_head .more:hover {
  color: #96ccff;
}
.main .news .news_main {
  display: flex;
  margin-top: 15px;
}
.main .news .news_main .left {
  width: 410px;
  height: 266px;
  border: 3px solid transparent;
  margin-right: 15px;
}
.main .news .news_main .left img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main .news .news_main .left:hover {
  border-color: #1f6db5;
}
.main .news .news_main .right {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}
.main .news .news_main .right li {
  width: 167px;
  height: 133px;
  border: 3px solid transparent;
}
.main .news .news_main .right li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main .news .news_main .right li:hover {
  border-color: #1f6db5;
}
