@charset "UTF-8";
.headerBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
  gap: 30px;
  position: relative;
  transition: 500ms;
  position: fixed;
  top: 0;
}
.headerBox::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -10;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}
.headerBox:hover {
  background-color: #fff !important;
}
.headerBox .menuDetail {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 0;
  max-height: 100vh;
  padding: 0;
  box-sizing: border-box;
  background-color: #fff;
  overflow: hidden;
  opacity: 1;
  z-index: -1;
  padding-left: 150px;
  padding-right: 150px;
  z-index: 9999;
}
.headerBox .menuDetail .nav {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 5%;
  row-gap: 30px;
}
.headerBox .menuDetail .nav .block2 {
  width: 30%;
}
.headerBox .menuDetail .nav .block2 .title {
  font-size: 1rem;
  padding: 15px 0;
  border-bottom: 1px solid gray;
  color: #000 !important;
  transition: 500ms;
}
.headerBox .menuDetail .nav .block2 .title:hover {
  color: #313eec !important;
}
.headerBox .menuDetail .nav .block2 .item {
  color: #000;
  cursor: pointer;
  font-size: 1.4rem;
  padding: 15px 0;
  border-bottom: 1px solid gray;
  transition: 500ms;
  transition: 500ms;
}
.headerBox .menuDetail .nav .block2 .item:hover {
  color: #313eec !important;
}
.headerBox .offcanvas {
  height: 100% !important;
}
.headerBox .offcanvas .navbar-nav {
  gap: 10px !important;
}
.headerBox .offcanvas .nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  transition: 500ms;
  width: 100px;
}
.headerBox .offcanvas .nav-item .nav-link {
  color: #000;
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}
.headerBox .offcanvas .nav-item .nav-link:hover {
  color: #313eec;
  font-weight: bold;
}
.headerBox .offcanvas .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #313eec;
  transition: width 0.3s ease, left 0.3s ease;
}
.headerBox .offcanvas .nav-item .nav-link:hover::after {
  width: 100%;
  left: 0;
}
.headerBox .logo {
  height: 50px !important;
  width: 240px;
}
.headerBox .logo img {
  max-width: unset;
  height: 50px;
}
.headerBox .menu {
  display: flex;
  justify-content: space-around;
  flex: 2;
  max-width: 1080px;
  height: 100%;
}
.headerBox .menu .item {
  font-size: 14px;
  font-weight: bold;
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 500ms;
  cursor: pointer;
}
.headerBox .menu .item:hover {
  background-color: #D6D7D9;
}
.headerBox .search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  position: relative;
}
.headerBox .search .kfy {
  cursor: pointer;
}
.headerBox .search .langer {
  position: relative;
  cursor: pointer;
}
.headerBox .search .langer .popup {
  opacity: 0;
  top: 300%;
  border-radius: 0 !important;
  transition: unset;
}
.headerBox .search .langer .popup > div {
  text-align: center;
  padding: 5px 20px;
}
.headerBox .search .langer .popup::after {
  top: -10px;
  bottom: unset;
  transform: translateX(-50%) rotate(180deg);
}
.headerBox .search .langer::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 10px solid #000; /* 修改颜色为与背景色相同的颜色 */
  transform: rotate(180deg);
}
.headerBox .search > div {
  font-size: 14px;
  font-weight: bold;
}
.headerBox .search input {
  border-radius: 999px;
  border: 0;
  outline: none;
  background-color: rgba(128, 128, 128, 0.25);
  width: 30px;
  height: 30px;
  padding: 5px 10px;
  box-sizing: border-box;
  opacity: 0;
  transition: 500ms;
}
.headerBox .search .search-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
}

