@media (max-width: 750px) {
   .w {
     width: 100%;
     padding: 0 10px;
   }
   .main {
     display: flex;
     margin-top: 20px;
   }
   .main .side {
     display: none;
     width: 240px;
     margin-right: 20px;
   }
   .main .side .side_item {
     width: 100%;
     height: 70px;
     border-bottom: 1px solid #ddd;
     background-color: #fff;
   }
   .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 {
     flex: 1;
     width: 100%;
     background-color: #fff;
   }
   .main .inner .title {
     display: flex;
     height: 70px;
     border-bottom: 1px solid #ddd;
     padding-left: 20px;
     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: 10px;
     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: 14px;
     color: #333;
   }
   .main .inner .inner_list li a:hover {
     color: #0655b8;
   }
   .main .inner .paging {
     display: flex;
     justify-content: center;
     margin-top: 30px;
     padding-bottom: 30px;
   }
   .main .inner .paging a {
     display: flex;
     justify-content: center;
     margin: 0 5px;
     width: 38px;
     height: 38px;
     line-height: 38px;
     background: #fff;
     border: 1px solid #ebebeb;
     color: #bdbdbd;
     font-size: 14px;
   }
   .main .inner .paging a:hover {
     background-color: #0655b8;
     color: #fff;
   }
   .main .inner .paging .active {
     display: flex;
     justify-content: center;
     margin: 0 5px;
     width: 38px;
     height: 38px;
     line-height: 38px;
     background: #0655b8;
     color: #fff;
     font-size: 14px;
     border: 1px solid #0655b8;
   }
   .main .inner .paging .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;
   }
 }