@charset "UTF-8";
/* Overlay style */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #14b3e3;
  z-index: 9999;
}

/* Overlay closing cross */
.overlay .overlay-close {
  display: block;
  width: 8%;
  height: 8%;
  position: absolute;
  right: 3%;
  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 {
  top: 2.5vh;
  height: 100%;
}
.overlay nav ul {
  width: 35%;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .overlay nav ul {
    width: 90%;
  }
}
.overlay nav ul li {
  width: 100%;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  border-radius: 50px;
  background: #fff;
  text-align: center;
  padding: 10px;
  margin: 3% 0;
}
.overlay nav ul li:hover {
  color: #d86100;
  background: #fff;
}
@media (max-width: 767px) {
  .overlay nav ul li {
    padding: 5px;
  }
}
.overlay nav ul li a {
  color: #242424;
}
.overlay nav ul li span {
  width: 100%;
  font-size: 2.5vw;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 767px) {
  .overlay nav ul li span {
    font-size: 1.75rem;
  }
}

.overlay ul {
  font-family: "微軟正黑體", "新細明體", "標楷體", Arial, "Arial Black";
  display: block;
  width: 70%;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  font-size: 1.5rem;
  color: #666;
  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;
  margin: 0vh auto;
  padding: 0%;
  float: left;
  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: 3vh auto;
}

.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 */