header {
  z-index: 100;
  width: 100%;
  background-color: white;
  -webkit-transition: background 0.6s;
  transition: background 0.6s;
  position: fixed;
  top: 0;
  left: 0%;
}

header .menuicon {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 12;
  background-color: #25A0CE;
}

header .menuicon .mpsrel {
  width: 60px;
  height: 60px;
}

header .menuicon .bar, header .menuicon .bar:after, header .menuicon .bar:before {
  -webkit-transition: all .25s;
  transition: all .25s;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 1px;
  width: 28px;
  background: white;
}

header .menuicon .bar {
  margin-top: 30px;
  margin-right: 14px;
}

header .menuicon .bar:before {
  top: -11px;
}

header .menuicon .bar:after {
  top: 11px;
}

@media all and (min-width: 991px) {
  header .menuicon {
    display: none;
  }
}

@media all and (max-width: 990px) {
  header {
    padding: 15px 20px;
    border-bottom: 1px solid #DFDFDF;
  }
  header .logo {
    max-width: 200px;
  }
}

@media all and (min-width: 991px) {
  header {
    width: 350px;
    height: 100%;
    padding: 36px 32px 80px;
  }
  header .logo {
    margin-bottom: 40px;
  }
}

header.menu-expanded .menuicon {
  background-color: white;
}

header.menu-expanded .menuicon .bar {
  background: rgba(0, 0, 0, 0);
}

header.menu-expanded .menuicon .bar:before {
  top: 0px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 25px;
  background: #25a0ce;
}

header.menu-expanded .menuicon .bar:after {
  top: 0px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 25px;
  background: #25a0ce;
}

header.menu-expanded .navBox {
  right: 0;
}

header .navBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 94%;
}

@media all and (max-width: 990px) {
  header .navBox {
    height: 100vh;
    width: 100%;
    max-width: 400px;
    padding: 80px 20px 20px;
    background-color: white;
    position: fixed;
    top: 0;
    right: -400px;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    -webkit-transition: right 0.6s ease;
    transition: right 0.6s ease;
  }
}

header ul.mmenu > li {
  position: relative;
  margin-bottom: 12px;
}

header ul.mmenu > li > a {
  display: block;
  position: relative;
  color: #505050;
  font-weight: 400;
  line-height: 1.5;
  background-color: #F0F0F0;
  border-radius: 16px;
  font-size: 1.25rem;
  line-height: 3;
  padding: 4px 0 4px 76px;
}

header ul.mmenu > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -34px;
  width: 8px;
  height: 100%;
  border-radius: 4px;
  background-color: #25A0CE;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

header ul.mmenu > li.active::before {
  opacity: 1;
}

header ul.mmenu > li.active > a {
  color: white;
  background-color: #25A0CE;
}

@media all and (max-width: 990px) {
  header ul.mmenu > li.active:before {
    left: -22px;
  }
}

@media all and (max-width: 575px) {
  header ul.mmenu > li > a {
    line-height: 2.2;
  }
}

@media all and (min-width: 991px) {
  header ul.mmenu > li:hover > a {
    color: white;
    background-color: #25A0CE;
  }
  header ul.mmenu > li:hover:before {
    opacity: 1;
  }
}

nav ul.mmenu i {
  position: absolute;
  top: 50%;
  left: 32px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 32px;
  z-index: 2;
  -webkit-transition: background 0.6s ease;
  transition: background 0.6s ease;
}

nav ul.mmenu .sys i {
  background: no-repeat url(../images/webp/icon_system_unhover.webp) center/contain;
}

nav ul.mmenu .msg i {
  background: no-repeat url(../images/webp/icon_message_unhover.webp) center/contain;
}

nav ul.mmenu .member i {
  background: no-repeat url(../images/webp/icon_account_unhover.webp) center/contain;
}

nav ul.mmenu .signout i {
  background: no-repeat url(../images/webp/icon_logout_unhover.webp) center/contain;
}

nav ul.mmenu li:hover.sys i, nav ul.mmenu li.active.sys i {
  background-image: url(../images/webp/icon_system_hover.webp);
}

nav ul.mmenu li:hover.msg i, nav ul.mmenu li.active.msg i {
  background-image: url(../images/webp/icon_message_hover.webp);
}

nav ul.mmenu li:hover.member i, nav ul.mmenu li.active.member i {
  background-image: url(../images/webp/icon_account_hover.webp);
}

nav ul.mmenu li:hover.signout i, nav ul.mmenu li.active.signout i {
  background-image: url(../images/webp/icon_logout_hover.webp);
}

@media all and (min-width: 991px) {
  .mtitle {
    font-weight: 700;
    line-height: 1.5;
    font-size: 1.5rem;
    color: #222222;
    margin-bottom: 48px;
  }
  #Wapper {
    margin-left: 330px;
    padding-left: 50px;
    padding-right: 30px;
  }
  .copyright {
    position: fixed;
    bottom: 16px;
    left: 40px;
    z-index: 999;
  }
}

@media all and (max-width: 990px) {
  .mtitle {
    line-height: 1.5;
    font-size: 1.25rem;
    color: #25A0CE;
    margin-bottom: 32px;
    padding-left: 44px;
  }
  .sys {
    background: no-repeat url(../images/webp/icon_system_title.webp) left center/contain;
  }
  .msg {
    background: no-repeat url(../images/webp/icon_message_title.webp) left center/contain;
  }
  .member {
    background: no-repeat url(../images/webp/icon_account_title.webp) left center/contain;
  }
  #Wapper {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .copyright {
    text-align: center;
    width: 100%;
  }
  .copyright.pos {
    position: fixed;
    bottom: 16px;
    left: 16px;
  }
}

@media all and (min-width: 1600px) {
  #Wapper {
    padding-left: 8vw;
    padding-right: 10vw;
  }
}

.no-webp .sys {
  background-image: url(../images/icon_system_title.png);
}

.no-webp .msg {
  background-image: url(../images/icon_message_title.png);
}

.no-webp .member {
  background-image: url(../images/icon_account_title.png);
}
/*# sourceMappingURL=style.css.map */