#page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../imgs/home_bg.png) left top no-repeat;
  background-size: cover;
}
/* #page .content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../imgs/home_content.png) center top/contain no-repeat;
} */
#page .nav {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  bottom: 0;
  right: 30px;
  /* background-color: #F8B62D; */
  /* border-radius: 15px; */
  /* padding: 10px 30px; */
}

#page .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content:center;
  cursor: pointer;
  width: 200px;
  color: #FFF;
  font-size: 32px;
  line-height: 96px;
  font-weight: normal;
  background-image: url(../imgs/nav_bg.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  /* margin: 20px 0; */
}
#page .nav-item:last-child {
  border: 0;
  margin: 0;
  padding: 0;
}

#page .nav-item:hover {
  /*padding: 17px;*/
  /* color: #B4D240; */
  /*font-size: 30px;*/
}

#mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #27c2ff url(../imgs/home_mobile.png) top/cover no-repeat;
  /*close nav*/
  /*************************************/
  /********  Header Navigation *********/
  /*************************************/
  
}
/* #mobile .content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../imgs/home_mobile_content.png) center/contain no-repeat;
} */

#mobile #title {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
}

#mobile #title img {
  width: 100%;
}

#mobile .nav-item {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.8);
  display: inline-block;
  padding: 10px 20px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

#mobile .top-navigation {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 111;
}

#mobile .top-navigation .navbar {
  padding: 20px;
  background-color: transparent;
}

#mobile .navigation-toggle ul {
  padding-left: 0;
  margin: auto 0;
}

#mobile .navigation-toggle ul li {
  list-style: none;
}

#mobile .navigation-toggle #toggle-btn {
  width: 45px;
  padding: 10px;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.6);
}

#mobile .navigation-toggle #toggle-btn span {
  width: 25px;
  background-color: #ffffff;
  height: 2px;
  display: block;
  margin-top: 3px;
  -webkit-transition: .8s ease;
  transition: .8s ease;
  margin-left: auto;
  margin-right: auto;
}

#mobile .navigation-toggle #close_nav {
  width: 45px;
  padding: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.8);
}

#mobile .navigation-toggle #close_nav a {
  -webkit-transition: .5s ease;
  transition: .5s ease;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  display: block;
}

#mobile .navigation-toggle #close_nav span {
  width: 25px;
  background-color: #ffffff;
  height: 2px;
  display: block;
  margin-top: 3px;
  -webkit-transition: .8s ease;
  transition: .8s ease;
  margin-left: auto;
  margin-right: auto;
}

#mobile .navigation-toggle #close_nav span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-bottom: -4px;
}

#mobile .navigation-toggle #close_nav span:nth-child(2) {
  width: 0;
  display: none;
}

#mobile .navigation-toggle #close_nav span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 2px;
}

#mobile .navbar.broad {
  position: absolute;
  right: 30px;
  top: 70px;
  z-index: 11;
  padding: 0 0;
  display: none;
}

#mobile .navbar.broad-nav {
  display: block;
}

#mobile .broad ul {
  text-align: right;
}

#mobile .broad.navbar ul li {
  -webkit-animation-name: myan;
  animation-name: myan;
  margin-bottom: 5px;
  -webkit-transition: all .5s ease 500ms;
  transition: all .5s ease 500ms;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
}

@-webkit-keyframes myan {
  from {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes myan {
  from {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}

#mobile .broad.reverse-nav ul li {
  -webkit-animation-name: myanres;
  animation-name: myanres;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
}

@-webkit-keyframes myanres {
  from {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
  }
}

@keyframes myanres {
  from {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
  }
}

#staticBackdrop .modal-header {
  background-color: #B4D240;
  color: #FFF;
  border: 0;
  border-radius: 0;
}

#staticBackdrop .modal-header button:focus {
  outline: 0;
  border: 0;
}

#staticBackdrop .modal-content {
  border-radius: 0;
}

.article {
  padding: 30px;
}

.article h3 {
  font-size: 24px;
  margin: 1em 0;
}

.article h4 {
  font-size: 20px;
  margin-bottom: 1em;
}

.article p {
  font-size: 16px;
}

.article img {
  width: 100%;
  margin: 0 auto 16px;
}

.hide {
  display: none;
}

.notice-list {
  padding: 0;
  margin: 0;
}

.notice-list li {
  font-size: 16px;
  padding: 10px;
  margin-bottom: 5px;
  background-color: #eee;
  list-style: none;
}

.notice-list li:hover {
  color: #FFF;
  background-color: #0c8146;
}

.notice-list li:hover a {
  color: #FFF;
}

.notice-list li .date {
  float: right;
}

.notice-list li a {
  color: #333;
}

.pic-list {
  padding: 30px;
}

.pic-list-item {
  margin-bottom: 30px;
}

.pic-list-item-pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 62.5%;
  margin-bottom: 15px;
  overflow: hidden;
}

.pic-list-item-pic a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.pic-list-item-pic a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.pic-list-item-title {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  text-align: center;
}

.pic-list-item-title a {
  color: #333;
}

.video-player {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

.video-player .video-item {
  display: block;
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=index.css.map */