@charset "UTF-8";
/* Overlay style */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: rgb(0, 170, 204);
  z-index: 9999;
}

/* Overlay closing cross */
.overlay .overlay-close {
  display: block;
  width: 12%;
  height: 12%;
  position: absolute;
  right: 5%;
  top: 5%;
  overflow: hidden;
  border: none;
  background: url(../images/cross.png) no-repeat center center;
  text-indent: 200%;
  color: transparent;
  outline: none;
  z-index: 999;
  background-size: 100%;
}

/* Menu style */
.overlay nav {
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
  top: 0vh;
  height: 90vh;
  /* -webkit-transform: translateY(-50%);
  transform: translateY(-50%); */
  z-index: 70;
  background: none;
  overflow: auto;
}

.overlay ul {
  font-family: "微軟正黑體", "新細明體", "標楷體", Arial, "Arial Black";
  display: block;
  width: 70%;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  font-size: 1.5rem;
  color: #ffffff;
  text-align: left;
  height: 90%;
  position: relative;
  background: none;
}

.overlay ul li span {
  font-size: 2rem;
  font-weight: 600;
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1.5;
  color: #FFF;
  margin: 0vh auto;
  padding: 0%;
  float: left;
  /*border:2px solid #fff;
  background:#eda927;
  border-radius: 50px;*/
}

.overlay ul a {
  text-decoration: none;
}

.overlay ul a li {
  display: block;
  font-family: "微軟正黑體", "新細明體", "標楷體", Arial, "Arial Black";
  text-decoration: none;
  transition: color 0.2s;
  /*height:40px;*/
  /*line-height:40px;*/
  /*border-bottom: 1px solid #666;
  border-left: 3px solid #23569d;
  border-right: 3px solid #d0235a;*/
  overflow: hidden;
  margin: 2.5vh auto;
  color: #FFF;
}

.overlay ul li .menu_titlpic_m {
  width: 2rem;
  height: auto;
  margin: 0.5rem;
  vertical-align: middle;
  float: left;
}

/* Effects */
.overlay-slidedown {
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
  z-index: 998;
}

.overlay-slidedown.open {
  visibility: visible;
  transform: translateX(0%);
  transition: transform 0.4s ease-in-out;
}/*# sourceMappingURL=menu_m.css.map */