.maxImg {
  height: 100vh;
  min-height: 830px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.maxImg .content {
  width: 65%;
  min-width: 920px;
  margin-left: 30px;
  height: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.maxImg .content .mouse {
  width: 31px;
  margin-bottom: 10%;
  margin-top: 50px;
}
.maxImg .content .cont {
  width: 65%;
  min-width: 800px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.maxImg .content .title {
  font-weight: 600;
  font-size: 3.75vw;
  margin-top: 100px;
  margin-bottom: 30px;
  width: 100%;
}
.maxImg .content .en {
  font-weight: 300;
  font-size: 1.5rem;
  width: 55%;
  margin-bottom: 10px;
}
.maxImg .content .myBtn {
  width: 200px;
  height: 50px;
  background-color: #000;
  font-size: 1.4rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 6px 0;
  margin-top: auto;
  transition: 500ms;
}
.maxImg .content .myBtn:hover {
  background-color: #313eec;
  color: #fff;
}
.maxImg .maxImgBox {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.maxImg .maxImgBox .aircraftBox {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
}
.maxImg .maxImgBox .aircraftBox img {
  width: 100%;
  height: 100%;
}
.maxImg .maxImgBox img {
  width: 100%;
  height: 100%;
}

.modal2 {
  margin-top: 100px;
}
.modal2:nth-child(2) {
  margin-bottom: -1750px;
}
.modal2:nth-child(2) .title {
  margin-bottom: 80px;
}
.modal2:nth-child(2) .title .ENName {
  right: -40%;
}
.modal2:nth-child(n+3) {
  position: relative;
  z-index: 2;
}
.modal2:nth-child(3) .cont {
  width: 75%;
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.modal2:nth-child(3) .cont .block-a {
  width: 100%;
  height: 850px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.modal2:nth-child(3) .cont .block-a > .block-b:nth-child(1) {
  width: 45%;
}
.modal2:nth-child(3) .cont .block-a > .block-b:nth-child(1) .img {
  height: 350px;
}
.modal2:nth-child(3) .cont .block-a .block-b {
  width: 55%;
  box-sizing: border-box;
  padding-top: 5.21vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.modal2:nth-child(3) .cont .block-a .block-b .check {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.modal2:nth-child(3) .cont .block-a .block-b .check > div {
  width: 80px;
  height: 40px;
  cursor: pointer;
  position: relative;
}
.modal2:nth-child(3) .cont .block-a .block-b .check > div img {
  width: 100%;
  transition: 500ms;
}
.modal2:nth-child(3) .cont .block-a .block-b .check > div img:hover:first-child {
  opacity: 0;
}
.modal2:nth-child(3) .cont .block-a .block-b .check > div img:hover:last-child {
  opacity: 1;
}
.modal2:nth-child(3) .cont .block-a .block-b .check > div img:last-child {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.modal2:nth-child(3) .cont .block-a .block-b .number {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 1rem;
}
.modal2:nth-child(3) .cont .block-a .block-b .number > span {
  color: rgba(128, 128, 128, 0.7);
}
.modal2:nth-child(3) .cont .block-a .block-b:nth-child(2n) {
  background-color: #F2F2F2;
  padding: 0;
}
.modal2:nth-child(3) .cont .block-a .block-b > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal2:nth-child(3) .cont .block-a .block-b .exp {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: start;
  justify-content: space-around;
}
.modal2:nth-child(3) .cont .block-a .block-b .exp .btn-TS {
  padding: 8px 30px;
  border-radius: 999px;
  border: 1px solid #000;
  transition: 500ms;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal2:nth-child(3) .cont .block-a .block-b .exp .btn-TS .Arro {
  position: relative;
}
.modal2:nth-child(3) .cont .block-a .block-b .exp .btn-TS .Arro img:last-child {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.modal2:nth-child(3) .cont .block-a .block-b .exp .btn-TS img {
  width: 20px;
  margin-bottom: 5px;
  margin-left: 10px;
}
.modal2:nth-child(3) .cont .block-a .block-b .exp .btn-TS:hover {
  border: 1px solid #313eec;
  background-color: #313eec;
  color: #fff;
}
.modal2:nth-child(3) .cont .block-a .block-b .exp .btn-TS:hover .Arro {
  position: relative;
}
.modal2:nth-child(3) .cont .block-a .block-b .exp .btn-TS:hover .Arro img:last-child {
  opacity: 1;
}
.modal2:nth-child(3) .cont .block-a .block-b .exp .title {
  font-size: 2.2rem;
  font-weight: bold;
}
.modal2:nth-child(3) .cont .block-a .block-b .exp .info {
  color: gray;
  font-size: 1rem;
}
.modal2:nth-child(3) .cont .block-a .block-b .exp .list {
  font-size: 1rem;
  margin-left: -10px;
}
.modal2:nth-child(3) .cont .block-a .block-b .exp .list .item {
  margin-top: 5px;
  font-weight: bold;
}
.modal2:nth-child(3) .cont .block-a .block-b .img {
  width: 100%;
  aspect-ratio: 2/1;
}
.modal2:nth-child(3) .cont .block-a .block-b .img img {
  width: 100%;
  height: 100%;
}
.modal2:nth-child(4) {
  background-color: #F2F2F2;
  padding: 50px 0;
}
.modal2:nth-child(4) .title .name {
  font-size: 2rem;
}
.modal2:nth-child(4) .title .check {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.modal2:nth-child(4) .title .check > div {
  width: 43px;
  height: 43px;
  cursor: pointer;
  position: relative;
}
.modal2:nth-child(4) .title .check > div img {
  width: 100%;
  transition: 500ms;
}
.modal2:nth-child(4) .title .check > div img:hover:first-child {
  opacity: 0;
}
.modal2:nth-child(4) .title .check > div img:hover:last-child {
  opacity: 1;
}
.modal2:nth-child(4) .title .check > div img:last-child {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.modal2:nth-child(4) .content {
  display: flex;
}
.modal2:nth-child(4) .content .block-a {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
}
.modal2:nth-child(4) .content .block-a .morebtn {
  border-radius: 999px;
  border: 1px solid #000;
  padding: 2px 15px;
  font-size: 16px;
  margin-left: auto;
  cursor: pointer;
}
.modal2:nth-child(4) .content .block-a .morebtn:hover {
  border: 1px solid #313eec;
}
.modal2:nth-child(4) .content .block-a .img {
  width: 100%;
  aspect-ratio: 1/1;
  padding: 20px;
  box-sizing: border-box;
  max-height: max-content;
}
.modal2:nth-child(4) .content .block-a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal2:nth-child(4) .content .block-a .cont {
  width: calc(100% - 40px);
  margin: 20px;
  border-top: 1px solid gray;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}
.modal2:nth-child(4) .content .block-a .cont .title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.modal2:nth-child(4) .content .block-a .cont .info {
  color: gray;
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.modal2:nth-child(5) {
  margin-top: 0;
  position: relative;
}
.modal2:nth-child(5) video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  outline: none;
}
.modal2:nth-child(5) .controls {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal2:nth-child(5) .controls .info {
  color: rgba(211, 211, 211, 0.5);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 150px;
}
.modal2:nth-child(5) .controls .cent {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
}
.modal2:nth-child(5) .controls .cent .text {
  color: white;
  font-size: 4.5rem;
}
.modal2:nth-child(5) .controls .play {
  position: relative;
}
@keyframes Route {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.modal2:nth-child(5) .controls .play:hover img:last-child {
  transform: translateX(-40%) translateY(-50%) scale(1.2);
}
.modal2:nth-child(5) .controls .play img:first-child {
  animation: Route 14s linear infinite;
}
.modal2:nth-child(5) .controls .play img:last-child {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  transition: 500ms;
}
.modal2:nth-child(6) {
  margin: 0;
  padding-top: 200px;
  padding-bottom: 80px;
}
.modal2:nth-child(6) > .title {
  margin-bottom: 70px;
}
.modal2:nth-child(6) .title .name .exp {
  margin-left: 20px;
  font-size: 1.3rem;
  font-weight: normal;
}
.modal2:nth-child(6) .container2 {
  padding: 0 13%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
.modal2:nth-child(6) .container2 .item {
  display: flex;
  justify-content: space-around;
}
.modal2:nth-child(6) .container2 .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.modal2:nth-child(6) .container2 .item .left {
  width: 30%;
  box-sizing: border-box;
  padding: 30px 32px 0;
  flex-grow: 1;
}
.modal2:nth-child(6) .container2 .item .left > div {
  width: 100%;
  height: 100%;
  padding-bottom: 30px;
  border-bottom: 1px solid gainsboro;
}
.modal2:nth-child(6) .container2 .item .left .title {
  color: gainsboro;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: bold;
}
.modal2:nth-child(6) .container2 .item .left .text {
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0px;
}
.modal2:nth-child(6) .container2 .item .left .myBtn {
  margin-top: 20px;
  border-radius: 999px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-content: center;
  border: 1px solid #000;
  height: 30px;
  transition: 500ms;
}
.modal2:nth-child(6) .container2 .item .left .myBtn .Arro {
  position: relative;
  display: flex;
  align-items: center;
}
.modal2:nth-child(6) .container2 .item .left .myBtn .Arro img:last-child {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.modal2:nth-child(6) .container2 .item .left .myBtn img {
  width: 20px;
  margin-left: 10px;
}
.modal2:nth-child(6) .container2 .item .left .myBtn:hover {
  border: 1px solid #313eec;
  background-color: #313eec;
  color: #fff;
}
.modal2:nth-child(6) .container2 .item .left .myBtn:hover .Arro {
  position: relative;
}
.modal2:nth-child(6) .container2 .item .left .myBtn:hover .Arro img:last-child {
  opacity: 1;
}
.modal2:nth-child(6) .container2 .item .left .myBtn:hover {
  width: 150px;
  justify-content: space-between;
  padding: 0 20px;
  border: 1px solid #313eec;
  background-color: #313eec;
  color: #fff;
}
.modal2:nth-child(6) .container2 .item .left .myBtn:hover .exp {
  width: auto;
  opacity: 1;
}
.modal2:nth-child(6) .container2 .item .left .myBtn .exp {
  text-align: center;
  width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
}
.modal2:nth-child(6) .container2 .item .left .myBtn img {
  margin-bottom: 4px;
  width: 24px;
  object-fit: contain;
}
.modal2:nth-child(6) .container2 .item .right {
  box-sizing: border-box;
  flex-grow: 1;
  width: 70%;
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
}
.modal2:nth-child(6) .container2 .item .right img {
  border-radius: 22px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal2:nth-child(7) {
  margin-top: 100px;
}
.modal2:nth-child(7) > .title {
  margin-bottom: 70px;
}
.modal2:nth-child(7) .container2 {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 0 13%;
}
.modal2:nth-child(7) .container2 .pageBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 450px;
  margin: 70px auto 0;
}
.modal2:nth-child(7) .container2 .pageBox .page {
  display: flex;
  align-items: center;
  column-gap: 20px;
  color: rgba(128, 128, 128, 0.7);
  font-size: 1.5rem;
}
.modal2:nth-child(7) .container2 .pageBox .page .cur {
  color: #000;
}
.modal2:nth-child(7) .container2 .pageBox .arrrow {
  width: 85px;
  position: relative;
  cursor: pointer;
}
.modal2:nth-child(7) .container2 .pageBox .arrrow img {
  width: 100%;
  transition: 500ms;
}
.modal2:nth-child(7) .container2 .pageBox .arrrow img:hover:first-child {
  opacity: 0;
}
.modal2:nth-child(7) .container2 .pageBox .arrrow img:hover:last-child {
  opacity: 1;
}
.modal2:nth-child(7) .container2 .pageBox .arrrow img:last-child {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.modal2:nth-child(7) .container2 .rowList {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.modal2:nth-child(7) .container2 .rowList > div {
  font-size: 1.1rem;
  padding: 20px 5px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.3);
}
.modal2:nth-child(7) .container2 .rowList > div:first-child {
  border-top: 1px solid rgba(128, 128, 128, 0.3);
}
.modal2:nth-child(7) .container2 .list {
  margin-top: 30px;
  display: flex;
  gap: 30px;
}
.modal2:nth-child(7) .container2 .list .item {
  width: 33%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.modal2:nth-child(7) .container2 .list .item:hover .info {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}
.modal2:nth-child(7) .container2 .list .item:hover .info .toDetail {
  display: block;
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 50px;
}
.modal2:nth-child(7) .container2 .list .item:hover .info > div {
  display: -webkit-box; /* 对于一些老版本的浏览器 */
  -webkit-box-orient: vertical; /* 垂直排列 */
  -webkit-line-clamp: 100; /* 限制行数为2行 */
  overflow: hidden; /* 隐藏超出的内容 */
  text-overflow: ellipsis; /* 省略号 */
  max-width: 100%; /* 根据需求调整宽度 */
}
.modal2:nth-child(7) .container2 .list .item .info {
  transition: 500ms;
  height: 87px;
  position: absolute;
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
  padding: 20px;
  z-index: 2;
  bottom: 0;
  left: 0;
}
.modal2:nth-child(7) .container2 .list .item .info .toDetail {
  display: none;
}
.modal2:nth-child(7) .container2 .list .item .info > div {
  display: -webkit-box; /* 对于一些老版本的浏览器 */
  -webkit-box-orient: vertical; /* 垂直排列 */
  -webkit-line-clamp: 2; /* 限制行数为2行 */
  overflow: hidden; /* 隐藏超出的内容 */
  text-overflow: ellipsis; /* 省略号 */
  max-width: 100%; /* 根据需求调整宽度 */
}
.modal2:nth-child(7) .container2 .list .item img {
  width: 100%;
  height: 100%;
}
.modal2:nth-child(7) .container2 .navs {
  display: flex;
  align-content: center;
  column-gap: 90px;
}
.modal2:nth-child(7) .container2 .navs .nav {
  color: #8F8F8F;
  transition: 500ms;
  font-size: 1.4rem;
  position: relative;
}
.modal2:nth-child(7) .container2 .navs .nav:hover {
  color: #000;
  font-weight: bold;
}
.modal2:nth-child(7) .container2 .navs .nav:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #313eec;
}
.modal2:nth-child(7) .container2 .navs .cur {
  color: #000;
  font-weight: bold;
}
.modal2:nth-child(7) .container2 .navs .cur::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #313eec;
}
.modal2:nth-child(7) .container2 > div {
  width: 100%;
}
.modal2:nth-child(8) {
  margin-top: 100px;
  background-color: #F2F2F2;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal2:nth-child(8) .title {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 20px !important;
}
.modal2:nth-child(8) .myBtn {
  margin-top: 20px;
  border-radius: 999px;
  color: #f3f3f3;
  font-size: 1.2rem;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 60px;
  transition: 500ms;
}
.modal2:nth-child(8) .myBtn:hover {
  background-color: #313eec;
  color: #fff;
}
.modal2:nth-child(9) {
  margin-top: 40px;
  padding: 0 7%;
}
.modal2:nth-child(9) .exp {
  margin-top: 20px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.modal2:nth-child(9) .exp .info {
  color: #8F8F8F;
  font-size: 1rem;
  letter-spacing: 0;
}
.modal2:nth-child(9) .exp .logo {
  margin-left: auto;
  display: flex;
  gap: 30px;
}
.modal2:nth-child(9) .exp .logo .logoItem {
  height: 22px;
  position: relative;
  cursor: pointer;
}
.modal2:nth-child(9) .exp .logo .logoItem:hover .popup {
  opacity: 1;
}
.modal2:nth-child(9) .exp .logo .logoItem img {
  height: 35px;
}
.modal2:nth-child(9) .nav {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 20x;
}
.modal2:nth-child(9) .nav .block {
  width: 30%;
}
.modal2:nth-child(9) .nav .block .title {
  font-size: 1.2rem;
  padding: 17px 0;
  border-bottom: 1px solid #000;
  color: #000 !important;
}
.modal2:nth-child(9) .nav .block .item {
  color: #8F8F8F;
  cursor: pointer;
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(143, 143, 143, 0.5);
  transition: 500ms;
}
.modal2:nth-child(9) .nav .block .item:hover {
  color: rgba(0, 0, 0, 0.7);
}
.modal2:nth-child(9) .my {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.modal2:nth-child(9) .my .input {
  width: 50%;
  position: relative;
}
.modal2:nth-child(9) .my .input .myBtn {
  border-radius: 999px;
  background-color: #000;
  color: white;
  width: 100px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 8px;
  top: 8px;
}
.modal2:nth-child(9) .my .input input {
  height: 60px;
  background-color: #F2F2F2;
  border-radius: 999px;
  width: 100%;
  border: none;
  outline: none;
  padding-left: 50px;
  box-sizing: border-box;
  color: #8F8F8F;
  font-size: 1rem;
}
.modal2:nth-child(9) .my .input input::placeholder {
  color: #8F8F8F;
  font-size: 1rem;
}
.modal2:nth-child(9) .my .info {
  width: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: start;
  column-gap: 20px;
}
.modal2:nth-child(9) .my .info .logo {
  width: 110px;
  object-fit: contain;
}
.modal2 > .title {
  box-sizing: border-box;
  padding: 0 13%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 30px;
}
.modal2 > .title .name {
  font-weight: bold;
  font-size: 3.7rem;
  display: flex;
  align-items: center;
  column-gap: 40px;
  position: relative;
}
.modal2 > .title .name .ENName {
  color: #E6E6E6;
  font-size: 2.5rem;
  position: absolute;
  top: 60%;
  font-weight: 300;
  z-index: -1;
  white-space: nowrap;
}
.modal2 > .title .name .exp {
  font-size: 1.7rem !important;
  font-weight: 400 !important;
  opacity: 1;
  transition: 500ms;
  display: flex;
  align-items: center;
  gap: 20px;
}
.modal2 > .title .name .exp img {
  width: 40px;
  object-fit: contain;
}
.modal2 > .title .info {
  font-weight: bold;
  font-size: 1.1rem;
}

.block-1 {
  z-index: 11;
}

.block-2 {
  z-index: 12;
}

.block-3 {
  z-index: 13;
}

.block-4 {
  z-index: 14;
}

.container2 .block {
  width: 94%;
  height: 670px;
  margin: -590px auto 0;
  border: 2px solid rgba(128, 128, 128, 0.5);
  background-color: #fff;
  color: #000;
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}
.container2 .block:last-child {
  color: #fff !important;
}
.container2 .block:last-child .info {
  color: #fff !important;
}
.container2 .block .title {
  height: 80px;
  padding: 20px 80px;
  font-weight: bold;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  font-size: 1.9rem;
  display: flex;
  align-items: end;
  gap: 50px;
}
.container2 .block .title .page {
  font-size: 1.5rem;
  font-weight: 600;
  color: gray;
  margin-left: auto;
  position: relative;
}
.container2 .block .title .page .page-b-w {
  position: absolute;
  left: -100px;
  top: calc(100% + 30px);
  height: 2px;
  background-color: white;
  width: 200px;
}
.container2 .block .title .info {
  font-size: 0.9rem;
  font-weight: 500;
  color: #3f3f3f;
}
.container2 .block .cont {
  flex-grow: 1;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.container2 .block .cont .moreBtn {
  font-size: 1.4rem;
  color: white;
  padding: 10px 50px;
  border-radius: 999px;
  border: 1px solid #fff;
  position: absolute;
  right: 50px;
  bottom: 30px;
  transition: 500ms;
}
.container2 .block .cont .moreBtn:hover {
  color: #fff;
  background-color: #313eec;
  border: 1px solid #313eec;
}
.container2 .block .cont .info {
  position: absolute;
  left: 50px;
  bottom: 30px;
  padding: 50px;
  width: 800px;
  background-color: rgba(128, 128, 128, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 24px;
  font-size: 1.2rem;
}
.container2 .block .backImage {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: palegreen;
}
.container2 .block .backImage .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.container2 .block .backImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container2 .block:first-child {
  margin-top: 0 !important;
}

.toTop {
  position: fixed;
  right: 60px;
  bottom: 170px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  z-index: 9999;
}
.toTop .box {
  display: none;
  flex-direction: column;
  transition: 500ms;
  box-sizing: border-box;
  padding: 30px;
  background-color: #fff;
  position: absolute;
  left: -220%;
  top: -70%;
  border-radius: 16px;
  gap: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 淡淡的阴影 */
  opacity: 0;
}
.toTop .box > div:nth-child(1) {
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
}
.toTop .box .title {
  color: rgba(128, 128, 128, 0.6);
  font-size: 1rem;
}
.toTop .box .text {
  color: #000;
  font-size: 1.3rem;
}
.toTop .box .QR {
  width: 165px;
  aspect-ratio: 1/1;
}
.toTop .box .QR img {
  width: 100%;
  height: 100%;
}
.toTop .img {
  width: 110px;
  cursor: pointer;
}

.myBtn {
  cursor: pointer;
}

.popup {
  position: absolute;
  padding: 10px;
  border-radius: 10px;
  background-color: #fff;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 500ms;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 99999;
}
.popup::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.popup img {
  width: 100px !important;
  height: 100px !important;
  aspect-ratio: 1/1 !important;
  max-width: unset;
}

.img-curp-sclec {
  cursor: pointer;
  transition: 500ms ease-in-out;
}
.img-curp-sclec:hover {
  transform: scale(1.2) !important;
}

.img-in-out {
  cursor: pointer;
}

.btn {
  width: 190px;
  height: 50px;
  box-sizing: border-box;
  border-radius: 999px;
  background-color: #000;
  display: flex;
  align-items: center;
  gap: 19px;
  color: #fff;
  justify-content: center;
  font-size: 20px;
  transition: 500ms;
}
.btn:hover {
  background-color: #313eec;
}

.pageing {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.pageing > div {
  width: 45px;
  height: 45px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  cursor: pointer;
  transition: 500ms;
}
.pageing > div:hover {
  background-color: #313eec;
  color: #fff;
}
.pageing > div img {
  width: 9px;
  height: 16px;
  object-fit: cover;
}
.pageing .cur {
  background-color: #313eec;
  color: #fff;
}

.checkImage {
  position: relative;
  cursor: pointer;
}
.checkImage:hover img:first-child {
  opacity: 0;
}
.checkImage:hover img:last-child {
  opacity: 1;
}
.checkImage img {
  transition: 500ms;
  width: 46px;
  height: 46px;
  object-fit: cover;
}
.checkImage img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.imgBgVideo {
  position: relative;
  background-color: #000;
  overflow: hidden;
}
.imgBgVideo .imgBg {
  position: relative;
  z-index: 10;
}
.imgBgVideo .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.imgBgVideo .mask .timer {
  padding: 5px 15px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  position: absolute;
  right: 24px;
  bottom: 21px;
}
.imgBgVideo .mask .mask-player {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.imgBgVideo .mask .mask-player img {
  margin-left: 5px;
  transform: scale(0.8);
}
.imgBgVideo .video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.truncate-lines-1 {
  white-space: nowrap; /* 禁止换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis;
}

.swiper-pagination-bullet-active {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: gray;
  transform: rotate(45deg);
  border-radius: 50%;
  overflow: hidden;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active::before {
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #313eec;
  clip-path: polygon(50% 50%, 0 0, 100% 0%, 100% 100%, 0 100%, 0 40%);
  animation: rotating 3s linear both infinite;
}

@keyframes rotating {
  0% {
    clip-path: polygon(50% 50%, 0% 0%, 0% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0% 0%, 100% 0%);
  }
  25.000001% {
    clip-path: polygon(50% 50%, 0% 0%, 100% 0%, 100% 0%);
  }
  50% {
    clip-path: polygon(50% 50%, 0% 0%, 100% 0%, 100% 100%);
  }
  50.000001% {
    clip-path: polygon(50% 50%, 0% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  75.000001% {
    clip-path: polygon(50% 50%, 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
  }
}
@keyframes Expand {
  0% {
    width: 0;
  }
  100% {
    width: 40px;
  }
}
.class_item.cur::after {
  content: "";
  height: 6px;
  width: 40px;
  background-color: #1038BD;
  border-radius: 999px;
  opacity: 1;
  transition: 500ms;
}

.class_item {
  display: flex;
  row-gap: 15px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.class_item img {
  height: 54px;
}
.class_item ~ .cur::after {
  opacity: 1;
  animation: Expand 500ms forwards;
}
.class_item:hover::after {
  opacity: 1;
  animation: Expand 500ms forwards;
}
.class_item::after {
  content: "";
  height: 6px;
  width: 0;
  background-color: #1038BD;
  border-radius: 999px;
  opacity: 0;
  transition: 500ms;
}
.class_item ~ .cur::after {
  content: "";
  height: 6px;
  width: 40px;
  background-color: #1038BD;
  border-radius: 999px;
  opacity: 1;
  transition: 500ms;
}

.cardList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  gap: 20px;
}
.cardList .cardItem {
  background-color: #fff;
  padding: 48px;
  padding-bottom: 86px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  cursor: pointer;
  height: 570px;
  box-sizing: border-box;
}
.cardList .cardItem:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.cardList .cardItem .imgBox {
  width: 260px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: end;
}
.cardList .cardItem .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cardList .cardItem .title {
  font-size: 20px;
  margin-top: 39px;
  text-align: center;
}
.cardList .cardItem .info {
  margin-top: 15px;
  font-size: 13px;
  color: #8C8C8C;
  text-align: center;
  letter-spacing: 1px;
  line-height: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* 显示行数 */
  overflow: hidden;
  text-overflow: ellipsis;
}
.cardList .cardItem .tags {
  border-radius: 14px 14px 14px 0;
  width: auto;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F2F2F2;
  font-size: 14px;
  margin-top: 10px;
  padding: 5px 10px;
}
.cardList .cardItem .btnBox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
  width: 100%;
}
.cardList .cardItem .btnBox .btn {
  flex-grow: 1;
  padding: 8px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #404040;
  color: #fff;
  font-size: 15px;
  letter-spacing: 1px;
  transition: 500ms;
  height: 38px;
  box-sizing: border-box;
}
.cardList .cardItem .btnBox .btn:hover {
  background-color: #313eec;
  color: #fff;
}
.cardList .cardItem .btnBox .btn:nth-child(2) {
  background-color: #F2F2F2;
  color: #000;
}
.cardList .cardItem .btnBox .btn:nth-child(2):hover {
  background-color: #313eec;
  color: #fff;
}
.cardList .expItem {
  background-color: #fff;
  padding: 48px;
  padding-bottom: 86px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 570px;
  box-sizing: border-box;
}

.cpxq-yycj > div:first-child {
  display: block;
}

.PX {
  position: relative;
}
.PX:hover .selctPX {
  opacity: 1;
}
.PX .selctPX {
  padding: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  gap: 5px;
  position: absolute;
  min-width: 170px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 500ms;
  z-index: 99;
}
.PX .selctPX::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  /* 修改颜色为与背景色相同的颜色 */
  transform: translateX(-50%);
}
.PX .selctPX > div {
  cursor: pointer;
  padding: 5px 10px;
  transition: 500ms;
}
.PX .selctPX > div:hover {
  background-color: #F2F2F2;
  border-radius: 8px;
}

@media (max-width: 639px) {
  .cardList {
    grid-template-columns: repeat(1, 1fr);
  }
  .cardList .cardItem {
    padding: 24px;
    padding-bottom: 43px;
  }
  .selctPX {
    left: 0% !important;
  }
}
.icon {
  position: relative;
}
.icon img {
  transition: 500ms;
}
.icon img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.b1:hover {
  background-color: #313eec;
  color: #fff;
}
.b1:hover .icon img:first-child {
  opacity: 0;
}
.b1:hover .icon img:last-child {
  opacity: 1;
}

.b2:hover {
  background-color: #313eec;
  color: #fff;
}

.bg-c-2 {
  background-color: #f2f2f2;
}

.block-title {
  display: flex;
  color: #252525;
  font-size: 60px;
  position: relative;
  font-family: "AlibabaPuHuiTi-65", sans-serif; /* 应用自定义字体 */
}
.block-title .block-title-docs {
  font-size: 30px;
  color: rgba(153, 153, 153, 0.15);
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 0;
}

.block-docs {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  line-height: 32px;
  letter-spacing: 1px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.product-td-item {
  width: 338px;
  height: 183px;
  background-color: #f6f6f6;
  border-radius: 10px;
  overflow: hidden;
  color: #252525;
  cursor: pointer;
  transition: 500ms;
  position: relative;
}
.product-td-item * {
  transition: 500ms;
}
.product-td-item > div {
  background-color: #f6f6f6;
}
.product-td-item > div > div:nth-child(2) {
  min-height: 39px;
}
.product-td-item:hover {
  transform: translateY(-19px) !important;
  box-sizing: border-box;
  padding: 3px;
}
.product-td-item:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: -50%;
  width: 100%;
  aspect-ratio: 1/1;
  z-index: -1;
  animation: rotate 6s linear infinite;
  transform-origin: center;
  background-image: linear-gradient(to bottom right, #fff 30%, #D9D9D9 40%, #D9D9D9 50%, #fff 80%);
}
.product-td-item:hover > div {
  border-radius: 8px;
}
.product-td-item:hover .icon img:first-child {
  opacity: 0;
}
.product-td-item:hover .icon img:last-child {
  opacity: 1;
}
.product-td-item:hover > div > div:first-child {
  font-size: 20px !important;
}
.product-td-item:hover > div > div:nth-child(2) {
  font-size: 14px !important;
}

.ljts {
  border: 1px solid #000;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0);
  color: #000;
}
.ljts:hover {
  background-color: #313eec;
  color: #fff;
}

.ptglmk * {
  transition: 500ms;
}
.ptglmk .icon-t {
  display: none;
}
.ptglmk .cur {
  min-width: 473px;
  overflow: hidden;
}
.ptglmk .cur .icon img:first-child {
  opacity: 0;
}
.ptglmk .cur .icon img:last-child {
  opacity: 1;
}
.ptglmk .cur .title {
  border: none;
  color: #000;
}
.ptglmk .cur .icon-t {
  width: 46px;
  display: block;
}
.ptglmk .cur .cont {
  display: block;
}

@media (max-width: 760px) {
  .block-title {
    font-size: 40px;
  }
  .block-title .block-title-docs {
    font-size: 20px;
  }
  .ptglmk .cur {
    min-width: 0;
  }
}
.lxwm-btn {
  border: 1px solid white;
  background-color: rgba(255, 255, 255, 0);
}
.lxwm-btn:hover {
  background-color: #313eec;
  color: #fff;
}

.slswcjsp-menu {
  border-right: 1px solid #d9d9d9;
}
.slswcjsp-menu:last-child {
  border: none;
}
.slswcjsp-menu::after {
  content: "";
  position: absolute;
  height: 6px;
  width: 0px;
  border-radius: 4px;
  transition: 500ms;
  background-color: #1038BD;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.slswcjsp-menu:hover::after {
  width: 40px;
}

.slswcjsp-menu.cur::after {
  width: 40px;
}

.yycj-check {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.yycj-check > div {
  width: 43px;
  height: 43px;
  cursor: pointer;
  position: relative;
}
.yycj-check > div img {
  width: 100%;
  transition: 500ms;
}
.yycj-check > div img:hover:first-child {
  opacity: 0;
}
.yycj-check > div img:hover:last-child {
  opacity: 1;
}
.yycj-check > div img:last-child {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.yycj-box::-webkit-scrollbar {
  display: none; /* 隐藏滚动条 */
}
.yycj-box .yycj-card {
  flex-shrink: 0;
}
.yycj-box .yycj-card > * {
  transition: 500ms;
}
.yycj-box .yycj-card:hover .title {
  opacity: 0;
}
.yycj-box .yycj-card:hover .yc-card {
  top: 0;
  background-color: rgba(33, 33, 33, 0.5);
  backdrop-filter: blur(10px);
}

#xzzx > div {
  display: none;
}
#xzzx > div:nth-child(-n+4) {
  display: flex;
}

.cradBox {
  padding-top: 50px;
  padding-left: 70px;
  padding-right: 70px;
  padding-bottom: 25px;
  background-color: #F2F2F2;
  border-radius: 30px;
}
.cradBox .hr {
  background-color: #d9d9d9;
  width: 100%;
  height: 2px;
  border: none;
  margin: 25px 0;
}
.cradBox .email {
  font-size: 18px;
}
.cradBox .bodyBox .title {
  font-size: 22px;
  margin-bottom: 15px;
}
.cradBox .bodyBox .cont {
  font-size: 18px;
  margin-bottom: 25px;
}
.cradBox .titleBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cradBox .titleBox .title {
  font-size: 24px;
}
.cradBox .titleBox .exp {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cradBox .titleBox .exp .exp_add {
  position: relative;
}
.cradBox .titleBox .exp .exp_add:hover img:first-child {
  opacity: 0;
}
.cradBox .titleBox .exp .exp_add:hover img:last-child {
  opacity: 1;
}
.cradBox .titleBox .exp .exp_add img {
  width: 45px;
  height: 45px;
  transition: 500ms;
}
.cradBox .titleBox .exp .exp_add img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.cradBox .titleBox .exp .info {
  font-size: 22px;
  padding: 0 36px;
  line-height: 22px;
}
.cradBox .titleBox .exp .info:first-child {
  border-right: 1px solid #252525;
}

.zpzw-cur {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
}
.zpzw-cur .titleBox {
  padding-bottom: 27px;
}
.zpzw-cur .titleBox .exp_add:hover img:first-child {
  opacity: 1 !important;
}
.zpzw-cur .titleBox .exp_add:hover img:last-child {
  opacity: 0 !important;
}
.zpzw-cur .titleBox .exp_add img:first-child {
  opacity: 0 !important;
}
.zpzw-cur .titleBox .exp_add img:last-child {
  opacity: 1 !important;
}
.zpzw-cur .hr {
  display: none;
}
.zpzw-cur .bodyBox {
  display: none;
}
.zpzw-cur .email {
  display: none;
}

@media (max-width: 639px) {
  .cradBox {
    padding: 0;
    padding-top: 20px;
  }
  .cradBox .hr {
    margin: 6px 0;
  }
  .cradBox .email {
    padding: 12px;
  }
  .cradBox .bodyBox {
    padding: 12px;
  }
  .cradBox .bodyBox .cont {
    margin-bottom: 6px;
  }
  .cradBox .titleBox {
    flex-direction: column;
  }
  .cradBox .titleBox .exp .info {
    font-size: 16px;
    padding: 0 12px;
  }
}
.pageBox .page {
  color: rgba(255, 255, 255, 0.5);
  font-size: 36px;
}
.pageBox .page > .cur {
  color: rgb(255, 255, 255);
}

.fzlc {
  display: flex;
  max-width: 1440px;
  width: 100%;
}
.fzlc .info {
  display: flex;
  flex-direction: column;
  gap: 29px;
}
.fzlc .info > div {
  font-size: 18px;
}

.qywh * {
  transition: 500ms;
}
.qywh .cur {
  overflow: hidden;
}
.qywh .cur .icon img:first-child {
  opacity: 0;
}
.qywh .cur .icon img:last-child {
  opacity: 1;
}
.qywh .cur .title {
  border-color: #000;
  color: #000;
}
.qywh .cur .cont {
  display: block;
}

.wdzx-menu-cur {
  color: #000;
  position: relative;
}
.wdzx-menu-cur::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  background-color: #000;
  width: 70px;
}

.modal2 {
  margin-top: 100px;
}
.modal2 > .title {
  box-sizing: border-box;
  padding: 0 13%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 30px;
}
.modal2 > .title .name {
  font-weight: bold;
  font-size: 3.7rem;
  display: flex;
  align-items: center;
  column-gap: 40px;
  position: relative;
}
.modal2 > .title .name .ENName {
  color: #E6E6E6;
  font-size: 2.5rem;
  position: absolute;
  top: 60%;
  font-weight: 300;
  z-index: -1;
  white-space: nowrap;
}
.modal2 > .title .name .exp {
  font-size: 1.7rem !important;
  font-weight: 400 !important;
  opacity: 1;
  transition: 500ms;
  display: flex;
  align-items: center;
  gap: 20px;
}
.modal2 > .title .name .exp img {
  width: 40px;
  object-fit: contain;
}
.modal2 > .title .info {
  font-weight: bold;
  font-size: 1.1rem;
}

.footer1 {
  margin-top: 100px;
  background: unset;
  background: #F2F2F2 !important;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer1 .title {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 20px !important;
}
.footer1 .myBtn {
  margin-top: 20px;
  border-radius: 999px;
  color: #f3f3f3;
  font-size: 1.2rem;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 60px;
  transition: 500ms;
}
.footer1 .myBtn:hover {
  background-color: #313eec;
  color: #fff;
}

.footer2 {
  background-color: #fff !important;
  margin-top: 40px !important;
  padding: 0 7% !important;
}
.footer2 .exp {
  margin-top: 20px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.footer2 .exp hr {
  margin: 1rem 0;
}
.footer2 .exp .info {
  color: #8F8F8F;
  font-size: 1rem;
  letter-spacing: 0;
}
.footer2 .exp .logo {
  margin-left: auto;
  display: flex;
  gap: 30px;
}
.footer2 .exp .logo .logoItem {
  height: 22px;
  position: relative;
  cursor: pointer;
}
.footer2 .exp .logo .logoItem:hover .popup {
  opacity: 1;
}
.footer2 .exp .logo .logoItem img {
  height: 35px;
}
.footer2 .nav {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 20x;
}
.footer2 .nav .block {
  width: 30%;
}
.footer2 .nav .block .title {
  font-size: 1.2rem;
  padding: 17px 0;
  border-bottom: 1px solid #000;
  color: #000 !important;
}
.footer2 .nav .block .item {
  color: #8F8F8F;
  cursor: pointer;
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(143, 143, 143, 0.5);
  transition: 500ms;
}
.footer2 .nav .block .item:hover {
  color: #313eec;
}
.footer2 .my {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.footer2 .my .input {
  width: 50%;
  position: relative;
}
.footer2 .my .input .myBtn {
  border-radius: 999px;
  background-color: #000;
  color: white;
  width: 100px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 8px;
  top: 8px;
  transition: 500ms;
}
.footer2 .my .input .myBtn:hover {
  background-color: #313eec;
  color: #fff;
}
.footer2 .my .input input {
  height: 60px;
  background-color: #F2F2F2;
  border-radius: 999px;
  width: 100%;
  border: none;
  outline: none;
  padding-left: 50px;
  box-sizing: border-box;
  color: #8F8F8F;
  font-size: 1rem;
}
.footer2 .my .input input::placeholder {
  color: #8F8F8F;
  font-size: 1rem;
}
.footer2 .my .info {
  width: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: start;
  column-gap: 20px;
}
.footer2 .my .info .logo {
  width: 110px;
  object-fit: contain;
}

.toTop {
  position: fixed;
  right: 40px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  z-index: 9999;
}
.toTop .box {
  display: none;
  flex-direction: column;
  transition: 500ms;
  box-sizing: border-box;
  padding: 30px;
  background-color: #fff;
  position: absolute;
  left: -220%;
  top: -70%;
  border-radius: 16px;
  gap: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 淡淡的阴影 */
  opacity: 0;
}
.toTop .box > div:nth-child(1) {
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
}
.toTop .box .title {
  color: rgba(128, 128, 128, 0.6);
  font-size: 1rem;
}
.toTop .box .text {
  color: #000;
  font-size: 1.3rem;
}
.toTop .box .QR {
  width: 165px;
  aspect-ratio: 1/1;
}
.toTop .box .QR img {
  width: 100%;
  height: 100%;
}
.toTop .img {
  width: 110px;
  cursor: pointer;
}

@media (max-width: 760px) {
  .footer2 .exp .logo {
    gap: 0;
    justify-content: space-between;
    margin-left: 0 !important;
  }
  .footer2 .nav {
    flex-direction: column;
  }
  .footer2 .nav .block {
    width: 100% !important;
  }
  .footer2 .my {
    flex-direction: column;
  }
  .footer2 .my .info {
    width: 100% !important;
    flex-direction: column;
  }
  .footer2 .my .info .logo {
    margin-bottom: 10px;
  }
  .footer2 .my .input {
    width: 100% !important;
  }
  .footer1 .title {
    padding: 0 20px;
    font-size: 2rem;
  }
}
@media (max-width: 760px) {
  body {
    padding-right: 0 !important;
  }
  .title .ENName {
    font-size: 24px !important;
    right: 50% !important;
    transform: translateX(50%) !important;
  }
  .headerBox {
    padding: 0 10px;
  }
  .headerBox .menuDetail {
    top: 0;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box;
    height: 0;
    overflow: auto;
    background-color: #fff;
  }
  .headerBox .menuDetail .nav {
    flex-direction: column;
  }
  .headerBox .menuDetail .nav .block2 {
    width: 100%;
  }
  .headerBox .text-bg-dark {
    background-color: #fff !important;
  }
  .headerBox .expBox {
    display: none !important;
  }
  .maxImg {
    height: unset !important;
  }
  .maxImg .aircraftBox {
    width: 100% !important;
    bottom: 10% !important;
  }
  .maxImg .content {
    margin-left: 0;
    min-width: 0 !important;
    width: 100% !important;
  }
  .maxImg .content .myBtn {
    width: 50%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
  }
  .maxImg .content .cont {
    min-width: 0 !important;
    width: 100% !important;
    padding: 10px;
    box-sizing: border-box;
    row-gap: 20px;
  }
  .maxImg .content .cont .mouse {
    margin-left: 50px;
  }
  .maxImg .content .cont .en {
    font-size: 1.1rem;
    width: 70%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .maxImg .content .cont .en::before {
    content: "";
    width: 20%;
    height: 5px;
    background-color: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    border-radius: 999px;
  }
  .maxImg .content .cont .title {
    margin-top: 50px;
    text-align: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .modal2 {
    margin-top: 50px;
  }
  .modal2 .title {
    flex-direction: column;
    align-items: center;
    letter-spacing: 0 !important;
  }
  .modal2 .title .name {
    flex-direction: column !important;
    font-size: 3rem;
  }
  .modal2 .container2 .block .title {
    align-items: start;
    padding: 10px 20px;
    gap: 0;
    position: relative;
  }
  .modal2 .container2 .block .title .page {
    position: absolute;
    margin: 0;
    top: 15px;
    right: 10px;
  }
  .modal2 .container2 .block .cont .info {
    width: calc(100% - 20px);
    left: 10px;
    top: 10px;
    bottom: unset;
    padding: 10px;
    box-sizing: border-box;
    font-size: 1rem;
  }
  .modal2:nth-child(9) .exp .logo {
    gap: 0;
    justify-content: space-between;
    margin-left: 0 !important;
  }
  .modal2:nth-child(9) .nav {
    flex-direction: column;
  }
  .modal2:nth-child(9) .nav .block {
    width: 100% !important;
  }
  .modal2:nth-child(9) .my {
    flex-direction: column;
  }
  .modal2:nth-child(9) .my .info {
    width: 100% !important;
    flex-direction: column;
  }
  .modal2:nth-child(9) .my .info .logo {
    margin-bottom: 10px;
  }
  .modal2:nth-child(9) .my .input {
    width: 100% !important;
  }
  .modal2:nth-child(8) .title {
    padding: 0 20px;
    font-size: 2rem;
    letter-spacing: 0px !important;
  }
  .modal2:nth-child(7) .container2 {
    padding: 0 10px !important;
    box-sizing: border-box;
  }
  .modal2:nth-child(7) .container2 .list {
    flex-direction: column;
  }
  .modal2:nth-child(7) .container2 .list .item {
    width: 100%;
  }
  .modal2:nth-child(7) .container2 .navs {
    gap: 0;
    justify-content: space-between;
  }
  .modal2:nth-child(7) .container2 .pageBox {
    width: 100%;
  }
  .modal2:nth-child(6) .container2 {
    padding: 0 !important;
  }
  .modal2:nth-child(6) .item {
    flex-direction: column !important;
    height: unset !important;
  }
  .modal2:nth-child(6) .item > div {
    width: 100% !important;
    padding: 10px !important;
  }
  .modal2:nth-child(5) .controls .cent {
    flex-direction: column !important;
  }
  .modal2:nth-child(5) .controls .cent .text {
    font-size: 2rem !important;
    text-align: center !important;
  }
  .modal2:nth-child(5) .controls .info {
    text-align: center !important;
    margin-top: 0 !important;
  }
  .modal2:nth-child(4) .content .block-a {
    width: 100%;
  }
  .modal2:nth-child(3) .cont {
    margin: 0;
    width: 100%;
  }
  .modal2:nth-child(3) .cont .block-a {
    flex-direction: column;
    height: unset;
    box-sizing: border-box;
    padding: 10px;
  }
  .modal2:nth-child(3) .cont .block-a .block-b {
    width: 100% !important;
  }
  .modal2:nth-child(3) .cont .block-a .block-b .img {
    height: auto !important;
  }
  .modal2:nth-child(3) .cont .block-a .block-b .btn-TS {
    margin: 0 auto;
  }
  .toTop {
    right: 35px !important;
    bottom: 70px !important;
  }
  .toTop .box {
    left: -320%;
    top: -200%;
  }
  .toTop .img {
    width: 70px;
  }
}
@font-face {
  font-family: "AlibabaPuHuiTi-55";
  src: url("http://als.ceshi.guo123.cn:8080/webfile/static/font/AlibabaPuHuiTi-3-55-RegularL3.ttf") format("ttf"), url("http://als.ceshi.guo123.cn:8080/webfile/static/font/AlibabaPuHuiTi-3-55-RegularL3.otf") format("otf"), url("http://als.ceshi.guo123.cn:8080/webfile/static/font/AlibabaPuHuiTi-3-55-RegularL3.woff") format("woff"), url("http://als.ceshi.guo123.cn:8080/webfile/static/font/AlibabaPuHuiTi-3-55-RegularL3.woff2") format("woff2");
  font-style: normal;
}
@font-face {
  font-family: "AlibabaPuHuiTi-65";
  src: url("http://als.ceshi.guo123.cn:8080/webfile/static/font/AlibabaPuHuiTi-3-65-Medium.ttf") format("ttf"), url("http://als.ceshi.guo123.cn:8080/webfile/static/font/AlibabaPuHuiTi-3-65-Medium.otf") format("otf"), url("http://als.ceshi.guo123.cn:8080/webfile/static/font/AlibabaPuHuiTi-3-65-Medium.woff") format("woff"), url("http://als.ceshi.guo123.cn:8080/webfile/static/font/AlibabaPuHuiTi-3-65-Medium.woff2") format("woff2");
  font-style: normal;
}
@font-face {
  font-family: "HarmonyOS";
  src: url("https://udnsunusn.oss-cn-hangzhou.aliyuncs.com/work-space/ylkj/als/font/HarmonyOS_Sans_Naskh_Arabic_Light.ttf") format("ttf");
}
@font-face {
  font-family: "Montserrat";
  src: url("http://als.ceshi.guo123.cn:8080/webfile/static/font/Montserrat-Bold.ttf") format("ttf");
}
@font-face {
  font-family: "Montserrat-Light";
  src: url("http://als.ceshi.guo123.cn:8080/webfile/static/font/Montserrat-Light.ttf") format("ttf");
}
/* 应用字体，排除英文单词 */
body {
  font-family: "AlibabaPuHuiTi-55", sans-serif; /* 应用自定义字体 */
}

.number {
  font-family: "Montserrat", sans-serif; /* 应用自定义字体 */
}

.en {
  font-family: "Montserrat", sans-serif;
}

.MontserratLight {
  font-family: "Montserrat-Light", sans-serif;
}

.font-HarmonyOS {
  font-family: "HarmonyOS", sans-serif; /* 应用自定义字体 */
}

.font-title {
  font-family: "AlibabaPuHuiTi-65", sans-serif; /* 应用自定义字体 */
}

.defaultFamily {
  font-family: sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

*:not([a-zA-Z]) {
  letter-spacing: 0px; /* 设置除包含英文字母的元素外的所有字体的间隔为2像素 */
}

img {
  object-fit: contain;
}

.test {
  border: 1px solid red;
}

a {
  text-decoration: none;
}

.ellipsis-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  line-height: 1.5;
  max-height: 4.5em;
}

.ellipsis-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-height: 1.5;
  max-height: 4.5em;
}

.ellipsis-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-height: 1.5;
  max-height: 4.5em;
}

.ellipsis-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
  line-height: 1.5;
  max-height: 4.5em;
}

/*# sourceMappingURL=index.css.map */
