@font-face {
  font-family: 'Noto Sans HK';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qC5--oU.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans HK';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qHB--oU.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans HK';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qJd5-oU.ttf) format('truetype');
}
body {
  margin: 0;
  color: #8C0000;
  min-height: 100vh;
  font-size: 16px;
  font-family: 'Noto Sans HK', sans-serif;
  font-weight: 300;
}
body a {
  color: inherit;
}
body .title {
  font-size: 22px;
  text-align: center;
  color: #8C0000;
  font-weight: bold;
}
body #app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body .container {
  width: 1440px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 80px;
  box-sizing: border-box;
}
body #menu {
  background-color: #8C0000;
  position: relative;
}
body #menu .closeMenu {
  position: fixed;
  z-index: 2;
  width: 30px;
  top: 20px;
  cursor: pointer;
  display: none;
}
body #menu .home {
  flex: 1;
}
body #menu .menu-list {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding-left: 0;
  text-align: center;
  color: #FCCC2C;
  font-size: 16px;
  flex: 3;
}
body #menu .menu-list li {
  flex: 1;
  position: relative;
}
body #menu .menu-list li a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
body #menu .menu-list li:hover .submenu {
  display: block;
}
body #menu .menu-list li .submenu {
  list-style-type: none;
  position: absolute;
  top: 100%;
  z-index: 1;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
  padding: 15px 0px;
  display: none;
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
body #menu .menu-list li .submenu li {
  padding: 5px 0px;
}
body #menu .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 68px;
}
body #menu .container .home img {
  height: 52px;
}
body #menu .container .burger {
  display: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  color: white;
  font-size: 12px;
}
body #menu .container .burger img {
  width: 40px;
  filter: invert(100%);
  padding: 0 8px;
}
body #content {
  flex: 1;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
}
body .slick .slide {
  max-width: 100%;
}
body .slick .slick-prev {
  left: 25px;
  z-index: 1;
}
body .slick .slick-next {
  right: 25px;
}
body #footer {
  padding: 50px 0;
  background-color: #303030;
  color: #FFF;
}
body #footer .container {
  display: flex;
  flex-wrap: wrap;
}
body #footer .container .menu {
  flex: 1;
  display: flex;
}
body #footer .container .menu ul {
  flex-basis: 30%;
  list-style-type: none;
  padding-left: 0px;
}
body #footer .container .menu ul a {
  text-decoration: none;
}
body #footer .container .contact-us {
  flex: 1;
  display: flex;
  align-items: flex-start;
  margin-top: 2em;
}
body #footer .container .contact-us .contact-us-address {
  font-size: 25px;
}

