* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 0.16rem;
  color: #333;
}

:root {
  --blue: #003699;
  --orange: #ff8106;
  --light-blue: #f1f7fb;
  --gray: #7b7b7b;
}

body {
  background: #F7F7F7;
  overflow-x: hidden;
}

span {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}

@font-face {
  font-family: PingFang SC;
  src: url(../fonts/PingFang-bold.ttf);
}

@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-SemiBold.ttf);
}

html {
  scroll-behavior: smooth;
}

a {
  display: block;
  outline: 0;
  text-decoration: none;
}

ul,
ol {
  padding-left: 2em;
}

input,
textarea,
button,
select {
  border: 0;
  resize: none;
  outline: 0;
  background: transparent;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  object-fit: contain;
}

/*多行溢出*/
.ellipsis1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ellipsis2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.ellipsis3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

/* hover-图片放大1.1 */
.scale-box,
.imgBox {
  overflow: hidden;
}

.scale-box .scale-img,
.imgBox .scale-img {
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
  cursor: pointer;
  object-fit: cover;
}

.scale-box:hover .scale-img,
.imgBox:hover .scale-img {
  transform: scale(1.1);
}

/* 常用盒子阴影 */
.shadow_box {
  box-shadow: 0 0.02rem 0.12rem 0 rgba(0, 0, 0, 0.1);
}

/* 水波纹效果 */
.btn-ripple {
  vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
  opacity: 1;
  position: relative;
  overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
  animation: ani_ripple 0.75s;
  z-index: 1;
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 0;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  padding-top: 100%;
  transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
  0% {
    background: rgba(0, 0, 0, 0.25);
    transform: translateX(-50%) translateY(-50%) scale(0);
  }

  to {
    background: transparent;
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}

.headerWrap,
header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}


.main {
  width: 94%;
  max-width: 14.4rem;
  margin: 0 auto;
}

