* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);/
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
::-webkit-scrollbar:horizontal  {
  height: 10px;
}
::-webkit-scrollbar:vertical {
  width: 10px;
}

.d-none {
  display: none;
}

.noData {
  padding: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.message {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fef2f2;
  color: #d32f2f;
  border: 1px solid #f8d7da;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: top 0.3s ease;
  z-index: 9999;
}
.message .icon {
  font-size: 18px;
}

/* Header Section */
.container-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 10px 50px -3px #0000000D;
}
.container-header-box {
  margin: 0 auto;
  width: 1200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-box-logo {
  width: 250px;
  height: auto;
}
.header-box-logo img {
  width: 100%;
  height: 100%;
}
.header-box-menu {
  display: flex;
  align-items: center;
  gap: 100px;
}
.header-box-menu .logo {
  display: none;
}
.header-box-menu a {
  text-decoration: none;
  font-family: HarmonyOS Sans SC;
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000000;
  transform: color 0.3s ease;
  -webkit-transform: color 0.3s ease;
  -moz-transform: color 0.3s ease;
  -ms-transform: color 0.3s ease;
  -o-transform: color 0.3s ease;
}
.header-box-menu a:hover {
  color: #007766;
  text-decoration: underline;
}
.header-box-btn {
  display: none;
}

/* Breadcrumb Section */
.container-breadcrumb {
  width: 100%;
  height: auto;
  background-image: url('../img/breadcrumb-bj.png');
  background-size: cover;
  background-repeat: no-repeat;
}
.breadcrumb-box {
  padding: 35px 0 30px;
  margin: 0 auto;
  width: 1200px;
}
.breadcrumb-box-text {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: HarmonyOS Sans SC;
  font-weight: 300;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0%;
}
.breadcrumb-box-text a {
  color: #62847D;
  text-decoration: none;
}
.breadcrumb-box-text a:hover {
  color: #007766;
  text-decoration: underline;
}
.breadcrumb-box-text span {
  color: #000000;
}
.breadcrumb-box-h1 {
  font-family: HarmonyOS Sans SC;
  font-weight: 700;
  font-size: 40px;
  line-height: 45px;
  letter-spacing: 0%;
  color: #000000;
}

/* Main Section */
.container-main {
  padding: 50px 0 100px;
  margin: 0 auto;
  width: 1200px;
  min-height: calc(100% - 400px);
}
.container-main-p {
  font-family: HarmonyOS Sans SC;
  font-weight: 300;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

/* Footer Section */
.container-footer {
  width: 100%;
}
.container-footer-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  width: 100%;
  height: 80px;
  background: #D8F1EE;
}
.container-footer-menu a {
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: none;
  color: #007766;
}
.container-footer-menu a:hover {
  text-decoration: underline;
}
.container-footer-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  width: 100%;
  height: 70px;
  background: #007766;
}
.container-footer-text p {
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 10%;
  text-align: center;
  color: #ffffff;
}

/* Download Button Section */
.downloadBtn {
  cursor: pointer;
  width: auto;
  height: 44px;
  border: none;
  outline: none;
  background-color: #2351A6;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transform: scale 0.3s ease;
  -webkit-transform: scale 0.3s ease;
  -moz-transform: scale 0.3s ease;
  -ms-transform: scale 0.3s ease;
  -o-transform: scale 0.3s ease;
  display: flex;
}
.downloadBtn:hover {
  transform: scale(1.01);
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
}
.downloadBtn p {
  flex: 1;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: HarmonyOS Sans SC;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.1px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #ffffff;
}
.downloadBtn span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #184391;
  border-radius: 0 8px 8px 0;
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -ms-border-radius: 0 8px 8px 0;
  -o-border-radius: 0 8px 8px 0;
}
.downloadBtn span img {
  width: 26px;
  height: 26px;
}

