/* 头部 */
.navbar-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  transition: all 0.3s ease;
}

.navbar-main-default {
  background-color: rgba(0, 0, 0, 0.3);
}

.navbar-main-active {
  background-color: #ffffff;
}

.navbar-content {
  max-width: 1452px;
  margin: 0 auto;
  height: 60px;
  padding: 6px 16px;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.navbar-logo {
  width: 100px;
  height: 56px;
  position: absolute;
  left: 16px;
  top: 2px;
  opacity: 0.86;
  transition: opacity 0.3s ease;
  display: block;
}

.navbar-logo img {
  width: 100%;
  height: 100%;
}

.navbar-menu {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu-item {
  font-size: 14px;
  position: relative;
  padding: 0 32px;
}

.navbar-menu-link {
  position: relative;
  transition: color 0.3s ease;
  cursor: pointer;
}

.navbar-link-default {
  color: rgba(255, 255, 255, 0.86) !important;
}

.navbar-link-active {
  color: rgba(0, 0, 0, 0.86) !important;
}

.navbar-menu-link:hover,
.navbar-menu-link.active {
  color: #15bbcf !important;
  text-decoration: none;
}

.navbar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 8px 0;
  margin-top: 10px;
  display: none;
  z-index: 99;
}

.navbar-dropdown.show {
  display: block;
}

.navbar-dropdown-item {
  display: block;
  padding: 8px 24px;
  color: #333;
}

.navbar-dropdown-item:hover,
.navbar-dropdown-item.active {
  background: #f5f5f5;
  color: #15bbcf;
  text-decoration: none;
}

/* 标题 */
.title-wrap {
  text-align: center;
  margin-bottom: 72px;
}

.title-wrap .title {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 18px;
}

.title-wrap .desc {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.58);
}

