@charset "UTF-8";
:root {
  --text-h3: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  :root {
    --text-h3: 22px;
  }
  p {
    font-size: 14px;
  }
}

@keyframes flicker {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#anchor1, #anchor2, #anchor3, #anchor4, #anchor5, #anchor6 {
  scroll-margin-top: 120px;
}

.message-container {
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999999999;
  width: 400px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .message-container {
    width: 90vw;
  }
}

.message-container .message {
  background-color: #fff;
  border: 1px solid #ebeef5;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(51, 51, 51, 0.2);
  padding: 15px 15px 15px 20px;
  margin-bottom: 10px;
  min-width: 200px;
  max-width: 100%;
  display: flex !important;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  font-family: "iconfont";
}

.message-container .message.show {
  opacity: 1;
  transform: translateY(0);
}

.message-container .message.success {
  color: #67c23a;
}

.message-container .message.success::before {
  content: "\e66b";
  margin-right: 10px;
}

.message-container .message.error {
  color: #ff3b3b;
}

.message-container .message.error::before {
  content: "\e66a";
  margin-right: 10px;
}

.message-container .message.warning {
  color: #f5a52e;
}

.message-container .message.warning::before {
  content: "\e63c";
  margin-right: 10px;
}

.message-container .message.info {
  color: #909399;
}

.moreBtn .btn {
  background-color: var(--color-Primary);
  color: white;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: bold;
  transition: all 0.5s;
  font-size: 16px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .moreBtn .btn {
    font-size: 14px;
  }
}

.moreBtn .btn .icon {
  transition: all 0.3s;
  margin-left: 5px;
}

.moreBtn .btn .arrow {
  width: 40px;
  margin-left: 10px;
}

.moreBtn .btn:hover {
  background-color: var(--color-Primary3);
}

.moreBtn .btn:hover .icon {
  margin-left: 20px;
}

.moreBtn .btn:hover .arrow {
  margin-left: 20px;
}

.fullLoading9 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  display: none;
}

.fullLoading9 .content {
  width: 100%;
  height: 100%;
}

.fullLoading9 .content .line-scale > div {
  background-color: var(--color-Primary);
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
}

.fullLoading9 .content .line-scale > div:nth-child(1) {
  animation: fullLoading9 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.fullLoading9 .content .line-scale > div:nth-child(2) {
  animation: fullLoading9 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.fullLoading9 .content .line-scale > div:nth-child(3) {
  animation: fullLoading9 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.fullLoading9 .content .line-scale > div:nth-child(4) {
  animation: fullLoading9 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.fullLoading9 .content .line-scale > div:nth-child(5) {
  animation: fullLoading9 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

@keyframes fullLoading9 {
  0% {
    transform: scaley(1);
  }
  50% {
    transform: scaley(0.4);
  }
  100% {
    transform: scaley(1);
  }
}

.Breadcrumb1 {
  padding: 10px;
  border-bottom: 1px solid var(--color-Background);
}

.Breadcrumb1 a {
  font-size: 1rem;
}

.Breadcrumb1 a::after {
  content: ">";
  margin: 0 5px;
  color: black;
}

.Breadcrumb1 a::after:hover {
  color: black;
}

.Breadcrumb1 a:last-child::after {
  content: "";
}

.Breadcrumb1 a:hover {
  color: var(--color-Primary);
  text-decoration: underline !important;
}

.Dialog2 {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: rgba(44, 44, 44, 0.363);
  display: none;
}

.Dialog2 .box {
  width: 350px;
  background-color: white;
  border-radius: 5px;
  padding: 10px 20px;
  animation: Dialog1Show 0.4s forwards;
}

.Dialog2 .box .center {
  text-align: center;
}

.Dialog2 .box .header {
  padding: 10px 0;
  position: relative;
}

.Dialog2 .box .header .icon {
  font-size: 24px;
  transition: all 0.3s;
}

.Dialog2 .box .header .icon:hover {
  color: var(--color-Primary2);
}

.Dialog2 .box .header .title {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
}

.Dialog2 .box .header .closeBtn {
  position: absolute;
  top: 0;
  right: 0px;
  transition: all 0.5s;
}

.Dialog2 .box .header .closeBtn:hover {
  transform: rotate(90deg);
}

.Dialog2 .box .content {
  padding: 20px 0;
}

.Dialog2 .box .btnList {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
}

.Dialog2 .box .btnList button {
  border: 1px solid #bebebe;
  padding: 6px 30px;
  border-radius: 50px;
  transition: all 0.3s;
}

.Dialog2 .box .btnList .confirm {
  background-color: var(--color-Primary);
  color: white;
}

.Dialog2 .box .btnList .confirm:hover {
  background-color: var(--color-Primary2);
  border: 1px solid var(--color-Primary2);
}

.Dialog2 .box .btnList .cancel:hover {
  border: 1px solid var(--color-Primary);
  background-color: var(--color-Primary);
  color: white;
}

@media (min-width: 0px) and (max-width: 700px) {
  .Dialog2 .box {
    width: 90vw;
  }
}

@keyframes Dialog1Show {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.showLoading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999999999;
  max-width: 150px;
}

.showLoading .message {
  background-color: #fff;
  border: 1px solid #ebeef5;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(51, 51, 51, 0.2);
  padding: 15px 15px 15px 20px;
  margin-bottom: 10px;
  max-width: 100%;
  min-width: 100px;
  display: flex !important;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s;
  font-family: "iconfont";
}

.showLoading .message p {
  font-size: 14px;
  margin: 0;
  margin-top: 5px;
}

.showLoading .message.show {
  opacity: 1;
  transform: scale(1);
}

.showLoading .message::before {
  content: "\e634";
  font-size: 26px;
  color: #757575;
  font-weight: bold;
  animation: animate_showLoading 1s linear infinite;
}

@keyframes animate_showLoading {
  form {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.arrow {
  display: inline-block;
  width: 40px;
  height: 10px;
  position: relative;
  transition: all 0.5s;
}

.arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  border-bottom: 1px solid white;
}

.arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  transform: rotate(45deg);
  transform-origin: right;
  display: block;
  width: 8px;
  border-bottom: 1px solid white;
}

@media (min-width: 0px) and (max-width: 700px) {
  .arrow {
    width: 25px !important;
  }
}

.Pagination1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  gap: 15px;
}

.Pagination1 a {
  width: 20px;
  text-align: center;
  transition: all 0.5s;
}

.Pagination1 a:first-child {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50px;
  border: 1px solid #bebebe;
}

.Pagination1 a:last-child {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50px;
  border: 1px solid #bebebe;
}

.Pagination1 a:first-child:hover {
  background-color: var(--color-Primary);
  color: white;
}

.Pagination1 a:last-child:hover {
  background-color: var(--color-Primary);
  color: white;
}

.Pagination1 .select {
  color: var(--color-Primary);
  font-weight: bold;
}

.PopupBox1 {
  display: inline;
}

.PopupBox1 .mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 198;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}

.PopupBox1 .PopBox {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 199;
  display: none;
}

.PopupBox1 .PopBox .content {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s;
}

.PopupBox1 .PopBox .content .videobox {
  width: 100%;
  height: 100%;
}

.PopupBox1 .PopBox .content .videobox video {
  min-width: 60vw;
  max-width: 700px;
  max-height: 90vh;
}

@media (min-width: 0px) and (max-width: 700px) {
  .PopupBox1 .PopBox .content .videobox video {
    width: 90vw;
  }
}

.PopupBox1 .PopBox .content .iframeBox {
  width: 60vw;
  height: 80vh;
}

@media (min-width: 0px) and (max-width: 700px) {
  .PopupBox1 .PopBox .content .iframeBox {
    width: 90vw;
    height: 300px;
  }
}

.PopupBox1 .PopBox .content .iframeBox iframe {
  width: 100%;
  height: 100%;
}

.PopupBox1 .PopBox .content .closeBtn {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 2;
  padding: 10px;
  transition: all 0.6s;
}

.PopupBox1 .PopBox .content .closeBtn:hover {
  transform: rotate(90deg);
}

.PopupBox1 .PopBox .content .closeBtn .icon {
  color: #383838;
  font-size: 26px;
}

.PopupBox2 {
  display: inline;
}

.PopupBox2 .mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}

.PopupBox2 .PopBox {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  display: none;
}

.PopupBox2 .PopBox .content {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  transform: scale(0.4);
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .PopupBox2 .PopBox .content {
    width: 100vw;
    height: 100vh;
    padding-top: 80px;
    padding-bottom: 20px;
  }
}

.PopupBox2 .PopBox .content .box {
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .PopupBox2 .PopBox .content .box {
    display: block;
  }
}

@media (min-width: 0px) and (max-width: 700px) {
  .PopupBox2 .PopBox .content .box .module14 {
    padding: 20px;
  }
}

.PopupBox2 .PopBox .content .box .module14 .closeBtn {
  display: block;
}

@media (min-width: 0px) and (max-width: 700px) {
  .PopupBox2 .PopBox .content .box .module14 .closeBtn {
    display: none;
  }
}

.PopupBox2 .PopBox .content .closeBtn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  padding: 10px;
  transition: all 0.6s;
  display: none;
}

@media (min-width: 0px) and (max-width: 700px) {
  .PopupBox2 .PopBox .content .closeBtn {
    display: block;
  }
}

.PopupBox2 .PopBox .content .closeBtn:hover {
  transform: rotate(90deg);
}

.PopupBox2 .PopBox .content .closeBtn .icon {
  color: white;
  font-size: 26px;
}

.offside {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: none;
}

@media (min-width: 0px) and (max-width: 700px) {
  .offside {
    bottom: 0;
    left: 0;
    top: auto;
    transform: none;
  }
}

.offside ul {
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .offside ul {
    width: 100%;
    flex-direction: row;
    gap: 0px;
  }
}

.offside ul input {
  display: none;
}

.offside ul label {
  width: 100%;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .offside ul label {
    display: none;
  }
}

.offside ul li {
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
  z-index: 3;
  padding: 0px;
  width: 100%;
  border: none;
}

.offside ul li:hover a {
  width: auto;
  background-color: var(--color-Primary2);
}

.offside ul li:hover .text {
  transform: translateX(-100%);
  background-color: var(--color-Primary2);
}

.offside ul li a {
  width: 100%;
  height: 50px;
  background-color: var(--color-Primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

.offside ul li a .icon {
  color: white;
  font-size: 26px;
}

.offside ul li a .text {
  position: absolute;
  background-color: var(--color-Primary);
  white-space: nowrap;
  height: 100%;
  color: white;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 20px;
  z-index: -1;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .offside ul li a .text {
    display: none !important;
  }
}

.offside ul .taggleBtn a {
  background-color: #adadad;
}

.offside ul .taggleBtn .i2 {
  display: none;
}

.offside input:checked ~ .btn {
  transform: translateX(100%);
}

.offside input:checked ~ label {
  width: 30px;
}

.offside input:checked ~ label .i1 {
  display: none;
}

.offside input:checked ~ label .i2 {
  display: block;
}

header {
  height: 60px;
  width: 100%;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 98;
  transition: all 0.3s;
}

@media (min-width: 0px) and (max-width: 700px) {
  header {
    width: 100vw;
  }
}

header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

header > .container .leftBox {
  flex-shrink: 0;
}

header > .container .leftBox .logo {
  max-width: 160px;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .leftBox .logo {
    width: 150px;
  }
}

header > .container .centerBox {
  height: 100%;
  margin: 0 20px;
  box-sizing: border-box;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .centerBox {
    width: 100%;
    margin: 0px;
  }
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .centerBox {
    width: 100%;
    position: absolute;
    background-color: #ffffff;
    box-shadow: 1px 1px 5px #d9d9d9;
    left: 0;
    top: 100%;
    padding: 20px;
    max-height: 80vh;
    overflow: auto;
    display: none;
    height: auto;
    overscroll-behavior: contain;
  }
}

header > .container .centerBox .menuBox {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .centerBox .menuBox {
    flex-direction: column;
    gap: 0px;
  }
}

@media (min-width: 700px) and (max-width: 1500px) {
  header > .container .centerBox .menuBox {
    gap: 10px;
  }
}

header > .container .centerBox .menuBox .menu {
  padding: 0 10px;
  height: 100%;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .centerBox .menuBox .menu {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
  }
  header > .container .centerBox .menuBox .menu:last-child {
    border-bottom: none;
  }
}

header > .container .centerBox .menuBox .menu > .t1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

header > .container .centerBox .menuBox .menu > .t1:hover a {
  color: var(--color-Primary);
}

header > .container .centerBox .menuBox .menu > .t1 a {
  padding: 7px 0;
  color: white;
  white-space: nowrap;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .centerBox .menuBox .menu > .t1 a {
    width: 80%;
    text-align: left;
    color: black;
  }
}

header > .container .centerBox .menuBox .menu > .t1 .icon {
  display: none;
  width: 30px;
  line-height: 30px;
  height: 30px;
  text-align: center;
  font-size: 14px;
  border-radius: 5px;
  background-color: var(--color-Primary);
  transition: all 0.3s;
  color: white;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .centerBox .menuBox .menu > .t1 .icon {
    display: block;
  }
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .centerBox .menuBox .menu > .t1 {
    width: 100%;
    color: black;
    font-size: 18px;
    font-weight: bold;
  }
}

header > .container .centerBox .menuBox .menu .select a {
  color: var(--color-Primary);
  font-weight: bold;
  font-family: "Poppins-Bold";
  border-bottom: 2px solid var(--color-Primary);
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .centerBox .menuBox .menu .select a {
    border: none;
  }
}

header > .container .centerBox .menuBox .menu .down {
  opacity: 1 !important;
  top: 100% !important;
  z-index: -2;
}

header > .container .centerBox .menuBox .menu .downBox {
  position: absolute;
  left: 0;
  top: 120%;
  width: 100%;
  opacity: 0;
  z-index: 2;
  display: none;
  background-color: #eeeeee;
  transition: all 0.3s;
  box-shadow: 0px 2px 5px #9c9c9c;
  max-height: 80vh;
  overflow: auto;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .centerBox .menuBox .menu .downBox {
    position: relative;
    top: auto;
    display: none;
    box-shadow: none;
    opacity: 1;
    margin-top: 10px;
  }
}

header > .container .centerBox .menuBox .menu .downBox .downContent {
  height: 100%;
  display: grid;
  grid-template-columns: 300px calc(100% - 300px);
  align-items: center;
  padding: 0 160px;
  transition: all 0.5s;
}

@media (min-width: 701px) and (max-width: 1200px) {
  header > .container .centerBox .menuBox .menu .downBox .downContent {
    padding: 0px;
  }
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .centerBox .menuBox .menu .downBox .downContent {
    width: 100% !important;
    display: block;
    padding: 0;
  }
}

header > .container .centerBox .menuBox .menu .downBox .leftListMenu {
  background-color: #fff;
  padding: 50px 20px;
  height: 100%;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .centerBox .menuBox .menu .downBox .leftListMenu {
    padding: 20px;
    background-color: #fbfbfb;
  }
}

header > .container .centerBox .menuBox .menu .downBox .listBtn {
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

header > .container .centerBox .menuBox .menu .downBox .listBtn .t2 {
  margin: 10px 0;
  margin-top: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .centerBox .menuBox .menu .downBox .listBtn .t2 {
    margin-top: 10px;
  }
}

header > .container .centerBox .menuBox .menu .downBox .listBtn .t2 span, header > .container .centerBox .menuBox .menu .downBox .listBtn .t2 a {
  color: #8e8e8e;
  border-bottom: 1px solid #8e8e8e;
  padding-bottom: 2px;
}

header > .container .centerBox .menuBox .menu .downBox .listBtn .t2 a:hover {
  color: var(--color-Primary);
  border-bottom: 1px solid var(--color-Primary);
}

header > .container .centerBox .menuBox .menu .downBox .listBtn .t2.select {
  color: var(--color-Primary);
}

header > .container .centerBox .menuBox .menu .downBox .listBtn .nav1 .children {
  display: none;
}

header > .container .centerBox .menuBox .menu .downBox .listBtn .nav1 a {
  font-weight: bold;
}

header > .container .centerBox .menuBox .menu .downBox .listBtn .nav1 a::after {
  content: ">";
  padding-left: 10px;
}

header > .container .centerBox .menuBox .menu .downBox .listBtn .nav1 a:hover {
  color: var(--color-Primary);
}

header > .container .centerBox .menuBox .menu .downBox .listBtn .select2 a {
  color: var(--color-Primary) !important;
}

header > .container .centerBox .menuBox .menu .flexBox {
  padding: 3% 5%;
  display: flex;
  gap: 30px;
}

header > .container .centerBox .menuBox .menu .moreBtn {
  text-align: center;
  margin-top: 20px;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 {
  padding: 20px;
  margin: 20px 0;
  height: 520px !important;
  display: flex;
  gap: 20px;
  height: 100%;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .listBtn {
  width: 250px;
  margin-top: 82px;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .childrenBox {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 20px;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .card1 {
  width: 410px;
  height: 410px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: all 0.5s;
  background-color: #fff;
}

@media (min-width: 701px) and (max-width: 1400px) {
  header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .card1 {
    display: none;
  }
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .card1:hover {
  box-shadow: 2px 2px 10px #d4d4d4;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .card1:hover img {
  transform: scale(1.1);
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .card1:hover .textBox {
  color: var(--color-Primary);
  background-color: black;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .card1 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .card1 .textBox {
  position: absolute;
  z-index: 3;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 20px;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .card1 .textBox h4 {
  text-align: center;
  font-weight: bold;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .card1 .textBox p {
  font-size: 14px;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(2, 200px);
  grid-template-rows: repeat(2, 200px);
  justify-content: center;
  gap: 10px;
  height: 100%;
  aspect-ratio: 1/1;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox li {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: white;
  position: relative;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox li:hover {
  box-shadow: 1px 1px 15px #cccccc;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox li:hover .t2, header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox li:hover .t3 {
  color: var(--color-Primary) !important;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox li:hover:has(.img2) .img1 {
  display: none;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox li:hover:has(.img2) .img2 {
  display: block;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox li a {
  display: block;
  width: 100%;
  height: 100%;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox li .tag {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 12px;
  font-weight: bold;
  background-color: var(--color-Primary);
  color: white;
  padding: 3px 5px;
  border-radius: 5px;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox li img {
  padding: 10px;
  height: 50%;
  width: 90%;
  object-fit: contain;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox li .img2 {
  display: none;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox li p {
  margin: 0;
  margin-bottom: 3px;
  color: black;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox li .t1 {
  color: #494949;
  padding: 0;
  font-size: 16px;
  line-height: 20px;
  height: 20px;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox li .t2 {
  font-size: 14px;
  line-height: 16px;
  height: 32px;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox li .t3 {
  font-size: 14px;
  display: inline;
  border-bottom: 2px solid var(--color-Primary);
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox2 {
  grid-template-columns: repeat(auto-fill, 235px) !important;
  grid-template-rows: none;
  width: 100%;
  overflow-y: auto;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox2 li {
  height: 235px;
}

header > .container .centerBox .menuBox .menu #headerMoudle1 .cardBox .gridBox2 img {
  height: 60% !important;
}

header > .container .centerBox .menuBox .menu #headerMoudle2 .gridBox {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  justify-items: center;
  gap: 10px;
  padding: 20px;
}

@media (min-width: 901px) and (max-width: 1300px) {
  header > .container .centerBox .menuBox .menu #headerMoudle2 .gridBox {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 700px) and (max-width: 900px) {
  header > .container .centerBox .menuBox .menu #headerMoudle2 .gridBox {
    grid-template-columns: repeat(4, 1fr);
  }
}

header > .container .centerBox .menuBox .menu #headerMoudle2 .gridBox li {
  width: 100%;
}

header > .container .centerBox .menuBox .menu #headerMoudle2 .gridBox li a {
  display: block;
  width: 100%;
  text-align: center;
}

header > .container .centerBox .menuBox .menu #headerMoudle2 .gridBox li a .icon {
  font-size: 40px;
}

header > .container .centerBox .menuBox .menu #headerMoudle2 .gridBox li a p {
  width: 70%;
  margin: auto;
  font-size: 14px;
  word-wrap: break-word;
}

header > .container .centerBox .menuBox .menu #headerMoudle2 .gridBox .select2 .icon {
  color: var(--color-Primary);
}

header > .container .centerBox .menuBox .menu #headerMoudle2 .gridBox .select2 p {
  color: var(--color-Primary);
}

header > .container .centerBox .menuBox .menu #headerMoudle3 {
  padding: 30px;
}

header > .container .centerBox .menuBox .menu #headerMoudle3 .cardBox {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 20px;
}

@media (min-width: 700px) and (max-width: 1300px) {
  header > .container .centerBox .menuBox .menu #headerMoudle3 .cardBox {
    grid-template-columns: repeat(2, 1fr);
  }
}

header > .container .centerBox .menuBox .menu #headerMoudle3 .cardBox .card {
  height: 200px;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle3 .cardBox .card:hover {
  box-shadow: 1px 1px 10px #a0a0a0;
}

header > .container .centerBox .menuBox .menu #headerMoudle3 .cardBox .card:hover a > img {
  transform: scale(1.1);
}

header > .container .centerBox .menuBox .menu #headerMoudle3 .cardBox .card:hover::after {
  opacity: 0.3;
}

header > .container .centerBox .menuBox .menu #headerMoudle3 .cardBox .card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: black;
  opacity: 0.5;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle3 .cardBox .card a {
  display: block;
  width: 100%;
  height: 100%;
}

header > .container .centerBox .menuBox .menu #headerMoudle3 .cardBox .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle3 .cardBox .card .content {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 20px;
}

header > .container .centerBox .menuBox .menu #headerMoudle3 .cardBox .card .content::after {
  content: "";
  height: 30px;
  border-left: 1px solid white;
}

header > .container .centerBox .menuBox .menu #headerMoudle3 .cardBox .card .content::before {
  content: "";
  height: 30px;
  border-left: 1px solid white;
}

header > .container .centerBox .menuBox .menu #headerMoudle3 .cardBox .card .content .icon {
  color: white;
  font-size: 40px;
}

header > .container .centerBox .menuBox .menu #headerMoudle3 .cardBox .card .content .con {
  text-align: center;
}

header > .container .centerBox .menuBox .menu #headerMoudle3 .cardBox .card .content .con .iconImg {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 5px;
}

header > .container .centerBox .menuBox .menu #headerMoudle3 .cardBox .card .content .con p {
  margin: 0;
}

header > .container .centerBox .menuBox .menu #headerMoudle4 {
  padding: 4% 6%;
}

header > .container .centerBox .menuBox .menu #headerMoudle4 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

header > .container .centerBox .menuBox .menu #headerMoudle4 ul li {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle4 ul li:hover {
  transform: translateY(-10px);
  box-shadow: 1px 1px 15px #c4c4c4;
}

header > .container .centerBox .menuBox .menu #headerMoudle4 ul li:hover img {
  transform: scale(1.1);
}

header > .container .centerBox .menuBox .menu #headerMoudle4 ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

header > .container .centerBox .menuBox .menu #headerMoudle4 ul li a .tag {
  background-color: #e50112;
  position: absolute;
  color: white;
  width: 200px;
  text-align: center;
  font-weight: bold;
  position: absolute;
  transform: rotate(-45deg);
  left: -70px;
  top: 17px;
  z-index: 3;
}

header > .container .centerBox .menuBox .menu #headerMoudle4 ul li a .imgBox {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

header > .container .centerBox .menuBox .menu #headerMoudle4 ul li a .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle4 ul li a .box {
  padding: 15px 5%;
}

header > .container .centerBox .menuBox .menu #headerMoudle4 ul li a .box .t1 {
  line-height: 20px;
  height: 60px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

header > .container .centerBox .menuBox .menu #headerMoudle4 ul li a .box .t2 {
  font-size: 14px;
  color: #4e4e4e;
}

