@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: initial;
}

a {
  text-decoration: none;
  display: block;
  color: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.border-red {
  outline: 1rem solid red;
  /*box-shadow: inset 0 0 15rem 2rem #F00;*/
}

.border-green {
  outline: 1rem solid greenyellow;
  box-shadow: inset 0 0 15rem 2rem greenyellow;
}

.border-blue {
  outline: 1rem solid #00BAFF;
  box-shadow: inset 0 0 15rem 2rem #00BAFF;
}

.container {
  width: 100%;
  height: 100%;
  color: #333333;
  /*background-size: 100% 100%;*/
  /*scrollbar-width: none; !* firefox *!*/
  /*-ms-overflow-style: none; !* IE 10+ *!*/
  /*font-size: 16rem;*/
  /*overflow: auto;*/
}

/*nav*/
.nav {
  z-index: 999;
  height: 80rem;
  line-height: 80rem;
  font-size: 18rem;
  position: sticky;
  top: 0;
  /*background: #FFFFFF;*/
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1rem #ECECEC solid;
  /*padding: 0 300rem;*/
}
.nav .logo {
  width: 175rem;
  height: 46rem;
}
.nav .nav-content {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 1200rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16rem;
}
.nav .nav-content .nav-detail {
  display: flex;
  align-items: center;
  gap: 50rem;
  cursor: pointer;
}
.nav .nav-content .nav-detail .nav-item {
  white-space: nowrap;
}
.nav .nav-content .nav-detail .nav-item a.active {
  color: #00a0e9 !important;
}

/*banner*/
.swiper {
  width: 100%;
  height: 580rem;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 自定义分页样式 */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #ffffff;
  opacity: 1;
  transition: all 0.3s;
  margin: 0 4px !important;
}

.swiper-pagination-bullet-active {
  width: 20px;
  background: #ffffff;
  border-radius: 10px;
}

.swiper-pagination {
  bottom: 24px !important;
}

/*内容*/
.title {
  font-weight: bold;
  font-size: 32rem;
}

.subtitle {
  font-size: 20rem;
  color: #BBBBBB;
  margin: 20rem 0 40rem;
  /*line-height: 110rem;*/
}

.content {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.content-item {
  margin: 60rem auto 0;
  scroll-margin-top: 80rem;
}

.component {
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 22rem;
}

.component-item .detail-title-box {
  color: #ffffff;
  width: 100%;
  height: 232rem;
  font-size: 30rem;
  position: relative;
}

.component-item .detail-title-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 117, 183, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.detail-title-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4%;
}

.detail-title-content .icon {
  z-index: 99;
  width: 38rem;
}

/* 将横线移到文字容器 */
.detail-title-content > div:last-child {
  position: relative;
  display: inline-block;
}

/* 横线样式 */
.detail-title-content > div:last-child::after {
  content: "";
  position: absolute;
  left: 40%;
  bottom: -8rem;
  width: 0;
  height: 2rem;
  background: #FFF;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.component-item:hover .detail-title-content > div:last-child::after {
  width: calc(100% + 58rem);
}

.component-item .detail-description {
  padding: 0;
  width: 100%;
  background: #FFFFFF;
  color: #333333;
  font-size: 22rem;
  font-family: Microsoft YaHei;
  box-shadow: 0 0 15rem 0 rgba(0, 0, 0, 0.2);
  border-radius: 0 0 20rem 20rem;
  line-height: 36rem;
  transition: all 0.3s linear;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.component-item:hover .detail-title-box::before {
  opacity: 1;
}

.component-item:hover .detail-description {
  opacity: 1;
  height: 200rem;
  padding: 32rem 16rem 0;
}

.system-process {
  margin-top: 50rem;
  width: 1200rem;
  height: 480rem;
  padding: 0 20rem;
  background: url("/public/images/system-bg.png") no-repeat left top/100% 100%;
  color: #ffffff;
  font-size: 18rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.system-process .system-title__box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  gap: 2%;
}
.system-process .system-title__box .system-title {
  font-size: 32rem;
  font-weight: bold;
  display: flex;
}
.system-process .system-title__box .system-subtitle {
  margin-left: 8rem;
  display: flex;
  flex-direction: column;
  line-height: 40rem;
}
.system-process .system-img {
  background: #ffffff;
  width: 812rem;
  height: 504rem;
  padding: 10rem;
  border-radius: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0rem 0rem 15rem 0rem rgba(0, 0, 0, 0.2);
}

#structure {
  width: 1200rem;
}

#superiority {
  width: 1218rem;
}

.stick {
  width: 8rem;
  height: 42rem;
  background: #0275B7;
  margin-right: 12rem;
}

.structure1 {
  background: url("/public/images/structure1.png") no-repeat left top/100% 100%;
}

.structure2 {
  background: url("/public/images/structure2.png") no-repeat left top/100% 100%;
}

.structure3 {
  background: url("/public/images/structure3.png") no-repeat left top/100% 100%;
}

.structure4 {
  background: url("/public/images/structure4.png") no-repeat left top/100% 100%;
}

.structure5 {
  background: url("/public/images/structure5.png") no-repeat left top/100% 100%;
}

.structure6 {
  background: url("/public/images/structure6.png") no-repeat left top/100% 100%;
}

/*系统平台页面展示*/
.is-selected {
  color: #ffffff;
}

