@charset "UTF-8";
:root {
  --title_size: 70px;
}

@media (min-width: 0px) and (max-width: 700px) {
  :root {
    --title_size: 50px;
  }
}

.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;
  transition: all 0.5s;
}

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

.arrow:hover::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--color-Primary2);
  transition: all 0.5s;
}

.arrow:hover::before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  transform: rotate(45deg);
  transform-origin: right;
  display: block;
  width: 8px;
  border-bottom: 1px solid var(--color-Primary2);
  transition: all 0.5s;
}

.message-container {
  position: fixed;
  top: 20px;
  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;
}

.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;
}

.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;
}

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

.Pagination5 a {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  margin: 0 3px;
}

.Pagination5 a:first-child {
  border-radius: 5px 0 0 5px;
}

.Pagination5 a:last-child {
  border-radius: 0 5px 5px 0;
}

.Pagination5 .select {
  background-color: var(--color-Primary);
  color: white;
}

.Pagination5 .switchBtn {
  border: 1px solid #979797;
  border-radius: 50px !important;
  margin: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Pagination5 .switchBtn:hover {
  background-color: var(--color-Primary);
  color: white;
}

header {
  width: 100%;
  font-size: 1rem;
  position: fixed;
  left: 0;
  transition: all 0.3s;
  top: 0px;
  z-index: 99;
}

header .headerbox {
  height: 100%;
  max-width: none !important;
}

header .header_left {
  height: 100%;
  display: flex;
  align-items: center;
}

header .header_left .logo {
  height: 65px;
  object-fit: contain;
}

header .header_right {
  display: flex;
  gap: 50px;
}

header .header_right a {
  display: inline-block;
}

header .header_right .tabBtn {
  cursor: pointer;
  display: block;
  height: var(--header-height);
  line-height: var(--header-height);
  transition: all 0.3s;
}

header .header_right .tabBtn .title {
  font-size: 1rem;
  width: 100%;
  white-space: nowrap;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
}

header .header_right .tabBtn .title:hover a,
header .header_right .tabBtn .title:hover .icon {
  color: var(--color-Primary2);
}

header .header_right .tabBtn .title a {
  color: white;
}

header .header_right .tabBtn .title .icon {
  margin-left: 5px;
  font-size: 14px;
}

header .header_right .tabBtn .title .i1 {
  font-size: 20px;
}

header .header_right .tabBtn .downMenu {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100%;
  max-height: 80vh;
  overflow: auto;
  background-color: white;
  visibility: hidden;
  transform: translate(-50%, 50px);
  transition: all 0.3s;
  opacity: 0;
  padding: 50px;
  box-shadow: 1px 1px 10px #dddddd;
}

header .header_right .tabBtn .downMenu ul {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  max-width: 1400px;
  margin: auto;
}

header .header_right .tabBtn .downMenu ul li {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  width: 300px;
}

header .header_right .tabBtn .downMenu ul li .imgBox {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 200px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

header .header_right .tabBtn .downMenu ul li .imgBox:hover img {
  transform: scale(1.1);
}

header .header_right .tabBtn .downMenu ul li .imgBox::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-image: linear-gradient(to top, black, transparent);
}

header .header_right .tabBtn .downMenu ul li .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s;
}

header .header_right .tabBtn .downMenu ul li .imgBox h3 {
  position: absolute;
  max-width: calc(100% - 40px);
  display: inline-block;
  left: 20px;
  bottom: 20px;
  font-size: 30px;
  color: white;
  z-index: 2;
}

header .header_right .tabBtn .downMenu ul li .imgBox h3::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 17px;
  background-color: var(--color-Primary2);
  bottom: 0;
  left: 0;
  z-index: -1;
}

header .header_right .tabBtn .downMenu ul li .t1 {
  font-size: 18px;
  font-weight: bold;
  color: black;
  padding: 20px 0;
  display: none;
}

@media (min-width: 0px) and (max-width: 700px) {
  header .header_right .tabBtn .downMenu ul li .t1 {
    display: block;
  }
}

header .header_right .tabBtn .downMenu ul li .t1 a {
  line-height: 24px;
}

header .header_right .tabBtn .downMenu ul li .t1 .icon {
  display: none;
}

header .header_right .tabBtn .downMenu ul li .childrenBox a {
  display: block;
  line-height: 20px;
  padding: 10px 0;
  transition: all 0.5s;
  color: #5c5c5c;
  font-weight: bold;
}

header .header_right .tabBtn .downMenu ul li .childrenBox a:hover {
  color: var(--color-Primary) !important;
  transform: translateX(10px);
  border-bottom: 2px solid var(--color-Primary);
}

header .header_right .tabBtn .downMenu ul li .childrenBox .navBox .nav1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  line-height: 1;
  gap: 10%;
}

header .header_right .tabBtn .downMenu ul li .childrenBox .navBox .nav1 a {
  width: 100%;
  text-align: left;
  font-weight: bold;
}

header .header_right .tabBtn .downMenu ul li .childrenBox .navBox .nav1 .icon {
  background-color: #092E48;
  padding: 3px;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s;
}

header .header_right .tabBtn .downMenu ul li .childrenBox .navBox .nav1 .icon:hover {
  padding: 3px 10px;
}

header .header_right .tabBtn .downMenu ul li .childrenBox .navBox .nav1 .icon2 {
  display: none;
}

header .header_right .tabBtn .downMenu ul li .childrenBox .navBox .childrenBox2 {
  padding: 10px;
  background-color: #f3f3f3;
  display: none;
}

header .header_right .tabBtn .downMenu ul li .childrenBox .navBox .childrenBox2 a {
  font-size: 14px;
  font-weight: 500;
  color: #868686;
}

header .header_right .tabBtn:hover .downMenu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0px);
}

header .header_right .tabBtn .languagedownMenu {
  position: absolute;
  left: 50%;
  top: 100%;
  width: auto;
  background-color: white;
  text-align: left;
  visibility: hidden;
  transform: translate(-50%, 50px);
  transition: all 0.5s;
  opacity: 0;
}

header .header_right .tabBtn .languagedownMenu .tablistBtn {
  color: black;
  display: block;
  white-space: nowrap;
  padding: 0 20px;
  line-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.158);
}

header .header_right .tabBtn .languagedownMenu .tablistBtn:hover {
  background-color: var(--color-Primary);
  color: white;
}

header .header_right .tabBtn:hover .languagedownMenu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0px);
}

header .header_right .select {
  color: var(--color-Primary2);
  font-weight: bold;
}

header .header_right .select .title a {
  color: var(--color-Primary2) !important;
  font-weight: bold;
}

header .header_right .select .title .icon {
  color: var(--color-Primary2) !important;
}

header .header_right .languageBox {
  position: relative;
}

header .header_search_page {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}

header .header_search_page .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

header .header_search_page .inputBox {
  display: flex;
  align-items: center;
  z-index: 3;
}

header .header_search_page .inputBox input {
  width: 60vw;
  font-size: 1.2rem;
  line-height: 2rem;
  padding: 10px;
}

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

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

header .searchBtn .icon {
  color: white;
}

header .searchBtn .icon:hover {
  color: #ed2c41;
}

header .mobileBtnlist .menuBtn {
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding-left: 15px;
  padding-right: 5px;
}

header .header_sidebar {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  z-index: 999;
  background-color: white;
  box-shadow: -1px 0px 9px #e9e9e9;
  transition: all 0.6s;
}

header .header_sidebar .closeBox {
  text-align: right;
}

header .header_sidebar .closeBox .closeSidbar {
  font-size: 30px;
  padding: 15px;
  display: inline-block;
}

header .header_sidebar .mobileTabList .tabBtn {
  width: 100%;
  padding: 0 20px;
}

header .header_sidebar .mobileTabList .tabBtn .title {
  width: 100%;
  padding: 15px 0;
  font-size: 18px;
  font-weight: bold;
  display: block;
  display: flex;
  justify-content: space-between;
}

header .header_sidebar .mobileTabList .tabBtn .title .icon {
  margin-left: 5px;
  font-size: 20px;
}