header > .container .centerBox .menuBox .menu #headerMoudle4 ul li a .box .t2 .icon {
  margin-right: 7px;
}

header > .container .centerBox .menuBox .menu #headerMoudle5 {
  padding: 5% 8%;
}

header > .container .centerBox .menuBox .menu #headerMoudle5 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
}

header > .container .centerBox .menuBox .menu #headerMoudle5 ul li {
  width: 100%;
  min-height: 300px;
  aspect-ratio: 5/3;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle5 ul li:hover {
  transform: translateY(-10px);
  box-shadow: 1px 1px 10px #aaaaaa;
}

header > .container .centerBox .menuBox .menu #headerMoudle5 ul li:hover .textBox {
  color: var(--color-Primary);
  background-color: black;
}

header > .container .centerBox .menuBox .menu #headerMoudle5 ul li:hover img {
  transform: scale(1.1);
}

header > .container .centerBox .menuBox .menu #headerMoudle5 ul li:hover .icon {
  color: var(--color-Primary);
}

header > .container .centerBox .menuBox .menu #headerMoudle5 ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

header > .container .centerBox .menuBox .menu #headerMoudle5 ul li a .textBox {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px 10%;
  text-align: center;
  width: 100%;
  color: white;
  z-index: 2;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle5 ul li a .textBox p {
  margin: 0;
}

header > .container .centerBox .menuBox .menu #headerMoudle5 ul li a img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  object-fit: cover;
}

header > .container .centerBox .menuBox .menu #headerMoudle5 ul li a .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 40px;
  color: white;
}

header > .container .centerBox .menuBox .menu #headerMoudle6 {
  padding: 5% 8%;
  overflow: hidden;
}

header > .container .centerBox .menuBox .menu #headerMoudle6 ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

header > .container .centerBox .menuBox .menu #headerMoudle6 ul li {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 350px;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle6 ul li:hover {
  box-shadow: 1px 1px 10px #aaaaaa;
}

header > .container .centerBox .menuBox .menu #headerMoudle6 ul li:hover img {
  transform: scale(1.1);
}

header > .container .centerBox .menuBox .menu #headerMoudle6 ul li:hover .textBox {
  color: var(--color-Primary);
  background-color: black;
}

header > .container .centerBox .menuBox .menu #headerMoudle6 ul li a {
  width: 100%;
  height: 100%;
}

header > .container .centerBox .menuBox .menu #headerMoudle6 ul li img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header > .container .centerBox .menuBox .menu #headerMoudle6 ul li .textBox {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  text-align: center;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle6 ul li .textBox::after {
  content: ">";
  margin-left: 5px;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle7 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

header > .container .centerBox .menuBox .menu #headerMoudle7 ul li {
  border-radius: 15px;
  overflow: hidden;
  min-width: 250px;
  position: relative;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle7 ul li:hover {
  transform: translateY(-10px);
  box-shadow: 1px 1px 10px #aaaaaa;
}

header > .container .centerBox .menuBox .menu #headerMoudle7 ul li:hover img {
  transform: scale(1.1);
}

header > .container .centerBox .menuBox .menu #headerMoudle7 ul li:hover h4 {
  color: var(--color-Primary);
}

header > .container .centerBox .menuBox .menu #headerMoudle7 ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

header > .container .centerBox .menuBox .menu #headerMoudle7 ul li a .tag {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  color: white;
  font-weight: bold;
  font-size: 12px;
  background-color: var(--color-Primary);
  padding: 3px 10px;
  border-radius: 8px;
}

header > .container .centerBox .menuBox .menu #headerMoudle7 ul li a .imgBox {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

header > .container .centerBox .menuBox .menu #headerMoudle7 ul li a .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle7 ul li a .box {
  background-color: #fff;
  padding: 10px 20px;
}

header > .container .centerBox .menuBox .menu #headerMoudle7 ul li a .box h4 {
  font-size: 16px;
  line-height: 20px;
  height: 40px;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle7 ul li a .box .line {
  display: inline-block;
  width: 30px;
  height: 1px;
  border: 1px solid #575757;
}

header > .container .centerBox .menuBox .menu #headerMoudle7 ul li a .box .t1 {
  margin: 10px 0;
  font-size: 14px;
}

header > .container .centerBox .menuBox .menu #headerMoudle7 ul li a .box p {
  color: #303030;
}

header > .container .centerBox .menuBox .menu #headerMoudle7 ul li a .box .time {
  font-size: 14px;
  margin: 0;
}

header > .container .centerBox .menuBox .menu #headerMoudle8 {
  min-width: 350px;
  width: 40%;
  padding: 0 20px;
  padding-top: 30px;
  flex-shrink: 0;
}

header > .container .centerBox .menuBox .menu #headerMoudle8 h3 {
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

header > .container .centerBox .menuBox .menu #headerMoudle8 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  gap: 15px;
}

header > .container .centerBox .menuBox .menu #headerMoudle8 ul li:hover .icon, header > .container .centerBox .menuBox .menu #headerMoudle8 ul li:hover .t1, header > .container .centerBox .menuBox .menu #headerMoudle8 ul li:hover .t2 {
  color: var(--color-Primary) !important;
}

header > .container .centerBox .menuBox .menu #headerMoudle8 ul li a {
  text-align: center;
}

header > .container .centerBox .menuBox .menu #headerMoudle8 ul li a .icon {
  font-size: 30px;
  color: #9c9c9c;
}

header > .container .centerBox .menuBox .menu #headerMoudle8 ul li a .t1 {
  font-size: 12px;
  color: #9c9c9c;
  margin-bottom: 2px;
}

header > .container .centerBox .menuBox .menu #headerMoudle8 ul li a .t2 {
  font-size: 14px;
}

header > .container .centerBox .menuBox .menu #headerMoudle9 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

header > .container .centerBox .menuBox .menu #headerMoudle9 ul li {
  width: 100%;
  height: 100%;
}

header > .container .centerBox .menuBox .menu #headerMoudle9 ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

header > .container .centerBox .menuBox .menu #headerMoudle9 ul li a .card {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

header > .container .centerBox .menuBox .menu #headerMoudle9 ul li a .card:hover img {
  transform: scale(1.1);
}

header > .container .centerBox .menuBox .menu #headerMoudle9 ul li a .card:hover .icon {
  transform: translate(-50%, -50%) scale(1.3);
  color: var(--color-Primary);
}

header > .container .centerBox .menuBox .menu #headerMoudle9 ul li a .card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: black;
  opacity: 0.4;
}

header > .container .centerBox .menuBox .menu #headerMoudle9 ul li a .card img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  object-fit: cover;
}