.popupBox {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000099;
  z-index: 100;
  backdrop-filter: blur(70px);
  display: none;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.popupBox.fadeIn {
  animation: fadeIn 0.3s ease-in-out;
}
.popupBox-box {
  width: 540px;
  padding: 50px 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  background: #FFFFFF;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  text-align: center;
}
.popupBox-close {
  cursor: pointer;
  padding: 5px;
  position: absolute;
  top: 35px;
  right: 60px;
  background: none;
  border: none;
  outline: none;
}
.popupBox-img1 {
  margin: 25px 0 20px;
  width: auto;
  height: 90px;
}
.popupBox-img2 {
  margin: 0 0 18px;
  width: auto;
  height: 120px;
}
.popupBox-h3 {
  font-family: HarmonyOS Sans SC;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
}
.popupBox-h4 {
  margin: 10px 0 50px;
  font-family: HarmonyOS Sans SC;
  font-weight: 300;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
}
.popupBox-h5 {
  margin: 0 0 60px;
  font-family: HarmonyOS Sans SC;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
}
.popupBox-p {
  margin: 12px 0 20px;
  font-family: HarmonyOS Sans SC;
  font-weight: 300;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #8c8c8c;
}
.popupBox-input {
  padding: 0 17px;
  margin-bottom: 54px;
  width: 100%;
  height: 54px;
  border: 1.2px solid #E1E2E8;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  font-family: HarmonyOS Sans SC;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}
.popupBox-input:focus,
.popupBox-input:focus-visible {
  outline: 1.2px solid #007766;
}
.popupBox-input::placeholder {
  color: #ABB0BC;
}
.popupBox-code {
  margin-top: 30px;
  font-family: HarmonyOS Sans SC;
  font-weight: 300;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #8C8C8C;
}
.popupBox-code span {
  cursor: pointer;
  color: #0C40AF;
  user-select: none;
}
.popupBox-btn {
  cursor: pointer;
  width: 100%;
  height: 54px;
  background: #0A7766;
  border: none;
  outline: none;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  transform: scale 0.3s ease;
  -webkit-transform: scale 0.3s ease;
  -moz-transform: scale 0.3s ease;
  -ms-transform: scale 0.3s ease;
  -o-transform: scale 0.3s ease;
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}
.popupBox-btn:hover {
  transform: scale(1.01);
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
}
.popupBox-btn2 {
  width: 300px;
}
.popupBox-box2 {
  padding: 0 0 50px;
  width: 340px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  background: #FFFFFF;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  text-align: center;
  overflow: hidden;
}
.popupBox-box-head {
  padding: 0 20px;
  width: 100%;
  height: 60px;
  background: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popupBox-box-head span {
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
}
.popupBox-box2 .popupBox-img3 {
  margin: 40px 0 0;
  height: 40px;
}
.popupBox-box2 .popupBox-h5 {
  margin: 18px 0 30px;
}
.popupBox-box2 .popupBox-btn {
  width: 200px;
}
.popupBox-box-head .popupBox-close {
  margin-right: -5px;
  position: static;
}
.popupBox-box-head .popupBox-close img {
  width: 14px;
  height: 14px;
}

@media screen and (max-width: 1440px) {
  /* Header Section */
  .container-header-box {
    width: 1100px;
    height: 90px;
  }
  .header-box-logo {
    width: 230px;
  }
  .header-box-menu {
    gap: 80px;
  }
  .header-box-menu a {
    font-size: 18px;
    line-height: 21px;
  }
    
  /* Breadcrumb Section */
  .breadcrumb-box {
    padding: 35px 0 30px;
    width: 1100px;
  }
  .breadcrumb-box-text {
    margin-bottom: 15px;
    gap: 3px;
    font-size: 16px;
    line-height: 20px;
  }
  .breadcrumb-box-h1 {
    font-size: 34px;
    line-height: 40px;
  }
  
  /* Main Section */
  .container-main {
    padding: 50px 0 90px;
    width: 1100px;
    min-height: calc(100% - 380px);
  }
  .container-main-p {
    font-size: 18px;
  }

  /* Footer Section */
  .container-footer-bg {
    width: 100%;
  }
  .container-footer-menu {
    height: 80px;
  }
  .container-footer-menu a {
    font-size: 18px;
  }
  .container-footer-text {
    height: 70px;
  }
  .container-footer-text p {
    font-size: 18px;
  }

  /* Download Button Section */
  .downloadBtn {
    height: 44px;
  }
  .downloadBtn p {
    padding: 0 20px;
    font-size: 18px;
    line-height: 21px;
  }
  .downloadBtn span {
    width: 44px;
    height: 44px;
  }
  .downloadBtn span img {
    width: 26px;
    height: 26px;
  }
}

@media screen and (max-width: 1200px) {
  /* Header Section */
  .container-header-box {
    width: 900px;
    height: 80px;
  }
  .header-box-logo {
    width: 200px;
  }
  .header-box-menu {
    gap: 70px;
  }
  .header-box-menu a {
    font-size: 18px;
    line-height: 20px;
  }
  
  /* Breadcrumb Section */
  .breadcrumb-box {
    margin-bottom: 10px;
    padding: 25px 0;
    width: 900px;
  }
  .breadcrumb-box-text {
    gap: 3px;
    font-size: 16px;
    line-height: 20px;
  }
  .breadcrumb-box-h1 {
    font-size: 26px;
    line-height: 30px;
  }

  /* Main Section */
  .container-main {
    padding: 40px 0 80px;
    width: 900px;
    min-height: calc(100% - 340px);
  }
  .container-main-p {
    font-size: 16px;
  }

  /* Footer Section */
  .container-footer-bg {
    width: 100%;
  }
  .container-footer-menu {
    height: 80px;
  }
  .container-footer-menu a {
    font-size: 16px;
  }
  .container-footer-text {
    height: 70px;
  }
  .container-footer-text p {
    font-size: 16px;
  }

  /* Download Button Section */
  .downloadBtn {
    height: 40px;
  }
  .downloadBtn p {
    padding: 0 16px;
    font-size: 16px;
    line-height: 21px;
  }
  .downloadBtn span {
    width: 40px;
    height: 40px;
  }
  .downloadBtn span img {
    width: 22px;
    height: 22px;
  }
}

@media screen and (max-width: 968px) {
  /* Header Section */
  .container-header-box {
    width: calc(100% - 30px);
    height: 64px;
  }
  .header-box-logo {
    width: 154px;
  }
  #menuBox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transform: all 0.3s ease;
    -webkit-transform: all 0.3s ease;
    -moz-transform: all 0.3s ease;
    -ms-transform: all 0.3s ease;
    -o-transform: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 199;
}
  .header-box-menu {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    position: fixed;
    top: 0;
    left: -200px;
    width: 200px;
    height: 100%;
    background-color: #FFFFFF;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
  }
  .header-box-menu .logo {
    display: block;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
  }
  .header-box-menu .logo img {
    width: 100%;
    height: 100%;
  }
  #menuBox.active {
    opacity: 1;
    visibility: visible;
  }
  
  .header-box-menu.active {
    transform: translateX(200px);
    -webkit-transform: translateX(200px);
    -moz-transform: translateX(200px);
    -ms-transform: translateX(200px);
    -o-transform: translateX(200px);
}
  .header-box-menu a {
    font-size: 18px;
    line-height: 20px;
  }
  .header-box-btn {
    display: block;
  }
  .header-box-btn .menu {
    cursor: pointer;
    border: none;
    background: none;
  }
  .header-box-btn .menu img {
    width: 16px;
    height: auto;
  }
  
  /* Breadcrumb Section */
  .breadcrumb-box {
    margin-bottom: 0;
    padding: 25px 0;
    width: calc(100% - 30px);
  }
  .breadcrumb-box-text {
    display: none;
    gap: 3px;
    font-size: 14px;
    line-height: 20px;
  }
  .breadcrumb-box-h1 {
    font-size: 20px;
    line-height: 1;
    text-align: center;
  }

  /* Main Section */
  .container-main {
    padding: 40px 0 60px;
    width: calc(100% - 30px);
    min-height: calc(100% - 267px);
  }
  .container-main-p {
    font-size: 16px;
  }

  /* Footer Section */
  .container-footer-bg {
    width: 100%;
  }
  .container-footer-menu {
    padding: 20px 10px;
    height: auto;
    gap: 15px;
    flex-wrap: wrap;
  }
  .container-footer-menu a {
    font-size: 14px;
  }
  .container-footer-text {
    height: 50px;
  }
  .container-footer-text p {
    font-size: 14px;
  }

  /* Download Button Section */
  .downloadBtn {
    height: 36px;
  }
  .downloadBtn p {
    padding: 0 12px;
    font-size: 14px;
    line-height: 18px;
  }
  .downloadBtn span {
    width: 36px;
    height: 36px;
  }
  .downloadBtn span img {
    width: 20px;
    height: 20px;
  }

  .popupBox-box {
    width: 90%;
    padding: 30px 20px;
  }
  .popupBox-close {
    top: 20px;
    right: 30px;
  }
  .popupBox-img1 {
    margin: 15px 0;
    width: auto;
    height: 70px;
  }
  .popupBox-img2 {
    margin: 0 0 15px;
    width: auto;
    height: 100px;
  }
  .popupBox-h3 {
    font-size: 18px;
  }
  .popupBox-h4 {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 26px;
  }
  
  .popupBox-h5 {
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 26px;
  }
  .popupBox-p {
    margin: 10px 0 15px;
    font-size: 14px;
    line-height: 120%;
  }
  .popupBox-input {
    padding: 0 12px;
    margin-bottom: 40px;
    width: 100%;
    height: 45px;
    font-size: 16px;
  }
  .popupBox-code {
    margin-top: 20px;
    font-size: 14px;
  }
  .popupBox-btn {
    height: 45px;
    font-size: 16px;
  }
  .popupBox-btn2 {
    width: 100%;
  }
}