.breadcrumb {
   display: flex;
   align-items: center;
   margin-top: 30px;
 }
 .breadcrumb img {
   width: 15px;
   height: 15px;
   margin-right: 10px;
 }
 .breadcrumb a {
   font-size: 16px;
   color: #666;
 }
 .breadcrumb a:hover {
   color: #0655b8;
 }
 .main {
   display: flex;
   margin-top: 20px;
 }
 .main .side {
   width: 240px;
   margin-right: 20px;
 }
 .main .side .side_item {
   width: 100%;
   height: 70px;
   border-bottom: 1px solid #ddd;
   background-color: #f7f7f7;
 }
 .main .side .side_item:last-child {
   border-bottom: none;
 }
 .main .side .side_item a {
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   height: 100%;
   padding: 0 40px;
   font-size: 24px;
   color: #414141;
 }
 .main .side .side_item a:hover {
   color: #0655b8;
 }
 .main .side .active a {
   color: #0655b8;
 }
 .main .inner {
   width: 1090px;
	 height: 917px;
   flex: 1;
   background-color: #fff;
	 border: solid 2px rgba(245, 243, 245, 0.8);
 }
 .main .inner .title {
   display: flex;
   height: 70px;
   border-bottom: 1px solid #ddd;
   padding-left: 56px;
   font-size: 20px;
   color: #0655b8;
   font-weight: 700;
 }
 .main .inner .title .text {
   display: inline-block;
   height: 73px;
   line-height: 78px;
   padding-bottom: 20px;
   border-bottom: 8px solid #0655b8;
 }
 .main .inner .inner_list {
   padding: 0 53px;
   margin-top: 20px;
 }
 .main .inner .inner_list li {
   position: relative;
   display: flex;
   align-items: center;
   height: 63px;
   border-bottom: solid 1px #eeeeee;
   padding-left: 20px;
 }
 .main .inner .inner_list li::before {
   content: '';
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
   width: 5px;
   height: 5px;
   border-radius: 50%;
   background-color: #0655b8;
 }
 .main .inner .inner_list li a {
   display: flex;
   justify-content: space-between;
   width: 100%;
   font-size: 18px;
   color: #333;
 }
 .main .inner .inner_list li a:hover {
   color: #0655b8;
 }
 .main .inner .paging {
  display: flex;
  justify-content: center;
  align-items: center;
 }
 .main .inner .pagination {
   display: flex;
   justify-content: center;
   margin-top: 30px;
   padding-bottom: 30px;
 }
 .main .inner .pagination a {
   display: flex;
   justify-content: center;
   margin: 0 5px;
   width: 48px;
   height: 38px;
   line-height: 38px;
   background: #fff;
   border: 1px solid #ebebeb;
   color: #bdbdbd;
   font-size: 14px;
 }

 .main .inner .pagination a:hover {
   background-color: #0655b8;
   color: #fff;
 }
 .main .inner .pagination .active {
   display: flex;
   justify-content: center;
   margin: 0 5px;
   width: 38px;
   height: 38px;
   line-height: 38px;
   background: #0655b8;
   color: #fff;
   font-size: 14px;
 }
 .main .inner .pagination .active a {
    background: none;
    border: none;
    color: #fff;
 }

 .main .inner .pagination .jump-ipt {
   display: flex;
   justify-content: center;
   margin: 0 5px;
   width: 38px;
   height: 38px;
   line-height: 38px;
   text-align: center;
   background: #fff;
   border: 1px solid #ebebeb;
   outline: none;
   color: #0655b8;
   font-size: 14px;
 }
 