header > .container .centerBox .menuBox .menu #headerMoudle9 ul li a .card .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: white;
  font-size: 40px;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle9 ul li a p {
  margin: 10px 0;
  font-size: 14px;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 {
  position: relative;
  padding: 30px;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .bc {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .bc::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  z-index: 2;
  opacity: 0.7;
  transition: all 0.5s;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .bc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .container {
  position: relative;
  z-index: 3;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .container .box1 {
  text-align: center;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .container .box1 h3 {
  width: 40%;
  font-size: 30px;
  font-weight: bold;
  color: var(--color-Primary);
  margin: 30px auto;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .container .box1 h3 a {
  color: white;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .container .box1 h3 a:hover {
  color: var(--color-Primary);
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .centerBox .menuBox .menu #headerMoudle10 .container .box1 h3 {
    width: 100%;
  }
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .container .box1 .moreBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .centerBox .menuBox .menu #headerMoudle10 .container .box1 .moreBtn .btn {
    font-size: 12px;
  }
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .container .box1 p {
  width: 50%;
  margin: auto;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .centerBox .menuBox .menu #headerMoudle10 .container .box1 p {
    width: 100%;
  }
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .container .box2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .centerBox .menuBox .menu #headerMoudle10 .container .box2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .container .box2 li {
  text-align: center;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .container .box2 li img {
  width: 60%;
  min-width: 140px;
  height: 90px;
  object-fit: contain;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .container .box2 li .img2 {
  display: none;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .container .box2 li .t1 {
  font-size: 17px;
  font-weight: bold;
  margin: 25px 0;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .container .box2 li .t2 {
  font-size: 14px;
  color: #7f7f7f;
  line-height: 28px;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .style2 {
  color: white;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .style2 .box1 h3 {
  color: white !important;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .style2 .box2 {
  margin-top: 100px;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .style2 .box2 .t2 {
  color: white !important;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .style2 .box2 .img1 {
  display: none;
}

header > .container .centerBox .menuBox .menu #headerMoudle10 .style2 .box2 .img2 {
  display: inline-block !important;
}

header > .container .rightBox {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

header > .container .rightBox .searchBox {
  border: 1px solid white;
  border-radius: 50px;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .rightBox .searchBox {
    display: none;
  }
}

header > .container .rightBox .searchBox input {
  background-color: transparent;
  color: white;
  font-size: 16px;
  width: 150px;
}

header > .container .rightBox .searchBox input::placeholder {
  color: white;
}

header > .container .rightBox .searchBox .icon {
  color: white;
  font-size: 20px;
}

header > .container .rightBox .searchBox .icon:hover {
  color: var(--color-Primary);
}

@media (min-width: 0px) and (max-width: 1400px) {
  header > .container .rightBox .searchBox .icon {
    font-size: 26px;
  }
}

header > .container .rightBox .searchBox2 {
  display: none;
}

header > .container .rightBox .searchBox2 .icon {
  font-size: 30px;
  color: white;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .rightBox .searchBox2 {
    display: inline-block;
  }
}

header > .container .rightBox .languageBox {
  cursor: pointer;
  position: relative;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .rightBox .languageBox {
    position: static;
  }
}

header > .container .rightBox .languageBox:hover .language {
  color: var(--color-Primary);
}

header > .container .rightBox .languageBox:hover .icon2 {
  transform: rotate(180deg);
}

header > .container .rightBox .languageBox .language {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  padding: 10px 0;
}

header > .container .rightBox .languageBox .language .icon {
  font-size: 24px;
}

header > .container .rightBox .languageBox .language .icon2 {
  display: inline-block;
  transition: all 0.5s;
  font-size: 14px;
}

header > .container .rightBox .languageBox:hover .languageDownBox {
  visibility: visible !important;
  opacity: 1;
  top: 100%;
}

header > .container .rightBox .languageBox .languageDownBox {
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 160px;
  opacity: 0;
  z-index: 2;
  background-color: #eeeeee;
  visibility: hidden;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .rightBox .languageBox .languageDownBox {
    width: 100%;
  }
}

header > .container .rightBox .languageBox .languageDownBox ul li a {
  width: 100%;
  text-align: center;
  padding: 15px 10px;
}

header > .container .rightBox .languageBox .languageDownBox ul li a:hover {
  background-color: var(--color-Primary);
  color: white;
}

header > .container .rightBox .languageBox .languageDownBox ul li a img {
  width: 30px;
  margin-right: 10px;
}

header > .container .rightBox .phoneMenu {
  display: none;
}

@media (min-width: 0px) and (max-width: 700px) {
  header > .container .rightBox .phoneMenu {
    display: block;
  }
}

header > .container .rightBox .phoneMenu .icon {
  font-size: 28px;
  color: white;
}

header > .container .rightBox .phoneMenu .i2 {
  display: none;
}

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 {
  position: absolute;
  left: 50%;
  top: 10%;
  border-radius: 10px;
  overflow: hidden;
  transform: translate(-50%, -50%);
  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;
}

@media (min-width: 0px) and (max-width: 700px) {
  header .header_search_page .inputBox input {
    width: 50vw;
  }
}

header .header_search_page .inputBox button {
  font-size: 1rem;
  line-height: 2rem;
  padding: 10px 40px;
  background-color: var(--color-Primary);
  color: white;
  white-space: nowrap;
}

@media (min-width: 0px) and (max-width: 700px) {
  header .header_search_page .inputBox button {
    padding: 10px 30px;
  }
}

header .header_search_page .inputBox button:hover {
  background-color: var(--color-Primary2);
}

.module1 .container .swiper {
  width: 100%;
  height: 100%;
}

.module1 .container .swiper .box {
  width: 100%;
  height: 100%;
  position: relative;
}

.module1 .container .swiper .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module1 .container .swiper .box .layerBox {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3;
}

.module1 .container .swiper .box .layerBox .content {
  color: white;
  padding: 0 5%;
  padding-top: 17vh;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  align-items: flex-start;
}

.module1 .container .swiper .box .layerBox .content .downBtn {
  width: 20px;
  height: auto;
  position: absolute;
  bottom: 30px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.module1 .container .swiper .box .layerBox .content .downBtn .icon {
  color: white;
  font-size: 12px;
  margin-bottom: -10px;
}

.module1 .container .swiper .box .layerBox .content .downBtn .icon:nth-child(2) {
  animation: flicker 1s linear 0s alternate infinite;
}

.module1 .container .swiper .box .layerBox .content .downBtn .icon:nth-child(3) {
  animation: flicker 1s linear 0.2s alternate infinite;
}

.module1 .container .swiper .box .layerBox .content .downBtn .icon:nth-child(4) {
  animation: flicker 1s linear 0.4s alternate infinite;
}

.module1 .container .swiper .box .layerBox .content .ani_top {
  visibility: hidden;
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s ease 0.3s;
}

.module1 .container .swiper .box .layerBox .content .t1 a {
  font-size: 40px;
  font-weight: bold;
  width: 40%;
  min-width: 600px;
  margin-bottom: 15px;
  color: white;
}

.module1 .container .swiper .box .layerBox .content .t1 a:hover {
  color: var(--color-Primary);
  transform: all 0.3s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module1 .container .swiper .box .layerBox .content .t1 a {
    min-width: 100%;
    font-size: 34px;
  }
}

.module1 .container .swiper .box .layerBox .content .t2 {
  width: 40%;
  min-width: 600px;
  font-size: 18px;
  margin: 20px 0;
  transition: all 1s ease 0.4s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module1 .container .swiper .box .layerBox .content .t2 {
    min-width: 100%;
    font-size: 16px;
  }
}

.module1 .container .swiper .box .layerBox .content .t3 {
  color: var(--color-Primary);
  font-size: 18px;
  transition: all 1s ease 0.5s;
}

.module1 .container .swiper .box .layerBox .content .t3 .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--color-Primary);
}

.module1 .container .swiper .box .layerBox .content .t3 .arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  transform: rotate(45deg);
  transform-origin: right;
  display: block;
  width: 8px;
  border-bottom: 1px solid var(--color-Primary);
}

.module1 .container .swiper .box .layerBox .content .t3:hover {
  transition: all 0.3s;
  color: #01b3b5;
}

.module1 .container .swiper .box .layerBox .content .t3:hover .arrow {
  margin-left: 10px;
}

.module1 .container .swiper .box .layerBox .content .t3:hover .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  border-bottom: 1px solid #01b3b5;
}

.module1 .container .swiper .box .layerBox .content .t3:hover .arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  transform: rotate(45deg);
  transform-origin: right;
  display: block;
  width: 8px;
  border-bottom: 1px solid #01b3b5;
}

.module1 .container .swiper .box .layerBox .content .btn {
  margin-top: 15px;
  font-size: 18px;
  color: white;
  background-color: var(--color-Primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 10px;
  transition: all 1s ease 0.6s;
}

.module1 .container .swiper .box .layerBox .content .btn:hover {
  background-color: #01b3b5;
  transition: all 0.3s;
  padding: 2px 15px;
}

.module1 .container .swiper .box .layerBox .content .btn .icon {
  font-size: 28px;
}

.module1 .container .swiper .box .layerBox .content .navBtn {
  position: absolute;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
  z-index: 4;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module1 .container .swiper .box .layerBox .content .navBtn {
    top: 80%;
  }
}

.module1 .container .swiper .box .layerBox .content .navBtn button {
  border: 1px solid white;
  background-color: rgba(117, 117, 117, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.5s;
}

.module1 .container .swiper .box .layerBox .content .navBtn button .icon {
  font-size: 22px;
}

.module1 .container .swiper .box .layerBox .content .navBtn button:hover {
  color: white;
  background-color: var(--color-Primary);
  border: 1px solid var(--color-Primary);
}

.module1 .container .swiper .box .layerBox .content .navBtn .prev {
  transform: scaleX(-1);
}

.module1 .container .swiper .swiper-slide-active .box .content .ani_top {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.module1 .container .swiper .swiper-pagination {
  bottom: 30px;
}

.module1 .container .swiper .swiper-pagination-bullet {
  width: 50px;
  height: 6px;
  border-radius: 50px;
  overflow: hidden;
  background-color: white;
  opacity: 1;
  position: relative;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module1 .container .swiper .swiper-pagination-bullet {
    width: 30px;
  }
}

.module1 .container .swiper .swiper-pagination-bullet .progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--color-Primary);
  z-index: 2;
}

.module2 .container ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module2 .container ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.module2 .container ul li {
  position: relative;
  overflow: hidden;
}

.module2 .container ul li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  z-index: 2;
  opacity: 0.5;
  transition: all 0.5s;
}

.module2 .container ul li:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  z-index: 2;
  opacity: 0.2;
  transition: all 0.5s;
}

.module2 .container ul li:hover .bc {
  transform: scale(1.1);
}

.module2 .container ul li:hover .content .line {
  width: calc(90% - 40px);
  height: calc(90% - 40px);
}

.module2 .container ul li a {
  width: 100%;
  height: 100%;
}

.module2 .container ul li .bc {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.module2 .container ul li .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  padding: 10% 20px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.module2 .container ul li .content .t1Box {
  width: 100%;
  text-align: center;
}

.module2 .container ul li .content .t1Box .t1 {
  font-size: 18px;
  text-transform: uppercase;
  padding: 0 15%;
  text-align: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module2 .container ul li .content .t1Box .t1 {
    font-size: 14px;
    padding: 0;
  }
}

.module2 .container ul li .content .t2Box .t2 {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module2 .container ul li .content .t2Box .t2 {
    font-size: 12px;
  }
}

.module2 .container ul li .content p {
  margin: 0;
}

.module2 .container ul li .content .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  height: 60px;
}

.module2 .container ul li .content .line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 100px;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module2 .container ul li .content .line {
    height: 50%;
  }
}

.module2 .container ul li .content .line::after {
  content: "";
  height: 30%;
  width: 1px;
  border-left: 1px solid white;
}

.module2 .container ul li .content .line::before {
  content: "";
  height: 30%;
  width: 1px;
  border-left: 1px solid white;
}

.module3 {
  margin: 50px 0;
}

.module3 .container .box {
  display: grid;
  margin: 20px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module3 .container .box {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.module3 .container .box .card {
  width: 100%;
  height: 100%;
  background-color: var(--color-Background);
  padding: 30px;
  padding-bottom: 10px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s;
}

.module3 .container .box .card:hover {
  box-shadow: 1px 1px 15px #b4b4b4;
}

.module3 .container .box .card:hover .imgBox img {
  transform: scale(1.1);
}

.module3 .container .box .card:hover p {
  color: var(--color-Primary);
}

.module3 .container .box .card p {
  font-size: 20px;
  margin-bottom: 0px;
  color: black;
  font-weight: bold;
  transition: all 0.5s;
}

.module3 .container .box .card .imgBox {
  text-align: center;
}

.module3 .container .box .card .imgBox img {
  transition: all 0.5s;
}

.module3 .container .box1 {
  grid-template-columns: calc(40% - 10px) calc(60% - 10px);
  gap: 20px;
}

.module3 .container .box1 .left {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.module3 .container .box1 .left .imgBox {
  height: 200px;
}

.module3 .container .box1 .left .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.module3 .container .box2 {
  grid-template-columns: calc(60% - 10px) calc(40% - 10px);
  gap: 20px;
}

.module3 .container .box2 .right {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.module3 .container .box2 .right .imgBox {
  max-height: 200px;
}

.module3 .container .box2 .right .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.module4 {
  padding: 80px 0;
  background-color: var(--color-Background);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4 {
    padding: 40px 0;
  }
}

.module4 .container h3 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  padding-bottom: 50px;
  color: black;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4 .container h3 {
    font-size: 30px;
  }
}

.module4 .container .swiper {
  padding: 20px 0;
}

.module4 .container .swiper .card {
  display: block;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4 .container .swiper .card {
    padding: 15px;
  }
}

.module4 .container .swiper .card:hover {
  transform: translateY(-10px);
  box-shadow: 1px 1px 10px #c7c7c7;
}

.module4 .container .swiper .card:hover .t2 {
  color: var(--color-Primary);
}

.module4 .container .swiper .card:hover .t3 {
  color: var(--color-Primary);
}

.module4 .container .swiper .card:hover .imgBox:has(.img2) .img1 {
  display: none;
}

.module4 .container .swiper .card:hover .imgBox:has(.img2) .img2 {
  display: block;
}

.module4 .container .swiper .card .tag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  height: 60px;
}

.module4 .container .swiper .card .tag span {
  display: inline-block;
  color: white;
  background-color: var(--color-Primary);
  font-weight: bold;
  font-size: 14px;
  padding: 3px 15px;
  border-radius: 50px;
  height: auto;
}

.module4 .container .swiper .card .imgBox {
  text-align: center;
  padding: 20px;
  aspect-ratio: 4 / 2.5;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4 .container .swiper .card .imgBox {
    padding: 10px;
  }
}

.module4 .container .swiper .card .imgBox img {
  width: 100%;
  object-fit: contain;
  transition: all 0.5s;
}

.module4 .container .swiper .card .imgBox .img2 {
  display: none;
}

.module4 .container .swiper .card .content {
  height: 110px;
}

.module4 .container .swiper .card .content .t1 {
  color: #555555;
}

.module4 .container .swiper .card .content .t2 {
  margin: 0;
}

.module4 .container .swiper .card .content .t3 {
  border-bottom: 1px solid var(--color-Primary);
}

.module5 {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module5 {
    padding: 40px 0;
  }
}

.module5::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: white;
  z-index: 2;
  opacity: 0.9;
  transition: all 0.5s;
}

.module5 .container {
  position: relative;
  z-index: 3;
  padding: 0 3%;
}

.module5 .container .box1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module5 .container .box1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.module5 .container .box1 .leftBox h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 50px;
  width: 60%;
}

.module5 .container .box1 .leftBox h3:hover {
  color: var(--color-Primary);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module5 .container .box1 .leftBox h3 {
    width: 100%;
    text-align: center;
    font-size: 24px;
  }
}

.module5 .container .box1 .leftBox .line {
  width: 200px;
  height: 4px;
  background-color: var(--color-Primary);
  display: inline-block;
  transform: translateX(-200px);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module5 .container .box1 .leftBox .line {
    transform: translateX(-150px);
  }
}

.module5 .container .box1 .leftBox .t1 {
  margin-top: 50px;
  padding-left: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module5 .container .box1 .leftBox .t1 {
    padding: 0;
  }
}

.module5 .container .box1 .leftBox a {
  margin-left: 50px;
  margin-top: 20px;
  font-size: 18px;
  color: var(--color-Primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.module5 .container .box1 .leftBox a:hover {
  color: var(--color-Primary2);
}

.module5 .container .box1 .leftBox a:hover .arrow {
  margin-left: 15px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module5 .container .box1 .leftBox a {
    padding: 0;
  }
}

.module5 .container .box1 .leftBox a .arrow {
  width: 40px;
}

.module5 .container .box1 .leftBox a .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--color-Primary);
}

.module5 .container .box1 .leftBox a .arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  transform: rotate(45deg);
  transform-origin: right;
  display: block;
  width: 8px;
  border-bottom: 1px solid var(--color-Primary);
}

.module5 .container .box1 .rightBox {
  width: 100%;
  height: 100%;
  position: relative;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module5 .container .box1 .rightBox {
    margin-left: 60px;
  }
}

.module5 .container .box1 .rightBox:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border: 1px dashed var(--color-Primary);
  border-radius: 50%;
  z-index: -1;
}

.module5 .container .box1 .rightBox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 1px solid var(--color-Primary);
  border-radius: 50%;
  z-index: 2;
}

.module5 .container .box1 .rightBox .imgBox {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module5 .container .box1 .rightBox .imgBox {
    width: calc(100% - 60px);
    aspect-ratio: 4/3;
  }
}

.module5 .container .box1 .rightBox .imgBox::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  z-index: 2;
  opacity: 0.4;
  transition: all 0.5s;
}

.module5 .container .box1 .rightBox .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module5 .container .box1 .rightBox .playBtn {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  z-index: 2;
  background-color: var(--color-Primary);
  border-radius: 50%;
  transition: all 0.5s;
}

.module5 .container .box1 .rightBox .playBtn:hover {
  background-color: var(--color-Primary3);
}

.module5 .container .box1 .rightBox .playBtn .icon {
  font-size: 24px;
  color: white;
}

.module5 .container .box2 {
  padding: 0 50px;
  margin-top: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module5 .container .box2 {
    padding: 0;
  }
}

.module5 .container .box2 .imgBox {
  border-radius: 15px;
  overflow: hidden;
}

.module6 {
  padding: 80px 0;
  background-color: var(--color-Primary);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module6 {
    padding: 40px 0;
  }
}

.module6 .container {
  border-radius: 10px;
}

.module6 .container ul {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
}

.module6 .container ul li {
  text-align: center;
  color: white;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module6 .container ul li {
    width: 45%;
  }
}

.module6 .container ul li span {
  font-size: 40px;
  font-weight: bold;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module6 .container ul li span {
    font-size: 30px;
  }
}

.module6 .container ul li .t1 {
  margin-top: 5px;
  margin-bottom: 3px;
  font-size: 18px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module6 .container ul li .t1 {
    font-size: 16px;
  }
}

.module6 .container ul li .t2 {
  font-size: 16px;
  opacity: 0.7;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module6 .container ul li .t2 {
    font-size: 14px;
  }
}

.module7 {
  padding: 80px 0;
  padding: 80px;
  background-color: black;
  position: relative;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module7 {
    padding: 40px 0;
  }
}

@media (min-width: 0px) and (max-width: 700px) {
  .module7 {
    padding: 50px 10px;
  }
}

.module7 .bc {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.module7 .bc::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  z-index: 2;
  opacity: 0.9;
  transition: all 0.5s;
}

.module7 .bc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module7 .container {
  position: relative;
  z-index: 3;
}

.module7 .container .box1 {
  text-align: center;
  margin-top: 30px;
}

.module7 .container .box1 h3 {
  color: white;
  font-size: 30px;
  font-weight: bold;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module7 .container .box1 h3 {
    font-size: 24px;
  }
}

.module7 .container .box1 h3:hover {
  color: var(--color-Primary);
}

.module7 .container .box1 .line {
  margin: 30px 0;
  display: inline-block;
  width: 100px;
  border: 1px solid var(--color-Primary);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module7 .container .box1 .line {
    width: 50px;
  }
}

.module7 .container .box1 p {
  width: 40%;
  min-width: 400px;
  margin: auto;
  color: white;
  line-height: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module7 .container .box1 p {
    width: 100%;
    min-width: 0px;
  }
}

.module7 .container .box2 {
  margin-top: 50px;
}

.module7 .container .box2 .swiper .swiper-slide {
  padding: 10px;
  transition: all 0.5s;
}

.module7 .container .box2 .swiper .swiper-slide:hover {
  transform: translateY(-10px);
}

.module7 .container .box2 .swiper .cardBox {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.module7 .container .box2 .swiper .cardBox:hover img {
  transform: scale(1.1);
}

.module7 .container .box2 .swiper .cardBox .tag {
  position: absolute;
  top: 10px;
  right: 10px;
  font-weight: bold;
  font-size: 14px;
  color: white;
  background-color: var(--color-Primary);
  padding: 3px 6px;
  border-radius: 7px;
  z-index: 3;
}

.module7 .container .box2 .swiper .cardBox .imgBox {
  width: 100%;
  height: 250px;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.module7 .container .box2 .swiper .cardBox .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.module7 .container .box2 .swiper .cardBox .content {
  padding: 20px;
}

.module7 .container .box2 .swiper .cardBox .content .t1 {
  font-size: 18px;
  line-height: 24px;
  height: 48px;
  margin: 0;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module7 .container .box2 .swiper .cardBox .content .t1 {
    font-size: 16px;
    line-height: 20px;
    height: 40px;
  }
}

.module7 .container .box2 .swiper .cardBox .content .line {
  display: inline-block;
  width: 30px;
  border: 1px solid #818181;
  margin: 20px 0;
}

.module7 .container .box2 .swiper .cardBox .content .t2 {
  font-size: 16px;
  line-height: 20px;
  height: 40px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module7 .container .box2 .swiper .cardBox .content .t2 {
    font-size: 14px;
    line-height: 18px;
    height: 36px;
  }
}

.module7 .container .box2 .swiper .cardBox .content .t2,
.module7 .container .box2 .swiper .cardBox .content .t3 {
  color: #4e4e4e;
}

.module7 .container .box2 .swiper .cardBox .content .t2 .icon,
.module7 .container .box2 .swiper .cardBox .content .t3 .icon {
  margin-right: 5px;
}

.module7 .container .box3 {
  display: flex;
  justify-content: center;
  gap: 10%;
  margin: 30px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module7 .container .box3 {
    flex-direction: column;
    gap: 10px;
  }
}

.module8 {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: #F4F4F4;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module8 {
    padding: 40px 0;
  }
}

.module8 .bc {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.module8 .bc::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  z-index: 2;
  opacity: 0.7;
  transition: all 0.5s;
}

.module8 .bc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module8 .container {
  position: relative;
  z-index: 3;
}

.module8 .container .box1 {
  text-align: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module8 .container .box1 {
    font-size: 14px;
  }
}

.module8 .container .box1 h3 {
  width: 40%;
  min-width: 350px;
  font-size: var(--text-h3);
  font-weight: bold;
  margin: 30px auto;
}

.module8 .container .box1 h3:hover {
  color: var(--color-Primary);
}

.module8 .container .box1 p {
  width: 50%;
  margin: auto;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module8 .container .box1 p {
    width: 100%;
  }
}

.module8 .container .box2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module8 .container .box2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.module8 .container .box2 li {
  text-align: center;
}

.module8 .container .box2 li img {
  width: 60%;
  min-width: 150px;
  height: 100px;
  object-fit: contain;
}

.module8 .container .box2 li .img2 {
  display: none;
}

.module8 .container .box2 li .t1 {
  font-size: 18px;
  font-weight: bold;
  margin: 30px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module8 .container .box2 li .t1 {
    font-size: 16px;
    margin: 20px 0;
  }
}

.module8 .container .box2 li .t2 {
  color: #7f7f7f;
  line-height: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module8 .container .box2 li .t2 {
    font-size: 14px;
    line-height: 24px;
  }
}

.module8 .style2 {
  color: white;
}

.module8 .style2 .box1 h3 {
  color: white !important;
}

.module8 .style2 .box1 h3 a {
  color: white !important;
}

.module8 .style2 .box2 {
  margin-top: 100px;
}

.module8 .style2 .box2 .t2 {
  color: white !important;
}

.module8 .style2 .box2 .img1 {
  display: none;
}

.module8 .style2 .box2 .img2 {
  display: inline-block !important;
}

.module9 {
  padding: 80px 0;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 {
    padding: 40px 0;
  }
}

.module9 .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1300px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.module9 .container .leftBox .title h3 {
  font-size: var(--text-h3);
  margin-bottom: 3px;
  font-weight: bold;
}

.module9 .container .leftBox .title::after {
  content: "";
  margin-top: 5px;
  display: inline-block;
  width: 90px;
  border: 1px solid var(--color-Primary);
}

.module9 .container .leftBox .t1 {
  padding: 50px;
  width: 70%;
  font-size: 18px;
}

.module9 .container .leftBox .t1 a {
  font-weight: bold;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .container .leftBox .t1 {
    width: 100%;
    padding: 20px;
    font-size: 16px;
  }
}

.module9 .container .leftBox .listBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.module9 .container .leftBox .listBox .list {
  display: flex;
  align-items: center;
  gap: 15px;
}

.module9 .container .leftBox .listBox .list:hover .icon {
  background-color: var(--color-Primary);
  color: white;
}

.module9 .container .leftBox .listBox .list p {
  margin: 0;
}

.module9 .container .leftBox .listBox .list .icon {
  font-size: 30px;
  width: 60px;
  height: 60px;
  border: 1px solid var(--color-Primary);
  border-radius: 50px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: var(--color-Primary);
}

.module9 .container .leftBox .listBox .list .t2 {
  font-weight: bold;
  font-size: 18px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .container .leftBox .listBox .list .t2 {
    font-size: 16px;
  }
}

.module9 .container .leftBox .listBox .list .t3 {
  color: #7f7f7f;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .container .leftBox .listBox .list .t3 {
    font-size: 13px;
  }
}

.module9 .container .rightBox .box1 {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.module9 .container .rightBox .box1 span {
  font-weight: bold;
}

.module9 .container .rightBox .box1 a {
  color: var(--color-Primary);
}

.module9 .container .rightBox .box1 a .icon {
  margin-right: 5px;
  font-size: 20px;
}

.module9 .container .rightBox .t1 {
  color: var(--color-Primary);
  margin: 10px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .container .rightBox .t1 {
    font-size: 14px;
  }
}

.module9 .container .rightBox form .flexBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 10px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .container .rightBox form .flexBox {
    grid-template-columns: repeat(1, 1fr);
  }
}

.module9 .container .rightBox form .flexBox .inputBox {
  width: 100%;
  padding: 15px 15px 5px 15px;
  border: 1px solid black;
  position: relative;
  border-radius: 15px;
}

.module9 .container .rightBox form .flexBox .inputBox .name {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  margin: 0;
  transition: all 0.5s;
  font-size: 16px;
  pointer-events: none;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .container .rightBox form .flexBox .inputBox .name {
    font-size: 16px;
  }
}

.module9 .container .rightBox form .flexBox .inputBox input {
  height: 30px;
  width: 100%;
  font-size: 16px;
}

.module9 .container .rightBox form .flexBox .select .name {
  top: 10px;
  font-size: 12px;
  color: #4e4e4e;
}

.module9 .container .rightBox form .flexBox .select input {
  height: 30px;
}

.module9 .container .rightBox form .flexBox select {
  font-size: 18px;
  height: 60px;
  border: 1px solid black;
  border-radius: 15px;
  -webkit-appearance: none;
  /* 移除默认样式 */
  -moz-appearance: none;
  /* 移除默认样式 */
  appearance: none;
  /* 移除默认样式 */
  padding: 5px 30px 5px 10px;
  /* 添加内边距，以便放置自定义图标 */
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%23000"><path d="M0 3l6 6 6-6z"/></svg>') no-repeat right center;
  background-repeat: no-repeat;
  background-position: 95% center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .container .rightBox form .flexBox select {
    font-size: 16px;
  }
}

.module9 .container .rightBox form .flexBox select option {
  border-radius: 10px;
  margin-top: 10px;
}

.module9 .container .rightBox form .flexBox select option:hover {
  background-color: var(--color-Primary) !important;
  /* 不生效 */
  color: white !important;
  /* 不生效 */
}

.module9 .container .rightBox form .flexBox .select_Input1 {
  width: 100%;
  position: relative;
  display: inline-block;
  z-index: 3;
}

.module9 .container .rightBox form .flexBox .select_Input1.disabled {
  cursor: not-allowed;
}

.module9 .container .rightBox form .flexBox .select_Input1.disabled .inputBox {
  background-color: #f1f1f1;
  border: 1px solid #b9b9b9;
  cursor: not-allowed;
}

.module9 .container .rightBox form .flexBox .select_Input1.disabled input {
  color: #b1b1b1;
  cursor: not-allowed !important;
}

.module9 .container .rightBox form .flexBox .select_Input1.disabled .icon {
  color: #979797;
}

.module9 .container .rightBox form .flexBox .select_Input1 .inputBox {
  width: 100%;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
}

.module9 .container .rightBox form .flexBox .select_Input1 .inputBox .showInput {
  width: 90%;
  height: 100%;
  background-color: transparent;
  cursor: pointer;
}

.module9 .container .rightBox form .flexBox .select_Input1 .inputBox .showInput::placeholder {
  color: black;
}

.module9 .container .rightBox form .flexBox .select_Input1 .inputBox .input {
  display: none;
  font-size: 15px;
}

.module9 .container .rightBox form .flexBox .select_Input1 .inputBox .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  font-size: 14px;
  color: black;
}

.module9 .container .rightBox form .flexBox .select_Input1 .downOption {
  position: absolute;
  top: 60px;
  left: 0px;
  border: 1px solid #d1d1d1;
  background-color: #fff;
  width: 100%;
  max-height: 350px;
  padding: 10px 0;
  border-radius: 10px;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  box-shadow: 1px 1px 5px #e4e4e4;
  transform: translateY(40px);
  transition: all 0.5s;
  overscroll-behavior: contain;
  /* 滚动条上的滚动滑块 */
  /* 滚动条轨道 */
}

.module9 .container .rightBox form .flexBox .select_Input1 .downOption::-webkit-scrollbar {
  width: 6px;
  /* 滚动条宽度 */
}

.module9 .container .rightBox form .flexBox .select_Input1 .downOption::-webkit-scrollbar-thumb {
  background-color: var(--color-Primary);
  /* 滑块颜色 */
  border-radius: 10px;
  /* 滑块圆角 */
  border: 1px solid transparent;
  /* 滑块边框 */
}

.module9 .container .rightBox form .flexBox .select_Input1 .downOption::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* 轨道颜色 */
}

.module9 .container .rightBox form .flexBox .select_Input1 .downOption .list {
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.5s;
  font-size: 16px;
}

.module9 .container .rightBox form .flexBox .select_Input1 .downOption .list.disabled {
  color: #b1b1b1;
  cursor: not-allowed;
}

.module9 .container .rightBox form .flexBox .select_Input1 .downOption .list.disabled img {
  filter: grayscale(100%);
}

.module9 .container .rightBox form .flexBox .select_Input1 .downOption .list:hover {
  background-color: var(--color-Primary);
  color: white;
  margin: 0 10px;
  border-radius: 10px;
}

.module9 .container .rightBox form .flexBox .select_Input1 .downOption .list:last-child {
  border-bottom: none;
}

.module9 .container .rightBox form .flexBox .select_Input1 .downOption .list img {
  width: 30px;
}

.module9 .container .rightBox form .fileBox {
  width: 100%;
  padding: 10px 15px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid black;
}

.module9 .container .rightBox form .fileBox .uploadBtn {
  padding: 5px 10px;
  border-radius: 10px;
  border: 1px solid black;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}

.module9 .container .rightBox form .fileBox .uploadBtn:hover {
  background-color: var(--color-Primary2);
  border: 1px solid var(--color-Primary2);
  color: white;
}

.module9 .container .rightBox form .fileBox input {
  display: none;
}

.module9 .container .rightBox form .fileBox .fileList {
  display: flex;
  gap: 10px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .container .rightBox form .fileBox .fileList {
    flex-direction: column;
    align-items: flex-start;
  }
}

.module9 .container .rightBox form .fileBox .fileList .fileName {
  color: var(--color-Primary);
  border-radius: 10px;
  background-color: #ececec;
  display: flex;
  height: 34px;
  line-height: 34px;
  padding-left: 10px;
  overflow: hidden;
}

.module9 .container .rightBox form .fileBox .fileList .fileName .del {
  margin-left: 10px;
  height: 100%;
  background-color: var(--color-Primary);
  padding: 0 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.module9 .container .rightBox form .fileBox .fileList .fileName .del:hover {
  background-color: #c40000;
}

.module9 .container .rightBox form .fileBox .fileList .fileName .icon {
  color: #dbdbdb;
}

.module9 .container .rightBox form textarea {
  width: 100%;
  border-radius: 15px;
  border: 1px solid black;
  padding: 15px;
  font-size: 16px;
  height: 150px;
}

.module9 .container .rightBox form .moreBtn {
  margin-top: 30px;
}

footer {
  overflow: hidden;
  background-color: black;
}

@media (min-width: 0px) and (max-width: 700px) {
  footer {
    margin-bottom: 50px;
  }
}

footer .container {
  position: relative;
  padding: 50px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .container {
    padding: 30px 0;
  }
}

footer .container .bc {
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 20px 0;
  object-fit: contain;
  opacity: 0.3;
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .container .bc {
    width: 300%;
    max-width: none;
  }
}

footer .container .content {
  position: relative;
  z-index: 2;
}

footer .container .content > ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .container .content > ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

footer .container .content > ul li {
  display: flex;
  flex-direction: column;
}

footer .container .content > ul li .title {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .container .content > ul li .title {
    border-bottom: 1px solid white;
  }
}

footer .container .content > ul li .title .icon {
  font-size: 20px;
  padding: 5px 10px;
  color: white;
  display: none;
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .container .content > ul li .title .icon {
    display: block;
  }
}

footer .container .content > ul li .line {
  display: inline-block;
  width: 20px;
  height: 3px;
  background-color: var(--color-Primary);
  border-radius: 50px;
  margin: 20px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .container .content > ul li .line {
    margin-top: -2px;
  }
}

footer .container .content > ul li .t1 {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

footer .container .content > ul li .t1:hover {
  color: var(--color-Primary);
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .container .content > ul li .t1 {
    font-size: 18px;
  }
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .container .content > ul li .down {
    display: none;
  }
}

footer .container .content > ul li .t2 {
  color: white;
  display: block;
  margin: 15px 0;
}

footer .container .content > ul li .t2:hover {
  color: var(--color-Primary);
}

footer .container .content > ul li:nth-child(1) {
  grid-row-start: span 2;
}

footer .container .content > ul li:nth-child(2) {
  grid-row-start: span 2;
}

footer .container .content > ul li:nth-child(3) {
  grid-row-start: span 2;
}

footer .container .content > ul .select .title .t1 {
  color: var(--color-Primary);
}

footer .container .content > ul .select .down .t2 {
  color: rgba(255, 255, 255, 0.8);
}

footer .container .content .contactBox {
  display: flex;
  flex-direction: column;
  max-width: 470px;
  grid-column-start: 4;
  grid-column-end: 6;
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .container .content .contactBox {
    position: relative;
  }
}

@media (min-width: 701px) and (max-width: 1000px) {
  footer .container .content .contactBox {
    width: 300px;
  }
}

@media (min-width: 1001px) and (max-width: 1200px) {
  footer .container .content .contactBox {
    width: 350px;
  }
}

footer .container .content .contactBox .line {
  display: inline-block;
  width: 20px;
  height: 3px;
  flex-shrink: 0;
  background-color: var(--color-Primary);
  border-radius: 50px;
  margin-bottom: 15px;
  margin-top: -12px;
}

footer .container .content .contactBox .t1 {
  color: white;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  height: 40px;
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .container .content .contactBox .t1 {
    border-bottom: 1px solid white;
  }
}

footer .container .content .contactBox .t1:hover {
  color: var(--color-Primary);
}

footer .container .content .contactBox .t2 {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

footer .container .content .contactBox .t2 a {
  color: white;
}

footer .container .content .contactBox .t2 a:hover {
  color: var(--color-Primary);
}

footer .container .content .contactBox .t2 .icon {
  font-size: 20px;
  color: var(--color-Primary);
}

footer .container .content .contactBox ul {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 30px;
}

footer .container .content .contactBox ul li {
  position: relative;
  cursor: pointer;
}

footer .container .content .contactBox ul li:hover .codeBox {
  visibility: visible;
  opacity: 1;
  bottom: 120%;
}

footer .container .content .contactBox ul li .codeBox {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 80%;
  z-index: 2;
  width: 150px;
  height: 150px;
  transition: all 0.3s;
}

footer .container .content .contactBox ul li .codeBox img {
  width: 100%;
  height: 100%;
}

footer .container .content .contactBox ul li .icon {
  color: #cccccc;
  opacity: 0.8;
  font-size: 30px;
}

footer .container .content .contactBox ul li .icon:hover {
  color: var(--color-Primary);
}

footer .bottom {
  background-color: #1b1b1b;
  padding: 10px 0;
}

footer .bottom div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .bottom div {
    flex-direction: column;
  }
}

footer .bottom p {
  color: white;
  margin: 0;
  font-size: 14px;
  text-align: center;
}

footer .bottom p span {
  margin: 0 10px;
}

footer .bottom p a {
  color: white;
}

footer .bottom p a:hover {
  color: var(--color-Primary);
}

.module10 {
  height: 500px;
  position: relative;
  background-color: black;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module10 {
    height: auto;
  }
}

.module10::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  z-index: 2;
  opacity: 0.3;
  transition: all 0.5s;
}

.module10::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  z-index: 1;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.module10 .container .content {
  height: 100%;
  padding-top: 80px;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module10 .container .content {
    height: auto;
    flex-direction: column;
  }
}

.module10 .container .content .leftBox {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: white;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module10 .container .content .leftBox {
    align-items: center !important;
    margin-top: 10%;
  }
}

.module10 .container .content .leftBox h3 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  padding: 0 10px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module10 .container .content .leftBox h3 {
    font-size: 28px;
  }
}

.module10 .container .content .leftBox .title2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module10 .container .content .leftBox .title2 {
    font-size: 34px;
    margin: 30px 0;
  }
}

.module10 .container .content .leftBox .title2::before {
  content: '';
  display: inline-block;
  width: 60px;
  height: 3px;
  background-color: var(--color-Primary);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module10 .container .content .leftBox .title2::before {
    display: none;
  }
}

.module10 .container .content .leftBox p {
  width: 50%;
  text-align: center;
  padding-bottom: 30px;
  padding: 0 10px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module10 .container .content .leftBox p {
    width: 100% !important;
    text-align: center !important;
  }
}

.module10 .container .content .left {
  align-items: flex-start;
}

.module10 .container .content .left p {
  width: 80%;
  text-align: left;
}

.module10 .container .content .rightImg {
  width: 40%;
  max-height: 90%;
  flex-shrink: 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module10 .container .content .rightImg {
    display: none;
  }
}

.module10 .container .content .moreBtn {
  margin-top: 30px;
}

.module10_2 {
  height: auto;
  aspect-ratio: 20/9;
  width: 100%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module10_2 {
    height: 400px;
    aspect-ratio: auto;
  }
}

.module11 {
  padding: 80px 0;
  padding-bottom: 0;
  border-top: 1px solid #cccccc;
  background-color: #f5f5f5;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 {
    padding: 40px 0;
  }
}

