html {
	font-size: 5px;
  font-family: 'PingFang','\82F9\65B9','STHeitiSC-Light','MicrosoftYaHei','\5FAE\8F6F\96C5\9ED1';
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
  min-height: 100vh;
  background-image: url(../images/bg.png);
  background-size: 100% auto;
}
#header {
	position: relative;
	height: 55rem;
}
#header .logo {
	position: absolute;
	top: 2rem;
  right: 5.5rem;
  width: 16rem;
  height: 7rem;
}
#header .logo img {
	width: 100%;
}
#header .title {
	position: absolute;
	top: 12.5rem;
	width: 100%;
	height: auto;
	text-align: center;
}
#header .title img {
  width: 75rem;
	height: auto;
}
#header .menus {
	position: absolute;
	top: 45rem;
	width: 100%;
	height: 5.5rem;
	display: flex;
	justify-content: center;
}
#header .menus .menu {
  display: inline-block;
  padding: 0 2.5rem;
  border-radius: 2.25rem;
  font-size: 3rem;
  line-height: 5.5rem;
  color: #fff;
  font-weight: bold;
  background-color: #4A3298;
  text-decoration: none;
  position: relative;
}
#header .menus .menu.on {
  background-color: #841379;
}
#header .menus .menu + .menu {
	margin-left: 1rem;
}
#header .menus .menu ul {
  display: none;
  position: absolute;
  margin: 0;
  top: 7.5rem;
  width: 19rem;
  left: -4rem;
  padding: 0;
  list-style: none;
}
#header .menus .menu ul li {
  background-image: url(../images/imenu-bg.png);
  background-size: 100% 100%;
  text-align: center;
}
#header .menus .menu ul li.on {
  background-image: url(../images/imenu-bg-on.png);
}
#header .menus .menu ul li:nth-child(1) {
  background-image: url(../images/top-imenu-bg.png);
  text-align: center;
  padding-top: 1rem;
}
#header .menus .menu ul li:nth-child(1).on {
  background-image: url(../images/top-imenu-bg-on.png);
}
#header .menus .menu ul li a {
  color: #001541;
  font-size: 3rem;
  line-height: 7rem;
  text-decoration: none;
}
#header .menus .menu ul li.on a {
  color: #fff;
}