header .header_sidebar .mobileTabList .tabBtn .downMenu {
  display: none;
  background-color: #fafafa;
  max-height: 60vh;
  padding: 20px;
  overflow: auto;
}

header .header_sidebar .mobileTabList .tabBtn .downMenu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

header .header_sidebar .mobileTabList .tabBtn .downMenu ul li {
  text-transform: uppercase;
}

header .header_sidebar .mobileTabList .tabBtn .downMenu ul li .imgBox {
  display: none;
}

header .header_sidebar .mobileTabList .tabBtn .downMenu ul li .t1 {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: black;
  display: flex;
  align-content: center;
  justify-content: space-between;
  padding: 5px 0;
}

header .header_sidebar .mobileTabList .tabBtn .downMenu ul li .childrenBox {
  display: none;
}

header .header_sidebar .mobileTabList .tabBtn .downMenu ul li .childrenBox a {
  display: block;
  padding: 10px 20px;
  color: #616161;
  font-size: 14px;
}

header .header_sidebar .mobileTabList .tabBtn .downMenu ul li .childrenBox .navBox .nav1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  line-height: 1;
  gap: 10%;
}

header .header_sidebar .mobileTabList .tabBtn .downMenu ul li .childrenBox .navBox .nav1 a {
  width: 100%;
  text-align: left;
}

header .header_sidebar .mobileTabList .tabBtn .downMenu ul li .childrenBox .navBox .nav1 .icon {
  background-color: #092E48;
  padding: 3px;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s;
}

header .header_sidebar .mobileTabList .tabBtn .downMenu ul li .childrenBox .navBox .nav1 .icon:hover {
  padding: 3px 10px;
}

header .header_sidebar .mobileTabList .tabBtn .downMenu ul li .childrenBox .navBox .nav1 .icon2 {
  display: none;
}

header .header_sidebar .mobileTabList .tabBtn .downMenu ul li .childrenBox .navBox .childrenBox2 {
  padding: 10px;
  background-color: #f3f3f3;
  margin-left: 20px;
}

header .header_sidebar .mobileTabList .tabBtn .downMenu ul li .childrenBox .navBox .childrenBox2 a {
  font-size: 14px;
  font-weight: 500;
  color: #868686;
  line-height: 30px;
}

header .header_language_box {
  display: none;
  position: absolute;
  z-index: 3;
  background-color: #ffffff;
  width: 100%;
  box-shadow: 0 1px 5px #e6e6e6;
}

header .header_language_box .tablistBtn {
  width: 100%;
  display: block;
  text-align: center;
  padding: 15px 0;
}

@media screen and (max-width: 700px) {
  header .headerbox {
    width: 95%;
  }
  header .header_right {
    display: none;
  }
  header .header_search_page .inputBox input {
    width: 60vw;
  }
  header .header_left .logo {
    max-width: 80px;
  }
}

@media screen and (min-width: 700px) {
  header .mobileBtnlist {
    display: none;
  }
}

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

@media (min-width: 0px) and (max-width: 700px) {
  .module1 .container .swiper {
    height: 60vh;
  }
}

.module1 .container .swiper .swiper-slide {
  position: relative;
}

.module1 .container .swiper .swiper-slide::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;
}

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

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

.module1 .container .swiper .swiper-slide .content {
  z-index: 3;
  color: white;
  width: 80%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module1 .container .swiper .swiper-slide .content {
    width: 94%;
  }
}

.module1 .container .swiper .swiper-slide .content h3 {
  font-size: 120px;
  text-align: left;
  margin-bottom: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module1 .container .swiper .swiper-slide .content h3 {
    font-size: 50px;
  }
}

@media (min-width: 1100px) and (max-width: 1400px) {
  .module1 .container .swiper .swiper-slide .content h3 {
    font-size: 90px;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .module1 .container .swiper .swiper-slide .content h3 {
    font-size: 70px;
  }
}

.module1 .container .swiper .swiper-slide .content p {
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module1 .container .swiper .swiper-slide .content p {
    font-size: 20px;
  }
}

.module1 .container .swiper .swiper-slide .content p::before {
  content: "";
  display: inline-block;
  width: 10%;
  height: 3px;
  background-color: white;
}

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

.module1 .container .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  border-radius: 0;
  opacity: 0.4;
  background-color: white;
  transition: all 0.5s;
}

.module1 .container .swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 60px;
}

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

.module2 .container {
  display: flex;
  gap: 10%;
}

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

.module2 .container .leftBox {
  width: 40%;
  flex-shrink: 0;
}

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

.module2 .container .leftBox h2 {
  font-size: 90px;
  font-weight: bold;
  color: black;
  margin-bottom: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module2 .container .leftBox h2 {
    font-size: 50px;
  }
}

.module2 .container .rightBox {
  width: 50%;
  flex-shrink: 0;
}

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

.module2 .container .rightBox h4 {
  font-size: 24px;
  letter-spacing: 2px;
  color: black;
  margin-bottom: 20px;
  font-family: Anton, Druk Wide, Helvetica Neue, Arial, sans-serif;
  text-transform: uppercase;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module2 .container .rightBox h4 {
    font-size: 18px;
  }
}

.module2 .container .rightBox p {
  font-size: 16px;
  margin: 20px 0;
  color: var(--color-Content);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module2 .container .rightBox p {
    font-size: 16px;
  }
}

.module2 .container .rightBox button {
  background-color: var(--color-Primary);
  padding: 10px 25px;
  color: white;
  font-weight: bold;
  transition: all 0.5s;
}

.module2 .container .rightBox button:hover {
  background-color: var(--color-Primary2);
}

.module3 {
  padding: 80px 0;
}

.module3 .container h3 {
  font-size: var(--title_size);
  text-align: center;
  color: white;
  font-weight: bold;
}

.module3 .container ul {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.module3 .container ul li {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.module3 .container ul li::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;
}

.module3 .container ul li:hover img {
  transform: scale(1.1);
}

.module3 .container ul li:hover p {
  color: var(--color-Primary2) !important;
}

.module3 .container ul li:hover .arrow {
  transform: translateX(10px);
}

.module3 .container ul li:hover .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--color-Primary2);
  transition: all 0.5s;
}

.module3 .container ul li: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-Primary2);
  transition: all 0.5s;
}

.module3 .container ul li:hover::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;
}

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

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