.module11 .container {
  padding-bottom: 50px;
  border-bottom: 2px solid var(--color-Primary);
}

.module11 .container .box1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .box1 {
    flex-direction: column;
  }
}

.module11 .container .box1 .title h3 {
  font-size: var(--text-h3);
  margin-bottom: 3px;
  font-weight: bold;
}

.module11 .container .box1 .title::after {
  content: "";
  margin-top: 10px;
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: var(--color-Primary);
}

.module11 .container .box1 .searchBox1 {
  width: 40%;
  min-width: 300px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #919191;
  position: relative;
  z-index: 3;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .box1 .searchBox1 {
    width: 90%;
  }
}

.module11 .container .box1 .searchBox1 .inputBox {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 5px 10px;
}

.module11 .container .box1 .searchBox1 .inputBox input {
  width: 100%;
  background-color: transparent;
}

.module11 .container .box1 .searchBox1 .inputBox button .icon {
  font-size: 24px;
}

.module11 .container .box1 .searchBox1 .inputBox button:hover .icon {
  color: var(--color-Primary);
}

.module11 .container .box1 .searchBox1 .downSelect {
  position: absolute;
  left: 0;
  top: 50px;
  z-index: 4;
  border-radius: 10px;
  border: 1px solid #c7c7c7;
  background-color: #fff;
  width: 100%;
  padding: 10px;
  max-height: 400px;
  display: none;
  overflow: auto;
}

.module11 .container .box1 .searchBox1 .downSelect li {
  margin: 10px 0;
  padding: 0 15px;
}

.module11 .container .box1 .searchBox1 .downSelect li a {
  display: block;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.module11 .container .box1 .searchBox1 .downSelect li a img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.module11 .container .box1 .searchBox1 .downSelect li a p {
  margin: 0;
}

.module11 .container .box1 .searchBox1 .downSelect li a .t2 {
  border-bottom: 1px solid var(--color-Primary2);
  display: inline-block;
}

.module11 .container .content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .content {
    flex-direction: column;
    gap: 20px;
  }
}

.module11 .container .content .leftBox {
  width: 350px;
  box-shadow: 0 0 10px #dadada;
  border-radius: 15px;
  padding: 40px 20px;
  box-sizing: border-box;
  flex-shrink: 0;
  background-color: #fff;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .content .leftBox {
    width: 100%;
  }
}

.module11 .container .content .leftBox ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.module11 .container .content .leftBox ul li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.module11 .container .content .leftBox ul li a {
  padding-left: 10%;
  font-size: 15px;
}

.module11 .container .content .leftBox ul li .t1 {
  background-color: #eeeeee;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.module11 .container .content .leftBox ul li .t1 a {
  padding: 0;
}

.module11 .container .content .leftBox ul li .t1 .icon {
  padding: 0 10px;
  cursor: pointer;
  transform: rotate(90deg);
}

.module11 .container .content .leftBox ul li .t1.select {
  background-color: var(--color-Primary);
}

.module11 .container .content .leftBox ul li .t1.select a,
.module11 .container .content .leftBox ul li .t1.select .icon {
  color: white;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .content .leftBox ul li .children {
    display: none;
  }
}

.module11 .container .content .leftBox ul li .children a {
  display: block;
  padding: 8px 0;
  padding-left: 20px;
  border-radius: 10px;
}

.module11 .container .content .leftBox ul li .children a:hover {
  background-color: var(--color-Primary);
  color: white;
}

.module11 .container .content .leftBox ul li .children .select {
  background-color: var(--color-Primary);
  color: white;
}

.module11 .container .content .rightBox1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.module11 .container .content .rightBox1 .card1 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 50px 30px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s;
}

.module11 .container .content .rightBox1 .card1:hover h4 {
  color: var(--color-Primary);
}

.module11 .container .content .rightBox1 .card1:hover img {
  transform: scale(1.1);
}

.module11 .container .content .rightBox1 .card1:hover .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--color-Primary);
}

.module11 .container .content .rightBox1 .card1:hover .arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  transform: rotate(45deg);
  transform-origin: right;
  display: block;
  width: 8px;
  border-bottom: 1px solid var(--color-Primary);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .content .rightBox1 .card1 {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
  }
}

.module11 .container .content .rightBox1 .card1 .left {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 10px;
  padding: 3%;
  width: 60%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .content .rightBox1 .card1 .left {
    width: 100%;
  }
}

.module11 .container .content .rightBox1 .card1 .left h4 {
  font-size: 24px;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .content .rightBox1 .card1 .left h4 {
    font-size: 20px;
  }
}

.module11 .container .content .rightBox1 .card1 .left .t1 {
  line-height: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .content .rightBox1 .card1 .left .t1 {
    font-size: 14px;
    line-height: 20px;
  }
}

.module11 .container .content .rightBox1 .card1 .right {
  width: 40%;
  text-align: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .content .rightBox1 .card1 .right {
    width: 80%;
  }
}

.module11 .container .content .rightBox1 .card1 .right img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .content .rightBox1 .card1 .right img {
    height: 200px;
  }
}

.module11 .container .content .rightBox1 .gridBox {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .content .rightBox1 .gridBox {
    grid-template-columns: repeat(1, 1fr);
  }
}

.module11 .container .content .rightBox1 .gridBox li {
  background-color: black;
  padding: 5%;
  border-radius: 10px;
  transition: all 0.5s;
}

.module11 .container .content .rightBox1 .gridBox li:hover {
  box-shadow: 1px 1px 10px #ececec;
}

.module11 .container .content .rightBox1 .gridBox li a {
  width: 100%;
  text-align: center;
  outline: none;
}

.module11 .container .content .rightBox1 .gridBox li a:hover img {
  transform: scale(1.1);
}

.module11 .container .content .rightBox1 .gridBox li a:hover h4 {
  color: var(--color-Primary2) !important;
}

.module11 .container .content .rightBox1 .gridBox li a:hover .arrow::before {
  border-bottom: 1px solid var(--color-Primary2) !important;
}

.module11 .container .content .rightBox1 .gridBox li a:hover .arrow::after {
  border-bottom: 1px solid var(--color-Primary2) !important;
}

.module11 .container .content .rightBox1 .gridBox li a .imgBox {
  width: 100%;
}

.module11 .container .content .rightBox1 .gridBox li a img {
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: all 0.5s;
}

.module11 .container .content .rightBox1 .gridBox li a h4 {
  font-size: 24px;
  margin-top: 10px;
  transition: all 0.5s;
  color: white;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .content .rightBox1 .gridBox li a h4 {
    font-size: 20px;
  }
}

.module11 .container .content .rightBox1 .gridBox li a p {
  margin: 15px auto;
  color: #ffffff;
  width: 80%;
}

.module11 .container .content .rightBox1 .gridBox li a .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  border-bottom: 1px solid white;
}

.module11 .container .content .rightBox1 .gridBox li a .arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  transform: rotate(45deg);
  transform-origin: right;
  display: block;
  width: 8px;
  border-bottom: 1px solid white;
}

.module11 .container .content .rightBox1 .cardStyle1 {
  background-color: #fff;
  box-shadow: 1px 1px 10px #e7e7e7;
}

.module11 .container .content .rightBox1 .cardStyle1 .left {
  color: black;
}

.module11 .container .content .rightBox1 .cardStyle1 .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  border-bottom: 1px solid black;
}

.module11 .container .content .rightBox1 .cardStyle1 .arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  transform: rotate(45deg);
  transform-origin: right;
  display: block;
  width: 8px;
  border-bottom: 1px solid black;
}

.module11 .container .content .rightBox1 .cardStyle1 + .gridBox li {
  background-color: white;
}

.module11 .container .content .rightBox1 .cardStyle1 + .gridBox li a h4, .module11 .container .content .rightBox1 .cardStyle1 + .gridBox li a p {
  color: black;
}

.module11 .container .content .rightBox1 .cardStyle1 + .gridBox li a h4:hover {
  color: var(--color-Primary2);
}

.module11 .container .content .rightBox1 .cardStyle2 {
  background-color: black;
}

.module11 .container .content .rightBox1 .grap li:nth-child(4n-1) {
  background-color: white;
}

.module11 .container .content .rightBox1 .grap li:nth-child(4n-1) a h4, .module11 .container .content .rightBox1 .grap li:nth-child(4n-1) a p {
  color: black;
}

.module11 .container .content .rightBox1 .grap li:nth-child(4n-1) .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  border-bottom: 1px solid black;
}

.module11 .container .content .rightBox1 .grap li:nth-child(4n-1) .arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  transform: rotate(45deg);
  transform-origin: right;
  display: block;
  width: 8px;
  border-bottom: 1px solid black;
}

.module11 .container .content .rightBox1 .grap li:nth-child(4n) {
  background-color: white;
}

.module11 .container .content .rightBox1 .grap li:nth-child(4n) a h4, .module11 .container .content .rightBox1 .grap li:nth-child(4n) a p {
  color: black;
}

.module11 .container .content .rightBox1 .grap li:nth-child(4n) a .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  border-bottom: 1px solid black;
}

.module11 .container .content .rightBox1 .grap li:nth-child(4n) a .arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  transform: rotate(45deg);
  transform-origin: right;
  display: block;
  width: 8px;
  border-bottom: 1px solid black;
}

.module11 .container .content .rightBox2 {
  width: 100%;
}

.module11 .container .content .rightBox2 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .content .rightBox2 ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.module11 .container .content .rightBox2 ul .card {
  box-shadow: 0 0 10px #dadada;
  border-radius: 10px;
  position: relative;
  background-color: white;
}

.module11 .container .content .rightBox2 ul .card:hover:has(.img2) .img1 {
  display: none;
}

.module11 .container .content .rightBox2 ul .card:hover:has(.img2) .img2 {
  display: block;
}

