header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}

body {
  padding-top: 110rem;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  color: #fff;
  height: 50rem;
  padding: 0 35rem 0 65rem;
  font-size: var(--text-sm);
}
.top a {
  font-size: var(--text-sm);
}

.top-btn {
  display: inline-block;
  height: 25rem;
  line-height: 25rem;
  background: #fff;
  padding: 0 20px;
  border-radius: 10rem;
  color: #000;
}
.top-btn:first-child {
  margin-right: 10rem;
}

.menu-list-wrapper {
  display: flex;
  justify-content: space-between;
  height: 60rem;
  align-items: center;
  background: #fff;
}
.menu-list-wrapper .logo-hover {
  display: none;
}
.menu-list-wrapper.hover {
  background: var(--color-primary);
  position: relative;
}
.menu-list-wrapper.hover .logo-normal {
  display: none;
}
.menu-list-wrapper.hover .logo-hover {
  display: inline;
}
.menu-list-wrapper.hover .menu-item {
  color: #fff;
}
.menu-list-wrapper.hover .menu-item a {
  color: #fff;
}
.menu-list-wrapper .logo {
  margin-left: 40rem;
}
.menu-list-wrapper .logo .logo-image {
  height: 33rem;
}
.menu-list-wrapper .menu-list {
  display: flex;
}
.menu-list-wrapper .menu-list .menu-item {
  width: 100rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-list-wrapper .menu-list .menu-item:hover .sub-menu {
  display: block;
}
.menu-list-wrapper .menu-list .menu-item .sub-menu-wrapper {
  position: absolute;
  left: 0;
  top: 30rem;
}
.menu-list-wrapper .menu-list .menu-item .sub-menu-wrapper:before {
  content: "";
  height: 1px;
  background: #fff;
  position: absolute;
  top: 25rem;
  left: 0;
  width: 100%;
}
.menu-list-wrapper .menu-list .menu-item .sub-menu {
  margin-top: 20rem;
  padding: 10rem 0;
  background: var(--color-primary);
  width: 100vw;
  border-top: #fff;
  display: none;
}
.menu-list-wrapper .menu-list .menu-item .sub-menu a {
  display: block;
  height: 30rem;
  line-height: 30rem;
  text-indent: 765rem;
  color: #fff;
}

.sidebar {
  position: fixed;
  right: 20rem;
  bottom: 20rem;
  background: #69686b;
  padding: 15rem;
  border-radius: 15rem;
  z-index: 999;
  opacity: 0.6;
}
.sidebar .sidebar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 70rem;
  height: 70rem;
  background: #fff;
  border-radius: 15rem;
  font-size: 12px;
  cursor: pointer;
}
.sidebar .sidebar__item:not(:first-child) {
  margin-top: 15rem;
}
.sidebar .sidebar__item .iconfont {
  color: #000;
  font-size: 25rem;
}
.sidebar .sidebar__item span {
  margin-top: 10rem;
}

/*# sourceMappingURL=header.css.map */