/* 首页 */
.index-s2 .tab-item {
  width: 240px;
  height: 210px;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #efefef;
  border-radius: 6px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.index-s2 .tab-item:last-child {
  margin-bottom: 0;
}

.index-s2 .tab-item.active {
  background: linear-gradient(90deg, #06cdc3 0%, #4089f2 100%);
}

.index-s2 .tab-item.active .tab-text {
  color: #fff;
}

.index-s2 .tab-item .tab-icon {
  width: 100px;
  height: 100px;
}

.index-s2 .tab-item .tab-text {
  font-size: 26px;
  color: #222;
}

.index-s2 .tab-content-card {
  flex: 1;
  -ms-flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 30px rgba(177, 177, 177, 0.2);
  border: 1px solid rgba(159, 159, 159, 0.2);
  border-radius: 6px;
}

.index-s2 .show {
  display: flex !important;
}

.index-s3 .index-detail-btn {
  font-size: 16px;
  color: white;
  padding: 18px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.index-s3 .index-detail-btn:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: 0px 9px 18.5px rgba(67, 133, 245, 0.3);
}

.index-s4 .marquee1 {
  margin-bottom: 20px;
}

.index-s4 .marquee-content > * + * {
  margin-left: 20px;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-button-prev,
.swiper-button-next {
  width: 30px;
  height: 30px;
}

.qrCode {
  opacity: 0;
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* 关于我们 */
.about-s2 {
  background: linear-gradient(90deg, #f0f4fe 0%, rgba(240, 244, 254, 0.1) 100%);
  background-image: url("../img/about/about_bg.png");
  background-size: cover;
}

.about-s3 .card-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.about-s3 .card-item:hover {
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}

/* 底部白色面板（默认隐藏） */
.about-s3 .card-item .card-hover-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px 0 50px 40px;
  opacity: 0;
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.about-s3 .card-item:hover .card-hover-box {
  opacity: 1;
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* 客户案例 */
.case-s3 .tab-item {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #737373;
  cursor: pointer;
}

.case-s3 .tab-item.active {
  font-size: 15px;
  color: #15bbcf;
}

/* 核心能力 */
.core-s2 .card-item {
  flex: 1;
  background-color: #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding-top: 12px;
  margin: 0 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.core-s4 {
  background-image: url("../img/product/s4_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.core-s4 .card-item-wapper {
  width: 50%;
}

.core-s4 .card-item {
  background: linear-gradient(0deg, #f3f7ff 0%, #ffffff 100%);
  border: 2px solid #ffffff;
  border-radius: 20px;
  padding: 24px;
  margin: 0 10px 20px;
}

.seat-s1 .btn {
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 40px;
  padding: 12px 40px;
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s;
}

.seat-s1 .btn:hover {
  background-color: #ffffff;
  color: #1f2937;
}

.seat-s3 .item {
  background-color: #3d3d3d;
  border-radius: 20px;
  margin-bottom: 24px;
  position: relative;
}

.seat-s3 .item:first-child {
  background: linear-gradient(to bottom, #484848 0%, #323232 100%);
}

.seat-s3 .item:nth-child(6) {
  background: linear-gradient(to bottom, #323232, #989898);
}

.seat-s3 .item > img {
  width: 100%;
  object-fit: cover;
}

.seat-s3 .item .content {
  position: absolute;
  top: 40px;
  left: 40px;
}

.seat-s3 .item .title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.seat-s3 .item .desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
}

.seat-s3 .item .desc .d-item {
  line-height: 2;
  padding-left: 18px;
  position: relative;
}

.seat-s3 .item .desc .d-item::before {
  content: "";
  width: 10px;
  height: 10px;
  background: linear-gradient(90deg, #01d4bf 0%, #4385f5 100%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.seat-s8 .contact-btn {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 142px;
  padding: 12px 142px;
  transition: all 0.3s;
}

.seat-s8 .contact-btn:hover {
  background-color: #fff;
  color: #333;
}

.mining-s2 .card-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.mining-s2 .card-item:hover {
  transform: scale(1.05);
}

.mining-s3 .tab-item {
  height: 80px;
  flex: 1;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.mining-s3 .tab-item .tab-item-txt {
  font-size: 24px;
  color: #0c2042;
  transition: all 0.3s;
}

.mining-s3 .tab-item.active .tab-item-txt {
  color: #fff;
}

.mining-s3 .tab-slider {
  width: 20%;
  height: 80px;
  background: linear-gradient(90deg, #01d4bf 0%, #4385f5 100%);
  border-radius: 80px;
  position: absolute;
  transition: all 0.3s;
}

.mining-s4 .btn {
  width: 280px;
  height: 62px;
  line-height: 62px;
  font-size: 28px;
  color: #fff;
  background: linear-gradient(90deg, #01d4bf 0%, #4385f5 100%);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 48px;
}

.mining-s4 .btn:hover {
  box-shadow: 0px 9px 18.5px rgba(67, 133, 245, 0.3);
}

.mining-s5 .item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mining-s5 .item:hover {
  transform: scale(1.05);
}

.mining-s5 .item .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 36px;
  transition: all 0.3s;
}

.mining-s5 .item:hover .title {
  transform: translateY(40px);
  opacity: 0;
}

.mining-s5 .item .content {
  text-align: center;
  padding-left: 96px;
  padding-right: 96px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s;
}

.mining-s5 .item:hover .content {
  opacity: 1;
}

.mining-s6 .item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.mining-s6 .item:hover {
  transform: scale(1.05);
}

.mining-s6 .item .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 36px;
  transition: all 0.3s;
}

.mining-s6 .item:hover .title {
  transform: translateY(40px);
  opacity: 0;
}

.mining-s6 .item .content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  padding-left: 72px;
  padding-right: 72px;
  opacity: 0;
  transition: all 0.3s;
}

.mining-s6 .item:hover .content {
  opacity: 1;
}

.mining-s8 .item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.mining-s8 .item:hover {
  transform: scale(1.05);
}

.mining-s8 .item .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  padding-bottom: 1.75rem;
  transform: translateY(64px);
  transition: all 0.3s;
}

.mining-s8 .item:hover .content {
  transform: translateY(0);
}

.mining-s8 .item .content .txt {
  margin-top: 12px;
  opacity: 0;
  transition: all 0.3s;
}
.mining-s8 .item:hover .content .txt {
  opacity: 1;
}

/* 文旅体验 */
.tourism-tab {
  width: 100%;
  background-color: #fff;
}

.tourism-tab .tab-item {
  position: relative;
}

.tourism-tab .tab-item.active::after {
  content: "";
  height: 2px;
  background: linear-gradient(90deg, #01d4bf 0%, #4385f5 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.tourism-tab .tab-item.active span {
  color: #06cdc3;
}

.tourism-tab-content.show {
  display: block !important;
}

.tourism-content1-s2 .card-item {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tourism-content1-s2 .card-item:hover {
  transform: scale(1.05);
}

.tourism-content1-s2 .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 28px 36px;
  transform: translateY(55%);
  transition: all 0.3s ease;
  pointer-events: none;
}

.tourism-content1-s2 .card-item:hover .card-content {
  transform: translateY(0);
}

.tourism-content1-s2 .card-title {
  font-size: 18px;
  color: #ffffff;
  margin: 0;
}

.tourism-content1-s2 .card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-align: justify;
  line-height: 1.6;
  margin-top: 12px;
  opacity: 0;
  transition: all 0.3s ease;
}

.tourism-content1-s2 .card-item:hover .card-desc {
  opacity: 1;
}

.tourism-content1-s3 .dot {
  position: relative;
}

.tourism-content1-s3 .dot::before {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(90deg, #06cdc3 0%, #06cdc3 100%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.tourism-content1-s4 .card-item {
  flex: 1;
  min-width: 30%;
}

.tourism-content1-s4 .card-item-large {
  flex: 2;
  min-width: 64%;
}

.tourism-content1-s4 .card-item-hover {
  transition: all 0.3s;
}

.tourism-content1-s4 .card-item-hover:hover {
  transform: scale(1.05);
}

.tourism-content1-s5 .card-item {
  transition: all 0.3s;
}

.tourism-content1-s5 .card-item:hover {
  transform: scale(1.05);
}

.tourism-content2-s3 .screen-full {
  background-image: url("../img/tourism/vr/s4_bg_img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.tourism-content2-s3 .tab-item {
  font-size: 24px;
  color: black;
  height: 80px;
  flex: 1;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
}

.tourism-content2-s3 .tab-item.active {
  color: #fff;
}

.tourism-content2-s3 .tab-slider {
  width: 25%;
  height: 80px;
  background: linear-gradient(90deg, #01d4bf 0%, #4385f5 100%);
  border-radius: 80px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  z-index: 0;
}

.tourism-content2-s3 .tab-img.show {
  display: block !important;
}

.simulation-content1-s3 .screen-full {
  background-image: url("../img/simulation/military/s4_bg_img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.simulation-content2-s3 .screen-full {
  background-image: url("../img/simulation/educate/s4_bg_img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.simulation-content3-s2 .screen-full {
  background-image: url("../img/simulation/politics/s4_bg_img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pipeline-s1 .swiper-container {
  width: 100%;
  height: 100%;
}

.gradient-hover-btn {
  font-size: 16px;
  color: #fff;
  display: inline-block;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: transparent;
}

.gradient-hover-btn:hover {
  border-color: transparent;
}

.gradient-hover-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #06cdc3 0%, #4089f2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}

.gradient-hover-btn:hover::before {
  opacity: 1;
}

.pipeline-s2 .tab-item {
  flex: 1;
  height: 48px;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.pipeline-s2 .tab-item .tab-icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

.pipeline-s2 .tab-item .tab-txt {
  font-size: 16px;
  color: #0c2042;
  transition: all 0.3s ease;
}

.pipeline-s2 .tab-item .tab-txt.active {
  color: #fff;
}

.pipeline-s2 .tab-slider {
  width: 25%;
  height: 48px;
  border-radius: 12px;
  position: absolute;
  transition: all 0.3s ease;
}

.pipeline-s2 .show {
  display: flex !important;
}

.pipeline-s4 .tab-item {
  background-color: #eceef5;
  border-radius: 12px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 24px;
}

.pipeline-s4 .tab-item.active {
  background-color: #ffffff;
  box-shadow: 0px 4px 15px 0px rgba(12, 32, 66, 0.1);
}

.pipeline-s4 .tab-content-card {
  flex: 1;
  padding: 20px;
  border-radius: 12px;
  box-shadow:
    -3px 3px 23px 0px rgba(12, 32, 66, 0.1),
    inset 2px 2px 0px 0px rgba(255, 255, 255, 0.5);
}

.pipeline-s4 .tab-content-card .tab-content {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pipeline-s4 .tab-content-card .tab-content.show {
  display: flex !important;
}

.pipeline-s5 .btn {
  font-size: 16px;
  color: #fff;
  border-radius: 8px;
  padding: 12px 88px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pipeline-s5 .btn:hover {
  box-shadow: 0px 9px 18.5px rgba(67, 133, 245, 0.3);
}

.pipeline-s6 {
  background-image: url("../img/pipeline/s6_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 120px;
  padding-bottom: 74px;
}

.pipeline-s6 .wrapper {
  background-color: rgba(255, 255, 255, 0.38);
  box-shadow: inset 2px 2px 1px 0px rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 40px 104px;
  margin-top: 64px;
}

.pipeline-s6 .btn {
  font-size: 16px;
  color: #fff;
  border-radius: 8px;
  padding: 12px 88px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pipeline-s6 .btn:hover {
  box-shadow: 0px 9px 18.5px rgba(67, 133, 245, 0.3);
}

.pipeline-s8 .dot {
  position: relative;
}

.pipeline-s8 .dot::before {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(90deg, #03d2c0 0%, #4188f3 100%);
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}

.pipeline-s9 {
  background-image: url("../img/pipeline/s9_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 128px;
  padding-bottom: 180px;
  margin-top: 120px;
}

.pipeline-s9 .card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pipeline-s9 .card:hover {
  transform: scale(1.05);
}

.pipeline-s11 {
  padding: 128px 0 180px;
  background: url("../img/pipeline/s11_bg.png") no-repeat center/cover;
}

.pipeline-s11 .table-title {
  height: 112px;
  line-height: 112px;
  font-size: 24px;
  color: white;
  text-align: center;
  font-weight: bold;
}

.pipeline-s11 .table-cell {
  flex: 1;
  min-width: 33.33%;
  height: 80px;
  line-height: 80px;
  font-size: 20px;
  text-align: center;
}