.module11 .container .content .rightBox2 ul .card .tag {
  background-color: var(--color-Primary);
  color: white;
  padding: 3px 15px;
  font-size: 14px;
  border-radius: 50px;
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 2;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .content .rightBox2 ul .card .tag {
    font-size: 12px;
    left: 10px;
    top: 10px;
  }
}

.module11 .container .content .rightBox2 ul .card a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.module11 .container .content .rightBox2 ul .card a img {
  width: auto;
  aspect-ratio: 4 / 2.5;
  padding-top: 30px;
  object-fit: contain;
  transition: all 0.5s;
  margin-bottom: 10px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .content .rightBox2 ul .card a img {
    padding: 5%;
  }
}

.module11 .container .content .rightBox2 ul .card a .img2 {
  display: none;
}

.module11 .container .content .rightBox2 ul .card a .t1 {
  color: #555555;
  font-size: 16px;
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.module11 .container .content .rightBox2 ul .card a .t2 {
  margin: 0;
}

.module11 .container .content .rightBox2 ul .card a .t3 {
  border-bottom: 1px solid var(--color-Primary);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .content .rightBox2 ul .card a .t3 {
    font-size: 14px;
  }
}

.module12 {
  background-color: #f5f5f5;
}

.module12 .container {
  padding: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module12 .container {
    padding: 40px 0;
  }
}

.module12 .container h3 {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  font-weight: bold;
  color: var(--color-Primary);
  margin-bottom: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module12 .container h3 {
    font-size: 22px;
  }
}

.module12 .container .gridBox {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  justify-items: center;
  gap: 15px;
  padding: 30px 10%;
}

@media (min-width: 901px) and (max-width: 1300px) {
  .module12 .container .gridBox {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 700px) and (max-width: 900px) {
  .module12 .container .gridBox {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 0px) and (max-width: 700px) {
  .module12 .container .gridBox {
    padding: 30px 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.module12 .container .gridBox li {
  width: 100%;
}

.module12 .container .gridBox li a {
  display: block;
  width: 100%;
  text-align: center;
}

.module12 .container .gridBox li a .icon {
  font-size: 40px;
}

.module12 .container .gridBox li a p {
  width: 70%;
  margin: auto;
  font-size: 14px;
  word-wrap: break-word;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module12 .container .gridBox li a p {
    width: 100%;
    font-size: 12px;
  }
}

.module12 .container .gridBox .select .icon {
  color: var(--color-Primary);
}

.module12 .container .gridBox .select p {
  color: var(--color-Primary);
  font-weight: bold;
}

.module12 .container .box {
  padding: 4% 6%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module12 .container .box {
    padding: 20px 0;
  }
}

.module12 .container .box ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module12 .container .box ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.module12 .container .box ul li {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 1px 1px 15px #e0e0e0;
}

.module12 .container .box ul li:hover img {
  transform: scale(1.1);
}

.module12 .container .box ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

.module12 .container .box ul li a .tag {
  background-color: #e50112;
  position: absolute;
  color: white;
  width: 200px;
  text-align: center;
  font-weight: bold;
  position: absolute;
  transform: rotate(-45deg);
  left: -70px;
  top: 17px;
  z-index: 3;
}

.module12 .container .box ul li a .imgBox {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.module12 .container .box ul li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.module12 .container .box ul li a .box {
  padding: 15px 5%;
}

.module12 .container .box ul li a .box .t1 {
  line-height: 22px;
  height: 66px;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.module12 .container .box ul li a .box .t2 {
  font-size: 16px;
  color: #4e4e4e;
}

.module12 .container .box ul li a .box .t2 .icon {
  margin-right: 7px;
}

.module12 .container .box .moreBtn {
  margin-top: 30px;
  text-align: center;
}

.module13 {
  padding: 80px 0;
  background-color: #f5f5f5;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module13 {
    padding: 40px 0;
  }
}

.module13 .container .box1 {
  margin-bottom: 50px;
}

.module13 .container .box1 h3 {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  margin: 30px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module13 .container .box1 h3 {
    font-size: 22px;
  }
}

.module13 .container .box1 p {
  width: 80%;
  margin: 20px auto;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module13 .container .box1 p {
    width: 100%;
    text-align: center;
  }
}

.module13 .container .box2 {
  display: flex;
  align-items: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module13 .container .box2 {
    flex-direction: column;
  }
}

.module13 .container .box2 .card1 {
  border-radius: 20px;
  width: 70%;
  padding: 7% 3%;
  box-shadow: 0px 0px 20px #cfcfcf;
  flex-shrink: 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module13 .container .box2 .card1 {
    width: 100%;
    padding: 40px 30px;
  }
}

.module13 .container .box2 .card1 .title h3 {
  font-size: 26px;
  margin-bottom: 3px;
  font-weight: bold;
  color: var(--color-Primary);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module13 .container .box2 .card1 .title h3 {
    font-size: 22px;
  }
}

.module13 .container .box2 .card1 .title::after {
  content: "";
  margin-top: 10px;
  display: inline-block;
  width: 100px;
  height: 1px;
  background-color: var(--color-Primary);
}

.module13 .container .box2 .card1 p {
  width: 60%;
  margin: 40px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module13 .container .box2 .card1 p {
    width: 100%;
    margin: 20px 0;
  }
}

.module13 .container .box2 .card1 .btnBox {
  margin-top: 60px;
  width: 60%;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module13 .container .box2 .card1 .btnBox {
    margin-top: 40px;
  }
}

.module13 .container .box2 .card1 .btnBox .moreBtn .btn a {
  color: white;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module13 .container .box2 .card1 .btnBox {
    flex-direction: column;
    width: 100%;
  }
  .module13 .container .box2 .card1 .btnBox .moreBtn {
    width: 100%;
  }
}

.module13 .container .box2 .card2 {
  margin-left: -10%;
  border-radius: 20px;
  width: 40%;
  padding: 6% 5%;
  background-color: var(--color-Primary);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module13 .container .box2 .card2 {
    width: 100%;
    margin: 20px 0;
    padding: 40px;
  }
}

.module13 .container .box2 .card2:hover::after {
  background-color: var(--color-Primary2);
}

.module13 .container .box2 .card2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  z-index: 2;
  background-color: #035E5F;
  transform: rotate(165deg);
  left: 25%;
  bottom: -20%;
  transition: all 0.5s;
}

.module13 .container .box2 .card2 .title h3 {
  font-size: 26px;
  margin-bottom: 3px;
  font-weight: bold;
  color: white;
  padding-bottom: 10px;
  border-bottom: 1px solid white;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module13 .container .box2 .card2 .title h3 {
    font-size: 20px;
  }
}

.module13 .container .box2 .card2 .title::after {
  content: "";
  margin-top: -4px;
  display: inline-block;
  width: 100px;
  height: 1px;
  background-color: black;
}

.module13 .container .box2 .card2 p {
  color: white;
  margin-top: 20px;
  line-height: 26px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module13 .container .box2 .card2 p {
    font-size: 14px;
    line-height: 22px;
  }
}

.module13 .container .box2 .card2 .btn {
  position: absolute;
  z-index: 3;
  right: 0px;
  bottom: 0px;
  cursor: pointer;
  padding: 20px;
}

.module13 .container .box2 .card2 .btn .arrow:hover::after {
  border-bottom: 1px solid var(--color-Primary);
}

.module13 .container .box2 .card2 .btn .arrow:hover::before {
  border-bottom: 1px solid var(--color-Primary);
}

.module14 {
  position: relative;
  padding: 80px 0;
  padding: 80px;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module14 {
    padding: 40px 0;
  }
}

@media (min-width: 0px) and (max-width: 700px) {
  .module14 {
    padding: 50px 0;
  }
}

.module14 .container {
  max-width: 1400px;
}

.module14 .container h3 {
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module14 .container h3 {
    font-size: 24px;
  }
}

.module14 .container .t1 {
  margin: 25px 0;
  color: white;
  text-align: center;
}

.module14 .container form .flexBox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module14 .container form .flexBox {
    grid-template-columns: repeat(1, 1fr);
  }
}

.module14 .container form .flexBox .inputBox {
  width: 100%;
  padding: 20px 15px 7px 15px;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
  border-radius: 15px;
}

.module14 .container form .flexBox .inputBox .name {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  margin: 0;
  transition: all 0.5s;
  font-size: 16px;
  pointer-events: none;
  color: white;
}

.module14 .container form .flexBox .inputBox input {
  height: 30px;
  width: 100%;
  font-size: 16px;
  background-color: transparent;
  color: white;
}

.module14 .container form .flexBox .inputBox2 select {
  border-radius: 15px;
  font-size: 18px;
  height: 100%;
  width: 100%;
  color: white;
  background-color: transparent;
  border: none;
  outline: none;
}

.module14 .container form .flexBox .inputBox2 select option {
  border-radius: 10px;
  margin-top: 10px;
  color: black;
}

.module14 .container form .flexBox .inputBox2 .select_Input1 {
  width: 100%;
  position: relative;
  display: inline-block;
  z-index: 3;
}

.module14 .container form .flexBox .inputBox2 .select_Input1.disabled {
  cursor: not-allowed;
}

.module14 .container form .flexBox .inputBox2 .select_Input1.disabled .inputBox {
  background-color: #f1f1f1;
  border: 1px solid #b9b9b9;
  cursor: not-allowed;
}

.module14 .container form .flexBox .inputBox2 .select_Input1.disabled input {
  color: #b1b1b1;
  cursor: not-allowed !important;
}

.module14 .container form .flexBox .inputBox2 .select_Input1.disabled .icon {
  color: #979797;
}

.module14 .container form .flexBox .inputBox2 .select_Input1 .inputBox {
  width: 100%;
  height: 57px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
}

.module14 .container form .flexBox .inputBox2 .select_Input1 .inputBox .showInput {
  width: 90%;
  height: 100%;
  background-color: transparent;
  cursor: pointer;
}

.module14 .container form .flexBox .inputBox2 .select_Input1 .inputBox .showInput::placeholder {
  color: white;
}

.module14 .container form .flexBox .inputBox2 .select_Input1 .inputBox .input {
  display: none;
  font-size: 15px;
}

.module14 .container form .flexBox .inputBox2 .select_Input1 .inputBox .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  font-size: 14px;
  color: white;
}

.module14 .container form .flexBox .inputBox2 .select_Input1 .downOption {
  position: absolute;
  top: 60px;
  left: 0px;
  border: 1px solid #d1d1d1;
  background-color: #fff;
  width: 100%;
  max-height: 400px;
  padding: 10px 0;
  border-radius: 10px;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  box-shadow: 1px 1px 5px #e4e4e4;
  transform: translateY(40px);
  transition: all 0.5s;
  overscroll-behavior: contain;
  /* 滚动条上的滚动滑块 */
  /* 滚动条轨道 */
}

.module14 .container form .flexBox .inputBox2 .select_Input1 .downOption::-webkit-scrollbar {
  width: 6px;
  /* 滚动条宽度 */
}

.module14 .container form .flexBox .inputBox2 .select_Input1 .downOption::-webkit-scrollbar-thumb {
  background-color: var(--color-Primary);
  /* 滑块颜色 */
  border-radius: 10px;
  /* 滑块圆角 */
  border: 1px solid transparent;
  /* 滑块边框 */
}

.module14 .container form .flexBox .inputBox2 .select_Input1 .downOption::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* 轨道颜色 */
}

.module14 .container form .flexBox .inputBox2 .select_Input1 .downOption .list {
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.5s;
  font-size: 16px;
}

.module14 .container form .flexBox .inputBox2 .select_Input1 .downOption .list.disabled {
  color: #b1b1b1;
  cursor: not-allowed;
}

.module14 .container form .flexBox .inputBox2 .select_Input1 .downOption .list.disabled img {
  filter: grayscale(100%);
}

.module14 .container form .flexBox .inputBox2 .select_Input1 .downOption .list:hover {
  background-color: var(--color-Primary);
  color: white;
  margin: 0 10px;
  border-radius: 10px;
}

.module14 .container form .flexBox .inputBox2 .select_Input1 .downOption .list:last-child {
  border-bottom: none;
}

.module14 .container form .flexBox .inputBox2 .select_Input1 .downOption .list img {
  width: 30px;
}

.module14 .container form .flexBox .select .name {
  top: 13px;
  font-size: 12px;
  color: white;
}

.module14 .container form .flexBox .select input {
  height: 30px;
}

.module14 .container form .fileBox {
  width: 100%;
  padding: 15px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.module14 .container form .fileBox .uploadBtn {
  padding: 5px 10px;
  border-radius: 10px;
  background-color: #fff;
  color: var(--color-Primary);
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}

.module14 .container form .fileBox .uploadBtn:hover {
  background-color: var(--color-Primary);
  color: white;
}

.module14 .container form .fileBox input {
  display: none;
}

.module14 .container form .fileBox .fileList {
  display: flex;
  gap: 10px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module14 .container form .fileBox .fileList {
    flex-direction: column;
    align-items: flex-start;
  }
}

.module14 .container form .fileBox .fileList .fileName {
  color: var(--color-Primary);
  border-radius: 10px;
  background-color: white;
  display: flex;
  height: 34px;
  line-height: 34px;
  padding-left: 10px;
  overflow: hidden;
}

.module14 .container form .fileBox .fileList .fileName .del {
  margin-left: 10px;
  height: 100%;
  background-color: var(--color-Primary);
  padding: 0 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.module14 .container form .fileBox .fileList .fileName .del:hover {
  background-color: #c40000;
}

.module14 .container form .fileBox .fileList .fileName .icon {
  color: #dbdbdb;
}

.module14 .container form textarea {
  width: 100%;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.5);
  color: white;
  padding: 15px;
  font-size: 16px;
  height: 200px;
}

.module14 .container form textarea::placeholder {
  color: white;
  font-size: 14px;
  line-height: 20px;
}

.module14 .container form .t2 {
  margin-top: 20px;
  color: #cfcfcf;
}

.module14 .container form .t2 a {
  color: #cfcfcf;
  font-weight: bold;
}

.module14 .container form .t2 a:hover {
  color: var(--color-Primary);
}

.module14 .container form .moreBtn {
  text-align: center;
  margin-top: 30px;
}

.module15 {
  margin: 50px 0;
}

.module15 .container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module15 .container {
    flex-direction: column;
    gap: 30px;
  }
}

.module15 .container .box {
  display: flex;
  justify-content: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module15 .container .box {
    flex-direction: column-reverse;
    gap: 30px;
  }
}

.module15 .container .box .leftBox {
  width: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-right: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module15 .container .box .leftBox {
    flex-direction: row;
    width: 100%;
  }
}

.module15 .container .box .leftBox .swiper-button-disabled {
  opacity: 0.3;
}

.module15 .container .box .leftBox .swiper {
  width: 100%;
  height: 450px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module15 .container .box .leftBox .swiper {
    height: auto;
  }
}

.module15 .container .box .leftBox .swiper .box {
  width: 100px;
  height: 100px;
  border: 1px solid #9e9e9e;
  border-radius: 10px;
  padding: 5px;
  position: relative;
  cursor: pointer;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module15 .container .box .leftBox .swiper .box {
    width: 90px;
    height: 90px;
  }
}

.module15 .container .box .leftBox .swiper .box .img .play {
  display: none;
}

.module15 .container .box .leftBox .swiper .box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.module15 .container .box .leftBox .swiper .select {
  border: 2px solid var(--color-Primary);
}

.module15 .container .box .leftBox .parameter {
  display: none;
}

.module15 .container .box .leftBox .icon {
  font-size: 28px;
  color: #bdbdbd;
  transition: all 0.3s;
}

.module15 .container .box .leftBox .icon:hover {
  color: #8a8a8a;
}

.module15 .container .box .leftBox .mob {
  display: none;
}

.module15 .container .box .leftBox .pc {
  display: block;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module15 .container .box .leftBox .pc {
    display: none;
  }
  .module15 .container .box .leftBox .mob {
    display: inline-block;
  }
}

.module15 .container .box .bigImg {
  width: 500px;
  height: 500px;
  border-radius: 10px;
  background-color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 14px #e3e3e3;
  position: relative;
  cursor: crosshair;
  /* 放大镜 */
}

@media (min-width: 0px) and (max-width: 700px) {
  .module15 .container .box .bigImg {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    touch-action: none;
  }
}

.module15 .container .box .bigImg .img {
  text-align: center;
}

.module15 .container .box .bigImg img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.module15 .container .box .bigImg .magnifier {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8), 0 4px 12px rgba(0, 0, 0, 0.2);
  display: none;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 10;
}

.module15 .container .box .videoImgBox {
  position: relative;
  text-align: center;
  display: none;
  cursor: pointer;
}

.module15 .container .box .videoImgBox .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  border: 3px solid white;
  text-align: center;
}

.module15 .container .box .videoImgBox .play:hover {
  border: 3px solid var(--color-Primary);
}

.module15 .container .box .videoImgBox .play:hover .icon {
  color: var(--color-Primary);
}

.module15 .container .box .videoImgBox .play .icon {
  font-size: 40px;
  color: white;
  line-height: 80px;
}

.module15 .container .content {
  width: 45%;
  height: 500px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module15 .container .content {
    width: 100%;
  }
}

.module15 .container .content p {
  margin: 0;
}

.module15 .container .content .t1 {
  font-size: 18px;
  color: #4e4e4e;
}

.module15 .container .content .t2 {
  font-size: 24px;
  color: black;
  font-weight: bold;
  margin: 5px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module15 .container .content .t2 {
    font-size: 20px;
  }
}

.module15 .container .content .t3 {
  font-size: 24px;
  color: black;
  font-weight: bold;
  border-bottom: 1px solid var(--color-Primary);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module15 .container .content .t3 {
    font-size: 20px;
  }
}

.module15 .container .content ul {
  width: 100%;
  height: 100%;
  margin: 10px 0;
  overflow: auto;
  /* 整个滚动条 */
  /* 滚动条轨道 */
  /* 滚动条滑块 */
  /* 滚动条滑块悬停 */
}

.module15 .container .content ul::-webkit-scrollbar {
  width: 4px;
  /* 滚动条宽度 */
}

.module15 .container .content ul::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* 轨道颜色 */
}

.module15 .container .content ul::-webkit-scrollbar-thumb {
  background: var(--color-Primary);
  /* 滑块颜色 */
  border-radius: 10px;
  /* 滑块圆角 */
}

.module15 .container .content ul::-webkit-scrollbar-thumb:hover {
  background: var(--color-Primary2);
  /* 滑块悬停颜色 */
}

.module15 .container .content ul li {
  margin: 10px 0;
  display: flex;
  gap: 7px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module15 .container .content ul li {
    font-size: 14px;
  }
}

.module15 .container .content ul li::before {
  content: "●";
}

.module15 .container .content .btnList {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 20px;
  padding-right: 20%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module15 .container .content .btnList {
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }
  .module15 .container .content .btnList a,
  .module15 .container .content .btnList button {
    width: 100%;
  }
}

.tab_header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #616161;
  padding: 10px;
  gap: 5%;
  position: sticky;
  top: 60px;
  z-index: 6;
  overflow: auto;
}

@media (min-width: 0px) and (max-width: 700px) {
  .tab_header {
    gap: 5px 30px;
    justify-content: flex-start;
  }
}

.tab_header .tabBtn {
  color: white;
  text-align: center;
  padding: 5px 0;
  margin-bottom: -1px;
  margin-right: -1px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
}

.tab_header .tabBtn:hover {
  color: var(--color-Primary);
}

.tab_header .select {
  border-bottom: 2px solid var(--color-Primary);
}

.module16 {
  margin: 50px 0;
}

