#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 120px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #ccc;
  z-index: 300;
}
@media (max-width: 1280px) {
  #header {
    height: 60px;
  }
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
#header .container #h-logo {
  flex: 0 0 auto;
  height: 80%;
  display: flex;
}
#header .container #h-logo > img {
  width: auto;
  height: 100%;
}
#header .container #h-global-nav {
  flex: 0 0 auto;
  height: 100%;
}
@media (max-width: 1280px) {
  #header .container #h-global-nav {
    display: none;
  }
}
#header .container #h-global-nav .depth-1 {
  height: 100%;
  display: flex;
  flex-direction: row;
}
#header .container #h-global-nav .depth-1 li {
  position: relative;
  height: 100%;
}
#header .container #h-global-nav .depth-1 li > a {
  height: 100%;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: black;
  word-break: keep-all;
  text-align: center;
}
#header .container #h-global-nav .depth-1 li .depth-2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 240px;
  height: auto;
  padding-top: 1px;
  display: none;
  flex-direction: column;
}
#header .container #h-global-nav .depth-1 li .depth-2 li {
  width: 100%;
  height: auto;
}
#header .container #h-global-nav .depth-1 li .depth-2 li > a {
  width: 100%;
  height: auto;
  padding: 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #3D3D3D;
  word-break: keep-all;
  text-align: center;
  background: white;
}
#header .container #h-global-nav .depth-1 li:hover .depth-2 {
  display: flex;
}
#header .container .m-menu-open {
  display: none;
}
@media (max-width: 1280px) {
  #header .container .m-menu-open {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  #header .container .m-menu-open i {
    font-size: 36px;
    color: black;
  }
}

.whole-menu {
  position: fixed;
  right: -300px;
  top: 12px;
  width: 280px;
  height: calc(100% - 24px);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 400;
  border: 1px solid white;
  border-right-color: #ddd;
  border-bottom-color: #ddd;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-in-out;
}
.whole-menu.active {
  right: 12px;
}
.whole-menu .whole-head {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.whole-menu .whole-head > a {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.whole-menu .whole-head > a > svg {
  width: 80%;
  height: 80%;
  fill: black;
}
.whole-menu .whole-head .m-menu-close {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.whole-menu .whole-head .m-menu-close > svg {
  width: 80%;
  height: 80%;
  fill: black;
}
.whole-menu .whole-body {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.whole-menu .whole-body .w-global-nav {
  width: 100%;
  height: auto;
}
.whole-menu .whole-body .w-global-nav .depth-1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li > a, .whole-menu .whole-body .w-global-nav .depth-1 > li > span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  cursor: pointer;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .toggle-box {
  position: absolute;
  right: 0;
  top: 0;
  width: 1.2rem;
  height: 1.2rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .toggle-box > svg {
  width: 100%;
  height: 100%;
  fill: black;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .depth-2 {
  width: 100%;
  height: auto;
  max-height: 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .depth-2 li {
  width: 100%;
  height: auto;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .depth-2 li a {
  padding-left: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #3D3D3D;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li.active .toggle-box {
  transform: rotate(90deg);
}
.whole-menu .whole-body .w-global-nav .depth-1 > li.active .depth-2 {
  max-height: 200px;
  margin-top: 12px;
}

#footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background: black;
}
#footer .top {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #707070;
}
#footer .top .container {
  width: 95%;
  height: auto;
  max-width: 1480px;
  padding: 40px 0;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 1280px) {
  #footer .top .container {
    padding: 24px 0;
  }
}
#footer .top .container .side {
  flex: 1 1 25%;
}
#footer .top .container .center {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
@media (max-width: 1280px) {
  #footer .top .container .center {
    gap: 24px;
  }
}
#footer .top .container .center #f-logo {
  width: auto;
  height: 120px;
  display: flex;
}
@media (max-width: 1280px) {
  #footer .top .container .center #f-logo {
    height: 70px;
  }
}
@media (max-width: 768px) {
  #footer .top .container .center #f-logo {
    height: 52px;
  }
}
#footer .top .container .center #f-logo > img {
  width: auto;
  height: 100%;
}
#footer .top .container .center .f-infos {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
#footer .top .container .center .f-infos span {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: #aaa;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 768px) {
  #footer .top .container .center .f-infos span {
    font-size: 14px;
  }
}
#footer .top .container .center .f-infos span b {
  font-weight: 600;
}
#footer .bottom {
  width: 100%;
  height: auto;
}
#footer .bottom .container {
  width: 95%;
  height: auto;
  max-width: 1480px;
  padding: 12px 0;
  margin: 0 auto;
}
#footer .bottom .container .copyright {
  font-size: 16px;
  font-weight: 300;
  word-break: keep-all;
  color: #aaa;
  text-align: center;
}
@media (max-width: 1280px) {
  #footer .bottom .container .copyright {
    font-size: 14px;
  }
}/*# sourceMappingURL=common.css.map */