.module3 .container ul li a .content {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.module3 .container ul li a .content p {
  font-size: 32px;
  color: white;
  font-family: Anton, Druk Wide, Helvetica Neue, Arial, sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module3 .container ul li a .content p {
    font-size: 20px;
  }
}

.module3 .container ul li a .content .arrow {
  width: 60px;
  transition: all 0.5s;
}

.module4 {
  margin: 80px 0;
  overflow: hidden;
}

.module4 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.module4 .container .t1 {
  text-align: center;
}

.module4 .container .swiper {
  margin-top: 80px;
}

.module4 .container .swiper .swiper-wrapper {
  height: 600px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4 .container .swiper .swiper-wrapper {
    height: 500px;
  }
}

.module4 .container .swiper .swiper-wrapper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.module4 .container .swiper .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.5s;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  background-image: -webkit-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

.module4 .container .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.module4 .container .swiper .swiper-wrapper .swiper-slide .content {
  width: 100%;
  height: 100%;
  z-index: 3;
  padding: 10%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4 .container .swiper .swiper-wrapper .swiper-slide .content {
    padding: 5% 7%;
    padding-bottom: 70px;
  }
}

.module4 .container .swiper .swiper-wrapper .swiper-slide .content h4 {
  font-size: 50px;
  color: white;
  font-weight: bold;
  transform: translateY(50px);
  transition: all 0.6s;
  margin-top: 0;
  padding-top: 0;
  text-transform: uppercase;
  font-family: 'Anton';
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.module4 .container .swiper .swiper-wrapper .swiper-slide .content p {
  transition: all 1s ease-in-out 0.1s;
  visibility: hidden;
  opacity: 0;
  height: 0%;
  overflow: auto;
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  line-height: 22px;
}

.module4 .container .swiper .swiper-wrapper .swiper-slide .content p::-webkit-scrollbar {
  width: 0;
}

.module4 .container .swiper .swiper-wrapper .swiper-slide .content button {
  visibility: hidden;
  transition: all 1s ease 0.2s;
  transform: translateY(100px);
  background-color: var(--color-Primary);
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.5s;
}

.module4 .container .swiper .swiper-wrapper .swiper-slide .content button:hover {
  background-color: var(--color-Primary2);
}

.module4 .container .swiper .swiper-wrapper .swiper-slide-active::after {
  opacity: 1;
}

.module4 .container .swiper .swiper-wrapper .swiper-slide-active img {
  transform: scale(1.1);
}

.module4 .container .swiper .swiper-wrapper .swiper-slide-active .content h4 {
  transform: translateY(0px);
}

.module4 .container .swiper .swiper-wrapper .swiper-slide-active .content p {
  visibility: visible;
  opacity: 1;
  height: 80%;
  padding-top: 10px;
}

.module4 .container .swiper .swiper-wrapper .swiper-slide-active .content button {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.module4 .container .swiper .swiper-button-next,
.module4 .container .swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50px;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4 .container .swiper .swiper-button-next,
  .module4 .container .swiper .swiper-button-prev {
    top: auto;
    bottom: 10px !important;
  }
}

.module4 .container .swiper .swiper-button-next:hover,
.module4 .container .swiper .swiper-button-prev:hover {
  background-color: var(--color-Primary);
}

.module4 .container .swiper .swiper-button-next:hover::after,
.module4 .container .swiper .swiper-button-prev:hover::after {
  color: white;
}

.module4 .container .swiper .swiper-button-next:after,
.module4 .container .swiper .swiper-button-prev:after {
  font-size: 20px;
  color: black;
  transition: all 0.5s;
}

.module4 .container .swiper .swiper-button-prev {
  left: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4 .container .swiper .swiper-button-prev {
    left: 10px;
  }
}

.module4 .container .swiper .swiper-button-next {
  right: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4 .container .swiper .swiper-button-next {
    right: 10px;
  }
}

.module5 {
  margin: 80px 0;
  overflow: hidden;
}

.module5 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.module5 .container .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10%;
  min-height: 450px;
  margin-top: 80px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module5 .container .content {
    grid-template-columns: repeat(1, 1fr);
    flex-direction: column-reverse;
  }
}

.module5 .container .content .leftBox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.module5 .container .content .leftBox h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.module5 .container .content .leftBox p {
  line-height: 30px;
  margin: 30px 0;
}

.module5 .container .content .leftBox .bottom button {
  background-color: var(--color-Primary);
  color: white;
  font-weight: bold;
  padding: 10px 15px;
  transition: all 0.5s;
}

.module5 .container .content .leftBox .bottom button:hover {
  background-color: var(--color-Primary2);
}

.module5 .container .content .leftBox .bottom img {
  margin-left: 30%;
  object-fit: contain;
}

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

.module5 .container .content .rightBox .imgBox {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(50vw - 5%);
  max-width: 1000px;
  height: 100%;
  z-index: 2;
  display: block;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module5 .container .content .rightBox .imgBox {
    position: static;
    width: 100%;
  }
}

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

.module6 {
  padding: 80px 0;
}

.module6 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  color: white;
  margin-bottom: 20px;
}

.module6 .container > p {
  color: white;
  width: 60%;
  margin: auto;
  text-align: center;
}

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

.module6 .container .swiper {
  padding-top: 20px;
  margin-top: 80px;
  padding-bottom: 50px;
}

.module6 .container .swiper .swiper-wrapper {
  height: auto;
}

.module6 .container .swiper .swiper-slide .card {
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
}

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

.module6 .container .swiper .swiper-slide .card:hover .content .arrow {
  transform: translateX(10px);
}

.module6 .container .swiper .swiper-slide .card:hover .content .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--color-Primary2);
  transition: all 0.5s;
}

.module6 .container .swiper .swiper-slide .card:hover .content .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-Primary2);
  transition: all 0.5s;
}

.module6 .container .swiper .swiper-slide .card .detailBox {
  display: none;
}

.module6 .container .swiper .swiper-slide .card img {
  width: 100%;
}

.module6 .container .swiper .swiper-slide .card .content {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 2;
  padding: 20px;
  color: white;
  background-image: linear-gradient(to top, black, transparent);
  background-image: -webkit-linear-gradient(to top, black, transparent);
  background-image: -moz-linear-gradient(to top, black, transparent);
  background-image: -o-linear-gradient(to top, black, transparent);
}

.module6 .container .swiper .swiper-slide .card .content h4 {
  font-size: 22px;
  font-weight: bold;
  margin: 3px 0;
}

.module6 .container .swiper .swiper-slide .card .content p {
  margin-bottom: 30px;
}

.module6 .container .swiper .swiper-slide .card .content .arrow {
  width: 50px;
}

.module6 .container .swiper .scrollbar_button {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
}

.module6 .container .swiper .scrollbar_button .swiper-scrollbar {
  position: static;
  width: 50%;
  background-color: #696867;
  border-radius: 0px;
}

.module6 .container .swiper .scrollbar_button .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #fff;
  border-radius: 0px;
}

.module6 .container .swiper .scrollbar_button .btnlist {
  display: flex;
  align-items: center;
  gap: 20px;
}

.module6 .container .swiper .scrollbar_button .btnlist button {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  border: 1px solid #0491ba;
  transition: all 0.5s;
}

.module6 .container .swiper .scrollbar_button .btnlist button:hover {
  background-color: #0491ba;
}

.module6 .container .swiper .scrollbar_button .btnlist button:hover .icon {
  color: white;
}

.module6 .container .swiper .scrollbar_button .btnlist button .icon {
  color: #0491ba;
  font-weight: bold;
  font-size: 20px;
  transition: all 0.5s;
}

.module6 .container .swiper .scrollbar_button .btnlist .swiper-button-disabled {
  border: 1px solid #0c4063;
}

.module6 .container .swiper .scrollbar_button .btnlist .swiper-button-disabled .icon {
  color: #0c4063;
}

.module6 .mask {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  opacity: 0.4;
  z-index: 198;
  display: none;
}

.module6 .Popup_fullBox4 {
  position: fixed;
  right: -100%;
  top: 0%;
  width: 50vw;
  height: 100%;
  z-index: 199;
  background-color: #ffffff;
  transition: all 1s;
  overflow: hidden;
  visibility: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module6 .Popup_fullBox4 {
    width: 100%;
  }
}

.module6 .Popup_fullBox4 .content {
  width: 100%;
  height: 100%;
  padding: 7%;
  padding-top: 100px;
}

.module6 .Popup_fullBox4 .content::before {
  content: "";
  position: absolute;
  left: -187px;
  top: -31px;
  width: 400px;
  height: 100px;
  transform: rotate(-52deg);
  background-color: #9f0f27;
}

.module6 .Popup_fullBox4 .content .detailBox {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.module6 .Popup_fullBox4 .content .detailBox .box1 {
  display: flex;
  gap: 20px;
}

.module6 .Popup_fullBox4 .content .detailBox .box1 img {
  height: 300px;
  object-fit: contain;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module6 .Popup_fullBox4 .content .detailBox .box1 img {
    height: 200px;
  }
}

.module6 .Popup_fullBox4 .content .detailBox .box1 .rBox {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.module6 .Popup_fullBox4 .content .detailBox .box1 .rBox .t1 {
  font-weight: bold;
  font-size: 24px;
  display: inline-block;
  position: relative;
}

.module6 .Popup_fullBox4 .content .detailBox .box1 .rBox .t1::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 14px;
  background-color: var(--color-Primary2);
  bottom: 0;
  left: 0;
  z-index: -1;
}

.module6 .Popup_fullBox4 .content .detailBox .box1 .rBox .t2 {
  font-size: 14px;
  padding: 5px 0;
}

.module6 .Popup_fullBox4 .content .detailBox .box2 {
  overflow: auto;
  margin: 30px 0;
  overscroll-behavior: contain;
}

.module6 .Popup_fullBox4 .content .detailBox .box2 p {
  font-weight: bold;
}

.module6 .Popup_fullBox4 .content .detailBox .box2 .t1 {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.module6 .Popup_fullBox4 .content .detailBox .box2 .t1::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #dbdbdb;
  border-radius: 50px;
  flex-shrink: 0;
}

.module6 .Popup_fullBox4 .closeBtn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
  padding: 10px;
  transition: all 0.6s;
}