.module16 .container .topBox {
  height: 400px;
  margin-top: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module16 .container .topBox p {
  width: 40%;
  color: white;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module16 .container .topBox p {
    width: 96%;
  }
}

.module16 .container .contentBox {
  padding: 30px 5%;
  box-sizing: border-box;
  min-height: 300px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module16 .container .contentBox {
    padding: 10px 0px;
  }
}

.module16 .container .contentBox .thumbs {
  width: 100% !important;
}

.module16 .container .contentBox p {
  margin: 0;
}

.module16 .container .contentBox table {
  width: 100% !important;
  overflow: auto;
}

.module16 .container .contentBox li {
  list-style: disc;
}

.module16 .container .contentBox .content {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.module16 .container .contentBox .content img {
  max-width: 100%;
}

.module17 {
  padding: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module17 {
    padding: 40px 0;
  }
}

.module17 .container h3 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  padding: 50px 0;
  color: black;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module17 .container h3 {
    font-size: 24px;
  }
}

.module17 .container h3:hover a {
  color: var(--color-Primary);
}

.module17 .container .boxs {
  display: flex;
  align-items: center;
  gap: 20px;
}

.module17 .container .boxs .btn {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50px;
  border: 1px solid var(--color-Primary);
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module17 .container .boxs .btn {
    width: 40px;
    height: 40px;
  }
}

.module17 .container .boxs .btn:hover {
  background-color: var(--color-Primary);
}

.module17 .container .boxs .btn:hover .icon {
  color: white;
}

.module17 .container .boxs .btn .icon {
  font-size: 20px;
  color: var(--color-Primary);
}

.module17 .container .boxs .left {
  transform: rotateY(180deg);
}

.module17 .container .boxs .swiper {
  width: 100%;
  padding: 10px 0;
  padding-bottom: 30px;
}

.module17 .container .boxs .swiper .swiper-slide {
  padding: 10px;
}

.module17 .container .boxs .swiper .card {
  display: block;
  background-color: white;
  padding: 30px 20px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0px 0px 10px #e1e1e1;
  transition: all 0.5s;
}

.module17 .container .boxs .swiper .card:hover {
  transform: translateY(-10px);
}

.module17 .container .boxs .swiper .card:hover .t2, .module17 .container .boxs .swiper .card:hover .t3 {
  color: var(--color-Primary);
}

.module17 .container .boxs .swiper .card:hover:has(.img2) .img1 {
  display: none;
}

.module17 .container .boxs .swiper .card:hover:has(.img2) .img2 {
  display: block;
}

.module17 .container .boxs .swiper .card .tag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  height: 60px;
}

.module17 .container .boxs .swiper .card .tag span {
  display: inline-block;
  color: white;
  background-color: var(--color-Primary);
  font-weight: bold;
  font-size: 14px;
  padding: 3px 15px;
  border-radius: 50px;
  height: auto;
}

.module17 .container .boxs .swiper .card .imgBox {
  text-align: center;
  padding: 15px 0;
  width: 100%;
  aspect-ratio: 4 / 2.5;
  padding: 5%;
  box-sizing: border-box;
}

.module17 .container .boxs .swiper .card .imgBox img {
  width: 100%;
  object-fit: contain;
  transition: all 0.5s;
}

.module17 .container .boxs .swiper .card .imgBox .img2 {
  display: none;
}

.module17 .container .boxs .swiper .card .content {
  height: 110px;
}

.module17 .container .boxs .swiper .card .content .t1 {
  color: #555555;
  font-size: 16px;
  height: 16px;
}

.module17 .container .boxs .swiper .card .content .t2 {
  margin: 0;
}

.module17 .container .boxs .swiper .card .content .t3 {
  border-bottom: 1px solid var(--color-Primary);
}

.module17 .container .boxs .swiper .swiper-pagination-bullet {
  background: black;
  opacity: 1;
}

.module17 .container .boxs .swiper .swiper-pagination-bullet-active {
  background: var(--color-Primary);
  width: 10px;
  height: 10px;
  transform: translateY(1px);
}

.module18 {
  margin: 50px 0;
}

.module18 .container .box1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module18 .container .box1 {
    flex-direction: column;
    gap: 30px;
  }
}

.module18 .container .box1 .title h3 {
  font-size: var(--text-h3);
  margin-bottom: 3px;
  color: black;
  font-weight: bold;
  text-align: center;
}

.module18 .container .box1 .title::after {
  content: "";
  margin-top: 5px;
  display: inline-block;
  width: 90px;
  border: 2px solid var(--color-Primary);
}

.module18 .container .box2 {
  padding: 50px 0px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module18 .container .box2 {
    padding: 40px 0px;
  }
}

@media (min-width: 0px) and (max-width: 700px) {
  .module18 .container .box2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.module18 .container .box2 .card {
  width: 100%;
  min-height: 300px;
  aspect-ratio: 5/3;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.module18 .container .box2 .card:hover .textBox {
  color: var(--color-Primary);
  background-color: black;
}

.module18 .container .box2 .card:hover img {
  transform: scale(1.1);
}

.module18 .container .box2 .card:hover .icon {
  color: var(--color-Primary);
}

.module18 .container .box2 .card a {
  display: block;
  width: 100%;
  height: 100%;
}

.module18 .container .box2 .card a .textBox {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 10%;
  text-align: center;
  width: 100%;
  color: white;
  z-index: 2;
  transition: all 0.5s;
}

.module18 .container .box2 .card a .textBox p {
  margin: 0;
}

.module18 .container .box2 .card a img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  object-fit: cover;
}

.module18 .container .box2 .card a .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 40px;
  color: white;
}

.module19 {
  margin: 50px 0;
}

.module19 .container .box > h3 {
  text-align: center;
  font-size: var(--text-h3);
  font-weight: bold;
  margin: 20px 0;
}

.module19 .container .box > p {
  text-align: center;
  width: 80%;
  margin: auto;
}

.module19 .container .box ul {
  padding: 50px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module19 .container .box ul {
    padding: 30px 0px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.module19 .container .box ul li {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 6 / 9;
}

.module19 .container .box ul li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  z-index: 2;
  opacity: 0.5;
  transition: all 0.5s;
}

.module19 .container .box ul li:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  z-index: 2;
  opacity: 0.2;
  transition: all 0.5s;
}

.module19 .container .box ul li:hover .bc {
  transform: scale(1.1);
}

.module19 .container .box ul li:hover .content .line {
  width: calc(90% - 40px);
  height: calc(90% - 40px);
}

.module19 .container .box ul li a {
  width: 100%;
  height: 100%;
}

.module19 .container .box ul li .bc {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.module19 .container .box ul li .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  padding: 10% 20px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.module19 .container .box ul li .content .t1Box {
  width: 100%;
  text-align: center;
}

.module19 .container .box ul li .content .t1Box .t1 {
  font-size: 18px;
  padding: 0 15%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module19 .container .box ul li .content .t1Box .t1 {
    font-size: 14px;
    padding: 0px;
  }
}

.module19 .container .box ul li .content .t2Box .t2 {
  text-align: center;
  font-size: 14px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module19 .container .box ul li .content .t2Box .t2 {
    font-size: 12px;
  }
}

.module19 .container .box ul li .content p {
  margin: 0;
}

.module19 .container .box ul li .content .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  height: 60px;
}

.module19 .container .box ul li .content .line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 100px;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module19 .container .box ul li .content .line {
    height: 50%;
  }
}

.module19 .container .box ul li .content .line::after {
  content: "";
  height: 30%;
  width: 1px;
  border-left: 1px solid white;
}

.module19 .container .box ul li .content .line::before {
  content: "";
  height: 30%;
  width: 1px;
  border-left: 1px solid white;
}

.module20 {
  height: 600px;
  position: relative;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module20 {
    height: 800px;
  }
}

.module20 .swiper {
  height: 100%;
}

.module20 .swiper .swiper-slide {
  height: 100%;
}

.module20 .swiper .swiper-slide .content {
  height: 100%;
  padding: 50px 0;
}

.module20 .swiper .swiper-slide .content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  z-index: 2;
  opacity: 0.4;
  transition: all 0.5s;
}

.module20 .swiper .swiper-slide .content .container {
  padding: 0 5%;
  height: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.module20 .swiper .swiper-slide .content .container .box1 {
  text-align: center;
  color: white;
}

.module20 .swiper .swiper-slide .content .container .box1 h3 {
  font-weight: bold;
  font-size: var(--text-h3);
}

.module20 .swiper .swiper-slide .content .container .box1 .line {
  display: inline-block;
  width: 100px;
  height: 3px;
  background-color: var(--color-Primary);
  margin: 20px 0;
}

.module20 .swiper .swiper-slide .content .container .box2 {
  position: relative;
  z-index: 5;
}

.module20 .swiper .swiper-slide .content .container .box2 h4 {
  color: var(--color-Primary);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.module20 .swiper .swiper-slide .content .container .box2 h4 .icon {
  font-size: 22px;
  margin-right: 5px;
  font-weight: bold;
}

.module20 .swiper .swiper-slide .content .container .box2 p {
  color: white;
}

.module20 .swiper .swiper-slide .content .container .box2 .moreBtn {
  margin-top: 20px;
}

.module20 .btnList {
  position: absolute;
  height: 100%;
  z-index: 3;
  right: 7%;
  top: 0;
}

.module20 .btnList .container {
  padding: 0 5%;
  height: 100%;
}

.module20 .btnList .container .box {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  position: relative;
}

.module20 .btnList .container .box ul {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.module20 .btnList .container .box ul li {
  text-align: right;
  color: white;
  transform: translateX(5px);
  cursor: pointer;
  transition: all 0.5s;
  white-space: nowrap;
}

.module20 .btnList .container .box ul li::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50px;
  margin-left: 10px;
}

.module20 .btnList .container .box ul li:hover {
  color: var(--color-Primary);
}

.module20 .btnList .container .box ul li .icon {
  margin-right: 5px;
  font-size: 20px;
}

.module20 .btnList .container .box ul .select {
  color: var(--color-Primary);
  font-size: 20px;
}

.module20 .btnList .container .box ul .select::after {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(1.6);
  border: 1px solid white;
  background-color: var(--color-Primary);
}

.module20 .btnList .container .box ul .select .icon {
  font-weight: bold;
}

.module21 .container .box {
  padding: 4% 6%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module21 .container .box {
    padding: 50px 10px;
  }
}

.module21 .container .box ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module21 .container .box ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.module21 .container .box ul li {
  aspect-ratio: 1/1;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}

.module21 .container .box ul li:hover {
  box-shadow: 1px 1px 15px #aaaaaa;
}

.module21 .container .box ul li:hover .title {
  background-color: black !important;
}

.module21 .container .box ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

.module21 .container .box ul li a:hover img {
  transform: scale(1.1);
}

.module21 .container .box ul li a:hover .title {
  color: var(--color-Primary);
}

.module21 .container .box ul li a .tag {
  background-color: #e50112;
  position: absolute;
  color: white;
  width: 200px;
  z-index: 4;
  text-align: center;
  font-weight: bold;
  position: absolute;
  transform: rotate(-45deg);
  left: -70px;
  top: 17px;
}

.module21 .container .box ul li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.module21 .container .box ul li a .title {
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 3;
  left: 0;
  bottom: 0;
  padding: 15px 5%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  transition: all 0.5s;
  height: 75px;
}

.module21 .container .box ul li a .title p {
  margin: 0;
}

.module21 .container .box .Pagination1 {
  justify-content: flex-end;
}

.module21 .container .box .moreBtn {
  margin-top: 30px;
  text-align: center;
}

.module22 {
  background-color: black;
  padding: 80px 0;
  overflow-x: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module22 {
    padding: 40px 0;
  }
}

.module22 .container {
  padding: 0 5%;
}

.module22 .container > h3 {
  font-size: var(--text-h3);
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

.module22 .container > p {
  width: 70%;
  margin: auto;
  color: white;
  text-align: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module22 .container > p {
    width: 100%;
  }
}

.module22 .container ul {
  margin-top: 50px;
}

.module22 .container ul .list {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module22 .container ul .list {
    flex-direction: column !important;
    margin-bottom: 20px;
    padding: 30px 0 !important;
  }
}

.module22 .container ul .list .text,
.module22 .container ul .list .img {
  width: 50%;
  flex-shrink: 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module22 .container ul .list .text,
  .module22 .container ul .list .img {
    width: 96% !important;
    padding: 0 !important;
  }
}

.module22 .container ul .list .img {
  border-radius: 10px;
  overflow: hidden;
}

.module22 .container ul .list .img img {
  width: 100%;
  display: block;
}

.module22 .container ul .list .textBox {
  width: 50%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module22 .container ul .list .textBox {
    width: 100%;
    padding: 0 10px;
    text-align: center;
    gap: 30px;
  }
}

.module22 .container ul .list .textBox .title h3 {
  font-size: var(--text-h3);
  margin-bottom: 3px;
  font-weight: bold;
  color: white;
}

.module22 .container ul .list .textBox .title::after {
  content: "";
  margin-top: 5px;
  display: inline-block;
  width: 90px;
  border: 3px solid var(--color-Primary);
}

.module22 .container ul .list .textBox p {
  color: white;
  line-height: 30px;
}

.module22 .container ul .list:nth-child(even) .textBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 5vw;
}

.module22 .container ul .list:nth-child(odd) {
  flex-direction: row-reverse;
}

.module22 .container ul .list:nth-child(odd) .textBox {
  padding-left: 5vw;
}

.module22 .container ul .list:nth-child(odd) .textBox .title {
  text-align: right;
}

.module22 .container ul .list:nth-child(odd) .textBox p {
  text-align: right;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module22 .container ul .list:nth-child(odd) .textBox .title {
    text-align: center;
  }
  .module22 .container ul .list:nth-child(odd) .textBox p {
    text-align: center;
  }
}

.module22 .container .dim {
  color: black;
  line-height: 1rem;
  margin: 0 !important;
}

.module23 {
  padding: 80px 0;
  background-color: #f9f9f9;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module23 {
    padding: 40px 0;
  }
}

.module23 h3 {
  text-align: center;
  margin-bottom: 50px;
  font-size: var(--text-h3);
  font-weight: bold;
}

.module23 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  position: relative;
}

.module23 ul .centerImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  z-index: 2;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module23 ul .centerImg {
    display: none;
  }
}

.module23 ul li {
  text-align: center;
}

.module23 ul li .icon {
  font-size: 32px;
  background-color: var(--color-Primary);
  color: white;
  width: 60px;
  height: 60px;
  display: inline-block;
  border-radius: 50px;
  text-align: center;
  line-height: 60px;
}

.module23 ul li h4 {
  color: black;
  font-size: 22px;
  line-height: 30px;
  font-weight: bold;
  margin: 20px auto;
  width: 50%;
  max-width: 300px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module23 ul li h4 {
    width: 90%;
    font-size: 20px;
    max-width: 100%;
  }
}

.module23 ul li p {
  width: 50%;
  max-width: 300px;
  margin: auto;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module23 ul li p {
    width: 90%;
    max-width: 100%;
  }
}

@media screen and (max-width: 700px) {
  .module23 ul {
    display: block;
  }
  .module23 ul li {
    margin-bottom: 50px;
  }
}

.module24 {
  padding: 150px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module24 {
    padding: 80px 0;
  }
}

.module24 .container ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module24 .container ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 701px) and (max-width: 1200px) {
  .module24 .container ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.module24 .container ul li {
  padding: 50px;
  border-radius: 15px;
  color: white;
  max-width: 340px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(0, 142, 144, 0.7));
  background-image: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(0, 142, 144, 0.7));
  background-image: -moz-linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(0, 142, 144, 0.7));
  background-image: -o-linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(0, 142, 144, 0.7));
}

@media (min-width: 0px) and (max-width: 700px) {
  .module24 .container ul li {
    transform: translateY(0px) !important;
  }
}

.module24 .container ul li:nth-child(even) {
  transform: translateY(-50px);
}

.module24 .container ul li:nth-child(odd) {
  transform: translateY(50px);
}

.module24 .container ul li h3 {
  font-size: 50px;
  text-align: center;
  font-weight: bold;
  position: relative;
  white-space: nowrap;
  z-index: 2;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module24 .container ul li h3 {
    font-size: 40px;
  }
}

.module24 .container ul li h3::after {
  content: attr(data-text);
  position: absolute;
  font-size: 50px;
  white-space: nowrap;
  font-weight: bold;
  line-height: 10px;
  height: 30px;
  left: 0;
  width: 100%;
  bottom: -20px;
  transform: scaleY(-1);
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module24 .container ul li h3::after {
    font-size: 40px;
  }
}

.module24 .container ul li h3::before {
  content: attr(data-text);
  position: absolute;
  white-space: nowrap;
  color: #000000;
  width: 100%;
  opacity: 0.3;
  left: 3px;
  top: 3px;
  filter: blur(2px);
  z-index: -1;
}

.module24 .container ul li .line {
  display: block;
  width: 100%;
  border-bottom: 2px solid gray;
  margin: 30px 0;
}

.module24 .container ul li .t1 {
  font-size: 22px;
  font-weight: bold;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module24 .container ul li .t1 {
    font-size: 18px;
  }
}

.module24 .container ul li .t2 {
  font-size: 14px;
}

.module25 {
  padding: 100px 0;
  background-color: #303030;
  overflow: hidden;
}

.module25 .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module25 .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
}

.module25 .container .leftBox {
  color: white;
}

.module25 .container .leftBox h3 {
  font-size: 26px;
  font-weight: bold;
}

.module25 .container .leftBox p {
  margin: 0;
}

.module25 .container .leftBox .t1 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: bold;
  margin: 20px 0;
  color: var(--color-Primary);
  font-size: 20px;
}

.module25 .container .leftBox .t1 .icon {
  font-size: 30px;
}

.module25 .container .leftBox .t2 {
  line-height: 30px;
}

.module25 .container .rightBox {
  width: 100%;
  height: 100%;
  border-radius: 50px 0 0 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module25 .container .rightBox {
    height: 200px;
    border-radius: 0;
  }
}

.module25 .container .rightBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module25 .container .rightBox .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.module25 .container .rightBox .play:hover .icon {
  color: var(--color-Primary2);
}

.module25 .container .rightBox .play .icon {
  font-size: 60px;
  color: var(--color-Primary);
}

.module26 {
  padding: 80px 0;
  background-color: #eeeeee;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module26 {
    padding: 40px 0;
  }
}

.module26 .container h3 {
  font-size: var(--text-h3);
  color: black;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.module26 .container ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.module26 .container ul li {
  text-align: center;
  width: 400px;
}

.module26 .container ul li .img {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.module26 .container ul li .img img {
  width: 60%;
}

.module26 .container ul li .t1 {
  margin: 20px 0;
  font-size: 22px;
  font-weight: bold;
  color: black;
}

.module26 .container ul li .t2 {
  width: 80%;
  margin: auto;
}

.module27 {
  padding: 80px 0;
  background-color: #242a36;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module27 {
    padding: 40px 0;
  }
}

.module27 .container {
  background-color: #1f2326;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
  border-radius: 15px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module27 .container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.module27 .container .leftBox {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.module27 .container .leftBox .playBtn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 144, 147, 0.8);
  border-radius: 50px;
  transition: all 0.5s;
}

.module27 .container .leftBox .playBtn .icon {
  color: white;
  font-size: 24px;
}

.module27 .container .leftBox .playBtn:hover {
  background-color: var(--color-Primary2);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module27 .container .rightBox {
    text-align: center;
  }
}

.module27 .container .rightBox h3 {
  color: var(--color-Primary);
  font-weight: bold;
  font-size: 36px;
  margin-bottom: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module27 .container .rightBox h3 {
    font-size: 24px;
  }
}

.module27 .container .rightBox p {
  color: white;
  font-size: 16px;
  line-height: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module27 .container .rightBox p {
    font-size: 14px;
    line-height: 24px;
  }
}

.module28 {
  padding: 80px 0;
  background-color: #eeeeee;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module28 {
    padding: 40px 0;
  }
}

.module28 .list {
  display: flex;
  align-items: center;
  gap: 5%;
  margin-bottom: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module28 .list {
    gap: 30px;
    flex-direction: column !important;
    margin-bottom: 20px;
    padding: 20px 0 !important;
  }
}

.module28 .list .textBox {
  box-sizing: border-box;
  text-align: center;
}

