body {
  padding: 0px;
  margin: 0px;
  background: var(--mainBackground) no-repeat;
  background-size: 100%;
  font-family: Roboto, Helvetica, Arial;
  font-size: 16px;
  transition: all 0.36s ease;
  background: var(--pageBgColor);
}
a,
div,
p,
input {
  font-family: Roboto, Helvetica, Arial;
}
.homePage {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.nav {
  position: fixed;
  left: var(--contWidLeft);
  top: 1em;
  z-index: 99999;
}
.contWid {
  width: var(--contWid);
}
.minWid {
  min-width: var(--minWid);
}
.navBox {
  display: flex;
  justify-content: flex-start;
  justify-items: center;
  background: var(--navHoverBg);
  padding: 0 0px;
  border-radius: 10px;
  box-shadow: var(--boxShadow);
}
@keyframes logoAct {
  0% {
    transform: scale(4);
    margin-top: 22px;
    margin-left: -15px;
  }
  25% {
    transform: scale(4);
    margin-top: 22px;
    margin-left: -15px;
  }
  55% {
    transform: scale(1);
    opacity: 0;
    margin-top: 0;
    margin-left: 0;
  }
  75% {
    transform: scale(1);
    opacity: 0.6;
    margin-top: 0;
    margin-left: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
    margin-top: 0;
    margin-left: 0;
  }
}
@keyframes logoBgColorChange {
  0% {
    background: var(--logoBgColor);
  }
  25% {
    background: var(--logoBgColor2);
  }
  100% {
    background: var(--logoBgColor);
  }
}
.navBox .logoBox {
  display: flex;
  justify-content: flex-start;
  width: 20%;
}
.navBox .logoBox .logo {
  margin: 10px;
  background: var(--logoBgColor);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.1125rem;
  border-radius: 10px;
  overflow: hidden;
  width: 2.475rem;
  height: 2.475rem;
  animation: logoBgColorChange 10s ease-in-out -6s infinite;
}
.navBox .logoBox .logo .logoImg {
  background-image: var(--logoSrc);
  background-repeat: no-repeat;
  width: 2.275rem;
  height: 2.275rem;
  background-size: 100%;
  animation: logoAct 3s ease-in-out -6s infinite alternate;
}
.navBox .logoBox .logoTitle {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.navBox .logoBox .logoTitle p {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  color: var(--navColor);
  font-size: 1.035rem;
  font-weight: 400;
}
.navBox .logoBox .logoTitle p span {
  color: var(--navColor2);
  font-size: 0.7rem;
  font-weight: 300;
}
.navBox .logoBox .logoTitle p .directRight {
  margin: 0px 2px;
  color: var(--navColor2);
}
.navBox .menuBox {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: menuBoxAct 8s ease-in-out -6s infinite alternate;
}
.navBox .menuBox .active .itemTitle .itemTitleLink {
  color: var(--navHover) !important;
  font-weight: bold;
}
.navBox .menuBox .active .itemTitle .itemTitleLink a {
  color: var(--navHover) !important;
  font-weight: bold;
}
.navBox .menuBox .item {
  flex: 1;
  position: relative;
  text-align: center;
}
.navBox .menuBox .item .itemTitle .itemTitleLink {
  font-size: 1rem;
  text-decoration: none;
  color: var(--navHover) !important;
  height: 50px;
  line-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navBox .menuBox .item .itemTitle .itemTitleLink:hover {
  color: var(--navHover);
}
.navBox .menuBox .active {
  color: var(--navHover) !important;
  font-weight: bold;
}
.navBox .menuBox .active .itemTitleLink {
  color: var(--navHover) !important;
  font-weight: bold;
}
.navBox .menuBox .secondLevelMenu {
  margin-left: 0px;
}
.navBox .menuBox .secondLevelMenu .menuBoxConent {
  display: none;
}
.navBox .menuBox .secondLevelMenu .menuBoxConent .conent {
  opacity: 0;
  transition: all 3s ease-in;
}
.navBox .menuBox .secondLevelMenu .itemTitle {
  font-size: 1rem;
  text-decoration: none;
  color: var(--navColor);
  height: 50px;
  line-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navBox .menuBox .secondLevelMenu .itemTitle a {
  color: var(--navHover) !important;
  text-decoration: none;
}
.navBox .menuBox .secondLevelMenu .itemTitle:hover {
  color: var(--navHover);
  cursor: pointer;
}
.navBox .menuBox .secondLevelMenu .itemTitle::before {
  transition: all 1s ease-in;
  content: "";
  background: var(--logoBgColor) url('../images/service/heart.svg');
  background-size: 100% 100%;
  display: inline-block;
  width: 0px;
  height: 0px;
  padding: 0px;
  margin-right: 5px;
  border-radius: 50%;
}
.navBox .menuBox .secondLevelMenu:hover .itemTitle {
  color: var(--navHover);
}
.navBox .menuBox .secondLevelMenu:hover .itemTitle::before {
  transition: all 1s ease-out;
  content: "";
  background: var(--navIconBgColor) url('../images/service/heart.svg');
  background-size: 100% 100%;
  display: inline-block;
  width: 18px;
  height: 18px;
  padding: 3px;
  margin-right: 5px;
  border-radius: 50%;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent {
  display: flex;
  position: absolute;
  left: -21rem;
  top: 1.95rem;
  padding-bottom: 1.5rem;
  width: 59.75rem;
  padding: 1.25rem;
  z-index: 99999;
  transition: all 3s ease-in;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .xz {
  position: absolute;
  top: 1.4rem;
  left: 8.2rem;
  z-index: 100000;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .xz img {
  width: 1.25rem;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent {
  opacity: 1;
  transition: all 3s ease-in;
  display: block;
  position: absolute;
  left: 20px;
  top: 30px;
  z-index: 99;
  box-shadow: var(--boxShadow);
  border-radius: 15px;
  padding: 30px;
  background: var(--bgChangeA);
  transition: all 5s ease-in;
  background-size: 450%;
  background: var(--navHoverBg);
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .alinkBox .alink {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  display: block;
  border-radius: 3px;
  margin-top: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--themehoverColor);
  color: var(--themehoverColor);
  text-decoration: none;
  text-align: center;
  float: right;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .secondLevelMenuTitle {
  font-size: 0.9rem;
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  text-align: left;
  margin-left: 1.25rem;
  position: relative;
  width: calc(100% - 2.5rem);
  border-bottom: 1px solid var(--secondLevelMenuTitleColorborder);
  color: var(--secondLevelMenuTitle);
  font-weight: 500;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .secondLevelMenuTitle span {
  color: var(--navActive);
  margin: 0px 10px;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .secondLevelMenuTitle2 {
  font-size: 0.8rem;
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  text-align: left;
  margin-left: 1.25rem;
  width: calc(100% - 2.5rem);
  color: var(--secondLevelMenuTitle2);
  font-weight: 300;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent:hover {
  background: var(--bgChangeB);
  transition: all 5s ease-out;
  background-size: 550%;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi {
  text-align: left;
  float: left;
  padding: 3px 10px;
  width: calc(33% - 20px);
  transition: all 0.5s ease-in;
  display: block;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  padding: 9px 6px;
  border-bottom: 2px;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi:nth-child(odd) {
  transition: all 1s ease-out;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi:nth-child(odd) .icon {
  background: var(--logoBgColor);
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi:nth-child(odd) a .icon {
  background: var(--logoBgColor);
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi:nth-child(even) {
  transition: all 1s ease-out;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi:nth-child(even) .icon {
  background: var(--logoBgColor2);
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi:nth-child(even) a .icon {
  background: var(--logoBgColor2);
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi:hover:nth-child(odd) {
  transition: all 1s ease-out;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi:hover:nth-child(odd) .icon {
  background: var(--logoBgColor2);
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi:hover:nth-child(odd) a .icon {
  background: var(--logoBgColor2);
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi:hover:nth-child(even) {
  transition: all 1s ease-out;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi:hover:nth-child(even) .icon {
  background: var(--logoBgColor);
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi:hover:nth-child(even) a .icon {
  background: var(--logoBgColor);
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi .icon {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  margin-right: 5px;
  transition: all 0.5s ease-in;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi .icon img {
  width: 30px;
  height: 30px;
  transform: scale(1);
  transition: all 0.5s ease-out;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi .a_cont {
  text-align: left;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi .a_cont .title {
  width: 100%;
  font-size: 0.875rem;
  color: var(--navSecondLevelMenuTextColorA);
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi .a_cont .titleSpan {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--navSecondLevelMenuTextColorB);
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi a {
  display: block;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  padding: 9px 6px;
  border-bottom: 2px;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi a:hover {
  background: var(--secondLevelMenuTitleColorhover);
  border-radius: 0.3125rem;
  transition: all 0.5s ease-out;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi a:hover .icon {
  filter: var(--filterImages);
  transition: all 0.5s ease-in;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi a:hover .icon img {
  transform: scale(0.8);
  transition: all 0.5s ease-in;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi a:hover .a_cont .title {
  color: var(--navActive);
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi a:hover .a_cont .titleSpan {
  color: var(--navActive);
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi a .icon {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  margin-right: 5px;
  transition: all 0.5s ease-in;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi a .icon img {
  width: 30px;
  height: 30px;
  transform: scale(1);
  transition: all 0.5s ease-out;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi a .a_cont {
  text-align: left;
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi a .a_cont .title {
  width: 100%;
  font-size: 0.875rem;
  color: var(--navSecondLevelMenuTextColorA);
}
.navBox .menuBox .secondLevelMenu:hover .menuBoxConent .conent .menuBoxLi a .a_cont .titleSpan {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--navSecondLevelMenuTextColorB);
}
.navBox .topOthersBox {
  width: 30%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding-right: 0.625rem;
}
.navBox .topOthersBox .item {
  margin-left: 1rem;
  margin-top: 0.25rem;
}
.navBox .topOthersBox .item a {
  display: flex;
  border-radius: 1.5625rem;
  height: 1.25rem;
  padding: 0.425rem 0.125rem;
  color: var(--themeButTextColor);
  text-align: center;
  font-size: 0.875rem;
  text-decoration: none;
  margin: 0;
}
.navBox .topOthersBox .item a .eat-icon {
  background: var(--iconEat);
  background-size: 100%;
  height: 20px;
  width: 20px;
  margin-right: 5px;
}
.navBox .topOthersBox .item a .eme-icon {
  background: var(--iconEme);
  background-size: 100%;
  height: 20px;
  width: 20px;
  margin-right: 5px;
}
.navBox .topOthersBox .item .themeStylelink {
  display: block;
  border-radius: 1.5625rem;
  height: 1.25rem;
  padding: 0.425rem 0.125rem;
  color: var(--themeButTextColor);
  text-align: center;
  font-size: 0.875rem;
  text-decoration: none;
  width: 3.75rem;
  margin: 0;
}
.navBox .topOthersBox .item .contact {
  border: 1px solid var(--themeButBorderColor);
  background: var(--btnBg);
  display: block;
  border-radius: 1.5625rem;
  height: 1.25rem;
  padding: 0.425rem 0.325rem;
  color: var(--themeButTextColor);
  font-size: 0.875rem;
  text-decoration: none;
  text-align: center;
  width: 4.75rem;
  margin: 0;
}
.cssChange .switch {
  position: relative;
  width: 3.75rem;
  height: 2.125rem;
  overflow: hidden;
}
.cssChange .switch input {
  opacity: 0;
  width: 0;
  height: 0;
  disabled: false;
}
.cssChange .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
  overflow: hidden;
}
.cssChange .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 10px;
  bottom: 6px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-image: var(--cssChangeIcon);
  background-size: cover;
  background-position: center;
}
.cssChange .slider::after {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  border-radius: 50%;
  left: 35px;
  bottom: 8px;
  background-color: var(--cssChangeIconColor);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
}
.cssChange input:checked + .slider {
  background-color: var(--cssChangeIconColor);
}
.cssChange .slider.round {
  border-radius: 34px;
}
.cssChange .slider.round:before {
  border-radius: 50%;
}
.bannerAct {
  width: 100%;
  height: 100vh;
  display: block;
  position: relative;
  background: var(--bannerBgColor);
  overflow: hidden;
}
.bannerAct .comelRot {
  width: 400px;
  height: 600px;
  background-size: 100%;
  background-position: 0px 0px;
  position: absolute;
  right: 50px;
  bottom: 0px;
  z-index: 990;
}
.bannerAct .bannerActContent {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 100;
  /* 星图容器 */
}
.bannerAct .bannerActContent .star-map-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.bannerAct .bannerBox {
  position: relative;
  position: absolute;
  height: 100vh;
  z-index: 101;
  left: var(--contWidLeft);
}
.bannerBox .objectBox {
  position: absolute;
  bottom: 2.175rem;
  left: 0px;
  z-index: 12;
  width: 100%;
}
.bannerBox .objectBox .objectlist {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bannerBox .objectBox .objectlist .objectItem:hover:nth-child(1) a .icon {
  margin-right: -600px;
  margin-top: -800px;
}
.bannerBox .objectBox .objectlist .objectItem:hover:nth-child(2) a .icon {
  margin-right: -300px;
  margin-top: -500px;
}
.bannerBox .objectBox .objectlist .objectItem:hover:nth-child(3) a .icon {
  margin-right: 350px;
  margin-top: -800px;
}
.bannerBox .objectBox .objectlist .objectItem:hover:nth-child(4) a .icon {
  margin-right: 770px;
  margin-top: -400px;
}
.bannerBox .objectBox .objectlist .objectItem:hover:nth-child(odd) {
  background: var(--bgChangeC);
  background-size: 350%;
}
.bannerBox .objectBox .objectlist .objectItem:hover:nth-child(odd) a .icon {
  position: absolute;
  right: 2em;
  top: 550px;
  height: 40px;
  width: 40px;
  background: transparent;
}
.bannerBox .objectBox .objectlist .objectItem:hover:nth-child(odd) a .icon img {
  width: 0px;
  height: 0px;
  transition: all 2s ease-out;
}
.bannerBox .objectBox .objectlist .objectItem:hover:nth-child(even) {
  background: var(--bgChangeC);
  background-size: 350%;
}
.bannerBox .objectBox .objectlist .objectItem:hover:nth-child(even) a .icon {
  position: absolute;
  right: 2em;
  top: 50%;
  height: 40px;
  width: 40px;
  background: transparent;
}
.bannerBox .objectBox .objectlist .objectItem:hover:nth-child(even) a .icon img {
  width: 0px;
  height: 0px;
  transition: all 2s ease-out;
}
.bannerBox .objectBox .objectlist .objectItem:hover:nth-child(even) .a_cont {
  transition: all 1s ease-out;
}
.bannerBox .objectBox .objectlist .objectItem {
  flex: 1;
  margin-right: 20px;
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--boxShadow);
}
.bannerBox .objectBox .objectlist .objectItem:nth-child(odd) {
  background: var(--bgChangeB);
  background-size: 450%;
}
.bannerBox .objectBox .objectlist .objectItem:nth-child(odd) a .icon {
  background: var(--logoBgColor);
  transition: all 2s ease-in;
}
.bannerBox .objectBox .objectlist .objectItem:nth-child(even) {
  background: var(--bgChangeA);
  background-size: 450%;
}
.bannerBox .objectBox .objectlist .objectItem:nth-child(even) a .icon {
  background: var(--logoBgColor2);
  transition: all 2s ease-in;
}
.bannerBox .objectBox .objectlist .objectItem a {
  display: block;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  padding: 3px;
  position: relative;
}
.bannerBox .objectBox .objectlist .objectItem a .icon {
  position: absolute;
  right: 2em;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bannerBox .objectBox .objectlist .objectItem a .icon img {
  width: 30px;
  height: 30px;
}
.bannerBox .objectBox .objectlist .objectItem a .a_cont {
  text-align: left;
}
.bannerBox .objectBox .objectlist .objectItem a .a_cont .title {
  width: 100%;
  font-size: 1rem;
  color: var(--navSecondLevelMenuTextColorA);
  font-weight: 450;
}
.bannerBox .objectBox .objectlist .objectItem a .a_cont .titleSpan {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--navSecondLevelMenuTextColorA);
  margin-bottom: 0.375rem;
  margin-bottom: 20px;
}
.bannerBox .objectBox .objectlist .objectItem a .a_cont .titleList {
  width: 100%;
  font-size: 0.795rem;
  font-weight: 350;
  color: var(--navSecondLevelMenuTextColorA);
}
.bannerBox .objectBox .objectlist .objectItem a .a_cont .titleList p {
  margin: 0px;
  padding: 0px;
  display: block;
  width: 100%;
  line-height: 20px;
}
.bannerBox .objectBox .objectlist .objectItem:nth-child(4) {
  margin-right: 0px;
}
.bannerBox .robot {
  position: fixed;
  right: 10.25rem;
  bottom: 19.125rem;
  z-index: 99999999;
}
.bannerBox .ggy {
  position: absolute;
  top: 15.5rem;
  left: 0;
  display: block;
  unicode-bidi: isolate;
  font-weight: bold !important;
  font-family: Roboto, Helvetica, Arial;
  z-index: 999;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.bannerBox .ggy span {
  color: var(--bannerColor3);
}
.bannerBox .ggy p:nth-child(1) {
  font-size: 3.75rem;
  /* background: #ccc; */
  padding: 0;
  margin: 0;
  color: var(--bannerColor);
  margin-left: 0.625rem;
  width: 100%;
  font-weight: bold !important;
}
.bannerBox .ggy p:nth-child(2) {
  font-size: 3.4375rem;
  /* backgrounrgb(87, 27, 27)ccc; */
  padding: 0;
  margin: 0;
  color: var(--bannerColor);
  margin-left: 0.625rem;
  width: 100%;
  font-weight: bold !important;
}
.bannerBox .ggy p:nth-child(3) {
  font-size: 1.75rem;
  padding: 0;
  margin: 0;
  margin-top: 1.875rem;
  margin-left: 0.625rem;
  color: var(--bannerColor);
  width: 100%;
}
.bannerBox .ggy .nbb {
  font-size: 1.35rem;
  color: var(--bannerColor2);
  margin-left: 0.625rem;
  font-weight: 300;
  width: 100%;
  margin-top: 1.875rem;
}
.bannerBox .ggy .nbb ul li {
  list-style: none;
}
.cardiacBox {
  position: relative;
  background: var(--homeAboutBgBox);
  display: flex;
  flex-direction: column;
  padding: 30px 0;
}
.cardiacBox .cardiacTitle {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 1.25rem;
}
.cardiacBox .cardiacTitle h2 {
  font-size: 1.75rem;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  color: var(--homeTextColor);
  text-align: center;
  display: block;
  width: 100%;
}
.cardiacBox .cardiacTitle h3 {
  font-size: 1.3rem;
  padding: 0;
  margin: 0;
  margin-top: 10px;
  color: var(--homeTextColor);
  text-align: center;
  display: block;
  width: 100%;
  font-weight: 400;
}
.cardiacBox .cardiacTitle p {
  text-align: center;
  width: 100%;
  color: var(--homeTextColor2);
  font-weight: 300;
  font-size: 0.9rem;
}
@keyframes logoActBrand {
  0% {
    transform: scale(3.6);
    margin-top: 45px;
    margin-left: -32px;
  }
  25% {
    transform: scale(3.6);
    margin-top: 45px;
    margin-left: -32px;
  }
  55% {
    transform: scale(1);
    opacity: 0;
    margin-top: 0;
    margin-left: 0;
  }
  75% {
    transform: scale(1);
    opacity: 0.6;
    margin-top: 0;
    margin-left: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
    margin-top: 0;
    margin-left: 0;
  }
}
@keyframes logoBgColorChangeBrand {
  0% {
    background: var(--logoBgColor);
  }
  25% {
    background: var(--logoBgColor2);
  }
  100% {
    background: var(--logoBgColor);
  }
}
.logoBrandBox {
  display: flex;
  justify-content: center;
  margin: 10px 0;
  transform: scale(1.2);
}
.logoBrandBox .logoBrand {
  margin: 10px;
  border: 0px solid var(--themeColor);
  background: var(--logoBgColor);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.1125rem;
  border-radius: 1.25rem;
  overflow: hidden;
  width: 5.475rem;
  height: 5.475rem;
  transition: all 1.5s ease-in;
  animation: logoBgColorChangeBrand 15s ease-in-out -6s infinite;
}
.logoBrandBox .logoBrand .logoImg {
  background-image: var(--logoSrc);
  background-repeat: no-repeat;
  width: 5.275rem;
  height: 5.275rem;
  background-size: 100%;
  animation: logoActBrand 3s ease-in-out -6s infinite alternate;
}
.logoBrandTitle {
  display: flex;
  justify-content: center;
}
.logoBrandTitle .logoBrandTitleConetnt {
  display: flex;
  flex-direction: column;
  color: var(--themeTextColor);
  font-size: 0.8125rem;
}
.logoBrandTitle .logoBrandTitleConetnt .xcy {
  font-weight: 300;
}
.logoBrandTitle .logoBrandTitleConetnt .title {
  color: var(--themeTextColor);
  text-align: center;
  font-size: 1rem;
  font-weight: 200;
  margin-bottom: 0.625rem;
}
.logoBrandTitle p {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  color: var(--homeTextColor2);
  font-size: 1.835rem;
  text-align: center;
  font-weight: 300;
}
.logoBrandTitle p span {
  color: var(--homeTextColor2);
  font-size: 1rem;
  font-weight: 200;
}
.logoBrandTitle p .directRight {
  margin: 0px 2px;
  color: var(--homeTextColor2);
}
.projectlinkBox {
  display: flex;
  justify-content: center;
  margin: 30px auto;
}
.projectlinkBox a:nth-child(1) {
  display: block;
  height: 25px;
  border: 1px solid var(--themeButBorderColor);
  background: var(--themeButbgColor);
  color: var(--themeButText);
  border-radius: var(--themeborderRa);
  text-align: center;
  padding: 0.625rem 20px;
  margin-right: 20px;
  text-decoration: none;
  transition: all 0.5s ease-in;
}
.projectlinkBox a:nth-child(1):hover {
  background: var(--themeButbgColorHover);
  color: var(--themeButTextHover);
  transition: all 0.5s ease-out;
}
.projectlinkBox a:nth-child(1)::after {
  content: '>';
  margin-left: 10px;
  font-family: '宋体';
}
.projectlinkBox a:nth-child(2) {
  display: block;
  height: 25px;
  border: 1px solid var(--themeButbgColorHover);
  background: none;
  color: var(--themeButText);
  border-radius: var(--themeborderRa);
  text-align: center;
  padding: 0.625rem 20px;
  text-decoration: none;
  transition: all 0.5s ease-in;
}
.projectlinkBox a:nth-child(2):hover {
  background: var(--themeButbgColorHover);
  border: 1px solid var(--themeButbgColorHover);
  color: var(--themeButText);
  transition: all 0.5s ease-out;
}
.projectlinkBox a:nth-child(2)::after {
  content: '>';
  margin-left: 10px;
  font-family: '宋体';
}
.servicelinkBox {
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 20px;
  padding-top: 0px !important;
}
.servicelinkBox .servicelinkBoxTitle {
  width: 100%;
  font-size: 1.85rem;
  text-align: center;
  margin: 20px auto;
  color: var(--homeTextColor);
}
.servicelinkBox .servicelinkBoxUl {
  width: 100%;
  display: flex;
  justify-content: center;
}
.servicelinkBox .servicelinkBoxUl .servicelinkBoxLi {
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--homeTextColor);
}
.servicelinkBox .servicelinkBoxUl .servicelinkBoxLi p:nth-child(1) {
  font-size: 3rem;
  font-weight: 500;
  color: var(--themeColor);
  display: block;
  position: relative;
  margin: 0px;
  padding: 0px;
}
.servicelinkBox .servicelinkBoxUl .servicelinkBoxLi p:nth-child(1) i {
  position: absolute;
  font-style: normal;
  font-size: 0.725rem;
  top: 0px;
  font-weight: 300;
  background: var(--themeButbgColor);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
}
.servicelinkBox .servicelinkBoxUl .servicelinkBoxLi p:nth-child(2) {
  font-size: 0.875rem;
  color: var(--homeTextColor);
}
.servicelinkBox .servicelinkBoxUl .servicelinkBoxLi:nth-child(4) {
  border-right: none;
}
.homeCase {
  display: flex;
  justify-content: center;
  background: var(--homeCaseBoxBg);
}
.homeCase .homeCaseBox {
  padding-bottom: 50px;
}
.homeCase .homeCaseBox .boxtitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 20px 0px;
  text-align: center;
  font-weight: 200;
}
.homeCase .homeCaseBox .boxtitle p:nth-child(1) {
  font-size: 1.55rem;
  font-style: normal;
  color: var(--themeBorderColor);
}
.homeCase .homeCaseBox .boxtitle p:nth-child(2) {
  font-size: 1.15rem;
  font-style: normal;
  color: var(--themeBorderColor);
}
.homeCase .homeCaseBox .caseConetBox {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.homeCase .homeCaseBox .caseConetBox .caseConetBoxLi {
  width: calc(33.3% - 10px);
  margin-right: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 15px;
  background: #ccc;
  position: relative;
}
.homeCase .homeCaseBox .caseConetBox .caseConetBoxLi:nth-child(3) {
  margin-right: 0px !important;
}
.homeCase .homeCaseBox .caseConetBox .caseConetBoxLi:nth-child(6) {
  margin-right: 0px !important;
}
.homeCase .homeCaseBox .caseConetBox .caseConetBoxLi a {
  width: 100%;
  display: block;
}
.homeCase .homeCaseBox .caseConetBox .caseConetBoxLi a img {
  width: 100%;
  transform: scale(1.2);
  transition: all 1.5s ease-in;
}
.homeCase .homeCaseBox .caseConetBox .caseConetBoxLi a:hover img {
  transform: scale(1.5);
  transition: all 1.5s ease-out;
  filter: var(--filterImages);
}
.homeCase .homeCaseBox .caseConetBox .caseConetBoxLi .sing {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--caseboxbg);
  font-style: normal;
  border-radius: 5px;
  padding: 5px;
  font-size: 0.75rem;
  z-index: 99;
}
.homeCase .homeCaseBox .caseConetBox .caseConetBoxLi:hover .caseConetBoxLiText {
  background: var(--homeNewsLiBgHover);
  transition: all 1.5s ease-in;
  box-shadow: var(--boxShadow);
  cursor: pointer;
}
.homeCase .homeCaseBox .caseConetBox .caseConetBoxLi:hover .caseConetBoxLiText p,
.homeCase .homeCaseBox .caseConetBox .caseConetBoxLi:hover .caseConetBoxLiText h1 {
  margin-left: 20px;
  transition: all 1.5s ease-out;
  color: var(--garyText);
}
.homeCase .homeCaseBox .caseConetBox .caseConetBoxLi .caseConetBoxLiText {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: calc(100% - 40px);
  background: var(--caseboxbg);
  border-radius: 0.625rem;
  padding: 10px 10px;
  z-index: 99;
}
.homeCase .homeCaseBox .caseConetBox .caseConetBoxLi .caseConetBoxLiText h1 {
  font-size: 1rem;
  display: block;
  font-weight: 400;
  width: 100%;
  margin: 0px;
  padding: 0px;
  font-style: normal;
  transition: all 1.5s ease-out;
}
.homeCase .homeCaseBox .caseConetBox .caseConetBoxLi .caseConetBoxLiText p {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  font-style: normal;
  transition: all 1.5s ease-out;
}
.homeNewsBox {
  display: flex;
  justify-content: center;
  background: var(--homeNewsBg);
}
.homeNewsBox .homeNewsBoxTitle {
  font-size: 35px;
  color: var(--themeTextColor);
  margin-bottom: 20px;
  margin-top: 20px;
}
.homeNewsBox .homeNewsBoxConetent .homeNewsBoxC {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.homeNewsBox .homeNewsBoxConetent .homeNewsBoxC .homeNewsBoxConetentLeft a {
  width: calc(100% - 20px);
  display: block;
  overflow: hidden;
  border-radius: 15px;
  height: 450px;
}
.homeNewsBox .homeNewsBoxConetent .homeNewsBoxC .homeNewsBoxConetentLeft a img {
  width: 100%;
  height: 100%;
  transform: scale();
  transition: all 1.5s ease-in;
}
.homeNewsBox .homeNewsBoxConetent .homeNewsBoxC .homeNewsBoxConetentLeft a:hover img {
  width: 100%;
  transform: scale(1.03);
  transition: all 1.5s ease-out;
  filter: var(--filterImages);
}
.homeNewsBox .homeNewsBoxConetent .homeNewsBoxC .homeNewsBoxConetentRight {
  display: flex;
  flex-direction: column;
}
.homeNewsBox .homeNewsBoxConetent .homeNewsBoxC .homeNewsBoxConetentRight .homeNewsLi a {
  display: block;
  width: calc(100% - 20px);
  text-decoration: none;
  color: var(--themeTextColor);
  padding: 14px 0;
  background: var(--homeNewsLiBg);
  padding-left: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.homeNewsBox .homeNewsBoxConetent .homeNewsBoxC .homeNewsBoxConetentRight .homeNewsLi a p {
  font-style: normal;
  margin: 0;
  padding: 0px;
  transition: all 1s ease-out;
}
.homeNewsBox .homeNewsBoxConetent .homeNewsBoxC .homeNewsBoxConetentRight .homeNewsLi a p:nth-child(1) {
  font-size: 1rem;
}
.homeNewsBox .homeNewsBoxConetent .homeNewsBoxC .homeNewsBoxConetentRight .homeNewsLi a p:nth-child(2) {
  font-size: 0.85rem;
  margin-top: 0.3125rem;
  color: var(--homeNewsLiColorHover);
}
.homeNewsBox .homeNewsBoxConetent .homeNewsBoxC .homeNewsBoxConetentRight .homeNewsLi a:hover {
  background: var(--homeNewsLiBgHover);
  transition: all 1.5s ease-in;
  box-shadow: var(--boxShadow);
}
.homeNewsBox .homeNewsBoxConetent .homeNewsBoxC .homeNewsBoxConetentRight .homeNewsLi a:hover p {
  color: var(--themeTextColor);
  font-weight: 500;
  margin-left: 20px;
  transition: all 1s ease-in;
}
.footer {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  padding-bottom: 0px;
  background: var(--footerBg);
  font-weight: 400;
}
.footer .logoBrandTitleConetent {
  color: var(--themeColor);
}
.footer .logoBrandTitleConetent .title {
  font-size: 16px;
  margin-bottom: 10px;
}
.footer .logoBrandTitleConetent .xcy {
  font-size: 12px;
  font-weight: 200;
}
.footer .logoBrandTitleConetent .title,
.footer .logoBrandTitleConetent .xcy {
  text-align: center;
}
.footer .Copyright {
  widows: 100%;
  text-align: center;
  font-size: 0.85rem;
  padding: 10px 0;
  color: var(--grayText);
  background: var();
}
.footer .Copyright a {
  text-decoration: none;
  color: var(--grayText);
}
.footer .footerContent {
  display: flex;
  justify-content: flex-start;
  margin: 10px 0;
}
.footer .footerContent .footerLogo {
  width: 20%;
}
.footer .footerContent .footerLogo .logoBrandBox {
  transform: scale(0.7);
}
.footer .footerContent .menu {
  width: 60%;
  display: flex;
}
.footer .footerContent .menu .item {
  flex: 1;
  font-size: 0.875rem;
  color: var(--footerTextColor);
}
.footer .footerContent .menu .item .itemTitle {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--grayText);
}
.footer .footerContent .menu .item .itemSe {
  margin: 10px 0;
}
.footer .footerContent .menu .item a {
  color: var(--footerTextColor);
  text-decoration: none;
  font-size: 0.875rem;
  display: block;
  margin: 5px 0;
  font-weight: 330;
}
.footer .footerContent .menu .item a:hover {
  text-decoration: underline;
  color: var(--footerTextColor);
}
.footer .footerContent .contant {
  width: 20%;
}
.footer .footerContent .contant .contactTitle {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--grayText);
}
.footer .footerContent .contant p {
  font-style: normal;
  display: block;
  margin: 0px;
  font-size: 0.875rem;
  color: var(--footerTextColor);
  margin: 10px 0;
  font-weight: 330;
}
.reTop {
  position: fixed;
  left: var(--contWidLeft);
  bottom: 10px;
  z-index: 999999;
  width: 40px;
  height: 40px;
  line-height: 30px;
  background: var(--themeButbgColor);
  color: var(--themeButText);
  border-radius: 5px;
}
.reTop a {
  display: block;
  width: 100%;
  height: 40px;
  text-align: center;
  text-decoration: none;
  color: var(--themeButText);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reTop a img {
  height: 20px;
  width: 20px;
}
.reTop a:hover a {
  color: var(--themeButbgColorHover);
}
.phoneMenu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 20px);
  padding: 10px;
  position: fixed;
  height: 60px;
  bottom: 0px;
  left: 0px;
  z-index: 10000;
}
.phoneMenu .phoneMenuConetent {
  display: flex;
  padding: 12px 5px;
  width: calc(100% - 10px);
  box-shadow: var(--boxShadow);
  background: var(--navHoverBg);
  border-radius: 10px;
}
.phoneMenu .phoneMenuConetent .active {
  background: var(--themeButbgColor);
  color: var(--themeButText);
}
.phoneMenu .phoneMenuConetent a {
  flex: 1;
  text-align: center;
  display: block;
  text-decoration: none;
  color: var(--navColor);
  margin: 5px;
  padding: 5px 5px;
  border-radius: 15px;
}
.phoneMenu .phoneMenuConetent .top img {
  width: 20px;
  margin-top: 2px;
}
.softWareBanner {
  width: 100%;
  height: 100vh;
  position: relative;
  background-size: 140%;
  background: var(--softWareBannerBg);
}
.softWareBanner .contWid {
  padding: 1.25rem 0;
  margin: 0 auto;
}
.softWareBanner .content {
  position: absolute;
  top: 40%;
  height: 100px;
  text-align: center;
  width: 100%;
  color: var(--themeBorderColor);
}
.softWareBanner .content h1 {
  font-size: 3.2625rem;
}
.softWareBanner .content p {
  font-size: 1.5625rem;
  font-weight: 400;
}
.serviceBox {
  position: absolute;
  bottom: 10px;
  z-index: 99999;
}
.serviceBox .listBox {
  border-radius: 10px;
  width: calc(16.6% - 40px);
  float: left;
  padding: 20px;
}
.serviceBox .listBox .a_cont {
  width: calc(100% - 20px);
  padding: 10px;
}
.serviceBox .listBox .a_cont .title {
  font-size: 1.2rem;
  width: 100%;
  padding: 10px 0;
  margin: 10px 0;
  border-bottom: 1px solid var(--themeBorderColor);
  color: var(--themeBorderColor);
}
.serviceBox .listBox .a_cont .title span {
  color: var(--themeBorderColor);
  margin-right: 10px;
}
.serviceBox .listBox .a_cont .titleSpan {
  font-size: 0.795rem;
  width: 100%;
  padding: 0px;
  margin: 10px 0;
  color: var(--themeBorderColor);
  font-weight: 200;
}
.clear {
  clear: both;
}
.listConetent {
  display: flex;
  justify-content: center;
}
.listConetent .contWid {
  padding: 1.25rem 0;
}
.listConetent .contWid .title {
  font-size: 1.25rem;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
}
.listConetent .contWid .title img {
  width: 30px;
  height: 30px;
  background: var(--logoBgColor);
  border-radius: 10px;
  padding: 10px;
  margin-right: 10px;
}
.listConetent .contWid .listAll {
  margin-bottom: 20px;
  border-radius: 10px;
}
.listConetent .contWid .listAll .list {
  width: calc(25% - 42px);
  float: left;
  padding: 20px;
}
.listConetent .contWid .listAll .list .listBox {
  border-radius: 10px;
}
.listConetent .contWid .listAll .list .listBox .icon {
  width: 100%;
  display: flex;
  margin: 0px 0;
}
.listConetent .contWid .listAll .list .listBox .icon img {
  width: 100%;
}
.listConetent .contWid .listAll .list .listBox .a_cont {
  width: calc(100% - 20px);
  padding: 10px;
}
.listConetent .contWid .listAll .list .listBox .a_cont .title {
  font-size: 1.2rem;
  width: 100%;
  padding: 10px 0;
  margin: 10px 0;
  border-bottom: 1px solid var(--themeBorderColor);
  color: var(--themeColor);
}
.listConetent .contWid .listAll .list .listBox .a_cont .titleSpan {
  font-size: 0.795rem;
  width: 100%;
  padding: 0px;
  margin: 10px 0;
  color: var(--grayText);
}
.banner-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: var(--bannerBgColor);
}
.banner-container canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner-container .content {
  position: relative;
  z-index: 10;
  text-align: left;
  color: white;
  max-width: var(--contWid);
  width: var(--contWid);
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: -100px;
}
.banner-container .content .text-content {
  width: 600px;
  padding-right: 20px;
}
.banner-container .content .text-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(79, 172, 254, 0.5);
}
.banner-container .content .text-content h1 span {
  color: #4facfe;
  position: relative;
}
.banner-container .content .text-content h1 span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(79, 172, 254, 0.8);
}
.banner-container .content .text-content .textS2 {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 200 !important;
}
.banner-container .content .text-content .textS {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0rem;
  line-height: 1.6;
  display: block;
}
.banner-container .content .text-content .stats {
  display: flex;
  margin-top: 40px;
  gap: 50px;
}
.banner-container .content .text-content .stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
}
.banner-container .content .text-content .stat-number {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--themeBorderColor);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-container .content .text-content .stat-number span {
  background: var(--themeButbgColor);
  color: var(--themeColor);
  border-radius: 50%;
  padding: 5px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 0.75rem;
  margin-top: -20px;
}
.banner-container .content .text-content .stat-label {
  font-size: 0.9rem;
  color: var(--themeBorderColor);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 200 !important;
}
.banner-container .content .text-content .cta-button {
  display: inline-block;
  background: var(--btnBg);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 300;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.banner-container .content .case-showcase {
  position: relative;
  width: 30%;
  height: 300px;
  perspective: 1000px;
}
.banner-container .content .device-mockup {
  position: absolute;
  width: 99%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(-20deg) rotateX(5deg);
  transition: transform 0.5s ease;
  animation: float 6s ease-in-out infinite;
}
.banner-container .content .device-mockup:hover {
  animation-play-state: paused;
}
.banner-container .content .laptop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--bannerBgColor);
  border-radius: 5px;
  overflow: hidden;
}
.banner-container .content .laptop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 2;
}
.banner-container .content .laptop-screen {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: #fff;
  overflow: hidden;
  border-radius: 5px;
}
.banner-container .content .code-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #4facfe;
  overflow: hidden;
}
.banner-container .content .code-line {
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 3s steps(40) infinite;
}
.banner-container .content .mobile {
  position: absolute;
  width: 20%;
  height: 50%;
  right: 60px;
  bottom: -20px;
  background: var(--themeButBorderColor);
  border-radius: 20px;
  transform: translateZ(50px);
}
.banner-container .content .mobile-screen {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: #333 url(../images/logo-white.svg) no-repeat;
  background-size: 50%;
  background-position: 20px 30px;
  border-radius: 15px;
  overflow: hidden;
}
.banner-container .content .mobile-screen:before {
  content: '点维瞰';
  font-weight: 200;
  font-size: 12px;
  text-align: center;
  position: absolute;
  top: 80px;
  left: 20px;
}
.planBox {
  display: flex;
  justify-content: center;
}
.planBox .itemTitle {
  font-size: 1rem;
  text-decoration: none;
  color: var(--navColor);
  height: 50px;
  line-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.planBox .itemTitle a {
  color: var(--navHover) !important;
  text-decoration: none;
}
.planBox .itemTitle:hover {
  color: var(--navHover);
  cursor: pointer;
}
.planBox .itemTitle::before {
  transition: all 1s ease-in;
  content: "";
  background: var(--logoBgColor) url('../images/service/heart.svg');
  background-size: 100% 100%;
  display: inline-block;
  width: 0px;
  height: 0px;
  padding: 0px;
  margin-right: 5px;
  border-radius: 50%;
}
.planBox .menuBoxConent {
  width: 100%;
  padding: 1.25rem 0;
  transition: all 3s ease-in;
  z-index: 99;
  transition: all 5s ease-in;
}
.planBox .menuBoxConent .xz {
  position: absolute;
  top: 1.4rem;
  left: 8.2rem;
  z-index: 100000;
}
.planBox .menuBoxConent .xz img {
  width: 1.25rem;
}
.planBox .menuBoxConent .conent {
  opacity: 1;
  transition: all 3s ease-in;
}
.planBox .menuBoxConent .conent .alinkBox {
  border-top: 1px solid var(--secondLevelMenuTitleColorborder);
}
.planBox .menuBoxConent .conent .alinkBox .alink {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  display: block;
  border-radius: 3px;
  margin-top: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--themehoverColor);
  color: var(--themehoverColor);
  text-decoration: none;
  text-align: center;
  float: right;
}
.planBox .menuBoxConent .conent .secondLevelMenuTitle {
  font-size: 1.2rem;
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  text-align: left;
  position: relative;
  width: calc(100% - 2.5rem);
  border-bottom: 1px solid var(--secondLevelMenuTitleColorborder);
  color: var(--secondLevelMenuTitle);
  font-weight: 500;
}
.planBox .menuBoxConent .conent .secondLevelMenuTitle span {
  color: var(--navActive);
  margin: 0px 10px;
}
.planBox .menuBoxConent .conent .secondLevelMenuTitle2 {
  font-size: 0.8rem;
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  text-align: left;
  width: calc(100% - 2.5rem);
  color: var(--secondLevelMenuTitle2);
  font-weight: 300;
}
.planBox .menuBoxConent .conent .menuBoxLi {
  text-align: left;
  float: left;
  padding: 3px 10px;
  width: calc(33% - 20px);
  transition: all 0.5s ease-in;
  margin: 10px 0;
  display: block;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  padding: 9px 6px;
  border-bottom: 2px;
}
.planBox .menuBoxConent .conent .menuBoxLi .icon {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  margin-right: 5px;
  transition: all 0.5s ease-in;
}
.planBox .menuBoxConent .conent .menuBoxLi .icon img {
  width: 30px;
  height: 30px;
  transform: scale(1);
  transition: all 0.5s ease-out;
}
.planBox .menuBoxConent .conent .menuBoxLi .a_cont {
  text-align: left;
}
.planBox .menuBoxConent .conent .menuBoxLi .a_cont .title {
  width: 100%;
  font-size: 0.875rem;
  color: var(--navSecondLevelMenuTextColorA);
}
.planBox .menuBoxConent .conent .menuBoxLi .a_cont .titleSpan {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--navSecondLevelMenuTextColorB);
}
@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}
@keyframes float {
  0% {
    transform: rotateY(-20deg) rotateX(5deg) translateY(0);
  }
  50% {
    transform: rotateY(-15deg) rotateX(3deg) translateY(-10px);
  }
  100% {
    transform: rotateY(-20deg) rotateX(5deg) translateY(0);
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.banner-plan {
  display: flex;
  justify-content: center;
  background: var(--bannerplanbg);
}
.banner-plan .banner {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.banner-plan .banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-plan .banner-text {
  position: absolute;
  top: 180px;
  left: 0;
  max-width: 700px;
  color: #fff;
  padding: 0 0px;
  animation: fadeIn 1s forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.banner-plan .banner-title {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.banner-plan .banner-subtitle {
  font-size: 1.2rem;
  font-weight: 200;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}
.banner-plan .cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.banner-plan .cta-button:hover {
  transform: translateY(-5px);
}
.banner-plan .solutions-container {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  margin-top: 70px;
}
.banner-plan .solution-card {
  position: absolute;
  width: 150px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all 0.5s ease;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
}
.banner-plan .solution-card:hover {
  transform: scale(1.05) translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}
.banner-plan .solution-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(79, 172, 254, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.banner-plan .solution-icon {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #4facfe;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.banner-plan .solution-title {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 8px;
}
.banner-plan .solution-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-align: center;
  line-height: 1.4;
  font-weight: 200;
}
.banner-plan .connection-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(79, 172, 254, 0), rgba(79, 172, 254, 0.5), rgba(79, 172, 254, 0));
  z-index: 1;
}
.banner-plan .data-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #4facfe;
  border-radius: 50%;
  box-shadow: 0 0 8px #4facfe;
  z-index: 1;
}
@media (max-width: 1200px) {
  .banner-plan .banner-text {
    max-width: 400px;
  }
  .banner-plan .solutions-container {
    right: 20px;
    width: 450px;
  }
}
@media (max-width: 900px) {
  .banner-plan .banner {
    height: 700px;
  }
  .banner-plan .banner-text {
    top: 60px;
    max-width: 100%;
    text-align: center;
  }
  .banner-plan .banner-title {
    font-size: 2rem;
  }
  .banner-plan .solutions-container {
    top: auto;
    bottom: 60px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    height: 400px;
  }
}
.caseBanner {
  padding-top: 70px;
  background: var(--caseBannerBg);
}
.caseBanner .content {
  text-align: center;
  padding: 30px 0;
  color: #fff;
}
.caseBanner .content h1 {
  font-size: 3.2rem;
}
.caseBanner .content p {
  font-weight: 200;
}
.newsBanner {
  padding-top: 70px;
  background: var(--newsBannerBg);
}
.newsBanner .content {
  text-align: center;
  padding: 30px 0;
  color: #fff;
}
.newsBanner .content h1 {
  font-size: 3.2rem;
}
.newsBanner .content p {
  font-weight: 200;
}
.aboutBanner {
  background: var(--aboutBanner);
  position: relative;
}
.aboutBanner .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  margin-left: -150px;
  margin-top: -100px;
}
.aboutBox {
  display: flex;
  justify-content: center;
}
.aboutBox .aboutConetnt .list {
  padding: 0px 40px;
  padding-bottom: 20px;
  margin: 10px 0;
  border-radius: 10px;
}
.aboutBox .aboutConetnt p {
  font-weight: 300;
  font-size: 14px;
  line-height: 30px;
  color: var(--themeColor);
}
.aboutBox .aboutConetnt h1 {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  display: block;
}
.aboutBox .aboutConetnt h1,
.aboutBox .aboutConetnt h2,
.aboutBox .aboutConetnt h3 {
  color: var(--themehoverColor);
}
.newsBox {
  display: flex;
  justify-content: center;
}
.newsBox .newsContent {
  display: block;
  width: 70%;
}
.newsBox .newsContent .title {
  border-bottom: 1px solid #eee;
  width: 100%;
}
.newsBox .newsContent .title .titleBox {
  text-align: left;
  float: left;
  padding: 3px 10px;
  width: calc(33% - 20px);
  transition: all 0.5s ease-in;
  margin: 10px 0;
  display: block;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  padding: 9px 6px;
  border-bottom: 2px;
}
.newsBox .newsContent .title .titleBox .icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  margin-right: 5px;
  transition: all 0.5s ease-in;
  background: var(--themeButbgColorHover);
}
.newsBox .newsContent .title .titleBox .icon img {
  width: 40px;
  height: 40px;
  transform: scale(1);
  transition: all 0.5s ease-out;
}
.newsBox .newsContent .title .titleBox .a_cont {
  text-align: left;
}
.newsBox .newsContent .title .titleBox .a_cont .title {
  width: 100%;
  font-size: 1rem;
  color: var(--navSecondLevelMenuTextColorA);
}
.newsBox .newsContent .title .titleBox .a_cont .titleSpan {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--navSecondLevelMenuTextColorB);
}
.newsBox .newsContent .list {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 20px;
}
.newsBox .newsContent .list .date {
  background: var(--themeBorderColor);
  width: 90px;
  height: 90px;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
}
.newsBox .newsContent .list .date div:nth-child(1) {
  font-size: 1.25rem;
  height: 30px;
  line-height: 30px;
  margin-top: 10px;
}
.newsBox .newsContent .list .date div:nth-child(2) {
  font-size: 0.95rem;
  height: 30px;
  line-height: 30px;
  background: var(--themehoverColor);
  color: var(--themeBorderColor);
  font-weight: 300;
}
.newsBox .newsContent .list .content {
  width: calc(100% - 120px);
}
.newsBox .newsContent .list .content h1 {
  font-size: 1.2rem;
  display: block;
  padding: 0px;
  margin: 0px;
  margin-bottom: 10px;
  font-weight: 400;
  width: 100%;
}
.newsBox .newsContent .list .content .sub {
  background: var(--themeButbgColorHover);
  border-radius: 5px;
  padding: 5px;
  width: 300px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 300;
}
.newsBox .newsContent .list .content p {
  color: var(--themeTextColor);
  display: block;
  width: 100%;
  padding: 0px;
  font-weight: 400;
  font-size: 0.85rem;
}
.contactBox {
  height: 100vh;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