.module6 .Popup_fullBox4 .closeBtn .icon {
  font-size: 26px;
}

.module7 {
  padding: 80px 0;
}

.module7 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.module7 .container .swiper {
  padding-top: 20px;
  margin-top: 80px;
  padding-bottom: 50px;
}

.module7 .container .swiper .swiper-wrapper {
  height: auto;
}

.module7 .container .swiper .swiper-slide {
  position: relative;
  text-align: center;
}

.module7 .container .swiper .swiper-slide:hover img {
  transform: scale(1.1) !important;
}

.module7 .container .swiper .swiper-slide:hover .content {
  background-color: var(--color-Primary);
}

.module7 .container .swiper .swiper-slide:hover .content .t1 {
  color: white;
}

.module7 .container .swiper .swiper-slide:hover .content .times {
  color: white;
}

.module7 .container .swiper .swiper-slide:hover .content .arrow {
  transform: translateX(10px);
}

.module7 .container .swiper .swiper-slide:hover .content .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--color-Primary2);
  transition: all 0.5s;
}

.module7 .container .swiper .swiper-slide:hover .content .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-Primary2);
  transition: all 0.5s;
}

.module7 .container .swiper .swiper-slide a {
  width: 100%;
}

.module7 .container .swiper .swiper-slide a .imgBox {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.module7 .container .swiper .swiper-slide a .content {
  background-color: #dde3eb;
  padding: 20px;
  transition: all 0.5s;
  text-align: left;
}

.module7 .container .swiper .swiper-slide a .content .t1 {
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
  text-align: left;
  height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
  transition: all 0.5s;
}

.module7 .container .swiper .swiper-slide a .content .times {
  display: flex;
  justify-content: space-between;
  transition: all 0.5s;
  align-items: center;
}

.module7 .container .swiper .swiper-slide a .content .times p {
  color: #535353;
}

.module7 .container .swiper .scrollbar_button {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
}

.module7 .container .swiper .scrollbar_button .swiper-scrollbar {
  position: static;
  width: 50%;
  border-radius: 0px;
}

.module7 .container .swiper .scrollbar_button .swiper-scrollbar .swiper-scrollbar-drag {
  border-radius: 0px;
}

.module7 .container .swiper .scrollbar_button .btnlist {
  display: flex;
  align-items: center;
  gap: 20px;
}

.module7 .container .swiper .scrollbar_button .btnlist button {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  border: 1px solid #0491ba;
}

.module7 .container .swiper .scrollbar_button .btnlist button .icon {
  color: #0491ba;
  font-weight: bold;
  font-size: 20px;
}

.module7 .container .swiper .scrollbar_button .btnlist .swiper-button-disabled {
  border: 1px solid #cdcdcd;
}

.module7 .container .swiper .scrollbar_button .btnlist .swiper-button-disabled .icon {
  color: #cdcdcd;
}

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

.module7 .container .btnBox button {
  background-color: var(--color-Primary);
  color: white;
  padding: 8px 25px;
  border-radius: 50px;
  transition: all 0.5s;
}

.module7 .container .btnBox button:hover {
  padding: 8px 35px;
}

footer {
  padding: 80px 0;
  background-color: var(--color-Primary);
  padding-bottom: 20px;
}

footer .container ul {
  display: flex;
  justify-content: space-between;
  gap: 3%;
}

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

footer .container ul li {
  min-width: 18%;
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .container ul li .img {
    width: 120px;
  }
}

footer .container ul li p {
  color: white;
}

footer .container ul li .share {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .container ul li .share a {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .container ul li .share a .icon {
  font-size: 20px;
  color: var(--color-Primary);
}

footer .container ul li .box1 {
  display: flex;
  flex-direction: column;
  color: white;
  gap: 10px;
  margin-bottom: 30px;
}

footer .container ul li .box1 .t1 {
  font-size: 20px;
}

footer .container ul li .box1 .t2 {
  margin: 0;
}

footer .container ul li .box1 a {
  color: white;
}

footer .container ul li .box1 a:hover {
  color: var(--color-Primary2);
}

footer .container ul li form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .container ul li form {
    align-items: center;
  }
}

footer .container ul li form input {
  width: 100%;
  border: 1px solid white;
  background-color: transparent;
  padding: 10px;
  color: white;
}

footer .container ul li form input::placeholder {
  color: white;
}

footer .container ul li form textarea {
  width: 100%;
  border: 1px solid white;
  background-color: transparent;
  padding: 10px;
  color: white;
}

footer .container ul li form textarea::placeholder {
  color: white;
}

footer .container ul li form button {
  padding: 12px 50px;
  color: white;
  background-color: var(--color-Primary2);
  transition: all 0.3s;
}

footer .container ul li form button:hover {
  padding: 12px 60px;
}

footer .container .bottom {
  border-top: 1px solid white;
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  color: white;
  margin-top: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  footer .container .bottom {
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
}

footer .container .bottom .right {
  display: flex;
  gap: 20px;
}

footer .container .bottom .right a {
  color: white;
}

footer .container .bottom .right a:hover {
  color: var(--color-Primary2);
}

.module8 {
  position: relative;
  height: 600px;
  background-color: var(--color-Primary);
}

.module8::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;
}

.module8.common_bc .container .content {
  align-items: center !important;
}

.module8.common_bc .container h3 {
  font-size: 120px !important;
  text-align: center !important;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module8.common_bc .container h3 {
    font-size: 40px !important;
    padding: 0 10px;
  }
}

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

.module8 .container .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
}

.module8 .container .content h3 {
  font-size: 60px;
  color: white;
  text-align: left;
}

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

.module8 .container .content p {
  color: white;
  font-size: 18px;
  margin: 20px 0;
}

.module8 .container .content .Breadcrumb1 {
  padding: 10px 0;
}

.module8 .container .content .Breadcrumb1 a {
  font-size: 1rem;
  color: white;
}

.module8 .container .content .Breadcrumb1 a::after {
  content: ">";
  margin: 0 10px;
  color: white;
}

.module8 .container .content .Breadcrumb1 a::after:hover {
  color: white;
}

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

.module8 .container .content .Breadcrumb1 a:hover {
  color: var(--color-Primary2);
}

.module8 .container .tab_header {
  position: absolute;
  width: 100%;
  z-index: 3;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
  padding: 0 20px;
  background-color: #cccccc;
}

.module8 .container .tab_header .listBox {
  overflow: auto;
  padding: 20px 0;
}

.module8 .container .tab_header .listBox::-webkit-scrollbar {
  height: 0px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module8 .container .tab_header .listBox {
    padding: 10px 0;
  }
}

.module8 .container .tab_header .scrollContent {
  display: flex;
  align-items: center;
  gap: 0px;
}

.module8 .container .tab_header .tabBtn {
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  text-align: center;
}

.module8 .container .tab_header .tabBtn button {
  padding: 7px 25px;
  transition: all 0.3s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module8 .container .tab_header .tabBtn button {
    white-space: nowrap;
  }
}

.module8 .container .tab_header .tabBtn button:hover {
  background-color: var(--color-Primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 1px 1px 3px b5b5b5;
}

.module8 .container .tab_header .select button {
  background-color: var(--color-Primary);
  color: white;
}

.module9 {
  padding: 80px 0;
}

.module9 .container {
  padding: 0 5%;
}

.module9 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: black;
  margin-bottom: 30px;
}

.module9 .container p {
  font-size: 18px;
  line-height: 30px;
  margin: 20px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .container p {
    font-size: 16px;
    line-height: 24px;
  }
}

.module10 {
  position: relative;
  padding: 80px 0;
}

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

.module10 .container {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 10%;
}

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

.module10 .container .leftBox {
  width: 45%;
  flex-shrink: 0;
}

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

.module10 .container .rightBox {
  color: white;
}

.module10 .container .rightBox .t1 {
  font-size: 22px;
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
}

.module10 .container .rightBox p {
  margin-bottom: 20px;
  font-size: 18px;
}

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

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

.module11 .container ul li {
  overflow: hidden;
}

.module11 .container ul li:hover img {
  transform: scale(1.1);
}

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

.module12 {
  padding: 80px 0;
  background: linear-gradient(124deg, #092e48, #146097);
}

.module12 .container h3 {
  font-size: var(--title_size);
  text-align: center;
  color: white;
}

.module12 .container ul {
  display: flex;
  justify-content: center;
  gap: 5%;
  margin-top: 50px;
}

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

.module12 .container ul li {
  padding: 50px;
  color: white;
  width: 35%;
  max-width: 500px;
  border-radius: 10px;
}

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

.module12 .container ul li .t1 {
  font-size: 50px;
  font-family: Anton, Druk Wide, Helvetica Neue, Arial, sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

.module12 .container ul li .t2 {
  font-size: 20px;
}

.module13 {
  padding: 80px 0;
}

.module13 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.module13 .container .swiper {
  padding-top: 20px;
  margin-top: 80px;
  padding-bottom: 50px;
}

.module13 .container .swiper .swiper-wrapper {
  height: auto;
}

.module13 .container .swiper .swiper-slide {
  position: relative;
  transition: all 0.5s;
  text-align: center;
  background-color: #f6f6f6;
  padding: 30px 20px;
}

.module13 .container .swiper .swiper-slide .imgBox {
  width: 100%;
  margin-bottom: 20px;
}

.module13 .container .swiper .swiper-slide .imgBox img {
  width: 100%;
}

.module13 .container .swiper .swiper-slide .t1 {
  text-align: center;
}

.module13 .container .swiper .scrollbar_button {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
}

.module13 .container .swiper .scrollbar_button .swiper-scrollbar {
  position: static;
  width: 50%;
  border-radius: 0px;
}

.module13 .container .swiper .scrollbar_button .swiper-scrollbar .swiper-scrollbar-drag {
  border-radius: 0px;
}

.module13 .container .swiper .scrollbar_button .btnlist {
  display: flex;
  align-items: center;
  gap: 20px;
}

.module13 .container .swiper .scrollbar_button .btnlist button {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  border: 1px solid #0491ba;
}

.module13 .container .swiper .scrollbar_button .btnlist button .icon {
  color: #0491ba;
  font-weight: bold;
  font-size: 20px;
}

.module13 .container .swiper .scrollbar_button .btnlist .swiper-button-disabled {
  border: 1px solid #cdcdcd;
}

.module13 .container .swiper .scrollbar_button .btnlist .swiper-button-disabled .icon {
  color: #cdcdcd;
}

.module14 {
  margin: 80px 0;
  overflow: hidden;
}

.module14 .container .box1 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 40px;
}

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

.module14 .container .box1 h3 {
  width: 50%;
  font-size: 60px;
  font-weight: bold;
}

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

.module14 .container .box1 p {
  width: 50%;
  font-size: 18px;
  line-height: 30px;
}

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

.module14 .container .box2 {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.module14 .container .box2 .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 5%;
  transition: all 0.5s;
  padding: 40px;
  background: #f5f5f5;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module14 .container .box2 .item {
    padding: 10px;
    gap: 20px;
    flex-direction: column-reverse !important;
  }
}

.module14 .container .box2 .item:nth-child(even) {
  flex-direction: row-reverse;
}

.module14 .container .box2 .item:hover {
  background: #e7e7e7;
}

.module14 .container .box2 .item:hover img {
  transform: scale(1.1);
}

.module14 .container .box2 .item .imgBox {
  width: 45%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module14 .container .box2 .item .imgBox {
    width: 100%;
    max-width: 100%;
  }
}

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

.module14 .container .box2 .item .num {
  font-size: 80px;
  color: #c349ff;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module14 .container .box2 .item .num {
    display: none;
  }
}