.module28 .list .textBox h3 {
  font-weight: bold;
  width: 90%;
  font-size: 40px;
  text-align: center;
  color: var(--color-Primary);
  margin-bottom: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module28 .list .textBox h3 {
    width: 100%;
    font-size: 24px;
  }
}

.module28 .list .textBox p {
  font-size: 18px;
  line-height: 30px;
  width: 90%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module28 .list .textBox p {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
  }
}

.module28 .list .imgBox {
  width: 50%;
  flex-shrink: 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module28 .list .imgBox {
    width: 100%;
  }
}

.module28 .list .imgBox .swiper {
  height: 550px;
  overflow: hidden;
  border-radius: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module28 .list .imgBox .swiper {
    height: 250px;
  }
}

.module28 .list .imgBox .swiper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.module28 .list .imgBox .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module28 .list .imgBox .swiper .swiper-slide .playBtn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: all 0.5s;
}

.module28 .list .imgBox .swiper .swiper-slide .playBtn .icon {
  color: white;
  font-size: 24px;
}

.module28 .list .imgBox .swiper .swiper-slide .playBtn:hover {
  background-color: var(--color-Primary);
}

.module28 .list .imgBox .btnList {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.module28 .list .imgBox .btnList button {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: 1px solid #a1a1a1;
  transition: all 0.5s;
}

.module28 .list .imgBox .btnList button .icon {
  font-size: 20px;
}

.module28 .list .imgBox .btnList button:hover {
  border: 1px solid var(--color-Primary);
  background-color: var(--color-Primary);
}

.module28 .list .imgBox .btnList button:hover .icon {
  color: white;
}

.module28 .list .imgBox .btnList .leftBtn {
  transform: rotateY(180deg);
}

.module28 .list:nth-child(odd) .text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 5vw;
}

.module28 .list:nth-child(odd) .textBox p {
  text-align: left;
}

.module28 .list:nth-child(even) {
  flex-direction: row-reverse;
}

.module28 .list:nth-child(even) .text {
  padding-left: 5vw;
}

.module28 .list:nth-child(even) .btnList {
  justify-content: flex-end;
}

.module28 .list:nth-child(even) .textBox p {
  text-align: right;
}

.module28 .dim {
  color: black;
  line-height: 1rem;
  margin: 0 !important;
}

.module29 .container {
  position: relative;
}

.module29 .container .bc {
  width: 100%;
}

.module29 .container .content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 5% 0;
}

.module29 .container .content h3 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module29 .container .content h3 {
    font-size: 18px;
  }
}

.module29 .container .vrBtn {
  position: absolute;
  left: 10%;
  bottom: 0;
  z-index: 2;
  transform: translateY(50%);
  width: 150px;
  height: 150px;
  padding: 20px;
  border: 15px;
  border-radius: 20px;
  background: linear-gradient(45deg, #001313 2%, #119393);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module29 .container .vrBtn {
    transform: scale(0.5) translateY(90%);
  }
}

.module29 .container .vrBtn:hover {
  background: linear-gradient(45deg, var(--color-Primary2), var(--color-Primary2));
}

.module29 .container .vrBtn .t1 {
  font-size: 60px;
  font-weight: bold;
  line-height: 60px;
  text-shadow: 4px 2px 0px #000000;
}

.module29 .container .vrBtn .t2 {
  font-weight: bold;
  text-shadow: 2px 2px 3px #000000;
}

.module29 .container .vrBtn img {
  width: 30px;
}

.module30 {
  padding: 100px 0;
}

.module30.bcBlack {
  background-color: black;
}

.module30.bcBlack h3 {
  color: white !important;
}

.module30.bcBlack .btn {
  border: 1px solid white !important;
}

.module30.bcBlack .btn .icon {
  color: white !important;
}

.module30.bcBlack .swiper-scrollbar {
  background-color: white !important;
}

.module30 .container h3 {
  text-align: center;
  font-size: var(--text-h3);
  color: black;
  margin-bottom: 50px;
  font-weight: bold;
}

.module30 .container .swiper {
  width: 100%;
  padding-bottom: 50px;
  position: relative;
}

.module30 .container .swiper .swiper-slide {
  width: 500px;
  height: 300px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module30 .container .swiper .swiper-slide {
    height: 150px;
  }
}

.module30 .container .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module30 .container .swiper .swiper-scrollbar {
  width: 70%;
  bottom: 15px;
  left: 15%;
  height: 8px;
}

.module30 .container .swiper .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: var(--color-Primary);
}

.module30 .container .swiper .btn {
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: 1px solid #929292;
  bottom: 0;
  transition: all 0.5s;
  outline: none;
}

.module30 .container .swiper .btn:hover {
  border: 1px solid var(--color-Primary);
  background-color: var(--color-Primary);
}

.module30 .container .swiper .btn:hover .icon {
  color: white;
}

.module30 .container .swiper .swiper-prev {
  left: calc(15% - 60px);
  transform: rotateY(180deg);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module30 .container .swiper .swiper-prev {
    left: calc(15% - 50px);
  }
}

.module30 .container .swiper .swiper-next {
  right: calc(15% - 60px);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module30 .container .swiper .swiper-next {
    right: calc(15% - 50px);
  }
}

.module31 .container {
  position: relative;
}

.module31 .container .bc {
  width: 100%;
}

.module31 .container .content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 5% 0;
}

.module31 .container .content h3 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: white;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module31 .container .content h3 {
    font-size: 18px;
  }
}

.module31 .container .playBtn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: all 0.5s;
}

.module31 .container .playBtn .icon {
  color: white;
  font-size: 24px;
}

.module31 .container .playBtn:hover {
  background-color: var(--color-Primary);
}

.module32 {
  padding: 80px 0;
  background-color: #f3f3f3;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module32 {
    padding: 40px 0;
  }
}

.module32 .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
  align-items: center;
  justify-items: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module32 .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 5%;
  }
}

.module32 .container .imgbox img {
  max-height: 750px;
}

.module32 .container .contentBox .title {
  margin-bottom: 30px;
}

.module32 .container .contentBox .title h3 {
  font-size: var(--text-h3);
  margin-bottom: 3px;
  font-weight: bold;
}

.module32 .container .contentBox .title::after {
  content: "";
  margin-top: 10px;
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: var(--color-Primary);
}

.module32 .container .contentBox p {
  line-height: 30px;
}

.module32 .container .contentBox img {
  width: 100%;
  border-radius: 20px;
  margin-top: 20px;
}

.module33 {
  padding: 80px 0;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module33 {
    padding: 40px 0;
  }
}

.module33 .container .box1 {
  text-align: center;
}

.module33 .container .box1 h3 {
  font-size: 20px;
  color: black;
  font-size: var(--text-h3);
  font-weight: bold;
}

.module33 .container .box1 .line {
  margin: 20px 0;
  display: inline-block;
  width: 100px;
  border: 3px solid var(--color-Primary);
}

.module33 .container .box1 p {
  width: 80%;
  min-width: 400px;
  margin: auto;
  line-height: 24px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module33 .container .box1 p {
    min-width: 0px;
    width: 100%;
  }
}

.module33 .container .box2 {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module33 .container .box2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.module33 .container .box2 .leftBox {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
}

.module33 .container .box2 .leftBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module33 .container .box2 .rightBox {
  display: flex;
  padding: 4% 0;
  gap: 10%;
}

.module33 .container .box2 .rightBox .rBox1 {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.module33 .container .box2 .rightBox .rBox1 li {
  font-size: 18px;
  font-weight: bold;
}

.module33 .container .box2 .rightBox .rBox1 li::first-letter {
  font-size: 50px;
  font-weight: bold;
  margin-right: 5px;
  color: var(--color-Primary);
}

.module33 .container .box2 .rightBox .rBox2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.module33 .container .box2 .rightBox .rBox2 .card {
  border-left: 2px solid var(--color-Primary);
  padding: 0 20px;
}

.module33 .container .box2 .rightBox .rBox2 .card .title {
  margin-bottom: 20px;
}

.module33 .container .box2 .rightBox .rBox2 .card .title h3 {
  font-size: 26px;
  margin-bottom: 3px;
  font-weight: bold;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module33 .container .box2 .rightBox .rBox2 .card .title h3 {
    font-size: 22px;
  }
}

.module33 .container .box2 .rightBox .rBox2 .card .title::after {
  content: "";
  margin-top: 10px;
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: var(--color-Primary);
}

.module33 .container .box2 .rightBox .rBox2 .card p {
  font-size: 18px;
  line-height: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module33 .container .box2 .rightBox .rBox2 .card p {
    font-size: 14px;
    line-height: 22px;
  }
}

.module34 {
  padding: 80px 0;
  padding-bottom: 0px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module34 {
    padding: 40px 0;
  }
}

.module34 .container .box1 {
  text-align: center;
}

.module34 .container .box1 h3 {
  font-size: 20px;
  color: black;
  font-size: var(--text-h3);
  font-weight: bold;
}

.module34 .container .box1 .line {
  margin: 20px 0;
  display: inline-block;
  width: 100px;
  border: 3px solid var(--color-Primary);
}

.module34 .container .box1 p {
  width: 80%;
  min-width: 400px;
  margin: auto;
  line-height: 24px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module34 .container .box1 p {
    min-width: 0px;
    width: 100%;
  }
}

.module34 .container .imgBox {
  margin-top: 40px;
}

.module34 .container .imgBox img {
  width: 100%;
}

.module35 {
  padding: 80px 0;
  background-color: var(--color-Background);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module35 {
    padding: 40px 0;
  }
}

.module35 .container .box {
  display: flex;
  align-items: center;
  gap: 2%;
  margin: 10px 0;
}

.module35 .container .box:nth-child(even) {
  flex-direction: row-reverse;
}

.module35 .container .box:nth-child(odd) .content::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  left: -30px;
  top: 40%;
  transform: translateY(-50%);
  z-index: 2;
  background-color: #ffffff;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  box-shadow: 0 0 10px white;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module35 .container .box:nth-child(odd) .content::before {
    content: none;
  }
}

.module35 .container .box:nth-child(even) .content::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  right: -30px;
  top: 40%;
  transform: translateY(-50%) rotate(180deg);
  z-index: 2;
  background-color: #ffffff;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  box-shadow: 0 0 10px white;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module35 .container .box:nth-child(even) .content::before {
    content: none;
  }
}

@media (min-width: 0px) and (max-width: 700px) {
  .module35 .container .box {
    flex-direction: column !important;
    gap: 30px;
  }
}

.module35 .container .box .avatar {
  text-align: center;
  width: 20%;
  flex-shrink: 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module35 .container .box .avatar {
    width: 80%;
  }
}

.module35 .container .box .avatar .imgBox {
  width: 50%;
  margin: auto;
  aspect-ratio: 1/1;
  border-radius: 200px;
  overflow: hidden;
  margin-bottom: 20px;
}

.module35 .container .box .avatar .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module35 .container .box .avatar .t1 {
  font-size: 20px;
  color: black;
  font-weight: bold;
}

.module35 .container .box .content {
  width: 56%;
  flex-shrink: 0;
  box-shadow: 0 0 10px #a0a0a0;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  background-color: #fff;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module35 .container .box .content {
    width: 96%;
    font-size: 14px;
  }
}

.module35 .container .box .content strong {
  font-size: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module35 .container .box .content strong {
    font-size: 16px;
  }
}

.module35 .container .box .null {
  width: 20%;
  flex-shrink: 0;
}

.module36 {
  padding: 80px 0;
  padding-top: 0px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module36 {
    padding: 40px 0;
  }
}

.module36 .container {
  max-width: 1400px;
}

.module36 .container .topBox {
  padding-top: 30px;
  position: relative;
  overflow: hidden;
}

.module36 .container .topBox::after {
  content: "";
  width: 250px;
  height: 250px;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
  border: 1px solid black;
  border-radius: 500px;
}

.module36 .container .topBox::before {
  content: "";
  width: 350px;
  height: 350px;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
  border: 1px solid #a1a1a1;
  border-radius: 500px;
}

.module36 .container .topBox p {
  text-align: center;
  margin-bottom: 3px;
  font-size: 26px;
  font-weight: bold;
}

.module36 .container .topBox .lineBox {
  position: relative;
  height: 200px;
}

.module36 .container .topBox .lineBox::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: black;
  border-radius: 50px;
  z-index: 3;
}

.module36 .container .topBox .lineBox .line {
  position: absolute;
  left: 50%;
  top: 0;
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #a7a7a7;
  z-index: 2;
}

.module36 .container ul li {
  display: grid;
  grid-template-columns: 45% 10% 45%;
}

.module36 .container ul li:nth-child(even) {
  direction: rtl;
}

.module36 .container ul li:nth-child(even) .content h3::after {
  left: none;
  right: 0;
}

.module36 .container ul li .imgBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 20px 0;
}

.module36 .container ul li .imgBox img {
  width: 80%;
  border-radius: 15px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module36 .container ul li .imgBox img {
    width: 100%;
  }
}

.module36 .container ul li .center {
  position: relative;
}

.module36 .container ul li .center::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #a7a7a7;
  z-index: 2;
}

.module36 .container ul li .center::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid black;
  border-radius: 50px;
  background-color: #fff;
  z-index: 3;
}

.module36 .container ul li .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.module36 .container ul li .content h3 {
  font-size: 30px;
  font-weight: bold;
  padding: 10px 0;
  border-bottom: 1px solid #b9b9b9;
  position: relative;
  margin-bottom: 30px;
}

.module36 .container ul li .content h3::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 15px;
  height: 3px;
  background-color: var(--color-Primary);
  left: 0;
  bottom: -2px;
}

.module36 .container .moreBtn {
  margin-top: 50px;
  text-align: center;
}

.module37 {
  padding: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module37 {
    padding: 40px 0;
  }
}

.module37 .container .tab_header {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0px;
  margin-bottom: 10px;
  padding: 5px 0;
  overflow-x: auto;
  background-color: transparent;
  position: static;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module37 .container .tab_header {
    justify-content: flex-start;
  }
}

.module37 .container .tab_header::-webkit-scrollbar {
  height: 0;
}

.module37 .container .tab_header .tabBtn {
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  width: 20%;
  max-width: 300px;
  text-align: center;
  color: black;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module37 .container .tab_header .tabBtn {
    width: auto;
  }
}

.module37 .container .tab_header .tabBtn button {
  padding: 5px 0;
  transition: all 0.3s;
  font-size: 18px;
  font-weight: bold;
}

.module37 .container .tab_header .tabBtn button:hover {
  color: var(--color-Primary);
  transform: translateY(-3px);
  box-shadow: 1px 1px 3px b5b5b5;
}

.module37 .container .tab_header .select button {
  color: var(--color-Primary);
}

.module37 .container .swiper {
  margin-top: 50px;
}

.module37 .container .swiper .swiper-wrapper {
  height: auto;
}

.module37 .container .content {
  padding: 20px;
  background-color: #fff;
  height: 100%;
}

.module37 .container .content ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module37 .container .content ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.module37 .container .content ul li:hover img {
  transform: scale(1.05);
}

.module37 .container .content ul li .imgBox {
  height: 300px;
  width: 100%;
  text-align: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module37 .container .content ul li .imgBox {
    height: 130px;
  }
}

.module37 .container .content ul li .imgBox img {
  max-width: 90%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
}

.module37 .container .content ul li p {
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  padding: 0 10%;
}

.module38 {
  height: calc(100vh - 80px);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module38 {
    height: 200px;
  }
}

.module38 .container {
  width: 100%;
  height: 100%;
}

.module38 .container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module39 {
  padding: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module39 {
    padding: 40px 0;
  }
}

.module39 .container .card {
  display: grid;
  grid-template-columns: 60% 40%;
  box-shadow: 0 0 10px #bbbbbb;
  overflow: hidden;
  border-radius: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module39 .container .card {
    grid-template-columns: 1fr;
  }
}

.module39 .container .card .left {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
}

.module39 .container .card .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module39 .container .card .left .playBtn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 144, 147, 0.8);
  border-radius: 50px;
  transition: all 0.5s;
}

.module39 .container .card .left .playBtn .icon {
  color: white;
  font-size: 24px;
}

.module39 .container .card .left .playBtn:hover {
  background-color: var(--color-Primary2);
}

.module39 .container .card .right {
  width: 100%;
  padding: 10%;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module39 .container .card .right {
    width: 100%;
    padding: 40px;
  }
}

.module39 .container .card .right::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  z-index: 2;
  background-color: var(--color-Primary2);
  transform: rotate(162deg);
  left: 25%;
  bottom: -17%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module39 .container .card .right::after {
    bottom: -25%;
  }
}

.module39 .container .card .right h3 {
  font-size: var(--text-h3);
  margin-bottom: 3px;
  font-weight: bold;
  color: var(--color-Primary);
  padding-bottom: 10px;
}

.module39 .container .card .right p {
  margin-top: 20px;
  line-height: 26px;
}

.module39 .container .card .right .btn {
  position: absolute;
  z-index: 3;
  right: 0px;
  bottom: 0px;
  cursor: pointer;
  padding: 20px;
}

.module40 {
  padding: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module40 {
    padding: 40px 0;
  }
}

.module40 > .container {
  padding: 0 10%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module40 > .container {
    padding: 0;
  }
}