.back {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-slide>img,
.swiper-slide>video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

article img {
  width: revert-layer;
  height: auto;
}

/* 单选框颜色 */
input[type='checkbox'] {
  cursor: pointer;
  position: relative;
  width: .18rem;
  height: .18rem;
  font-size: .12rem
}

input[type='checkbox']::after {
  position: absolute;
  top: 0;
  color: #000;
  width: .18rem;
  height: .18rem;
  display: inline-block;
  visibility: visible;
  padding-left: 0rem;
  text-align: center;
  content: ' ';
  border-radius: .03rem
}

input[type='checkbox']:checked::after {
  content: "✓";
  color: #fff;
  font-size: .12rem;
  font-weight: bold;
  background-color: #B35622;
  border: .01rem solid #fff;
}

/* Shared site header */
.header {
  height: .78rem;
  /* position: relative; */
  background: #fff;
  box-shadow: 0 .04rem .216rem rgba(0, 0, 0, .1);
  transition: transform .3s ease;
}

.headerMain {
  height: 100%;
  max-width: 17.54rem;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  width: 2rem;
  align-items: center;
}

.logo img {
  width: 100%;
  height: 100%;
}


.nav {
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .72rem;
}

.nav>a,
.productNavLink,
.industryNavLink {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  color: #000;
  font-size: clamp(16px, .18rem, 18px);
  white-space: nowrap;
}

.nav>a::after,
.productNavLink::after,
.industryNavLink::after {
  width: 0;
  height: .03rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  background: var(--blue);
  content: '';
  transform: translateX(-50%);
  transition: width .25s ease;
}

.nav>a:hover,
.nav>a.active,
.productNavLink:hover,
.productNavLink.active,
.industryNavLink:hover,
.industryNavLink.active{
  color: var(--blue);
  font-weight: 700;
}

.nav>a:hover::after,
.nav>a.active::after,
.productNavLink:hover::after,
.productNavLink.active::after,
.industryNavLink:hover::after,
.industryNavLink.active::after{
  width: 100%;
}

.productNav,
.industryNav {
  height: 100%;
  display: flex;
  align-items: center;
}

.industryNav {
  position: relative;
}

.productMenu {
  width: 100vw;
  height: 3.31rem;
  padding: .55rem 0 .42rem;
  position: absolute;
  top: .78rem;
  left: 50%;
  background: #f1f5f8;
  box-shadow: 0 .04rem .12rem rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity .2s ease, visibility .2s ease;
}

.productNav:hover .productMenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.productMenuList {
  width: 11.44rem;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .64rem;
  margin: 0 auto;
}

.productMenuItem {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #111;
  font-size: clamp(16px, .18rem, 18px);
  font-weight: 700;
}

.productMenuItem img {
  width: 2.22rem;
  height: 1.53rem;
  border-radius: .06rem;
  object-fit: cover;
  box-shadow: 0 .02rem .08rem rgba(0, 0, 0, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.productMenuItem span {
  margin-top: .17rem;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.productMenuItem:hover,
.productMenuItem.active,
.productMenuItem.aiMenuLink.active,
.productMenuItem.fireMenuLink.active,
.productMenuItem.lightMenuLink.active,
.productAi .aiMenuLink,
.productFire .fireMenuLink,
.productLight .lightMenuLink {
  color: var(--blue);
}

.productMenuItem:hover img {
  box-shadow: 0 .08rem .16rem rgba(0, 54, 153, .18);
  transform: translateY(-.04rem);
}

.otherMenu {
  width: 1.65rem;
  padding: .1rem 0;
  position: absolute;
  top: .78rem;
  left: 50%;
  transform: translateX(-50%);
  /* margin-left: -.3rem; */
  background: #fff;
  box-shadow: 0 .06rem .14rem rgba(0, 0, 0, .14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

.otherMenu a {
  min-height: .42rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: clamp(14px, .16rem, 16px);
}

.otherMenu a:hover,
.otherMenu a.active {
  color: var(--blue);
  background: #f3f7ff;
  font-weight: 700;
}

.industryNav:hover .otherMenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.headerSearch {
  width: .3rem;
  height: .3rem;
  margin-left: .62rem;
  position: relative;
}

.headerSearch span {
  width: 100%;
  height: 100%;
  display: block;
  background: url('../images/header-search.svg') center / contain no-repeat;
}

.headerSearchPanel {
  width: 100%;
  height: 2.65rem;
  position: absolute;
  top: .78rem;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f8;
  box-shadow: 0 .04rem .08rem rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-.08rem);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.headerSearchPanel.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.headerSearchForm {
  width: 11.25rem;
  height: .7rem;
  display: flex;
  align-items: center;
}

.headerSearchForm>strong {
  width: .6rem;
  margin-right: .25rem;
  color: #2a2a2a;
  font-size: clamp(24px, .3rem, 30px);
  line-height: .7rem;
  font-weight: 700;
  white-space: nowrap;
}

.headerSearchForm input {
  min-width: 0;
  height: 100%;
  flex: 1;
  padding: 0 .2rem;
  border: .01rem solid #d0d0d0;
  border-right: 0;
  border-radius: .04rem 0 0 .04rem;
  background: #fff;
  color: #333;
  font-size: clamp(14px, .16rem, 16px);
}

.headerSearchForm input::placeholder {
  color: #979797;
}

.headerSearchSubmit {
  width: .72rem;
  height: 100%;
  position: relative;
  flex: 0 0 auto;
  border-radius: 0 .04rem .04rem 0;
  background: var(--blue);
}

.headerSearchSubmit:hover {
  background: #0e4bad;
}

.headerSearchSubmit span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: .22rem;
  height: .22rem;
  background: url(../images/header-search.svg) center / contain no-repeat;
  filter: invert(1);
}

.headerSearchClose {
  width: .42rem;
  height: .42rem;
  margin-left: .36rem;
  position: relative;
  flex: 0 0 auto;
}

.headerSearchClose::before,
.headerSearchClose::after {
  width: .29rem;
  height: .02rem;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: #969696;
  content: '';
}

.headerSearchClose::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.headerSearchClose::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.headerSearchClose:hover::before,
.headerSearchClose:hover::after {
  background: var(--blue);
}

.headerSearch.active {
  width: .43rem;
  height: .43rem;
  margin-left: .565rem;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.headerSearch.active span {
  filter: invert(1);
  width: .22rem;
  height: .22rem;
}

.mobileNavToggle,
.mobileSubToggle,
.mobileNavMask {
  display: none;
}

@media (max-width: 768px) {
  body.mobileNavOpen {
    overflow: hidden;
  }

  .header {
    height: 1rem;
  }

  body{
    padding-top: 1rem;
  }

  .headerMain {
    width: 92%;
  }

  .header .logo {
    width: 1.45rem;
  }

  .headerSearch {
    width: .32rem;
    height: .32rem;
    margin-left: auto;
    margin-right: .24rem;
  }

  .headerSearch.active {
    width: .38rem;
    height: .38rem;
    margin-left: auto;
    margin-right: .21rem;
  }

  .mobileNavToggle {
    width: .4rem;
    height: .4rem;
    position: relative;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .06rem;
  }

  .mobileNavToggle span {
    width: .28rem;
    height: .02rem;
    display: block;
    background: #111;
    transition: transform .2s ease, opacity .2s ease;
  }

  .header.mobileNavOpen .mobileNavToggle span:nth-child(1) {
    transform: translateY(.08rem) rotate(45deg);
  }

  .header.mobileNavOpen .mobileNavToggle span:nth-child(2) {
    opacity: 0;
  }

  .header.mobileNavOpen .mobileNavToggle span:nth-child(3) {
    transform: translateY(-.08rem) rotate(-45deg);
  }

  .mobileNavMask {
    position: fixed;
    inset: 1rem 0 0;
    z-index: 1000;
    display: block;
    background: rgba(0, 20, 56, .42);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }

  .header.mobileNavOpen .mobileNavMask {
    opacity: 1;
    pointer-events: auto;
  }

  .nav {
    width: min(78vw, 5.2rem);
    height: calc(100vh - 1rem);
    padding: .12rem 0 .3rem;
    position: fixed;
    top: 1rem;
    right: 0;
    z-index: 1001;
    display: block;
    overflow-y: auto;
    background: #fff;
    box-shadow: -.06rem 0 .2rem rgba(0, 0, 0, .14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .header.mobileNavOpen .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav > a,
  .productNav,
  .industryNav {
    width: 100%;
    min-height: .8rem;
    height: auto;
    border-bottom: .01rem solid #e4e8ed;
  }

  .nav > a,
  .productNavLink,
  .industryNavLink {
    min-height: .8rem;
    height: .8rem;
    padding: 0 .22rem;
    color: #151515;
    font-size: clamp(15px, .18rem, 18px);
  }

  .nav > a::after,
  .productNavLink::after,
  .industryNavLink::after {
    display: none;
  }

  .productNav,
  .industryNav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) .48rem;
    align-items: start;
    box-sizing: border-box;
  }

  .mobileSubToggle {
    width: .48rem;
    height: .8rem;
    margin-right: .1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobileSubToggle span {
    width: .1rem;
    height: .1rem;
    border-right: .02rem solid #333;
    border-bottom: .02rem solid #333;
    transform: rotate(45deg) translateY(-.03rem);
    transition: transform .2s ease;
  }

  .subMenuOpen .mobileSubToggle span {
    transform: rotate(-135deg) translate(-.03rem, -.03rem);
  }

  .productMenu,
  .otherMenu {
    width: 100%;
    height: auto;
    padding: 0;
    position: static;
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    margin-left: 0;
    overflow: hidden;
    background: #f4f7fa;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .subMenuOpen .productMenu,
  .subMenuOpen .otherMenu {
    display: block;
  }

  .productMenuList {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
  }

  .productMenuItem,
  .otherMenu a {
    min-height: .48rem;
    padding: 0 .16rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    color: #5c6673;
    font-size: clamp(14px, .16rem, 16px);
    font-weight: 400;
  }

  .productMenuItem img {
    display: none;
  }

  .productMenuItem span {
    margin: 0;
  }

  .otherMenu a {
    justify-content: flex-start;
  }

  .headerSearchPanel {
    height: 1.7rem;
    top: .72rem;
    z-index: 1003;
    padding: 0 4%;
  }

  .headerSearchForm {
    width: 100%;
    height: .52rem;
  }

  .headerSearchForm > strong {
    width: .48rem;
    margin-right: .1rem;
    font-size: clamp(18px, .22rem, 22px);
    line-height: .52rem;
  }

  .headerSearchSubmit {
    width: .56rem;
  }

  .headerSearchClose {
    width: .34rem;
    margin-left: .14rem;
  }
}

/* Shared site footer */
.footer {
  background: #F1F5F8;
  border-top: .04rem solid var(--blue);
}

.footerMain {
  min-height: 3.87rem;
  padding: .4rem 0 .3rem;
  display: flex;
}

.footerContact {
  width: 3.75rem;
  flex: 0 0 3.75rem;
  padding-right: .46rem;
  display: flex;
  flex-direction: column;
  border-right: .01rem solid #ddd;
}

.footerLogo {
  margin-bottom: .1rem;
}

.footerContact p,
.footerContact>span {
  margin-top: .09rem;
  color: var(--gray);
  font-size: clamp(12px, .16rem, 16px);
  line-height: 1.35;
}

.footerContact strong {
  margin-top: .08rem;
  color: var(--gray);
  font-family: Inter;
  font-size: clamp(18px, .24rem, 24px);
  font-weight: 400;
}

.friendLinkWrap {
  width: 2.64rem;
  position: relative;
  margin-top: .18rem;
}

.friendLink {
  width: 2.64rem;
  height: .45rem;
  padding: 0 .16rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: .01rem solid #ddd;
  border-radius: .04rem;
  background: #fff;
  color: var(--gray);
  font-size: clamp(12px, .16rem, 16px);
}

.friendLink i {
  width: .08rem;
  height: .08rem;
  border-right: .02rem solid #1a1a1a;
  border-bottom: .02rem solid #1a1a1a;
  transform: rotate(45deg) translateY(-.02rem);
}

.friendLinkMenu {
  width: 100%;
  padding: .06rem 0;
  position: absolute;
  right: 0;
  bottom: calc(100% + .08rem);
  z-index: 2;
  visibility: hidden;
  overflow: hidden;
  border: .01rem solid #ddd;
  border-radius: .04rem;
  background: #fff;
  box-shadow: 0 .04rem .12rem rgba(0, 0, 0, .1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(.06rem);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.friendLinkMenu.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.friendLinkMenu a {
  padding: .1rem .16rem;
  color: var(--gray);
  font-size: clamp(12px, .16rem, 16px);
  line-height: 1.35;
}

.friendLinkMenu a:hover,
.friendLinkMenu a:focus-visible {
  background: #f1f5f8;
  color: var(--blue);
}

.footerNav {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .24rem;
  padding: .33rem .32rem 0 .7rem;
}

.footerNav dt {
  margin-bottom: .22rem;
  color: #111;
  font-size: clamp(15px, .18rem, 18px);
  font-weight: 700;
}

.footerNav dd {
  color: var(--gray);
  font-size: clamp(12px, .16rem, 16px);
  margin-bottom: .12rem;
  font-weight: 400;
}

.footerNav a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.footerNav a:hover {
  color: var(--blue);
}

.footerMedia {
  width: 2.64rem;
  flex: 0 0 2.64rem;
  padding-left: .05rem;
  padding-top: .87rem;
}

.footerQr {
  display: flex;
  gap: .15rem;
}

.footerQr img {
  width: 1.22rem;
  height: 1.22rem;
  padding: .06rem;
  border-radius: .1rem;
  background: #fff;
  object-fit: contain;
}

.footerSocial {
  display: flex;
  justify-content: flex-end;
  gap: .15rem;
  margin-top: .52rem;
}

.footerSocialItem {
  position: relative;
  flex: 0 0 .5rem;
}

.footerSocialBtn {
  width: .5rem;
  height: .5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  overflow: hidden;
  transition: background .2s ease, transform .2s ease;
}

.footerSocialBtn .footerSocialIcon {
  width: .26rem;
  height: .26rem;
  position: absolute;
  inset: 50% auto auto 50%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}

.footerSocialIconHover {
  opacity: 0;
}

.footerSocialItem:hover .footerSocialIconHover,
.footerSocialItem:focus-within .footerSocialIconHover,
.footerSocialItem.is-open .footerSocialIconHover {
  opacity: 1;
}

.footerSocialBtn:hover,
.footerSocialBtn:focus-visible,
.footerSocialItem.is-open .footerSocialBtn {
  background: var(--orange);
}

.footerSocialBtn:focus-visible {
  outline: .02rem solid var(--orange);
  outline-offset: .04rem;
}

.footerSocialQr {
  width: 1.42rem;
  position: absolute;
  left: 50%;
  bottom: calc(100% + .16rem);
  z-index: 20;
  padding: .08rem .08rem .07rem;
  border: .01rem solid rgba(0, 54, 153, .12);
  border-radius: .08rem;
  background: #fff;
  box-shadow: 0 .08rem .24rem rgba(0, 35, 90, .18);
  color: #222;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, .08rem);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.footerSocialQr::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  border: .08rem solid transparent;
  border-top-color: #fff;
  transform: translateX(-50%);
}

.footerSocialQr img {
  width: 1.24rem;
  height: 1.24rem;
  display: block;
  object-fit: contain;
}

.footerSocialQr span {
  display: block;
  margin-top: .05rem;
  font-size: clamp(11px, .13rem, 13px);
  line-height: 1.35;
  white-space: nowrap;
}

.footerSocialItem.hasQr:hover .footerSocialQr,
.footerSocialItem.hasQr:focus-within .footerSocialQr,
.footerSocialItem.hasQr.is-open .footerSocialQr {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (min-width: 769px) {
  .footerSocialItem:nth-last-child(-n + 2) .footerSocialQr {
    right: 0;
    left: auto;
    transform: translateY(.08rem);
  }

  .footerSocialItem:nth-last-child(-n + 2) .footerSocialQr::after {
    right: .25rem;
    left: auto;
    transform: translateX(50%);
  }

  .footerSocialItem:nth-last-child(-n + 2).hasQr:hover .footerSocialQr,
  .footerSocialItem:nth-last-child(-n + 2).hasQr:focus-within .footerSocialQr,
  .footerSocialItem:nth-last-child(-n + 2).hasQr.is-open .footerSocialQr {
    transform: translateY(0);
  }
}

.backTop {
  width: .6rem;
  height: .6rem;
  position: fixed;
  bottom: 3.71rem;
  right: .04rem;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .04rem;
  background: var(--blue);
  box-shadow: 0 .03rem .1rem rgba(0, 54, 153, .2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-.08rem);
  transition: opacity .2s ease, transform .2s ease;
}

.backTop img{
  width: .3rem;
  height: .3rem;
}

.backTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Shared list pagination */
.pagePager {
  margin-top: .72rem;
  display: flex;
  justify-content: center;
  gap: .15rem;
}

.pagePager a {
  width: .4rem;
  height: .4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: .01rem solid #dcdcdc;
  background: #fff;
  color: #777;
  font-size: clamp(13px, .16rem, 16px);
  line-height: 1;
}

.pagePager a:hover,
.pagePager a.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.copyright {
  width: 75%;
  max-width: 14.5rem;
  padding: .15rem 0 .2rem;
  margin: 0 auto;
  border-top: .01rem solid #ddd;
  color: #8a8b8b;
  font-size: clamp(11px, .14rem, 14px);
  text-align: center;
}

/* Shared inner-page banner */
.innerBanner {
  height: 6rem;
  position: relative;
  background-image: url('../images/ai-04.png');
}

.innerBannerShade {
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 30, .3);
}

.innerBannerContent {
  position: absolute;
  top: 2.74rem;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

.innerBannerContent h1 {
  color: #fff;
  font-size: clamp(32px, .5rem, 50px);
  font-weight: 700;
}

.innerBannerNav {
  width: 100%;
  height: .7rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, .5);
}

.innerBannerNav .main {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.innerBannerNav .main>a {
  min-width: 1rem;
  padding: 0 .2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(14px, .2rem, 20px);
  font-weight: 700;
}

.innerBannerNav .main>a:hover,
.innerBannerNav .main>a.active {
  background: var(--blue);
}

.innerBannerBreadcrumb {
  margin-left: auto;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: clamp(12px, .16rem, 16px);
  gap: .05rem;
}

.innerBannerBreadcrumb a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .08rem;
}

.innerBannerBreadcrumb a img {
  width: .2rem;
  height: .18rem;
}

.innerBannerBreadcrumb a,
.innerBannerBreadcrumb span {
  color: #fff;
  font-size: clamp(12px, .16rem, 16px);
}

/* Shared product contact call to action */
.productContact {
  width: min(14.44rem, 94%);
  height: 3.25rem;
  margin: .76rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: .1rem;
  background: #062b83 url('../images/contentBack.png') center / cover no-repeat;
  text-align: center;
}

.productContact h2 {
  color: #fff;
  font-size: clamp(23px, .32rem, 32px);
  font-weight: 700;
}

.productContact p {
  margin-top: .14rem;
  color: #fff;
  font-size: clamp(15px, .2rem, 20px);
}

.productContact a {
  width: fit-content;
  min-width: 1.28rem;
  height: .45rem;
  padding: 0 .16rem;
  margin: .25rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .1rem;
  border-radius: .06rem;
  background: #fff;
  color: var(--blue);
  font-size: clamp(14px, .15rem, 15px);
  transition: color .2s ease, background-color .2s ease;
}

.productContact a:hover {
  background: var(--orange);
  color: #fff;
}

.productContact a b {
  font-size: 1.2em;
  line-height: 1;
}

@media (max-width: 768px) {
  .main {
    width: 92%;
  }

  .innerBanner,
  .lightHero {
    height: 3.2rem;
  }

  .innerBannerContent,
  .lightHeroContent {
    width: 92%;
    top: 1.25rem;
    text-align: center;
  }

  .innerBannerContent h1,
  .lightHeroContent h1 {
    font-size: clamp(26px, .34rem, 34px);
  }

  .innerBannerNav,
  .lightHeroNav {
    height: .54rem;
    overflow-x: auto;
  }

  .innerBannerNav .main,
  .lightHeroNav .main {
    width: max-content;
    min-width: 100%;
  }

  .innerBannerNav .main > a,
  .lightHeroNav a {
    min-width: .9rem;
    padding: 0 .14rem;
    font-size: clamp(13px, .16rem, 16px);
  }

  .innerBannerBreadcrumb,
  .lightHeroNav span {
    display: none;
  }

  .productContact {
    width: 92%;
    height: auto;
    min-height: 2.25rem;
    margin-top: .45rem;
    padding: .42rem .25rem;
  }

  .productContact h2 {
    font-size: clamp(20px, .28rem, 28px);
    line-height: 1.45;
  }

  .productContact p {
    font-size: clamp(13px, .17rem, 17px);
    line-height: 1.6;
  }

  .footerMain {
    display: block;
    min-height: 0;
    padding: .42rem 0 .34rem;
  }

  .footerContact {
    width: 100%;
    flex-basis: auto;
    padding: 0 0 .3rem;
    border-right: 0;
    border-bottom: .01rem solid #ddd;
  }

  .footerNav {
    grid-template-columns: repeat(2, 1fr);
    gap: .28rem .18rem;
    padding: .32rem 0;
  }

  .footerNav dl:last-child {
    display: none;
  }

  .footerNav dt {
    margin-bottom: .14rem;
  }

  .footerNav dd {
    margin-bottom: .08rem;
  }

  .footerMedia {
    width: 100%;
    flex-basis: auto;
    padding: .12rem 0 0;
  }

  .footerQr {
    justify-content: flex-start;
  }

  .footerQr img {
    width: 1.06rem;
    height: 1.06rem;
  }

  .footerSocial {
    justify-content: flex-start;
    margin-top: .25rem;
  }

  .footerSocialItem:first-child .footerSocialQr {
    left: 0;
    transform: translateY(.08rem);
  }

  .footerSocialItem:first-child .footerSocialQr::after {
    left: .25rem;
  }

  .footerSocialItem:first-child.hasQr:hover .footerSocialQr,
  .footerSocialItem:first-child.hasQr:focus-within .footerSocialQr,
  .footerSocialItem:first-child.hasQr.is-open .footerSocialQr {
    transform: translateY(0);
  }

  .copyright {
    width: 92%;
    padding: .16rem 0 .22rem;
    font-size: clamp(10px, .12rem, 12px);
    line-height: 1.6;
  }

  .backTop {
    width: .46rem;
    height: .46rem;
    top: auto;
    right: .12rem;
    bottom: .22rem;
  }

  .pagePager {
    margin-top: .42rem;
    gap: .1rem;
  }
}
