header {
  width: 100%;
  font-size: 1rem;
  position: fixed;
  left: 0;
  transition: all 0.3s;
  top: 0px;
  z-index: 99;
}

header .headerbox {
  height: 100%;
}

header .header_left {
  height: 100%;
  display: flex;
  align-items: center;
}

header .header_left .logo {
  max-height: 80%;
  max-width: 200px;
}

header .header_right {
  display: flex;
}

header .header_right a {
  display: inline-block;
}

header .header_right .tabBtn {
  cursor: pointer;
  display: block;
  height: var(--header-height);
  line-height: var(--header-height);
  transition: all 0.3s;
  position: relative;
}

header .header_right .tabBtn .title {
  color: white;
  height: calc(var(--header-height) - 2px);
  padding: 0 30px;
  font-size: 22px;
  white-space: nowrap;
}

header .header_right .tabBtn .title .icon {
  margin-left: 5px;
  font-size: 14px;
}

header .header_right .tabBtn:hover {
  color: var(--color-Primary);
}

header .header_right .tabBtn .downMenu {
  position: absolute;
  left: 0%;
  top: 100%;
  background-color: rgba(0, 0, 0, 0.58);
  text-align: left;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 0.5s;
  opacity: 0;
}

header .header_right .tabBtn .downMenu .tablistBtn {
  color: white;
  display: block;
  white-space: nowrap;
  padding: 0 20px;
  font-size: 18px;
  line-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.158);
}

header .header_right .tabBtn .downMenu .tablistBtn:hover {
  background-color: var(--color-Primary2);
  color: white;
}

header .header_right .tabBtn:hover .downMenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

header .header_right .select .title {
  font-weight: bold;
  border-bottom: 2px solid white;
}

header .header_right .languageBox .downMenu {
  width: auto;
}

header .header_search_page {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}

header .header_search_page .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

header .header_search_page .inputBox {
  display: flex;
  align-items: center;
  z-index: 3;
}

header .header_search_page .inputBox input {
  width: 60vw;
  font-size: 1.2rem;
  line-height: 2rem;
  padding: 10px;
}

header .header_search_page .inputBox button {
  font-size: 1rem;
  line-height: 2rem;
  padding: 10px 40px;
  background-color: #ed2c41;
  color: white;
  white-space: nowrap;
}

header .header_search_page .inputBox button:hover {
  background-color: var(--color-DarkPrimary);
}

header .searchBtn .icon {
  color: white;
}

header .searchBtn .icon:hover {
  color: #ed2c41;
}

header .mobileBtnlist .menuBtn {
  color: white;
  font-size: 40px;
  cursor: pointer;
  padding-left: 15px;
  padding-right: 5px;
}

header .header_sidebar {
  display: none;
  position: fixed;
  width: 80%;
  height: 100%;
  top: 0;
  right: -100%;
  z-index: 999;
  background-color: white;
  box-shadow: -1px 0px 9px #e9e9e9;
  transition: all 0.6s;
}

header .header_sidebar .closeSidbar {
  font-size: 30px;
  padding: 15px;
  display: inline-block;
}

header .header_sidebar .mobileTabList .tabBtn {
  width: 100%;
  text-align: center;
}

header .header_sidebar .mobileTabList .tabBtn .title {
  padding: 15px 0;
  font-size: 1.2rem;
  display: block;
}

header .header_sidebar .mobileTabList .tabBtn .title .icon {
  margin-left: 5px;
}

header .header_sidebar .mobileTabList .tabBtn .downMenu {
  display: none;
  background-color: #fafafa;
}

header .header_sidebar .mobileTabList .tabBtn .downMenu .tablistBtn {
  display: block;
  padding: 15px 0;
  font-size: 1rem;
}

header .header_language_box {
  display: none;
  position: absolute;
  z-index: 3;
  background-color: #ffffff;
  width: 100%;
  box-shadow: 0 1px 5px #e6e6e6;
}