.module40 > .container h3 {
  font-size: var(--text-h3);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.module40 > .container > .t1 {
  width: 80%;
  margin: auto;
  text-align: center;
}

.module40 > .container .box1 {
  margin: 50px 0;
  display: grid;
  grid-template-columns: 60% 40%;
  box-shadow: 0px 0px 10px #d3d3d3;
  border-radius: 15px;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module40 > .container .box1 {
    grid-template-columns: 1fr;
  }
}

.module40 > .container .box1:hover img {
  transform: scale(1.1);
}

.module40 > .container .box1 .imgBox {
  width: 100%;
  max-height: 450px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.module40 > .container .box1 .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.module40 > .container .box1 .content {
  padding: 10%;
}

.module40 > .container .box1 .content .date {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.module40 > .container .box1 .content .date::before {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px solid #bebebe;
}

.module40 > .container .box1 .content .date strong {
  font-size: 34px;
  color: var(--color-Primary);
}

.module40 > .container .box1 .content .t1 {
  margin: 20px 0;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

.module40 > .container .box1 .content .line {
  display: inline-block;
  width: 30px;
  height: 3px;
  background-color: #c0c0c0;
}

.module40 > .container .box1 .content .t2 {
  margin: 20px 0;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.module40 > .container .box1 .content .moreBtn .btn {
  background-color: transparent;
  border: 1px solid var(--color-Primary);
  color: var(--color-Primary);
}

.module40 > .container .box1 .content .moreBtn .btn:hover {
  background-color: var(--color-Primary);
  color: white;
}

.module40 > .container .box2 .moreBtn {
  margin-top: 50px;
  text-align: center;
}

.module41 {
  padding: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module41 {
    padding: 40px 0;
  }
}

.module41 > .container {
  padding: 0 10%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module41 > .container {
    padding: 0;
  }
}

.module41 > .container h3 {
  font-size: var(--text-h3);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.module41 > .container > .t1 {
  width: 80%;
  margin: auto;
  text-align: center;
}

.module41 > .container .box1 {
  margin: 50px 0;
  width: 100%;
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.module41 > .container .box1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  z-index: 2;
  opacity: 0.4;
  transition: all 0.5s;
}

.module41 > .container .box1:hover img {
  transform: scale(1.1);
}

.module41 > .container .box1:hover .icon {
  transform: translate(-50%, -50%) scale(1.3);
  color: var(--color-Primary);
}

.module41 > .container .box1 img {
  width: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: all 0.5s;
}

.module41 > .container .box1 .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: white;
  font-size: 60px;
  transition: all 0.5s;
}

.module41 > .container .box2 .moreBtn {
  margin-top: 50px;
  text-align: center;
}

.module42 .container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module42 .container ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 701px) and (max-width: 1200px) {
  .module42 .container ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.module42 .container ul li {
  border-radius: 15px;
  overflow: hidden;
  min-width: 250px;
  position: relative;
  box-shadow: 0px 0px 10px #d3d3d3;
}

.module42 .container ul li:hover img {
  transform: scale(1.1);
}

.module42 .container ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

.module42 .container ul li a .tag {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  color: white;
  font-size: 18px;
  line-height: 18px;
  background-color: var(--color-Primary);
  padding: 3px 10px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.module42 .container ul li a .tag strong {
  font-size: 24px;
  line-height: 24px;
}

.module42 .container ul li a .imgBox {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.module42 .container ul li a .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.module42 .container ul li a .box {
  background-color: #fff;
  padding: 20px;
}

.module42 .container ul li a .box h4 {
  height: 48px;
  line-height: 24px;
  font-size: 18px;
  font-weight: bold;
}

.module42 .container ul li a .box .line {
  display: inline-block;
  width: 30px;
  height: 1px;
  border: 1px solid #9e9e9e;
}

.module42 .container ul li a .box .t1 {
  margin: 20px 0;
  font-size: 14px;
  color: #494949;
}

.module42 .container ul li a .box .time {
  font-size: 14px;
  margin: 0;
}

.module43 .container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module43 .container ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.module43 .container ul li {
  width: 100%;
  height: 100%;
}

.module43 .container ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

.module43 .container ul li a .card {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.module43 .container ul li a .card:hover img {
  transform: scale(1.1);
}

.module43 .container ul li a .card:hover .icon {
  transform: translate(-50%, -50%) scale(1.3);
  color: var(--color-Primary);
}

.module43 .container ul li a .card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: black;
  opacity: 0.4;
}

.module43 .container ul li a .card img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  object-fit: cover;
}

.module43 .container ul li a .card .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: white;
  font-size: 60px;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module43 .container ul li a .card .icon {
    transform: translate(-50%, -50%) scale(0.6);
  }
}

.module43 .container ul li a p {
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module43 .container ul li a p {
    font-size: 14px;
  }
}

.module44 {
  padding: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module44 {
    padding: 40px 0;
  }
}

.module44 > .container {
  padding: 0 5%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module44 > .container {
    padding: 0;
  }
}

@media (min-width: 0px) and (max-width: 700px) {
  .module44 > .container .Pagination1 {
    justify-content: center;
  }
}

.module44 > .container .moreBtn {
  text-align: center;
}

.module45 {
  padding: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module45 {
    padding: 40px 0;
  }
}

.module45 > .container {
  padding: 0 5%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module45 > .container {
    padding: 0;
  }
}

.module45 > .container h3 {
  font-size: var(--text-h3);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.module45 > .container > .t1 {
  width: 80%;
  margin: auto;
  text-align: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module45 > .container > .t1 {
    width: 100%;
  }
}

.module45 > .container .tab_header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0px;
  margin-top: 50px;
  padding: 5px 0;
  margin-bottom: 30px;
  background-color: transparent;
  position: static;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module45 > .container .tab_header {
    justify-content: flex-start;
    gap: 5px;
  }
}

.module45 > .container .tab_header::-webkit-scrollbar {
  height: 0;
}

.module45 > .container .tab_header .tabBtn {
  cursor: pointer;
  padding: 0 20px;
  white-space: nowrap;
  text-align: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module45 > .container .tab_header .tabBtn {
    width: 100%;
  }
}

.module45 > .container .tab_header .tabBtn button {
  padding: 5px 0;
  transition: all 0.3s;
  font-size: 18px;
  font-weight: bold;
}

.module45 > .container .tab_header .tabBtn button:hover {
  color: var(--color-Primary);
  transform: translateY(-3px);
  box-shadow: 1px 1px 3px b5b5b5;
}

.module45 > .container .tab_header .select button {
  color: var(--color-Primary);
}

.module45 > .container .content {
  padding: 20px 10%;
  background-color: #fff;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module45 > .container .content {
    padding: 10px;
  }
}

.module46 {
  padding: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module46 {
    padding: 40px 0;
  }
}

.module46 .container h3 {
  font-size: 34px;
  font-weight: bold;
  margin: auto;
}

.module46 .container h3 p {
  margin: auto;
  text-align: center;
  width: 60%;
  min-width: 600px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module46 .container h3 p {
    width: 100%;
    min-width: 0px;
    font-size: 20px;
  }
}

.module46 .container .box {
  padding: 10px 0;
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  gap: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module46 .container .box {
    flex-direction: column;
    gap: 10px;
  }
}

.module46 .container .box a {
  margin: 0 5px;
  color: #7f7f7f;
}

.module46 .container .box a:hover {
  color: var(--color-Primary);
}

.module46 .container .content {
  padding: 0 10%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module46 .container .content {
    padding: 5px;
  }
}

.module46 .container .content p, .module46 .container .content h1, .module46 .container .content h2, .module46 .container .content h3, .module46 .container .content h4, .module46 .container .content h5, .module46 .container .content ol, .module46 .container .content div, .module46 .container .content ul {
  background-color: transparent !important;
}

.module46 .container .content video {
  width: 100%;
}

.module46 .container .content iframe {
  width: 100%;
  height: 70vh;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module46 .container .content iframe {
    height: 300px;
  }
}

.module46 .container .content img {
  height: auto !important;
}

.module46 .container .btnList {
  margin-top: 100px;
  display: flex;
}

.module46 .container .btnList .card {
  border: 1px solid black;
  padding: 5px 20px;
  border-radius: 15px;
}

.module46 .container .btnList a {
  display: block;
  margin: 10px 0;
}

.module47 .container {
  position: relative;
}

.module47 .container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  z-index: 2;
  opacity: 0.4;
  transition: all 0.5s;
}

.module47 .container .videoBox {
  width: 100%;
  height: 500px;
}

.module47 .container .videoBox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module47 .container .content {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 4;
  padding: 0 5%;
}

.module47 .container .content h3 {
  font-size: var(--text-h3);
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.module47 .container .content p {
  text-align: center;
  font-size: 18px;
  max-width: 900px;
  margin: 20px auto;
}

.module48 {
  padding: 80px 0;
  padding-bottom: 0;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module48 {
    padding: 40px 0;
  }
}

.module48 .container .title h3 {
  font-size: var(--text-h3);
  margin-bottom: 3px;
  color: black;
  font-weight: bold;
}

.module48 .container .title::after {
  content: "";
  margin-top: 5px;
  display: inline-block;
  width: 90px;
  border: 2px solid var(--color-Primary);
}

.module48 .container .content {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module48 .container .content {
    flex-direction: column;
  }
}

.module48 .container .content .left {
  width: 35%;
  flex-shrink: 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module48 .container .content .left {
    width: 100%;
  }
}

.module48 .container .content .left li {
  margin: 30px 0;
}

.module48 .container .content .left li .t1 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: var(--color-Primary);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module48 .container .content .left li .t1 {
    justify-content: center;
  }
}

.module48 .container .content .left li .t1 .icon {
  font-size: 28px;
}

.module48 .container .content .left li .t2 {
  margin-left: 40px;
  margin-bottom: 5px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module48 .container .content .left li .t2 {
    margin-left: 0;
    text-align: center;
  }
}

.module48 .container .content .right {
  width: calc(65% - 20px);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module48 .container .content .right {
    width: 100%;
  }
}

.module48 .container .content .right p {
  padding: 10px 60px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module48 .container .content .right p {
    padding: 10px;
  }
}

.module48 .container .content .right .swiperBox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.module48 .container .content .right .swiperBox button {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid var(--color-Primary);
  flex-shrink: 0;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module48 .container .content .right .swiperBox button {
    width: 35px;
    height: 35px;
  }
}

.module48 .container .content .right .swiperBox button:hover {
  background-color: var(--color-Primary);
}

.module48 .container .content .right .swiperBox button:hover .icon {
  color: white;
  transition: all 0.5s;
}

.module48 .container .content .right .swiperBox button .icon {
  font-size: 24px;
  color: var(--color-Primary);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module48 .container .content .right .swiperBox button .icon {
    font-size: 16px;
  }
}

.module48 .container .content .right .swiperBox .swiper-prev {
  transform: rotateY(180deg);
}

.module48 .container .content .right .swiperBox .swiper {
  width: 100%;
  padding-bottom: 30px;
}

.module48 .container .content .right .swiperBox .swiper .swiper-slide {
  width: 100%;
  height: 500px;
}

@media (min-width: 700px) and (max-width: 1200px) {
  .module48 .container .content .right .swiperBox .swiper .swiper-slide {
    height: 350px;
  }
}

@media (min-width: 0px) and (max-width: 700px) {
  .module48 .container .content .right .swiperBox .swiper .swiper-slide {
    height: 200px;
  }
}

.module48 .container .content .right .swiperBox .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module48 .container .content .right .swiperBox .swiper .swiper-pagination-bullet {
  opacity: 1;
}

.module48 .container .content .right .swiperBox .swiper .swiper-pagination-bullet-active {
  background-color: var(--color-Primary);
}

.module49 {
  padding: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module49 {
    padding: 40px 0;
  }
}

.module49 .container h3 {
  font-size: var(--text-h3);
  font-weight: bold;
  text-align: center;
}

.module49 .container ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  margin-top: 100px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module49 .container ul {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
    gap: 20px;
  }
}

.module49 .container ul li {
  text-align: center;
}

.module49 .container ul li img {
  max-width: 150px;
  object-fit: contain;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module49 .container ul li img {
    width: 50px;
    height: 50px;
  }
}

.module49 .container ul li p {
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module49 .container ul li p {
    font-size: 14px;
    margin-top: 10px;
  }
}

.module50 {
  padding: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module50 {
    padding: 40px 0;
  }
}

.module50 .container {
  padding: 0px 10%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module50 .container {
    padding: 0;
  }
}

.module50 .container h3 {
  text-align: center;
  font-size: var(--text-h3);
  font-weight: bold;
  margin-bottom: 30px;
  color: black;
}

.module50 .container p {
  text-align: center;
  font-size: 18px;
}

.module50 .container ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module50 .container ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 700px) and (max-width: 1200px) {
  .module50 .container ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

.module50 .container ul li {
  text-align: center;
  background-color: #f7f7f9;
  padding: 50px 20px;
  border-radius: 20px;
  box-shadow: 4px 4px 7px #e9e9e9;
  transition: all 0.5s;
}

.module50 .container ul li:hover {
  box-shadow: 4px 4px 10px #d1d1d1;
}

.module50 .container ul li:hover img {
  transform: scale(1.05);
}

.module50 .container ul li img {
  width: 80%;
  height: 80px;
  object-fit: contain;
  text-align: center;
  transition: all 0.5s;
}

.module50 .container ul li p {
  margin-top: 50px;
  font-size: 18px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module50 .container ul li p {
    margin-top: 20px;
  }
}

.module51 {
  padding: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module51 {
    padding: 40px 0;
  }
}

.module51 .container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module51 .container ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.module51 .container ul li:hover img {
  transform: scale(1.1);
}

.module51 .container ul li .imxBox {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.module51 .container ul li .imxBox img {
  width: 100%;
  transition: all 0.5s;
}

.module51 .container ul li h3 {
  margin: 20px 0;
  font-size: var(--text-h3);
  font-weight: bold;
}

.module51 .container ul li .list {
  width: 100%;
  border-bottom: 2px solid #959595;
  margin-top: 20px;
}

.module51 .container ul li .list button {
  width: 100%;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 18px;
  color: var(--color-Primary);
}

.module51 .container ul li .list button:hover {
  color: var(--color-Primary2);
}

.module51 .container ul li .list button p {
  margin: 0;
  text-align: left;
  font-weight: bold;
}

.module51 .container ul li .list button .icon {
  font-size: 14px;
  transform: rotate(0deg);
  transition: all 0.5s;
}

.module51 .container ul li .list .text {
  font-size: 16px;
  color: #4e4e4e;
  margin: 10px 0;
}

.module52 {
  padding: 80px 0;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module52 {
    padding: 40px 0;
  }
}

.module52 .container .box1 h3 {
  text-align: center;
  font-size: var(--text-h3);
  font-weight: bold;
}

.module52 .container .box1 p {
  width: 80%;
  margin: 30px auto;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module52 .container .box1 p {
    width: 100%;
  }
}

.module52 .container ul li {
  position: relative;
  padding: 0 10%;
  margin: 50px 0;
}

.module52 .container ul li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  z-index: 2;
  opacity: 0.7;
  transition: all 0.5s;
}

.module52 .container ul li:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  z-index: 2;
  opacity: 0.8;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module52 .container ul li {
    padding: 0 10px;
  }
}

.module52 .container ul li .content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 20px;
  padding: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module52 .container ul li .content {
    grid-template-columns: repeat(1, 1fr);
  }
}

.module52 .container ul li .content .imgBox {
  text-align: center;
}

.module52 .container ul li .content .imgBox img {
  max-height: 250px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module52 .container ul li .content .right {
    margin-top: 20px;
  }
}

.module52 .container ul li .content .right .title h3 {
  font-size: var(--text-h3);
  margin-bottom: 3px;
  font-weight: bold;
  color: white;
}

.module52 .container ul li .content .right .title::after {
  content: "";
  margin-top: 5px;
  display: inline-block;
  width: 90px;
  border: 1px solid var(--color-Primary);
}

.module52 .container ul li .content .right p {
  color: white;
  font-size: 16px;
  line-height: 30px;
  margin: 30px 0;
}

.module52 .container .btnlist {
  display: flex;
  align-items: center;
  gap: 20px;
}

.module53 {
  padding: 80px 0;
  background-color: #f3f3f3;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module53 {
    padding: 40px 0;
  }
}

.module53 .container h3 {
  text-align: center;
  font-size: var(--text-h3);
  font-weight: bold;
}

.module53 .container > p {
  width: 80%;
  margin: 30px auto;
  text-align: center;
}

.module53 .container ul {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  margin-top: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module53 .container ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 700px) and (max-width: 1200px) {
  .module53 .container ul {
    grid-template-columns: repeat(5, 1fr);
  }
}

.module53 .container ul li {
  border: 1px solid #7a7a7a;
  padding: 15% 0;
  text-align: center;
  margin-right: -1px;
  margin-bottom: -1px;
}

.module53 .container ul li .imgBox {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
}

.module53 .container ul li .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.module53 .container ul li p {
  color: black;
  margin: 0;
}

.module54 {
  padding: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module54 {
    padding: 40px 0;
  }
}

.module54 .container h3 {
  text-align: center;
  font-size: var(--text-h3);
  font-weight: bold;
}

.module54 .container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module54 .container ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.module54 .container ul li {
  padding: 15% 10%;
  width: 100%;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module54 .container ul li {
    padding: 20px;
  }
}

.module54 .container ul li:nth-child(odd) {
  background-color: #eaeaea;
}

.module54 .container ul li:nth-child(odd):hover {
  background-color: #f7f7f7;
}

.module54 .container ul li:nth-child(even) {
  background-color: #f7f7f7;
}

.module54 .container ul li:nth-child(even):hover {
  background-color: #eaeaea;
}

.module54 .container ul li .t1 {
  font-size: 22px;
  font-weight: bold;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module54 .container ul li .t1 {
    font-size: 18px;
  }
}

.module54 .container ul li .t2 {
  font-size: 18px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module54 .container ul li .t2 {
    font-size: 16px;
  }
}

.module54 .container ul li .t3 {
  width: 60%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module54 .container ul li .t3 {
    width: 100%;
  }
}

.module55 {
  padding: 80px 0;
  background-color: #f3f3f3;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module55 {
    padding: 40px 0;
  }
}

.module55 .container h3 {
  text-align: center;
  font-size: var(--text-h3);
  font-weight: bold;
}

.module55 .container > p {
  width: 80%;
  margin: 30px auto;
}

.module55 .container .cardList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3%;
  margin-top: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module55 .container .cardList {
    grid-template-columns: repeat(2, 1fr);
  }
}

.module55 .container .cardList .card {
  padding: 15% 10%;
  width: 100%;
  background-color: white;
  text-align: center;
  transition: all 0.5s;
}

.module55 .container .cardList .card:hover {
  transform: translateY(-10px);
  box-shadow: 1px 1px 15px lightgray;
}

.module55 .container .cardList .card img {
  width: 30%;
  min-width: 60px;
  max-width: 100px;
}

.module55 .container .cardList .card .t1 {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: bold;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module55 .container .cardList .card .t1 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.module55 .container .cardList .card .t2 {
  font-size: 18px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module55 .container .cardList .card .t2 {
    font-size: 14px;
  }
}

.module56 {
  padding: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module56 {
    padding: 40px 0;
  }
}

.module56 .container .tab_header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #616161;
  padding: 10px;
  flex-wrap: wrap;
  gap: 5%;
  margin-bottom: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module56 .container .tab_header {
    gap: 5px 30px;
  }
}

.module56 .container .tab_header .tabBtn {
  color: white;
  text-align: center;
  padding: 5px 0;
  margin-bottom: -1px;
  margin-right: -1px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}

.module56 .container .tab_header .tabBtn:hover {
  color: var(--color-Primary);
}

.module56 .container .tab_header .select {
  border-bottom: 2px solid var(--color-Primary);
}

.module56 .container .contentBox {
  box-sizing: border-box;
  min-height: 300px;
}

.module56 .container .contentBox .content {
  display: none;
}

.module56 .container .contentBox .content img {
  max-width: 100%;
}

.module56 .container .contentBox .content .box1 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module56 .container .contentBox .content .box1 ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.module56 .container .contentBox .content .box1 ul .card {
  box-shadow: 0 0 10px #dadada;
  border-radius: 10px;
  position: relative;
  background-color: white;
}

.module56 .container .contentBox .content .box1 ul .card:hover:has(.img2) .img1 {
  display: none;
}

.module56 .container .contentBox .content .box1 ul .card:hover:has(.img2) .img2 {
  display: block;
}

.module56 .container .contentBox .content .box1 ul .card .img2 {
  display: none;
}

.module56 .container .contentBox .content .box1 ul .card .tag {
  background-color: var(--color-Primary);
  color: white;
  padding: 3px 15px;
  font-size: 14px;
  border-radius: 50px;
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 2;
}

.module56 .container .contentBox .content .box1 ul .card a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.module56 .container .contentBox .content .box1 ul .card a img {
  height: 200px;
  width: 100%;
  padding: 15px;
  object-fit: contain;
  transition: all 0.5s;
  margin-bottom: 10px;
}

.module56 .container .contentBox .content .box2 {
  margin: 50px 0;
}

.module56 .container .contentBox .content .box2 ul li {
  box-sizing: border-box;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid #dadada;
  display: flex;
  gap: 20px;
}

.module56 .container .contentBox .content .box2 ul li .imgBox {
  width: 15%;
  min-width: 100px;
  flex-shrink: 0;
  cursor: pointer;
  overflow: hidden;
}

.module56 .container .contentBox .content .box2 ul li .imgBox:hover img {
  transform: scale(1.1);
}

.module56 .container .contentBox .content .box2 ul li .imgBox img {
  width: 100%;
  object-fit: cover;
  transition: all 1s;
}

.module56 .container .contentBox .content .box2 ul li .rightBox {
  width: 100%;
}

.module56 .container .contentBox .content .box2 ul li .t1 {
  font-size: 22px;
  margin-bottom: 15px;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  display: grid;
}

.module56 .container .contentBox .content .box2 ul li .t1 a {
  display: block;
  width: 100%;
}

.module56 .container .contentBox .content .box2 ul li .t2 {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 24px;
  height: 48px;
}

.module56 .container .contentBox .content .box2 ul li button:hover .icon {
  transform: translateX(10px);
}

.module56 .container .contentBox .content .box2 ul li button .icon {
  color: var(--color-Primary2);
  font-weight: bold;
  display: inline-block;
  transition: all 0.5s;
}

.module57 .container {
  width: 100%;
}

.module57 .container iframe {
  width: 100%;
}

.module {
  padding: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module {
    padding: 40px 0;
  }
}

.module58 .container {
  position: relative;
}

.module58 .container img {
  width: 100%;
}

.module58 .container .title {
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 30px;
  width: 50%;
  min-width: 300px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module58 .container .title {
    position: static;
    transform: none;
    padding: 10px 0;
    font-size: 24px;
    width: 100%;
    padding: 0 20px;
    padding: 30px 0;
  }
}
