/* 小于750px 手机*/
@media screen and (max-width: 750px) {
  .main_page {
    padding: 0 0.2rem;
    margin-bottom: 1rem;
  }
  .main_page .map_title {
    width: 100%;
    font-size: 0.22rem;
    color: #254a98;
    border-bottom: 1px solid #e5e5e5;
    padding: 0.2rem 0;
    margin-bottom: 0.2rem;
  }
  .main_page .net_map {
    min-height: 0.1rem;
    display: flex;
    flex-wrap: wrap;
  }
  .main_page .net_map .menu_item {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .main_page .net_map .menu_item .title {
    font-size: 0.18rem;
    padding-bottom: 0.1rem;
    border-bottom: 2px solid #8c6a28;
    margin-bottom: 0.1rem;
    color: #254a98;
  }
  .main_page .net_map .menu_item .title a {
    cursor: pointer;
  }
  .main_page .net_map .menu_item .title a:hover {
    font-weight: bold;
  }
  .main_page .net_map .menu_item ul li {
    font-size: 0.16rem;
    padding-bottom: 0.1rem;
  }
  .main_page .net_map .menu_item ul li a {
    cursor: pointer;
  }
  .main_page .net_map .menu_item ul li a:hover {
    color: #254a98;
  }
}
@media screen and (min-width: 750px) {
  /*  PC ,只需要从内容里面自己取类名的地方开始写就就可以了 */
  .main_page {
    max-width: 1300px;
    margin: 0 auto;
  }
  .main_page .map_title {
    font-size: 28px;
    color: #254a98;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 10px;
    margin-bottom: 50px;
    margin-top: 100px;
  }
  .main_page .net_map {
    min-height: 100px;
    display: flex;
    flex-wrap: wrap;
  }
  .main_page .net_map .menu_item {
    width: 220px;
    margin: 0 18px;
    margin-bottom: 40px;
  }
  .main_page .net_map .menu_item .title {
    font-size: 24px;
    padding-bottom: 10px;
    border-bottom: 2px solid #8c6a28;
    margin-bottom: 10px;
    color: #254a98;
  }
  .main_page .net_map .menu_item .title a {
    cursor: pointer;
  }
  .main_page .net_map .menu_item .title a:hover {
    font-weight: bold;
  }
  .main_page .net_map .menu_item ul li {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .main_page .net_map .menu_item ul li a {
    cursor: pointer;
  }
  .main_page .net_map .menu_item ul li a:hover {
    color: #254a98;
  }
}