.module14 .container .box2 .item .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.module14 .container .box2 .item .content .t1 {
  font-size: 40px;
  line-height: 50px;
  height: 100px;
  flex-shrink: 0;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module14 .container .box2 .item .content .t1 {
    font-size: 20px;
    line-height: 25px;
    height: auto;
  }
}

.module14 .container .box2 .item .content p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 22px;
  height: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

.module14 .container .box2 .item .content button {
  padding: 7px 15px;
  font-size: 14px;
  display: flex;
  align-items: center;
  background: var(--color-Primary);
  color: white;
  gap: 3px;
}

.module14 .container .box2 .item .content button:hover .icon {
  margin-left: 15px;
}

.module14 .container .box2 .item .content button .icon {
  border-radius: 50px;
  display: inline-block;
  width: 16px;
  height: 16px;
  font-size: 12px;
  line-height: 16px;
  margin-left: 5px;
  text-align: center;
  transition: all 0.5s;
}

.module15 {
  margin: 80px 0;
}

.module15 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  color: black;
}

.module15 .container ul {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

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

.module15 .container ul li a:hover img {
  transform: scale(1.1);
}

.module15 .container ul li a .imgBox {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.module15 .container ul li a .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.module15 .container ul li a .content {
  padding: 20px 10px;
}

.module15 .container ul li a .content .t1 {
  font-size: 20px;
  font-weight: 600;
}

.module15 .container ul li a .content .t2 {
  margin: 10px 0;
  font-size: 16px;
  line-height: 20px;
  height: 40px;
}

.module15 .container ul li a .content button {
  display: flex;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid black;
}

.module15 .container ul li a .content button .icon {
  font-size: 18px;
  margin-left: 5px;
}

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

.module16 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  color: white;
}

.module16 .container .box {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
  height: 60vh;
}

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

.module16 .container .box .leftBox {
  width: 100%;
  height: 100%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module16 .container .box .leftBox {
    aspect-ratio: 4/3;
  }
}

.module16 .container .box .leftBox img {
  object-fit: contain;
}

.module16 .container .box .rightBox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 20vh;
  color: white;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module16 .container .box .rightBox {
    align-items: center;
    padding: 0;
  }
}

.module16 .container .box .rightBox .t1 {
  font-size: 30px;
  font-weight: bold;
}

.module16 .container .box .rightBox .t2 {
  margin: 30px 0;
  line-height: 30px;
  font-size: 18px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module16 .container .box .rightBox .t2 {
    text-align: center;
  }
}

.module16 .container .box .rightBox button {
  color: white;
  background-color: #33ccff;
  padding: 8px 15px;
  font-weight: bold;
  transition: all 0.5s;
}

.module16 .container .box .rightBox button:hover {
  padding: 8px 20px;
}

.module17 {
  padding: 80px 0;
  background-color: #dde3eb;
  overflow: hidden;
}

.module17 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  color: black;
  width: 60%;
  margin: auto;
}

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

.module17 .container ul {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
}

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

.module17 .container ul li {
  position: relative;
}

.module17 .container ul li::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;
}

.module17 .container ul li button {
  z-index: 4;
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

.module17 .container ul li button:hover {
  background-color: var(--color-Primary);
}

.module17 .container ul li button .icon {
  font-size: 30px;
  color: #fe0031;
}

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

.module18 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: black;
}

.module18 .container .swiper {
  max-width: 1200px;
  padding-top: 20px;
  margin-top: 80px;
  padding-bottom: 50px;
}

.module18 .container .swiper .swiper-wrapper {
  height: auto;
  display: flex;
  align-items: stretch;
  /* 所有slide拉伸到最高高度 */
}

