@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.mobile-view1 {
  background-image: url("../img/view1/bg1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px 20px 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.mobile-view1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.75) 60%);
  z-index: 0;
  pointer-events: none;
}
.mobile-view1 .mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.mobile-view1 .mobile-header .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-view1 .mobile-header .logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.mobile-view1 .mobile-header .logo span {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.mobile-view1 .mobile-header .menu-btn {
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.mobile-view1 .mobile-header .menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-view1 .mobile-header .menu-btn.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.mobile-view1 .mobile-header .menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.mobile-view1 .mobile-header .menu-btn.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.mobile-view1 .mobile-content {
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.mobile-view1 .mobile-content .title {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
  margin-bottom: 20px;
}
.mobile-view1 .mobile-content .bor {
  width: 160px;
  border-bottom: 2px dotted #333;
  margin-bottom: 24px;
}
.mobile-view1 .mobile-content .text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}
.mobile-view1 .mobile-content .text p {
  margin-bottom: 8px;
}

/* 移动端弹出菜单 */
.mobile-menu-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 50;
}
.mobile-menu-mask.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 78%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu .mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}
.mobile-menu .mobile-menu-header .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-menu .mobile-menu-header .logo img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.mobile-menu .mobile-menu-header .logo span {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.mobile-menu .mobile-menu-header .close-btn {
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
}
.mobile-menu .mobile-menu-header .close-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #333;
  border-radius: 1px;
}
.mobile-menu .mobile-menu-header .close-btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-menu .mobile-menu-header .close-btn span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-menu .mobile-menu-list {
  list-style: none;
  padding: 10px 0;
}
.mobile-menu .mobile-menu-list li a {
  display: block;
  padding: 16px 20px;
  font-size: 16px;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #f2f2f2;
  transition: background 0.2s ease, color 0.2s ease;
}
.mobile-menu .mobile-menu-list li a:active {
  background: #f5f8ff;
  color: #2F75FF;
}

.mobile-view2 img {
  width: 100%;
}

/* 业务应用场景（与 index.html view3 样式一致） */
.mobile-view3 {
  padding: 40px 10px;
  background: #fff;
}
.mobile-view3 .section-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
}
.mobile-view3 .section-title span {
  color: #2F75FF;
}
.mobile-view3 .section-subtitle {
  font-size: 14px;
  color: #061940;
  text-align: center;
  margin-bottom: 28px;
}
.mobile-view3 .scene-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mobile-view3 .scene-card {
  background: #F9FCFF;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2F75FF;
  width: calc(50% - 10px);
}
.mobile-view3 .scene-card .pc1 {
  background: linear-gradient(90.27deg, #EDF3FF 0.22%, #F7FBFF 99.77%);
  padding: 16px;
  display: flex;
  align-items: center;
}
.mobile-view3 .scene-card .pc1 img {
  width: 26px;
  height: 26px;
  margin-right: 10px;
}
.mobile-view3 .scene-card .pc1 .text {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.mobile-view3 .scene-card .pc2 {
  padding: 16px;
}
.mobile-view3 .scene-card .pc2 .text1 {
  font-size: 15px;
  font-weight: 600;
  color: #2F75FF;
}
.mobile-view3 .scene-card .pc2 .text2 {
  margin-top: 10px;
  color: #333;
  font-size: 12px;
  line-height: 1.6;
}

/* 实力有保障（与 index.html view4 样式一致） */
.mobile-view4 {
  padding: 40px 20px;
  background: #fff;
}
.mobile-view4 .title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
}
.mobile-view4 .title span {
  color: #2F75FF;
}
.mobile-view4 .text {
  font-size: 14px;
  color: #999;
  text-align: center;
  margin-bottom: 24px;
}
.mobile-view4 .content {
  margin-top: 24px;
}
.mobile-view4 .content .tab {
  display: flex;
  justify-content: center;
  gap: 24px;
  border-bottom: 1px solid #E5E3E3;
  margin-bottom: 28px;
  overflow-x: auto;
}
.mobile-view4 .content .tab .item {
  font-size: 14px;
  color: #666;
  padding-bottom: 12px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.mobile-view4 .content .tab .item:hover {
  color: #2F75FF;
}
.mobile-view4 .content .tab .item.active {
  color: #2F75FF;
  font-weight: 600;
}
.mobile-view4 .content .tab .item.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: #2F75FF;
  border-radius: 2px;
}
.mobile-view4 .content .tab-view {
  padding: 10px 0;
}
.mobile-view4 .content .tab-view .tab-panel {
  display: none;
}
.mobile-view4 .content .tab-view .tab-panel.active {
  display: block;
}
.mobile-view4 .content .tab-view .tab-panel .panel-title {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  text-align: center;
}
.mobile-view4 .content .tab-view .tab-panel .panel-text {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
}
.mobile-view4 .content .tab-view .tab-panel .panel-text p {
  margin-bottom: 12px;
}
.mobile-view4 .content .tab-view .tab-panel .panel-right {
  display: flex;
  justify-content: center;
}
.mobile-view4 .content .tab-view .tab-panel .panel-right .panel-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 16px;
}

/* 成功案例（与 index.html view5 样式一致） */
.mobile-view5 {
  padding: 40px 20px;
  background: #f7f8fa;
}
.mobile-view5 .title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
}
.mobile-view5 .title span {
  color: #2F75FF;
}
.mobile-view5 .text {
  font-size: 14px;
  color: #061940;
  text-align: center;
  margin-bottom: 24px;
}
.mobile-view5 .case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.mobile-view5 .card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}
.mobile-view5 .card .photo {
  width: 100%;
  height: 110px;
  background: #f0f4f8;
  overflow: hidden;
}
.mobile-view5 .card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-view5 .card .info {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobile-view5 .card .info .role {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.mobile-view5 .card .info .desc {
  font-size: 11px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}
.mobile-view5 .card .info .footer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
}
.mobile-view5 .card .info .footer .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2F75FF;
  overflow: hidden;
}
.mobile-view5 .card .info .footer .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-view5 .card .info .footer .name {
  font-size: 13px;
  color: #333;
  line-height: 1;
}
.mobile-view5 .card .info .footer .badge {
  margin-left: auto;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 10px;
  line-height: 1;
}

/* 页脚（与 mobile-view6 截图一致） */
.mobile-view6 {
  background: #0B0F1A;
  color: #c8ccd4;
  padding: 28px 20px 20px;
}
.mobile-view6 .footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.mobile-view6 .footer-left .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.mobile-view6 .footer-left .logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.mobile-view6 .footer-left .logo .text .name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.mobile-view6 .footer-left .logo .text .en {
  font-size: 13px;
  color: #8a8f99;
}
.mobile-view6 .footer-left .contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-view6 .footer-left .contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #c8ccd4;
}
.mobile-view6 .footer-left .contact .contact-item .icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: #8a8f99;
}
.mobile-view6 .footer-qr {
  text-align: center;
  flex: 0 0 auto;
}
.mobile-view6 .footer-qr .qr-box {
  width: 76px;
  height: 76px;
  margin-bottom: 8px;
}
.mobile-view6 .footer-qr .qr-box svg {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.mobile-view6 .footer-qr .qr-label {
  font-size: 12px;
  color: #8a8f99;
}
.mobile-view6 .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}
.mobile-view6 .footer-bottom .copyright {
  font-size: 12px;
  color: #6c7079;
  text-align: center;
  line-height: 1.5;
}

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