html,
body {
    height: 100%;
    width: 100%;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Roboto", "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", BlinkMacSystemFont, -apple-system, "Segoe UI", "Microsoft Yahei", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    margin: 0;
}







.menu{
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-logo img{
  width: 100%;
  height: auto;
}
.menu-list{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  margin-left: 170px;
}
.menu-list div{
  padding: 0 40px;
}
.menu-list a{
  color: #375494;
  white-space: nowrap;
  text-decoration: none;
  height: 42px;
  display: block;
}
.menu-list .active{
  background-image: url('/assets/img/index/line.png') ;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.menu-list a{
  color: #375494;
  white-space: nowrap;
  text-decoration: none;
}
.index-img img{
  width: 100%;
  height: 100%;
}



@media screen and (max-width: 1500px) {
  .menu-list{
    margin-left: 100px;
  }
  .menu-list div{
    padding: 0 20px;
  }
}
.footer{
  text-align: center;
  padding: 65px 0;
}
.footer div{
  padding:3px 0;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 500;
}
@media screen and (max-width: 1150px) {

  .menu-list{
    font-size: 22px;
    font-weight: bold;
    margin-left: 60px;
  }
  .menu-list div{
    padding: 0 10px;
  }
}