.module18 .container .swiper .swiper-slide {
  background-color: #ececec;
  padding: 40px;
  border-radius: 20px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.module18 .container .swiper .swiper-slide .t2 {
  font-size: 18px;
  font-weight: bold;
}

.module18 .container .swiper .scrollbar_button {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
}

.module18 .container .swiper .scrollbar_button .swiper-scrollbar {
  position: static;
  width: 50%;
  border-radius: 0px;
}

.module18 .container .swiper .scrollbar_button .swiper-scrollbar .swiper-scrollbar-drag {
  border-radius: 0px;
}

.module18 .container .swiper .scrollbar_button .btnlist {
  display: flex;
  align-items: center;
  gap: 20px;
}

.module18 .container .swiper .scrollbar_button .btnlist button {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  border: 1px solid #0491ba;
}

.module18 .container .swiper .scrollbar_button .btnlist button .icon {
  color: #0491ba;
  font-weight: bold;
  font-size: 20px;
}

.module18 .container .swiper .scrollbar_button .btnlist .swiper-button-disabled {
  border: 1px solid #cdcdcd;
}

.module18 .container .swiper .scrollbar_button .btnlist .swiper-button-disabled .icon {
  color: #cdcdcd;
}

.module19 {
  padding: 80px 0;
}

.module19 .container .box1 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 40px;
}

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

.module19 .container .box1 h3 {
  width: 50%;
  font-size: 60px;
  font-weight: bold;
}

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

.module19 .container .box1 p {
  width: 50%;
  font-size: 18px;
  line-height: 30px;
}

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

.module19 .container ul {
  padding: 50px 0;
}

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

.module19 .container ul li {
  transition: all 0.5s;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 5%;
  margin: 50px 0;
  padding: 40px;
  background: #f5f5f5;
  box-sizing: border-box;
  transition: all 0.3s;
}

.module19 .container ul li:hover {
  background: #e7e7e7;
}

.module19 .container ul li:nth-child(even) {
  flex-direction: row-reverse;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module19 .container ul li {
    flex-direction: column !important;
    gap: 15px;
    padding: 10px;
  }
}

.module19 .container ul li:hover img {
  transform: scale(1.1);
}

.module19 .container ul li:hover .t1 {
  color: var(--color-Primary) !important;
}

.module19 .container ul li:hover button {
  background-color: #00ccff !important;
}

.module19 .container ul li .imgBox {
  width: 45%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

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

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

.module19 .container ul li .num {
  font-size: 80px;
  color: #c349ff;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module19 .container ul li .num {
    display: none;
  }
}

.module19 .container ul li .content {
  box-sizing: border-box;
  color: white;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.module19 .container ul li .content .t1 {
  font-size: 14px;
  font-weight: bold;
  color: #21a4cf;
  transition: all 0.5s;
}

.module19 .container ul li .content .t2 {
  color: var(--color-Primary);
  font-size: 40px;
  line-height: 45px;
  font-weight: bold;
  transition: all 0.5s;
  margin: 10px 0;
  font-family: 'Anton';
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module19 .container ul li .content .t2 {
    font-size: 24px;
    line-height: 26px;
  }
}

.module19 .container ul li .content .details {
  color: #464646;
  height: 50%;
  transition: all 0.5s;
}

.module19 .container ul li .content .details p {
  margin: 3px 0;
}

.module19 .container ul li .content button {
  margin-top: 15px;
  background-color: var(--color-Primary);
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.module19 .container ul li .content button:hover .arrow {
  margin-left: 15px;
}

.module19 .container ul li .content button .arrow {
  width: 30px;
  margin-left: 5px;
}

.module20 {
  margin: 80px 0;
}

.module20 .container .t1 {
  font-size: 18px;
  margin-bottom: 50px;
}

.module20 .container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

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

.module20 .container ul li {
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: #e8e8e8;
  border-radius: 10px;
  transition: all 0.5s;
}

.module20 .container ul li:hover {
  transform: translateY(-10px);
  box-shadow: 3px 3px 10px 0px #c7c7c7;
}

.module20 .container ul li .iconBox .icon {
  font-size: 50px;
  color: var(--color-Primary);
}

.module20 .container ul li h4 {
  font-size: 18px;
  margin: 15px 0;
  color: var(--color-Primary);
}

.module20 .container ul li p {
  font-size: 16px;
  width: 80%;
  margin: auto;
  margin-bottom: 10px;
}

.module21 {
  margin: 80px 0;
}

.module21 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: black;
}

.module21 .container form {
  margin-top: 80px;
  background-color: #194e6f;
  padding: 5%;
  border-radius: 20px;
}

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

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

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

.module21 .container form .inputBox {
  margin: 20px 0;
}

.module21 .container form .inputBox p {
  color: white;
  font-size: 18px;
}

.module21 .container form .inputBox input {
  color: white;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid white;
}

.module21 .container form .inputBox textarea {
  color: white;
  width: 100%;
  height: 100px;
  padding: 0 10px;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid white;
}

.module21 .container form .inputBox select {
  color: white;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid white;
}

.module21 .container form .inputBox select option {
  color: black;
}

.module21 .container form button {
  width: 200px;
  margin-top: 30px;
  background-color: var(--color-Primary2);
  padding: 15px 0;
  color: white;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.5s;
}

.module21 .container form button:hover {
  background-color: var(--color-Primary);
}

.module22 {
  padding: 80px 0;
  position: relative;
}

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

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

.module22 .container .t1 {
  color: white;
  line-height: 30px;
  font-size: 18px;
  width: 75%;
  margin: auto;
  text-align: center;
}

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

.module22 .container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 80px;
}

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

.module22 .container ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.module22 .container ul li div {
  font-size: 50px;
  color: #ffff00;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module22 .container ul li div {
    font-size: 34px;
  }
}

.module22 .container ul li p {
  color: white;
  font-size: 18px;
  text-align: center;
}

.module23 {
  margin: 80px 0;
}

.module23 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: black;
}

.module23 .container .box {
  margin: 80px 0;
  display: flex;
  gap: 10%;
  align-items: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module23 .container .box {
    flex-direction: column !important;
  }
}

.module23 .container .box:nth-child(odd) {
  flex-direction: row-reverse;
}

.module23 .container .box .textBox {
  width: 45%;
  flex-shrink: 0;
  height: 100%;
  font-size: 18px;
  line-height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 10px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module23 .container .box .textBox {
    width: 100%;
  }
}

.module23 .container .box .textBox h4 {
  font-size: 30px;
  font-weight: bold;
  color: block;
}

.module23 .container .box .textBox p {
  color: black;
}

.module23 .container .box .imgBox {
  width: 45%;
  flex-shrink: 0;
  height: 100%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module23 .container .box .imgBox {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}

.module23 .container .box .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.module24 .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10%;
  align-items: center;
}

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

.module24 .container .leftBox p {
  color: white;
  font-size: 18px;
  line-height: 30px;
}

.module25 {
  padding: 80px 0;
}

.module25 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  margin-bottom: 20px;
  color: black;
}

.module25 .container .t1 {
  font-size: 18px;
  line-height: 30px;
  margin: 50px 0;
}

.module25 .container ul li {
  padding: 20px;
  margin: 20px 0;
  background-color: #f4f4f4;
  display: flex;
  align-items: center;
  gap: 3%;
}

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

.module25 .container ul li .imgBox {
  width: 10%;
  padding: 20px;
  flex-shrink: 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module25 .container ul li .imgBox {
    width: 100%;
    height: 130px;
  }
}

.module25 .container ul li .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.module25 .container ul li p {
  line-height: 30px;
}

.module26 {
  margin: 80px 0;
  overflow: hidden;
}

.module26 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: black;
}