.page-show {
  width: 100%;
  height: 632rem;
  color: #ffffff;
  background: url("/public/images/show-bg.png") no-repeat left top/100% 100%;
}
.page-show .page-show__box {
  width: 1200rem;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4%;
}
.page-show .page-show__box .show-mode {
  display: flex;
  flex-direction: column;
  text-align: left;
  color: #8D8F92;
}
.page-show .page-show__box .show-mode .show-mode__item {
  position: relative;
  padding-left: 20rem;
  cursor: pointer;
  font-size: 20rem;
}
.page-show .page-show__box .show-mode .show-mode__item .stick-tips {
  position: absolute;
  left: 0;
  top: 0;
  width: 8rem;
  height: 42rem;
  background: #0275B7;
  display: none;
}
.page-show .page-show__box .show-mode .show-mode__item.is-selected .stick-tips {
  display: block !important;
}
.page-show .page-show__box .show-mode .show-mode__item + .show-mode__item {
  margin-top: 22%;
}
.page-show .page-show__box .show-mode .show-mode__item .show-title {
  font-size: 24rem;
  font-weight: bold;
  margin-bottom: 4%;
}
.page-show .page-show__box .show-content .pc-page {
  text-align: center;
}
.page-show .page-show__box .show-content .pc-page .pc-page__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4% 1%;
}
.page-show .page-show__box .show-content .pc-page .pc-page__content .pc-page__item img {
  width: 393rem;
  height: 204rem;
  object-fit: contain;
  margin-bottom: 4%;
}
.page-show .page-show__box .show-content .mobile-page img {
  width: 788rem;
  height: 508rem;
  object-fit: contain;
}
.page-show .page-show__box .show-content .account-page img {
  width: 798rem;
  height: 486rem;
  object-fit: contain;
}
.page-show .page-show__box .show-content .show-content > div {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.page-show .page-show__box .show-content .show-content > div.is-show {
  display: block;
  opacity: 1;
}

.advantage1 {
  background: url("/public/images/advantage1.png") no-repeat left top/100% 100%;
}

.advantage2 {
  background: url("/public/images/advantage2.png") no-repeat left top/100% 100%;
}

.advantage3 {
  background: url("/public/images/advantage3.png") no-repeat left top/100% 100%;
}

#superiority .superiority-box {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.superiority-box .superiority-item {
  width: 100%;
  height: 545rem;
  font-size: 24rem;
  color: #032485;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 4%;
}

.dark-blue {
  font-size: 26rem;
  color: #032485;
}

.advantage1 .scan-text {
  padding-bottom: 10rem;
  border-bottom: 2rem solid #ffffff;
}

.advantage1 .opponent {
  background: #ffffff;
  border-radius: 10rem;
  font-size: 24rem;
  width: fit-content;
  padding: 4rem 12%;
}

.advantage2 .phone-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4%;
  padding: 0 10%;
}

.advantage3 {
  padding-top: 40rem;
}

.superiority-list__text {
  padding: 0 30rem;
  font-size: 22rem;
  text-align: start;
  line-height: 40rem;
}

.case-box {
  width: 100%;
  height: 600rem;
  background: url("/public/images/case-bg.png") no-repeat left top/100% 100%;
}
.case-box .case-img {
  width: 1200rem;
  height: 100%;
  object-fit: contain;
}

#city .city-box {
  width: 100%;
  height: 600rem;
  font-size: 30rem;
  color: #ffffff;
  text-align: start;
  background: url("/public/images/map-bg.png") no-repeat left top/100% 100%;
}
#city .city-box .city-content {
  width: 1200rem;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
#city .city-box .city-content .city-text {
  width: 60%;
  line-height: 70rem;
}
#city .city-box .city-content .city-text .phone {
  margin-left: 50rem;
}
#city .city-box .city-content .city-img img {
  width: 680rem;
  height: 536rem;
  object-fit: contain;
  z-index: 1;
}

#tel .tel-box {
  width: 100%;
  height: 460rem;
  color: #ffffff;
  font-size: 20rem;
  background: url("/public/images/bottom-bg.png") no-repeat left top/100% 100%;
}
#tel .tel-box .tel-content {
  width: 640rem;
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#tel .tel-box .tel-content .tel-top {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6%;
}
#tel .tel-box .tel-content .tel-top .tel-text {
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 26% 10%;
  text-align: start;
}
#tel .tel-box .tel-content .tel-details {
  width: 100%;
  margin: 30rem 0 10rem;
  font-size: 16rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 6%;
}
#tel .tel-box .tel-content .code-box {
  position: absolute;
  right: -152rem;
  bottom: 10rem;
  font-size: 18rem;
}
#tel .tel-box .tel-content .code-box .code-img {
  width: 103rem;
  height: 103rem;
  object-fit: contain;
  margin-top: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#tel .tel-box .tel-bottom {
  width: 100%;
  height: 52rem;
  line-height: 52rem;
  background: #323232;
  color: #999999;
  font-size: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#tel .tel-box .tel-bottom .tel-bottom-text {
  width: 640rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
}
#tel .tel-box .tel-bottom .tel-bottom-text a {
  color: #999999;
}

.to-top {
  position: fixed;
  bottom: 100px;
  right: 3%;
  width: 50px;
  aspect-ratio: 1;
  background: #006bad;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.to-top span {
  display: block;
  height: 24px;
  width: 24px;
  font-size: 24px;
  margin-top: -20px;
}

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