@charset "UTF-8";
/* CSS Document */
header{
background: #eaeff4;
width:100%;
}
.header_wrap{
  position:fixed!important;
  background: #eaeff4;
  width: 100%;
  z-index: 10
}
.header_inner {
  display: flex;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  height:79px;
  width: 100%;
  max-width: 980px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .header_inner {
    /*height: 79px*/
    height: 80px
  }
}
.header_nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 50px
}
.header_nav li {
  margin-right: 20px;
  text-align: center;
  white-space: nowrap;
}
.header_nav li:last-child {
  margin-right: 0;
}
.header_nav li a {
  color: #fff;
  display: block;
  font-weight: bold;
  padding-left: 15px;
  padding-right: 15px;
  font-family: 'Gelasio', serif;
}
.header_nav li a:hover {
  color: #888;
}
.header_nav_bg {
  background: #000;
  background: linear-gradient(#1b1b1b 0%, #000 100%);
}

.header_nav_online a:hover {
  background: #7cd600;
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  .header_nav_bg {
    background: #000;
    background: linear-gradient(#1b1b1b 0%, #000 100%);
  }
  .header_nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
  }
  .header_nav li {
    margin-right: 0;
    width: 100%;
  }
  .header_nav li:last-child {
    margin-right: 0;
  }
  .header_nav li a {
    display: block;
    padding: 15px 5px;
    transition: 0.3s;
  }
  .header_nav li a:hover {
    background: #1F1F1F;
  }
}
/* ==================================
	simple set
================================== */
.header_container_inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header_container_logo {
  margin-right: auto;
}
.header_container_logo img {
  max-width: 130px;
  height: auto;
}
.header_container_menu {
  display: flex;
}
.header_container_menu li {
  padding-left: 45px;
  text-align: center!important;
}
.header_container_menu li a {
  color: #37383C;
  font-size: 1.6rem;
  font-weight: bold;
  transition: all 0.3s;
  font-family: 'Gelasio', serif;
  text-align: center!important;
  width: 100%!important;
  display: block
}
.header_container_menu li a:hover {
  color: #9A9A9A;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .header_container {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .header_container_inner {
    flex-direction: column;
  }
  .header_container_logo img {
    margin: 3rem auto 3rem;
  }
  .header_container_menu li {
    text-align: center;
    padding-bottom: 40px;
    width: 100%;
    padding-left: 0
  }
  .header_container_menu li:last-child {
    text-align: center;
    padding-bottom: 0
  }
  .header_container_inner {
display: block; 
  }
  .header_container_menu {
    display: flex;
    flex-direction: column;
    justify-content: center
  }
}

.header_container_menu li span{
  display: block;
  text-align: center;
  font-size: 11px;
  color: #175393;
}