.module26 .container .box {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.module26 .container .box .leftBox {
  width: 100%;
}

.module26 .container .box .leftBox:hover img {
  transform: scale(1.1);
}

.module26 .container .box .leftBox:hover .content {
  background-color: var(--color-Primary);
}

.module26 .container .box .leftBox:hover .content h4,
.module26 .container .box .leftBox:hover .content .time {
  color: white;
}

.module26 .container .box .leftBox .imgBox {
  width: 100%;
  overflow: hidden;
}

.module26 .container .box .leftBox .imgBox img {
  width: 100%;
  transition: all 0.5s;
  object-fit: cover;
}

.module26 .container .box .leftBox .content {
  background-color: #f5f5f5;
  padding: 20px;
  transition: all 0.5s;
}

.module26 .container .box .leftBox .content h4 {
  font-size: 24px;
  font-weight: bold;
  color: black;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module26 .container .box .leftBox .content h4 {
    font-size: 20px;
  }
}

.module26 .container .box .leftBox .content .time {
  color: #6d6d6d;
  transition: all 0.5s;
}

.module26 .container .box .rightBox {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.module26 .container .box .rightBox .list {
  height: calc(100% / 3);
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 1px;
}

.module26 .container .box .rightBox .list:hover img {
  transform: scale(1.1);
}

.module26 .container .box .rightBox .list:hover .content {
  background-color: var(--color-Primary);
}

.module26 .container .box .rightBox .list:hover .content h4,
.module26 .container .box .rightBox .list:hover .content .time {
  color: white;
}

.module26 .container .box .rightBox .list .imgBox {
  width: 100%;
  height: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.module26 .container .box .rightBox .list .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.module26 .container .box .rightBox .list .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f5f5f5;
  padding: 10px;
  transition: all 0.5s;
}

.module26 .container .box .rightBox .list .content h4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: all 0.5s;
}

.module26 .container .box .rightBox .list .content .time {
  color: #6d6d6d;
  transition: all 0.5s;
}

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

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

.module27.common_bc h3 {
  color: white !important;
}

.module27.common_bc .moreBtn button {
  background-color: var(--color-Primary2) !important;
}

.module27.common_bc ul li .content {
  background-color: transparent !important;
}

.module27.common_bc ul li .content h4 {
  color: white !important;
}

.module27.common_bc ul li .content .time {
  color: white !important;
}

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

.module27 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: black;
}

.module27 .container ul {
  margin-top: 80px;
}

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

.module27 .container ul li {
  width: 100%;
  margin-bottom: 30px;
  padding: 30px;
  background-color: #f5f5f5;
  transition: all 0.5s;
}

.module27 .container ul li:nth-child(even) a {
  flex-direction: row-reverse;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module27 .container ul li {
    padding: 10px;
  }
}

.module27 .container ul li:hover img {
  transform: scale(1.1);
}

.module27 .container ul li:hover .content h4,
.module27 .container ul li:hover .content .time {
  color: var(--color-Primary);
}

.module27 .container ul li a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module27 .container ul li a {
    flex-direction: column;
    gap: 20px;
  }
}

.module27 .container ul li a .imgBox {
  width: 40%;
  max-width: 450px;
  aspect-ratio: 3 / 2;
  flex-shrink: 0;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module27 .container ul li a .imgBox {
    width: 100%;
    max-width: 100%;
  }
}

.module27 .container ul li a .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.module27 .container ul li a .content {
  width: 100%;
  transition: all 0.5s;
}

.module27 .container ul li a .content h3 {
  font-size: 26px;
  letter-spacing: 1px;
  font-weight: 500;
  text-align: left;
  color: black;
  transition: all 0.5s;
}

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

.module27 .container ul li a .content .time {
  color: #6d6d6d;
  transition: all 0.5s;
}

.module27 .container .moreBtn {
  text-align: center;
  margin-top: 50px;
}

.module27 .container .moreBtn button {
  background-color: var(--color-Primary);
  color: white;
  padding: 10px 40px;
  border-radius: 50px;
  transition: all 0.5s;
}

.module27 .container .moreBtn button:hover {
  padding: 10px 50px;
}

.module28 {
  padding: 80px 0;
}

.module29 {
  padding: 80px 0;
}

.module29 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.module29 .container .swiper {
  padding-top: 20px;
  margin-top: 80px;
  padding-bottom: 50px;
}

.module29 .container .swiper .swiper-wrapper {
  height: auto;
}

.module29 .container .swiper .swiper-slide {
  position: relative;
  transition: all 0.5s;
}

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

.module29 .container .swiper .swiper-slide:hover img {
  transform: scale(1.1) !important;
}

.module29 .container .swiper .swiper-slide:hover .content {
  background-color: var(--color-Primary);
}

.module29 .container .swiper .swiper-slide:hover .content .t1 {
  color: white;
}

.module29 .container .swiper .swiper-slide:hover .content .times {
  color: white;
}

.module29 .container .swiper .swiper-slide:hover .content .arrow {
  transform: translateX(10px);
}

.module29 .container .swiper .swiper-slide a {
  width: 100%;
}

.module29 .container .swiper .swiper-slide a .imgBox {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.module29 .container .swiper .swiper-slide a .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.module29 .container .swiper .swiper-slide a .content {
  padding: 20px;
  transition: all 0.5s;
}

.module29 .container .swiper .swiper-slide a .content .t1 {
  font-size: 16px;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
  transition: all 0.5s;
}

.module29 .container .swiper .swiper-slide a .content .times {
  display: flex;
  justify-content: space-between;
  transition: all 0.5s;
  align-items: center;
}

.module29 .container .swiper .scrollbar_button {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
}

.module29 .container .swiper .scrollbar_button .swiper-scrollbar {
  position: static;
  width: 50%;
  border-radius: 0px;
}

.module29 .container .swiper .scrollbar_button .swiper-scrollbar .swiper-scrollbar-drag {
  border-radius: 0px;
}

.module29 .container .swiper .scrollbar_button .btnlist {
  display: flex;
  align-items: center;
  gap: 20px;
}

.module29 .container .swiper .scrollbar_button .btnlist button {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  border: 1px solid #0491ba;
}

.module29 .container .swiper .scrollbar_button .btnlist button .icon {
  color: #0491ba;
  font-weight: bold;
  font-size: 20px;
}

.module29 .container .swiper .scrollbar_button .btnlist .swiper-button-disabled {
  border: 1px solid #cdcdcd;
}

.module29 .container .swiper .scrollbar_button .btnlist .swiper-button-disabled .icon {
  color: #cdcdcd;
}

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

.module30 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
}

.module30 .container .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4vw;
  min-height: 500px;
  margin-top: 80px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module30 .container .content {
    grid-template-columns: repeat(1, 1fr);
    flex-direction: column-reverse;
  }
}

.module30 .container .content .leftBox {
  position: relative;
  width: 100%;
  height: 100%;
}

.module30 .container .content .leftBox .box {
  position: absolute;
  right: 0;
  top: 0;
  width: 48vw;
  max-height: 500px;
  max-width: 1000px;
  height: 100%;
  z-index: 2;
  display: block;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module30 .container .content .leftBox .box {
    position: static;
    width: 96vw;
    height: 300px;
  }
}

.module30 .container .content .leftBox .box .swiper {
  width: 100%;
}

.module30 .container .content .leftBox .box .swiper .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module30 .container .content .leftBox .box .swiper .swiper-pagination {
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 15px;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.4);
}

.module30 .container .content .leftBox .box .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: white;
}

.module30 .container .content .leftBox .box .swiper .swiper-button-next,
.module30 .container .content .leftBox .box .swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50px;
  background-color: rgba(209, 209, 209, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.module30 .container .content .leftBox .box .swiper .swiper-button-next:hover,
.module30 .container .content .leftBox .box .swiper .swiper-button-prev:hover {
  background-color: var(--color-Primary);
}

.module30 .container .content .leftBox .box .swiper .swiper-button-next {
  right: 30px;
}

.module30 .container .content .leftBox .box .swiper .swiper-button-prev {
  left: 30px;
}

.module30 .container .content .leftBox .box .swiper .swiper-button-next:after,
.module30 .container .content .leftBox .box .swiper .swiper-button-prev:after {
  font-size: 24px;
  color: white;
}

.module30 .container .content .rightBox {
  display: flex;
  flex-direction: column;
  color: white;
}

.module30 .container .content .rightBox .topTitle {
  display: none;
}

.module30 .container .content .rightBox h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}

.module30 .container .content .rightBox li {
  line-height: 20px;
  margin-bottom: 5px;
}

.module30 .container .content .rightBox li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50px;
  line-height: 20px;
  margin-right: 10px;
}