header .header_language_box .tablistBtn {
  width: 100%;
  display: block;
  text-align: center;
  padding: 15px 0;
}

@media screen and (max-width: 700px) {
  header .headerbox {
    width: 95%;
    padding: 10px 0;
  }
  header .header_right {
    display: none;
  }
  header .header_search_page .inputBox input {
    width: 60vw;
  }
  header .header_left .logo {
    max-width: 200px;
  }
}

@media screen and (min-width: 700px) {
  header .mobileBtnlist {
    display: none;
  }
}

.module_banner {
  width: 100%;
  height: 100vh;
}

.module_banner .box {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.module_banner .box .content {
  z-index: 2;
  text-align: center;
}

.module_banner .box .content h1 {
  color: white;
  font-size: 70px;
  font-weight: bold;
}

.module_banner .box .content h3 {
  margin: 50px 0;
  color: white;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
}

.module_banner .box .content .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
  transition: all 0.3s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module_banner .box .content .btns {
    flex-direction: column;
  }
}

.module_banner .box .content .btns button {
  padding: 15px 50px;
  border-radius: 50px;
  font-size: 20px;
  color: white;
}

.module_banner .box .content .btns .btn1 {
  padding: 19px 54px;
  background-image: linear-gradient(to right, #dc5486, #8e51e7);
  background-image: -webkit-linear-gradient(to right, #dc5486, #8e51e7);
  background-image: -moz-linear-gradient(to right, #dc5486, #8e51e7);
  background-image: -o-linear-gradient(to right, #dc5486, #8e51e7);
  transition: all 0.3s;
}

.module_banner .box .content .btns .btn1:hover {
  transform: scale(1.05);
}

.module_banner .box .content .btns .btn2 {
  border: 2px solid white;
  background-color: #ffffff71;
  transition: all 0.3s;
}

.module_banner .box .content .btns .btn2:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 700px) {
  .module_banner .box .content {
    width: 80%;
  }
  .module_banner .box .content h1 {
    font-size: 2rem;
  }
  .module_banner .box .content h3 {
    font-size: 1rem;
  }
}

.module1 {
  width: 100%;
  min-height: 600px;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.module1 .content {
  z-index: 2;
  text-align: center;
}

.module1 .content h1 {
  color: white;
  font-size: 70px;
  font-weight: bold;
}

.module1 .content h3 {
  padding: 0 25%;
  margin: 50px 0;
  color: white;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
}

.module1 .content .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
  transition: all 0.3s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module1 .content .btns {
    flex-direction: column;
  }
}

.module1 .content .btns button {
  padding: 15px 50px;
  border-radius: 50px;
  font-size: 20px;
  color: white;
}

.module1 .content .btns .btn1 {
  padding: 19px 54px;
  background-image: linear-gradient(to right, #dc5486, #8e51e7);
  background-image: -webkit-linear-gradient(to right, #dc5486, #8e51e7);
  background-image: -moz-linear-gradient(to right, #dc5486, #8e51e7);
  background-image: -o-linear-gradient(to right, #dc5486, #8e51e7);
  transition: all 0.3s;
}

.module1 .content .btns .btn1:hover {
  transform: scale(1.05);
}

.module1 .content .btns .btn2 {
  border: 2px solid white;
  background-color: #ffffff71;
  transition: all 0.3s;
}

.module1 .content .btns .btn2:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 700px) {
  .module1 .content {
    width: 80%;
  }
  .module1 .content h1 {
    font-size: 2rem;
  }
  .module1 .content h3 {
    font-size: 1rem;
  }
}

.module_Title {
  text-align: center;
}

.module_Title h2 {
  font-size: 40px;
  color: black;
  font-weight: bold;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module_Title h2 {
    font-size: 26px;
  }
}

.module_Title p {
  font-size: 18px;
  max-width: 800px;
  margin: auto;
  margin-top: 20px;
}

.module_Title p span {
  color: #ff3300;
}

.module2 {
  margin: 80px 0;
}

.module2 .content {
  padding: 30px 0;
}

.module2 .content .auto_scroll {
  width: 100%;
  margin: auto;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 0;
}

.module2 .content .auto_scroll:nth-child(even) {
  width: 90%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module2 .content .auto_scroll {
    width: 100% !important;
  }
}

.module2 .content .auto_scroll .auto_scroll_page {
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 20px;
}

.module2 .content .auto_scroll ul {
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 20px;
}

.module2 .content .auto_scroll ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  width: 220px;
  height: 80px;
  box-sizing: border-box;
  padding: 0px 20px;
  background-color: #fff;
  border-radius: 10px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module2 .content .auto_scroll ul li {
    width: 140px;
    height: 70px;
  }
}

.module2 .content .auto_scroll ul li img {
  max-width: 100%;
  max-height: 90%;
}

.module2 .content .auto_scroll::-webkit-scrollbar {
  width: 0;
  display: none;
}

.module3 {
  margin: 80px 0;
}

.module3 .container .rowimg {
  margin-top: 70px;
  width: 100%;
}

.module3 .container .rowimg2 {
  margin: 70px auto;
  width: 70%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module3 .container .rowimg2 {
    margin: 30px auto;
    width: 100%;
  }
}

.module3 .container .middleBox {
  text-align: center;
}

.module3 .container .imglist {
  margin: 70px auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module3 .container .imglist {
    margin: 30px auto;
  }
}

.module4 {
  margin: 80px 0;
}

.module4 .container .navList {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
}

.module4 .container .navList::-webkit-scrollbar {
  height: 0;
}

.module4 .container .navList li {
  position: relative;
  min-width: 130px;
  flex-shrink: 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4 .container .navList li {
    width: 120px;
    min-width: auto;
  }
}

.module4 .container .navList li button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -78%);
  font-size: 20px;
  z-index: 2;
  white-space: nowrap;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4 .container .navList li button {
    font-size: 16px;
  }
}

.module4 .container .navList li button:hover {
  color: white;
}

.module4 .container .navList li img {
  visibility: hidden;
}

.module4 .container .navList .select button {
  color: white;
}

.module4 .container .navList .select img {
  visibility: visible;
  animation: ani 0.5s;
}

@keyframes ani {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.module4 .container .contentBox {
  width: 100%;
}

.module4 .container .contentBox li {
  display: none;
}

.module4 .container .contentBox li:first-child {
  display: block;
}

.module4 .container .contentBox li .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  position: relative;
  min-height: 550px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4 .container .contentBox li .content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
}

.module4 .container .contentBox li .content .leftBox {
  background-image: linear-gradient(to right, #c85fc8, #7650fb);
  background-image: -webkit-linear-gradient(to right, #c85fc8, #7650fb);
  background-image: -moz-linear-gradient(to right, #c85fc8, #7650fb);
  background-image: -o-linear-gradient(to right, #c85fc8, #7650fb);
}

.module4 .container .contentBox li .content .leftBox .textBox {
  position: absolute;
  height: 100%;
  left: 50%;
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  flex-direction: column;
  transform: translateX(-50%);
  z-index: 2;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4 .container .contentBox li .content .leftBox .textBox {
    position: relative;
    display: block;
    padding: 30px 0;
  }
}

.module4 .container .contentBox li .content .leftBox .textBox .box {
  width: 50%;
  color: white;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4 .container .contentBox li .content .leftBox .textBox .box {
    width: 100%;
  }
}

.module4 .container .contentBox li .content .leftBox .textBox .box .title {
  font-size: 28px;
  margin-bottom: 20px;
}

.module4 .container .contentBox li .content .leftBox .textBox .box p {
  font-size: 18px;
  margin-bottom: 15px;
  padding-right: 10%;
  box-sizing: border-box;
}

.module4 .container .contentBox li .content .rightBox {
  background-color: #fff;
}

.module4 .container .contentBox li .content .rightBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module5 {
  padding: 80px 0;
}

.module5 .container .module_Title {
  color: white;
}

.module5 .container .module_Title h2 {
  color: white;
}

.module5 .container .content {
  display: grid;
  grid-template-columns: 20% 50% 20%;
  gap: 5%;
  padding-top: 100px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module5 .container .content {
    grid-template-columns: 1fr;
    padding-top: 30px;
    gap: 30px;
  }
}

.module5 .container .content .leftBox {
  border-radius: 15px;
  background-image: linear-gradient(to right, #7144e7, #245af7);
  background-image: -webkit-linear-gradient(to right, #7144e7, #245af7);
  background-image: -moz-linear-gradient(to right, #7144e7, #245af7);
  background-image: -o-linear-gradient(to right, #7144e7, #245af7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  box-shadow: inset 0px 0px 10px 2px #ffffff94;
  padding: 30px 0;
  transition: all 0.5s;
}

.module5 .container .content .leftBox:hover {
  transform: scale(1.05);
}

.module5 .container .content .leftBox ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  gap: 20px;
  flex-direction: column;
  height: 100%;
}

.module5 .container .content .leftBox ul li h3 {
  font-size: 30px;
  font-weight: 500;
  color: white;
}

.module5 .container .content .leftBox ul li p {
  color: white;
}

.module5 .container .content .middleBox .box1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.module5 .container .content .middleBox .box1 li {
  background-image: linear-gradient(to right, #c53dc5, #663cfc);
  background-image: -webkit-linear-gradient(to right, #c53dc5, #663cfc);
  background-image: -moz-linear-gradient(to right, #c53dc5, #663cfc);
  background-image: -o-linear-gradient(to right, #c53dc5, #663cfc);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  flex-direction: column;
  padding: 20px 0;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}

.module5 .container .content .middleBox .box1 li:hover {
  transform: scale(1.05);
}

.module5 .container .content .middleBox .box1 li::after {
  content: "";
  background-image: linear-gradient(to right, #c85ec8, #7650fb);
  background-image: -webkit-linear-gradient(to right, #c85ec8, #7650fb);
  background-image: -moz-linear-gradient(to right, #c85ec8, #7650fb);
  background-image: -o-linear-gradient(to right, #c85ec8, #7650fb);
  position: absolute;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  left: 50%;
  top: 50%;
  border-radius: 15px;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.module5 .container .content .middleBox .box1 li .img {
  position: relative;
  z-index: 3;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 0;
}

.module5 .container .content .middleBox .box1 li p {
  position: relative;
  z-index: 3;
  color: white;
  margin-top: 15px;
  font-size: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module5 .container .content .middleBox .box1 li p {
    font-size: 16px;
  }
}

.module5 .container .content .middleBox .box2 {
  margin: 20px 0;
  background-image: linear-gradient(to right, #6f6dfd, #c782c1);
  background-image: -webkit-linear-gradient(to right, #6f6dfd, #c782c1);
  background-image: -moz-linear-gradient(to right, #6f6dfd, #c782c1);
  background-image: -o-linear-gradient(to right, #6f6dfd, #c782c1);
  box-shadow: inset 0px 0px 10px 2px #ffffffbe;
  padding: 20px;
  border-radius: 15px;
  color: white;
  transition: all 0.5s;
}

.module5 .container .content .middleBox .box2:hover {
  transform: scale(1.05);
}

.module5 .container .content .middleBox .box2 .title {
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
}

.module5 .container .content .middleBox .box2 ul {
  background-color: #ffffff52;
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: bold;
}

.module5 .container .content .middleBox .box3 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 15px;
}

.module5 .container .content .middleBox .box3 li .img {
  background-color: #fff;
  border-radius: 10px;
  width: 60px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
}

.module5 .container .content .middleBox .box3 li p {
  text-align: center;
  font-size: 14px;
  margin-top: 5px;
  color: white;
}

.module5 .container .content .rightBox ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  height: 100%;
  flex-direction: column;
}

.module5 .container .content .rightBox ul li {
  background-image: linear-gradient(to right, #7144e7, #245af7);
  background-image: -webkit-linear-gradient(to right, #7144e7, #245af7);
  background-image: -moz-linear-gradient(to right, #7144e7, #245af7);
  background-image: -o-linear-gradient(to right, #7144e7, #245af7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  flex-direction: column;
  box-shadow: inset 0px 0px 10px 2px #ffffff94;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  color: white;
  box-sizing: border-box;
  transition: all 0.5s;
}

.module5 .container .content .rightBox ul li:hover {
  transform: scale(1.05);
}

.module5 .container .content .rightBox ul li h3 {
  font-size: 30px;
}

.module5 .container .content .rightBox ul li p {
  font-size: 22px;
}

.module6 {
  margin: 80px 0;
}

.module6 ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5%;
  margin-top: 70px;
}

@media screen and (max-width: 700px) {
  .module6 ul {
    display: block;
  }
}

.module6 li {
  text-align: center;
}

@media screen and (max-width: 700px) {
  .module6 li {
    margin-bottom: 50px;
  }
}

.module6 h4 {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}

.module6 p {
  font-size: 18px0;
}

footer {
  padding: 30px 0;
  background-color: #222a3d;
}

footer .container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.308);
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .container .content {
    flex-direction: column;
  }
}

footer .container .content .left {
  color: white;
}

footer .container .content .left .icon {
  color: white;
  font-size: 26px;
  margin-right: 10px;
}

footer .container .content .left .tel {
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 0;
}

footer .container .content .left .tel p {
  margin: 0;
}

footer .container .content .left .tel h4 {
  font-size: 22px;
  letter-spacing: 2px;
}

footer .container .content .left .codeBox {
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 0;
  margin: 20px 0;
}

footer .container .content .left .codeBox .code {
  width: 150px;
}

footer .container .content .left button {
  color: white;
  font-size: 18px;
  border: 2px solid white;
  padding: 10px 30px;
  border-radius: 10px;
}

footer .container .content .left button:hover {
  background-color: var(--color-Primary2);
}

footer .container .content .right ul {
  display: flex;
  align-items: flex-start;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .container .content .right ul {
    flex-wrap: wrap;
    gap: 0px;
    margin: 20px 0;
  }
}

footer .container .content .right ul li {
  display: flex;
  align-items: flex-start;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 0;
  flex-direction: column;
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .container .content .right ul li {
    width: 50%;
    margin-bottom: 20px;
  }
}

footer .container .content .right ul li .title {
  font-size: 20px;
  margin-bottom: 30px;
}

footer .container .content .right ul li a {
  color: white;
  padding: 5px 0;
}

footer .container .content .right ul li a:hover {
  color: var(--color-Primary2);
}

footer .container .Copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.247);
}

.module7 {
  margin: 80px 0;
}

.module7 .imgBox {
  padding: 80px 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module7 .imgBox {
    grid-template-columns: repeat(1, auto);
  }
}

.module7 .imgBox img {
  height: 600px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module7 .imgBox img {
    width: 100%;
    height: auto;
  }
}

.module8 {
  padding: 80px 0;
  background-image: linear-gradient(to right, #c95ec8, #7650fa);
  background-image: -webkit-linear-gradient(to right, #c95ec8, #7650fa);
  background-image: -moz-linear-gradient(to right, #c95ec8, #7650fa);
  background-image: -o-linear-gradient(to right, #c95ec8, #7650fa);
}

.module8 .module_Title h2 {
  color: white;
}

.module8 .content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module8 .content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.module8 .content .left {
  padding-top: 20px;
}

.module8 .content .left h2 {
  color: white;
  font-size: 32px;
  font-weight: bold;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module8 .content .left h2 {
    font-size: 22px;
    text-align: center;
  }
}

.module8 .content .left p {
  color: white;
  font-size: 24px;
  line-height: 38px;
  margin: 70px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module8 .content .left p {
    font-size: 18px;
    line-height: 24px;
    margin: 30px 0;
    text-align: center;
  }
}

.module8 .content .left p span {
  color: #ffff00;
}

.module9 {
  margin: 80px 0;
}

.module9 .medias {
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .medias {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.module9 .medias .media {
  overflow: visible;
}

.module9 .medias .media:nth-child(odd) li {
  background-image: url("../image/dhk2.png");
}

.module9 .medias .media:nth-child(even) li {
  background-image: url("../image/dhk3.png");
}

.module9 .medias .media li {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  padding: 20px;
  box-sizing: border-box;
}

.module9 .medias .media li .t1 {
  color: white;
  font-size: 20px;
  margin-bottom: 30px;
}

.module9 .medias .media li .number {
  color: white;
  font-size: 24px;
}

@media (max-width: 768px) {
  .module9 .medias {
    gap: 2vw;
  }
  .module9 .medias img {
    width: 18vw;
    height: 18vw;
  }
}

.module10 {
  margin: 80px 0;
}

.module10 .box {
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
  align-items: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module10 .box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5%;
  }
}

.module10 .box .leftBox {
  font-size: 20px;
  line-height: 40px;
}

.module10 .box .leftBox li {
  display: flex;
  align-items: flex-start;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 20px;
  margin-bottom: 20px;
}

.module10 .box .leftBox li img {
  width: 40px;
  margin-top: 10px;
}

.module10 .box .leftBox span {
  color: var(--color-Primary2);
}

.module11 {
  margin: 80px 0;
}

.module11 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.module11 ul li {
  background-color: white;
  border-radius: 20px;
  transition: all 0.5s;
}

.module11 ul li:hover {
  transform: translateY(-20px);
}

.module11 ul li img {
  width: 100%;
}

.module11 ul li .box {
  padding: 30px;
}

.module11 ul li .box h3 {
  text-align: center;
  margin: 20px 0;
  font-weight: bold;
  font-size: 26px;
}

.module11 ul li .box p {
  font-size: 16px;
  line-height: 28px;
}

.module12 {
  margin: 80px 0;
  position: relative;
}

.module12::after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  opacity: 0.5;
  z-index: 1;
}

.module12 .box {
  position: relative;
  z-index: 2;
}

.module12 .content {
  padding: 50px 0;
}

.module12 .content .listBox:nth-child(even) {
  display: flex;
  justify-content: flex-end;
}

.module12 .content .listBox:nth-child(even) .list {
  border-left: 1px solid var(--color-Primary2);
  margin-right: 1px;
}

.module12 .content .listBox:nth-child(even) .list .card {
  margin-left: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module12 .content .listBox:nth-child(even) .list .card {
    margin-left: 20px;
  }
}

.module12 .content .listBox:nth-child(even) .dots {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.module12 .content .listBox:nth-child(odd) .list {
  flex-direction: row-reverse;
  border-right: 1px solid var(--color-Primary2);
}

.module12 .content .listBox:nth-child(odd) .list .card {
  text-align: right;
  margin-right: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module12 .content .listBox:nth-child(odd) .list .card {
    margin-right: 20px;
  }
}

.module12 .content .listBox:nth-child(odd) .dots {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.module12 .content .listBox:hover .dots::after {
  width: 100%;
  height: 100%;
}

.module12 .content .listBox .list {
  display: flex;
  width: 50%;
  box-sizing: border-box;
  position: relative;
  align-items: center;
}

.module12 .content .listBox .list:hover .dots {
  transform: translateY(-50%) scale(1.3);
}

.module12 .content .listBox .list:hover .card {
  box-shadow: 0px 0px 10px 2px #b196ff;
  transform: scale(1.05);
}

.module12 .content .listBox .list .dots {
  width: 20px;
  height: 20px;
  transition: all 0.3s;
  border-radius: 50px;
  background-color: rgba(94, 47, 236, 0.596);
  position: absolute;
}

.module12 .content .listBox .list .dots::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50px;
  background-color: var(--color-Primary2);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}

.module12 .content .listBox .list .card {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px #cfc1f9;
  min-width: 400px;
  transition: all 0.3s;
  cursor: pointer;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module12 .content .listBox .list .card {
    min-width: auto;
  }
}

.module12 .content .listBox .list .card .year {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 5px;
  color: var(--color-Primary2);
}

.module13 {
  padding: 80px 0;
  background-image: linear-gradient(to right, #c95ec8, #7650fa);
  background-image: -webkit-linear-gradient(to right, #c95ec8, #7650fa);
  background-image: -moz-linear-gradient(to right, #c95ec8, #7650fa);
  background-image: -o-linear-gradient(to right, #c95ec8, #7650fa);
}

.module13 .module_Title h2 {
  color: white;
}

.module13 ul {
  padding: 80px 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module13 ul {
    flex-direction: column;
  }
}

.module13 ul li {
  max-width: 500px;
}

.module13 ul li img {
  width: 100%;
  margin-bottom: -20px;
}

.module13 ul li .card {
  padding: 50px 0;
  border-radius: 20px;
  color: white;
}

.module13 ul li .card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.module14 {
  padding: 80px 0;
}

.module14 ul li {
  display: grid;
  grid-template-columns: 30% 70%;
  justify-items: start;
  margin: 50px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module14 ul li {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.module14 ul li .left .box {
  text-align: center;
}

.module14 ul li .left img {
  width: 60px;
}

.module14 ul li .left .title {
  margin-top: 10px;
  font-size: 30px;
  font-weight: bold;
  color: black;
}

.module14 ul li .left .title span {
  font-size: 14px;
}

.module14 ul li .right .card {
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 50px;
  border-radius: 20px;
  margin-bottom: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module14 ul li .right .card {
    margin-bottom: 20px;
  }
}

.module14 ul li .right .card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}

.module14 ul li .right .card p {
  width: 70%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module14 ul li .right .card p {
    width: 100%;
  }
}

.module14 ul li .right2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module14 ul li .right2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

.module14 ul li .right2 .card p {
  width: 90%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module14 ul li .right2 .card p {
    width: 100%;
  }
}

.module14 ul li .right2 img {
  grid-column-start: 1;
  grid-column-end: 3;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module14 ul li .right2 img {
    grid-column-end: auto;
  }
}

.module15 {
  padding: 80px 0;
  background-image: linear-gradient(to right, #bd7dc5, #766ef8);
  background-image: -webkit-linear-gradient(to right, #bd7dc5, #766ef8);
  background-image: -moz-linear-gradient(to right, #bd7dc5, #766ef8);
  background-image: -o-linear-gradient(to right, #bd7dc5, #766ef8);
}

.module15 h3 {
  color: white;
  font-size: 34px;
  margin-bottom: 50px;
}

.module15 img {
  width: 100%;
}

.module16 {
  padding: 80px 0;
}

.module16 .title {
  font-size: 36px;
  margin-bottom: 50px;
}

.module16 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.module16 ul li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.module16 ul li .id {
  background-color: #8755d7;
  width: 70px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 10px;
  color: white;
  font-size: 24px;
  text-align: center;
  line-height: 70px;
}

.module16 ul li h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.module16 ul li p {
  line-height: 24px;
  color: #2e2e2e;
}

@media (min-width: 700px) and (max-width: 1100px) {
  .module16 ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 700px) {
  .module16 ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.module17 {
  margin: 80px 0;
}

.module17 .t1 {
  font-size: 36px;
  margin-bottom: 50px;
}

.module17 .t2 {
  width: 40%;
  margin-bottom: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module17 .t2 {
    width: 100%;
  }
}

.module17 img {
  width: 100%;
}

.module18 {
  padding: 80px 0;
  background-image: linear-gradient(to right, #b273e2, #6e46ff);
  background-image: -webkit-linear-gradient(to right, #b273e2, #6e46ff);
  background-image: -moz-linear-gradient(to right, #b273e2, #6e46ff);
  background-image: -o-linear-gradient(to right, #b273e2, #6e46ff);
}

.module18 .module_Title h2 {
  color: white;
}

.module18 ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5%;
  padding: 80px 0;
}

.module18 ul li {
  text-align: center;
  color: white;
}

.module18 ul li h4 {
  font-size: 26px;
  font-weight: bold;
  margin: 30px 0;
}

.module18 ul li p {
  font-size: 16px;
  line-height: 30px;
}

.module18 ul li a {
  font-weight: bold;
  margin-top: 20px;
}

.module18 ul li a:hover {
  color: var(--color-Primary2);
}

@media screen and (max-width: 700px) {
  .module18 ul {
    display: block;
  }
  .module18 ul li {
    margin-bottom: 50px;
  }
}

.module19 {
  padding: 80px 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}

.module19 h3 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: var(--color-Primary2);
  margin-bottom: 50px;
}

.module19 ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module19 ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

.module19 ul li {
  padding: 50px 10%;
  border-radius: 10px;
  background-image: linear-gradient(to right, #8e6cda, #a072c2);
  background-image: -webkit-linear-gradient(to right, #8e6cda, #a072c2);
  background-image: -moz-linear-gradient(to right, #8e6cda, #a072c2);
  background-image: -o-linear-gradient(to right, #8e6cda, #a072c2);
  color: white;
  box-shadow: inset 0px 0px 10px 1px white;
}

.module19 ul li h4 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.module19 ul li p {
  line-height: 30px;
  text-align: center;
}

.module20 {
  position: relative;
}

.module20 .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  min-height: 750px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module20 .container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
}

.module20 .container .leftBox {
  background-image: linear-gradient(to right, #b273e2, #6e46ff);
  background-image: -webkit-linear-gradient(to right, #b273e2, #6e46ff);
  background-image: -moz-linear-gradient(to right, #b273e2, #6e46ff);
  background-image: -o-linear-gradient(to right, #b273e2, #6e46ff);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module20 .container .leftBox .contentBox {
    position: static;
    transform: none;
    padding: 30px 0;
  }
}

.module20 .container .leftBox .contentBox h3 {
  font-size: 30px;
  color: white;
  margin-bottom: 50px;
  font-weight: bold;
}

.module20 .container .leftBox .contentBox ul li {
  margin: 30px 0;
  display: flex;
  align-items: flex-start;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 20px;
  padding-right: 55%;
  box-sizing: border-box;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module20 .container .leftBox .contentBox ul li {
    padding: 0;
  }
}

.module20 .container .leftBox .contentBox ul li span {
  background-color: #dbbcf1;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 0 10px 0 10px;
  color: white;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 60px;
  flex-shrink: 0;
}

.module20 .container .leftBox .contentBox ul li div {
  color: white;
}

.module20 .container .leftBox .contentBox ul li div h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.module20 .container .rightBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Backtop1 {
  position: fixed;
  right: 10px;
  bottom: 10vh;
  z-index: 3;
}

.Backtop1 .box {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.5s;
  background-color: var(--color-Primary2);
  color: white;
}

.Backtop1 .box:hover {
  box-shadow: 2px 4px 6px #5e5e5e;
}

.Backtop1 .icon {
  font-size: 24px;
}