.module30 .container .content .rightBox strong {
  margin-bottom: 5px;
}

.module31 {
  padding: 80px 0;
}

.module31 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  text-align: center;
  margin: auto;
  max-width: 1000px;
}

.module31 .container ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 80px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module31 .container ul {
    flex-direction: column;
    height: auto !important;
  }
}

.module31 .container ul li {
  width: 100%;
}

.module31 .container ul img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module31 .container .box1 {
  height: 400px;
}

.module31 .container .box2 {
  height: 300px;
}

.module32 {
  margin: 80px 0;
}

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

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

.module32 .container .leftBox {
  width: 100%;
  height: 100%;
}

.module32 .container .leftBox img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.module32 .container .rightBox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.module32 .container .rightBox .box1 h4 {
  font-size: 30px;
  font-weight: bold;
}

.module32 .container .rightBox .box1 .t1 {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-Primary);
}

.module32 .container .rightBox .box2 {
  margin: 20px 0;
  font-size: 18px;
}

.module32 .container .rightBox .box3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.module32 .container .rightBox .box3 button {
  padding: 10px 20px;
  transition: all 0.3s;
}

.module32 .container .rightBox .box3 button:hover {
  padding: 10px 30px;
}

.module32 .container .rightBox .box3 .btn1 {
  background-color: var(--color-Primary);
  color: white;
  font-weight: bold;
  border: 3px solid var(--color-Primary);
}

.module32 .container .rightBox .box3 .btn2 {
  border: 3px solid var(--color-Primary);
  color: var(--color-Primary);
}

.module33 {
  margin: 80px 0;
}

.module33 .tab_header {
  display: flex;
  align-items: center;
  padding-bottom: 1px;
  border-bottom: 2px solid var(--color-Primary);
  flex-wrap: wrap;
}

.module33 .tab_header .tabBtn {
  text-align: center;
  padding: 8px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.module33 .tab_header .tabBtn:hover {
  background-color: var(--color-Primary);
  color: white;
}

.module33 .tab_header .select {
  background-color: var(--color-Primary);
  color: white;
}

.module33 .contentBox {
  padding: 30px 0;
  box-sizing: border-box;
  min-height: 300px;
}

.module33 .contentBox .content {
  display: none;
}

.module34 {
  margin: 80px 0;
  overflow: hidden;
}

.module34 .container h4 {
  font-size: var(--title_size);
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Anton';
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module34 .container h4 {
    text-align: center;
  }
}

.module34 .container .box {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.module34 .container .box .btn {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #cccccc;
  font-weight: bold;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

.module34 .container .box .btn:hover {
  background-color: var(--color-Primary);
}

.module34 .container .box .swiper-button-disabled {
  opacity: 0.3;
}

.module34 .container .box .swiper-button-disabled:hover {
  background-color: #cccccc;
}

.module34 .container .box .swiper {
  width: 100%;
}

.module34 .container .box .swiper .swiper-wrapper {
  height: auto !important;
}

.module34 .container .box .swiper .swiper-slide {
  background-color: #e3e3e3;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s;
}

.module34 .container .box .swiper .swiper-slide:hover {
  background-color: #092f49;
}

.module34 .container .box .swiper .swiper-slide:hover img {
  transform: scale(1.1);
}

.module34 .container .box .swiper .swiper-slide:hover .t1 {
  color: #00fcfc !important;
}

.module34 .container .box .swiper .swiper-slide:hover p {
  color: white !important;
}

.module34 .container .box .swiper .swiper-slide:hover button {
  background-color: #00ccff !important;
}

.module34 .container .box .swiper .swiper-slide .imgBox {
  width: 100%;
  overflow: hidden;
}

.module34 .container .box .swiper .swiper-slide .imgBox img {
  width: 100%;
  transition: all 0.5s;
}

.module34 .container .box .swiper .swiper-slide .content {
  padding: 20px;
  color: white;
}

.module34 .container .box .swiper .swiper-slide .content .t1 {
  font-size: 14px;
  color: #0098cc;
  font-weight: bold;
  transition: all 0.5s;
}

.module34 .container .box .swiper .swiper-slide .content p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 22px;
  height: 44px;
  color: #001059;
}

.module34 .container .box .swiper .swiper-slide .content button {
  background-color: #092f49;
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.module34 .container .box .swiper .swiper-slide .content button:hover .icon {
  margin-left: 15px;
}

.module34 .container .box .swiper .swiper-slide .content button:hover .arrow {
  margin-left: 10px;
}

.module34 .container .box .swiper .swiper-slide .content button .arrow {
  margin-left: 5px;
  width: 30px;
}

.module35 {
  margin: 80px 0;
}

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

.module35 .container h3 {
  font-size: var(--title_size);
  font-weight: bold;
  margin-bottom: 20px;
}

.module35 .container .left {
  width: 100%;
}

.module35 .container .left .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em;
  color: #000000;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.module35 .container .left .accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module35 .container .left .accordion button .accordion-title {
    font-size: 18px;
  }
}

.module35 .container .left .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 22px;
}

.module35 .container .left .accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.module35 .container .left .accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.module35 .container .left .accordion .accordion-item {
  border: 3px solid var(--color-Primary);
  border-radius: 10px;
  margin-bottom: 15px;
}

.module35 .container .left .accordion .accordion-item button {
  transition: all 0.3s;
}

.module35 .container .left .accordion .accordion-item:hover button {
  color: var(--color-Primary);
}

.module35 .container .left .accordion .accordion-content {
  display: none;
  padding: 10px 20px;
}

.module35 .container .left .accordion .accordion-content h3 {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  margin: 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module35 .container .left .accordion .accordion-content h3 {
    font-size: 16px;
  }
}

.module35 .container .left .accordion .accordion-content p {
  font-size: 16px;
  line-height: 24px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module35 .container .left .accordion .accordion-content p {
    font-size: 14px;
  }
}

.module35 .container .left .accordion button[aria-expanded="true"] {
  color: var(--color-Primary);
}

.module35 .container .left .accordion button[aria-expanded="true"] .icon::after {
  width: 0 !important;
}

.module35 .container .tip {
  font-size: 12px;
  color: #757575;
}

.module35 .container .right {
  width: 40%;
  flex-shrink: 0;
}

.module35 .container .right img {
  width: 100%;
}

.formPopBtn {
  position: fixed;
  right: 24px;
  bottom: 10vh;
  z-index: 10;
}

.formPopBtn .box {
  width: 44px;
  height: 44px;
  border-radius: 50px;
  display: flex;
  background-color: #4fc115;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  position: relative;
}

.formPopBtn .box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background-color: var(--color-Primary2);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: kefu 2s 3s infinite;
}

.formPopBtn .icon {
  color: white;
  font-size: 26px;
}

.formPopBtn .i2 {
  font-size: 24px;
  display: none;
}

@keyframes kefu {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.formPop {
  position: fixed;
  right: 10px;
  bottom: calc(10vh + 70px);
  background-color: #4fc115;
  z-index: 10;
  border: 1px solid white;
  width: 400px;
  transition: all 0.5s;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(50px);
  visibility: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .formPop {
    width: calc(100% - 20px);
  }
}

.formPop h4 {
  font-size: 16px;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
}

.formPop p {
  font-size: 12px;
  color: white;
  padding: 0 20px;
}

.formPop form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  gap: 20px;
  border-radius: 10px;
  background-color: #fff;
}

@media (min-width: 0px) and (max-width: 700px) {
  .formPop form {
    align-items: center;
  }
}

.formPop form input {
  width: 100%;
  background-color: transparent;
  padding: 10px;
  border: 1px solid black;
  border-radius: 5px;
}

.formPop form textarea {
  width: 100%;
  border: 1px solid black;
  background-color: transparent;
  padding: 10px;
}

.formPop form button {
  padding: 12px 50px;
  transition: all 0.3s;
  background-color: #4fc115;
  color: white;
  border-radius: 10px;
}

.formPop form button:hover {
  padding: 12px 60px;
}

.formPop.show {
  opacity: 1;
  transform: translateY(0px);
  visibility: visible;
}
