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

body {
  background: #F7F7F7;
}

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

strong{
  font-family: inherit;
  /*font-weight: inherit;*/
  font-weight: bold;
  font-size: inherit;
  color: inherit;
}

.red{
    color: #FF0000;
}

@font-face {
  font-family: Source Han Sans SC;
  src: url(../fonts/SourceHanSansSC-Light.otf);
  font-weight: 300;
}

@font-face {
  font-family: Source Han Sans SC;
  src: url(../fonts/SourceHanSansSC-Regular.otf);
  font-weight: 400;
}

@font-face {
  font-family: Source Han Sans SC;
  src: url(../fonts/SourceHanSansSC-Medium.otf);
  font-weight: 500;
}

@font-face {
  font-family: Source Han Sans SC;
  src: url(../fonts/SourceHanSansSC-Bold.otf);
  font-weight: bold;
}

@font-face {
  font-family: MiSans, MiSans;
  src: url(../fonts/MiSans-Medium.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Douyin Sans;
  src: url(../fonts/DouyinSansBold.otf);
  font-weight: 400;
}

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,
.imgBox img{
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
  cursor: pointer;
  object-fit: cover;
}

.scale-box:hover .scale-img,
.imgBox:hover .scale-img,
.imgBox:hover 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: 99999;
  width: 100%;
}

.main {
  width: 94%;
  max-width: 16rem;
  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;
}

:root {
  --blue: #1A62B9;
  --dark-blue: #004386;
  --deep-blue: #00356e;
  --orange: #FFA700;
  --text: #111;
  --muted: #777;
  --line: #e5e8ee;
}

header {
  height: 1rem;
  background: transparent;
  transition: background 0.24s linear;
}

header:hover,
header.active,
header.scroll {
  background: #fff;
  box-shadow: 0 0.02rem 0.12rem rgba(0, 0, 0, 0.08);
}

.headerMain {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  width: 2.05rem;
  height: .36rem;
}

.logo img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

header:hover .logo img,
header.active .logo img,
header.scroll .logo img {
  filter: none;
}


.nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}

.navItem {
  height: 1rem;
  display: flex;
  align-items: center;
}

.navItem>a {
  font-weight: 500;
  font-size: 0.2rem;
  color: #FFFFFF;
  position: relative;
}

header:hover .navItem>a,
header.active .navItem>a,
header.scroll .navItem>a {
  color: #000000;
}

.navItem:hover>a,
.navItem>a:hover,
header.active .navItem>a.active,
header.scroll .navItem>a.active{
  color: var(--blue) !important;
}


.navItem:hover>a::before,
.navItem>a.active::before {
  content: "";
  width: 0.04rem;
  height: 0.08rem;
  background: var(--orange);
  position: absolute;
  left: -0.17rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.subMenu,
.megaMenu {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 100%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.08rem);
  transition: all 0.24s ease;
  box-shadow: 0 0.08rem 0.2rem rgba(0, 0, 0, 0.08);
  z-index: 998;
}

.megaMenu{
    background-image: url('../images/meunback.png');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 7.96rem auto;
}

.navItem:hover .subMenu,
.navItem:hover .megaMenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.subMenu.slim {
  width: fit-content;
  min-width: 1.11rem;
  left: auto;
  margin-left: -0.28rem;
  padding: 0.2rem 0 .1rem;
}

.subMenu.slim::after {
  content: "";
  position: absolute;
  content: "";
  width: 0.1rem;
  height: 0.1rem;
  background: var(--orange);
  position: absolute;
  left: 50%;
  top: -.05rem;
  transform: translateX(-50%) rotate(45deg);
}

.subMenu.slim a {
  white-space: nowrap;
  height: 0.38rem;
  line-height: 0.38rem;
  text-align: center;
  color: #000000;
  font-size: 0.18rem;
  padding: 0 .15rem;
}

.subMenu.slim a:hover {
  background: var(--blue);
  color: #fff;
}

.megaMenu {
  padding: 0.72rem 0 0.9rem;
}

.megaInner {
  display: flex;
}

.megaLeft {
  width: 4.4rem;
  border-right: 0.01rem solid #eee;
  padding-right: 1rem;
}

.megaLeft h3,
.megaRight h3 {
  font-size: 0.24rem;
  font-weight: bold;
  color: #111;
  margin-bottom: 0.35rem;
}

.megaRight .level2{
  display: none;
}

.megaRight .level2.active{
  display: block;
}

.megaTab {
  height: 0.68rem;
  padding: 0 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.2rem;
  font-weight: bold;
  color: #111;
  background: #f4f4f4;
  margin-bottom: 0.16rem;
}

.megaTab.active {
  background: var(--orange);
  color: #fff;
}

.megaRight {
  flex: 1;
  padding-left: 0.8rem;
}

.megaGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.34rem 0.85rem;
}

.megaGrid a {
  color: #555;
  font-size: 0.18rem;
}

.megaGrid a::after {
  content: "›";
  float: right;
  color: #999;
}

.megaGrid a.active,
.megaGrid a:hover {
  color: var(--blue);
}

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

.topSearch {
  width: 1.4rem;
  height: 0.4rem;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  margin-left: .94rem;
}

header:hover .topSearch,
header.active .topSearch,
header.scroll .topSearch {
  background: rgba(186, 186, 186, 0.2);
}

.topSearch input {
  width: 1rem;
  padding-left: 0.11rem;
  color: #777;
  font-size: 0.14rem;
}

.topSearch input::-webkit-input-placeholder{
    color: #fff;
    opacity: .4;
}

header:hover .topSearch input::-webkit-input-placeholder,
header.active .topSearch input::-webkit-input-placeholder,
header.scroll .topSearch input::-webkit-input-placeholder{
    color: #777;
    opacity: 1;
}

.topSearch button {
  width: 0.15rem;
  height: .15rem;
  margin-left: auto;
  margin-right: .11rem;
}

.topSearch button img {
  width: 100%;
  height: 100%;
  display: block;
}

header:hover .topSearch button img,
header.active .topSearch button img,
header.scroll .topSearch button img {
  filter: invert(1);
}

.consultBtn {
  width: 1.02rem;
  height: 0.4rem;
  line-height: 0.4rem;
  text-align: center;
  color: #fff;
  font-size: 0.16rem;
  background: var(--orange);
  margin-left: .07rem;
}

.searchClose {
  display: none;
}

header.search,
header.search:hover,
header.search.active,
header.search.scroll {
  height: 1rem;
  background: #fff;
  box-shadow: none;
}

header.search .headerMain {
  position: relative;
}

header.search .logo {
  width: 2.07rem;
  height: 0.38rem;
}

header.search .logo img {
  filter: none;
}

header.search .nav,
header.search .consultBtn {
  display: none;
}

header.search .topSearch,
header.search:hover .topSearch,
header.search.active .topSearch,
header.search.scroll .topSearch {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  height: 0.45rem;
  margin-left: 0;
  background: #fff;
  border: 0.01rem solid #E1E1E1;
  border-radius: 0.04rem;
}

header.search .topSearch input {
  flex: 1;
  width: auto;
  height: 100%;
  padding-left: 0.42rem;
  padding-right: 0.15rem;
  font-size: 0.16rem;
  color: #333;
}

header.search .topSearch input::placeholder {
  color: #C6C6C6;
}

header.search .topSearch button {
  width: 0.66rem;
  height: 100%;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 0.16rem;
  color: #B1B1B1;
  text-align: center;
  line-height: 0.45rem;
  text-align: left;
  white-space: nowrap;
}

header.search .searchHistoryHead button{
  width: 1rem;
}

header.search .topSearch button img {
  display: none;
}

header.search .topSearch::before {
  content: "";
  position: absolute;
  left: 0.16rem;
  top: 50%;
  width: 0.16rem;
  height: 0.16rem;
  border: 0.015rem solid #CFCFCF;
  border-radius: 50%;
  transform: translateY(-50%);
}

header.search .topSearch::after {
  content: "";
  position: absolute;
  left: 0.295rem;
  top: 0.28rem;
  width: 0.07rem;
  height: 0.015rem;
  background: #CFCFCF;
  transform: rotate(45deg);
  transform-origin: left center;
}

header .searchHistory {
  display: none;
  position: absolute;
  left: -0.01rem;
  right: -0.01rem;
  top: 0.45rem;
  background: #fff;
  border: 0.01rem solid #E1E1E1;
  border-top: 0;
  border-radius: 0 0 0.04rem 0.04rem;
  box-shadow: 0 0.06rem 0.12rem rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

header.search .searchHistory.show {
  display: block;
}

header.search .searchHistoryHead {
  height: 0.42rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.32rem;
  border-top: 0.01rem solid #E9E9E9;
  border-bottom: 0.01rem solid #E9E9E9;
}

header.search .searchHistoryHead strong {
  font-weight: bold;
  font-size: 0.16rem;
  color: #000000;
}

header.search .clearSearchHistory {
  font-weight: 400;
  font-size: 0.14rem;
  color: #9A9A9A;
  line-height: 0.42rem;
}

header.search .clearSearchHistory:hover {
  color: var(--blue);
}

header.search .searchHistoryItem {
  height: 0.42rem;
  display: flex;
  align-items: center;
  border-bottom: 0.01rem solid #E9E9E9;
  padding: 0 0.16rem 0 0.32rem;
}

header.search .searchHistoryText {
  flex: 1;
  height: 100%;
  text-align: left;
  font-weight: 400;
  font-size: 0.14rem;
  color: #7A7A7A;
  line-height: 0.42rem;
}

header.search .searchHistoryText:hover {
  color: var(--blue);
}

header.search .deleteSearchHistory {
  width: 0.28rem;
  height: 0.28rem;
  position: relative;
}

header.search .deleteSearchHistory::before,
header.search .deleteSearchHistory::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.14rem;
  height: 0.015rem;
  background: #6F6F6F;
  transform-origin: center;
}

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

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

header.search .deleteSearchHistory:hover::before,
header.search .deleteSearchHistory:hover::after {
  background: var(--blue);
}

header.search .searchHistoryTip {
  height: 0.37rem;
  background: #F0F0F0;
  font-weight: 400;
  font-size: 0.14rem;
  color: #B2B2B2;
  line-height: 0.37rem;
  text-align: center;
}

header.search .searchHistory.empty .searchHistoryList::before {
  content: "暂无搜索历史";
  display: block;
  height: 0.42rem;
  font-weight: 400;
  font-size: 0.14rem;
  color: #B2B2B2;
  line-height: 0.42rem;
  text-align: center;
  border-bottom: 0.01rem solid #E9E9E9;
}

header.search .searchClose {
  display: block;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: #ECECEC;
  margin-left: auto;
  position: relative;
}

header.search .searchClose:hover {
  background: var(--orange);
}

header.search .searchClose::before,
header.search .searchClose::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.16rem;
  height: 0.015rem;
  background: #555555;
  transform-origin: center;
}

header.search .searchClose:hover::before,
header.search .searchClose:hover::after {
  background: #fff;
}

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

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

.innerBanner {
  height: 7rem;
  /*background: linear-gradient(120deg, #073c82 0%, #086bd0 48%, #101820 100%);*/
  position: relative;
  overflow: hidden;
}

.innerBannerImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*opacity: 0.32;*/
}

/*.innerBanner::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  right: 1.2rem;*/
/*  bottom: -0.8rem;*/
/*  width: 5.2rem;*/
/*  height: 5.2rem;*/
/*  border-radius: 50%;*/
/*  background: rgba(255, 255, 255, 0.08);*/
/*}*/

.innerBanner .main {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.innerBanner h1 {
  font-weight: bold;
  font-size: 0.45rem;
  color: #FFFFFF;
  margin-bottom: 0.1rem;
}

.innerBanner p {
  font-family: MiSans, MiSans;
  font-weight: 400;
  font-size: 0.25rem;
  color: #fff;
}


.breadMain {
  height: .93rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.01rem solid #E2E2E2;
}

.channelTabs {
  display: flex;
  gap: 0.7rem;
}

.channelTabs a {
  font-weight: 400;
  font-size: 0.18rem;
  color: #000000;
  line-height: 0.93rem;
}

.channelTabs a.active {
  color: var(--blue);
  font-weight: bold;
  position: relative;
}

.channelTabs a.active::before {
  content: "";
  width: 0.04rem;
  height: 0.16rem;
  background: var(--orange);
  position: absolute;
  left: -0.12rem;
  top: 0.39rem;
  transform: skewX(-10deg);
}

.crumb {
  display: flex;
  align-items: center;
  gap: 0.07rem;
  color: #a2a8b0;
  font-size: 0.13rem;
}

.crumb a,
.crumb span {
  font-weight: 400;
  font-size: 0.16rem;
  color: #ADADAD;
}

.crumb a img {
  width: .14rem;
  height: .14rem;
  margin-right: .07rem;
}

.crumb span {
  color: var(--blue);
}

.floatBar {
  position: fixed;
  right: 0.22rem;
  top: 45%;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.floatBar a {
  width: 0.62rem;
  height: 0.72rem;
  background: #fff;
  border-radius: 0.04rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.03rem 0.12rem rgba(0, 0, 0, 0.08);
  color: #111;
  position: relative;
}

.floatBar a:hover {
  border: 0.01rem solid var(--orange);
  color: var(--blue);
}

.floatBar a:last-child:hover {
  background: var(--orange);
  color: #fff;
  border: 0.01rem solid var(--orange);
}

.floatBar a >img {
  width: .21rem;
  height: .21rem;
  filter: brightness(0);
}

.floatBar a:hover >img {
  filter: none;
}

.floatBar a .code{
    position: absolute;
    top: 0;
    width: 1.2rem;
    height: 1.2rem;
    background: #fff;
    border-radius: 0.04rem;
    box-shadow: 0 0.03rem 0.12rem rgba(0, 0, 0, 0.08);
    border: 0.01rem solid var(--orange);
    right: calc(100% + .26rem);
    padding: .1rem;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
}

.floatBar a .text{
    position: absolute;
    top: 0;
    width: 2rem;
    height: .5rem;
    background: #fff;
    border-radius: 0.04rem;
    box-shadow: 0 0.03rem 0.12rem rgba(0, 0, 0, 0.08);
    border: 0.01rem solid var(--orange);
    right: calc(100% + .26rem);
    padding: 0 .1rem;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    text-align: center;
    line-height: .5rem;
}

.floatBar a .code img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.floatBar a:hover .code,
.floatBar a:hover .text{
    right: calc(100% + .06rem);
    opacity: 1;
    pointer-events: auto;
}

.floatBar b {
  font-size: 0.16rem;
  color: inherit;
  line-height: 1;
}

.floatBar span {
  margin-top: 0.06rem;
  font-size: 0.13rem;
}

.floatBarBox {
  padding: 1rem 0rem;
}

.quickContact {
  padding: 1rem 0rem;
  background: #fff;
}

.quickContact .main {
  height: 3.5rem;
  border-radius: 0.25rem;
  padding: 0rem 0.75rem 0 .5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: url(../images/quickContact.png);
  overflow: hidden;
}

.quickContact h2 {
  font-weight: bold;
  font-size: 0.45rem;
  color: #FFFFFF;
  margin-bottom: .2rem;
}

.quickContact p {
  font-weight: 300;
  font-size: 0.35rem;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}

.quickContact span {
  font-weight: 400;
  font-size: 0.18rem;
  color: #FFFFFF;
}

.quickContact a {
  width: 1.7rem;
  height: 0.5rem;
  background: var(--orange);
  font-weight: 400;
  font-size: 0.18rem;
  color: #FFFFFF;
  line-height: 0.5rem;
  text-align: center;
}

.footer {
  /*background: linear-gradient(120deg, #0759b1, #003567);*/
  background-image: url('../images/footBack.png');
  color: #fff;
  padding-top: 0.8rem;
  position: relative;
  overflow: hidden;
  z-index: 9999;
}

.footerMain {
  display: flex;
  position: relative;
  z-index: 1;
  justify-content: space-between;
}

.logo.white {
  width: 2.6rem !important;
  height: .46rem !important;
  margin-bottom: 0.48rem;
}

.logo.white img{
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footerInfo {
  width: 4.2rem;
}

.footerInfo p,
.footerInfo a{
  font-weight: 400;
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 0.25rem;
  margin-bottom: 0.24rem;
  display: flex;
  gap: 0.09rem;
}

.footerInfo a img,
.footerInfo p img {
  width: .28rem;
  height: .28rem;
  filter: brightness(0) invert(1);
}

.footerInfo a :hover,
.footerInfo p:hover{
    color: var(--orange);
}

.footerInfo a :hover img,
.footerInfo p:hover img{
    filter: none;
}

.qr {
  width: 1.11rem;
  height: 1.11rem;
  margin-left: .35rem;
}

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

.footerCols {
  /* flex: 1; */
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: .95rem;
}

.footerCols a:first-child {
  font-weight: 500;
  font-size: 0.2rem;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.footerCols a {
  font-weight: 300;
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 0.45rem;
}

.footerCols a:hover{
    color: var(--orange);
}

.copyright {
  border-top: 0.01rem solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  padding: 0.28rem 0;
  margin-top: 0.65rem;
  font-weight: 300;
  font-size: 0.18rem;
  position: relative;
  z-index: 1;
}

.copyright a {
  display: inline-block;
  font-weight: 300;
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 0.68);
}

.sectionTit {
  text-align: center;
  margin-bottom: 0.48rem;
}

.sectionTit em {
  display: block;
  font-style: normal;
  color: #d9dce2;
  font-size: 0.32rem;
  text-transform: uppercase;
}

.sectionTit h2 {
  color: #111;
  font-size: 0.3rem;
  font-weight: bold;
}

.cardCorner {
  /* background: linear-gradient(135deg, #EFF0F4 0 88%, transparent 88%); */
}

.productCard {
  height: 4.22rem;
  padding: .01rem;
  transition: all 0.25s ease;
  /* border: 0.01rem solid #EFF0F4; */
  background-image: url(../images/bg1.png);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

.productCard:hover {
  /* border-color: var(--orange); */
  /* background: #fff; */
  background-image: url(../images/bg2.png);
}

.productCard .imgBox {
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.productCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productCard .txt {
  padding: .3rem .23rem;
}

.productCard h3 {
  font-weight: 400;
  font-size: 0.22rem;
  color: #000000;
  margin-bottom: 0.3rem;
}

.productCard p {
  font-weight: 400;
  font-size: 0.16rem;
  color: #797979;
  display: flex;
  align-items: center;
  gap: .16rem;
}

.productCard p img {
  width: .05rem;
  height: .1rem;
  filter: brightness(0) grayscale(1);
}

.productCard:hover h3 {
  color: var(--blue);
}

.productCard:hover p {
  color: var(--orange);
}

.productCard:hover p img {
  filter: none;
}

.sideNav {
  width: 2.84rem;
}

.sideGroupTit {
  width: 100%;
  height: 0.52rem;
  padding: 0 0.24rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f0f1f4;
}

.sideGroupTit a,
.sideGroupTit em {
  font-size: 0.18rem;
  font-weight: bold;
  color: #222;
  font-style: normal;
}

.sideGroup.active .sideGroupTit {
  background: var(--orange);
}

.sideGroup.active .sideGroupTit a,
.sideGroup.active .sideGroupTit em {
  color: #fff;
}

.sideGroup .level2 {
  display: none;
}

.sideGroup.active .level2 {
  display: block;
}

.sideGroup .level2 a {
  height: 0.42rem;
  line-height: 0.42rem;
  padding: 0 0.25rem;
  background: #f0f1f4;
  border-top: 0.01rem solid #dedede;
  color: #8b8f96;
  font-size: 0.15rem;
  display: flex;
  align-items: center;
  
  justify-content: space-between;
}

.sideGroup .level2 a::after {
  content: "›";
  float: right;
  color: #9da3aa;
}

.sideGroup a.active,
.sideGroup a:hover {
  color: var(--blue);
}

.page {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.page button {
  width: 1.8rem;
  height: 0.55rem;
  border: 0.01rem solid #d9dce2;
  background: #fff;
  font-weight: 400;
  font-size: 0.18rem;
  color: #7B7B7B;
  text-align: center;
  line-height: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  border-radius: .06rem;
}

.page button:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.page button img {
  width: .12rem;
  height: .07rem;
}

.page button:hover img {
  filter: brightness(0) invert(1);
}

.footerTel {
    display: flex;
    gap: .2rem;
}


.mobileMenuBtn,
.mobileMenu,
.mobileMenuMask {
  display: none;
}

.mobileMenuBtn {
  display: none;
  width: 0.48rem;
  height: 0.48rem;
  border: 0;
  border-radius: 0.06rem;
  background: var(--blue);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.06rem;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.mobileMenuBtn span {
  display: block;
  width: 0.24rem;
  height: 0.02rem;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobileMenuBtn:active {
  background: var(--orange);
}
.mobileNavToggle,
.mobileNavLink {
  width: 100%;
  min-height: 0.7rem;
  padding: 0 0.24rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.01rem solid #edf0f4;
 
  background: #fff;
  text-align: left;
}

.mobileNavToggle a {
  width: 100%;
  font-size: 0.28rem;
  color: #111;
}

.mobileNavToggle span {
    flex-shrink: 0;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: #f0f3f7;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.22rem;
  margin-left: .3rem;
}

.mobileNavItem.active .mobileNavToggle {
  color: var(--blue);
  font-weight: 500;
}

.mobileNavItem.active .mobileNavToggle span {
  background: var(--orange);
  color: #fff;
}

.mobileSubNav {
  display: none;
  background: #f7f8fa;
  padding: 0.08rem 0;
}

.mobileNavItem.active .mobileSubNav {
  display: block;
}

.mobileSubNav a {
  min-height: 0.48rem;
  padding: 0 0.42rem;
  display: flex;
  align-items: center;
  font-size: 0.24rem;
  color: #666;
}

.mobileSubNav a:active {
  color: var(--blue);
  background: #eef4fb;
}

@media (max-width: 1024px) {
  body {
    min-width: 0;
    padding-top: 1rem;
  }
  
  .nav {
    display: none;
  }

  .mobileMenuBtn {
    display: flex;
  }

  .mobileMenuMask {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    z-index: 99998;
  }

  .mobileMenu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 82%;
    max-width: 360px;
    height: 100vh;
    background: #fff;
    transform: translateX(-100%);
    transition: .25s;
    z-index: 99999;
    overflow-y: auto;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open .mobileMenuMask {
    opacity: 1;
    pointer-events: auto;
  }

  body.mobile-menu-open .mobileMenu {
    transform: translateX(0);
  }

  .mobileSubNav {
    display: none;
  }

  .mobileNavItem.active .mobileSubNav {
    display: block;
  }
  
  .mobileMenuBtn {
    display: inline-flex;
  }

  body.mobile-menu-open .mobileMenuBtn {
    background: var(--orange);
  }

  body.mobile-menu-open .mobileMenuBtn span:nth-child(1) {
    transform: translateY(0.08rem) rotate(45deg);
  }

  body.mobile-menu-open .mobileMenuBtn span:nth-child(2) {
    opacity: 0;
  }

  body.mobile-menu-open .mobileMenuBtn span:nth-child(3) {
    transform: translateY(-0.08rem) rotate(-45deg);
  }
}

.anchorSide {
  position: fixed;
  left: 0.29rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

.anchorSide a {
  font-weight: 400;
  font-size: 0.16rem;
  color: #ADADAD;
  margin-bottom: 0.2rem;
}

.anchorSide a span {
  margin-right: 0.05rem;
  font-size: 0.1rem;
}

.anchorSide a.active {
  color: var(--blue);
}

.anchorSide a.active span {
  color: var(--orange);
}

@media (max-width: 1024px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    min-width: 0 !important;
    /*padding-top: 0 !important;*/
  }

  * {
    -webkit-tap-highlight-color: transparent;
  }

  .main {
    width: calc(100% - 0.48rem);
    max-width: none;
  }

  header,
  header.search,
  header.search:hover,
  header.search.active,
  header.search.scroll {
    /*height: auto;*/
    /*min-height: 0.96rem;*/
    background: #fff;
    box-shadow: 0 0.02rem 0.12rem rgba(0, 0, 0, 0.08);
  }

  .headerMain {
    gap: 0.18rem;
    /*flex-wrap: wrap;*/
    padding: 0.18rem 0 0.12rem;
    justify-content: space-between;
  }

  .logo,
  header.search .logo {
    width: 2.52rem;
    height: auto;
    flex: 0 0 auto;
  }

  .logo img,
  header.search .logo img {
    filter: none;
  }

  /*.nav,*/
  /*header.search .nav {*/
  /*  order: 3;*/
  /*  width: 100%;*/
  /*  display: flex;*/
  /*  gap: 0.34rem;*/
  /*  margin-left: 0;*/
  /*  overflow-x: auto;*/
  /*  padding: 0.04rem 0 0.02rem;*/
  /*  -webkit-overflow-scrolling: touch;*/
  /*}*/

  .navItem {
    height: 0.54rem;
    flex: 0 0 auto;
  }

  .navItem > a,
  header:hover .navItem > a,
  header.active .navItem > a,
  header.scroll .navItem > a,
  header.search .navItem > a {
    font-size: 0.2rem;
    color: #111;
    white-space: nowrap;
  }

  .subMenu,
  .megaMenu,
  .navItem:hover .subMenu,
  .navItem:hover .megaMenu {
    display: none;
  }

  .topSearch,
  header.search .topSearch,
  header.search:hover .topSearch,
  header.search.active .topSearch,
  header.search.scroll .topSearch {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex: 1;
    width: auto;
    max-width: none;
    height: 0.52rem;
    margin-left: 0;
    border: 0.01rem solid #e5e8ee;
    border-radius: 0.06rem;
    background: #f7f7f7;
    max-width: 50%;
  }

  .topSearch input,
  header.search .topSearch input {
    min-width: 0;
    width: auto;
    height: 100%;
    flex: 1;
    padding: 0 0.16rem 0 0.42rem;
    font-size: 0.2rem;
    color: #333;
  }

  .topSearch input::-webkit-input-placeholder,
  header:hover .topSearch input::-webkit-input-placeholder,
  header.active .topSearch input::-webkit-input-placeholder,
  header.scroll .topSearch input::-webkit-input-placeholder {
    color: #999;
    opacity: 1;
  }

  .topSearch button,
  header.search .topSearch button {
    width: 0.62rem;
    height: 100%;
    margin: 0;
    text-indent: -999px;
    overflow: hidden;
    position: relative;
  }

  .topSearch button img,
  header.search .topSearch button img {
    display: block;
    width: 0.2rem;
    height: 0.2rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: none;
  }
  
  .topSearch button img {
    filter: invert(1);
  }

  header.search .topSearch::before,
  header.search .topSearch::after {
    display: none;
  }

  header .searchHistory {
    top: 0.52rem;
  }

  header.search .searchHistoryHead,
  header.search .searchHistoryItem {
    height: 0.56rem;
    padding: 0 0.18rem;
  }

  header.search .searchHistoryHead strong,
  header.search .searchHistoryText,
  header.search .clearSearchHistory,
  header.search .searchHistoryTip {
    font-size: 0.2rem;
  }

  .consultBtn,
  header.search .consultBtn,
  header.search .searchClose {
    display: none;
  }

  .innerBanner {
    height: 3.8rem;
    /*margin-top: 1rem;*/
  }

  .headerWrap + .breadWrap {
    margin-top: 1.62rem;
  }

  .innerBanner h1 {
    font-size: 0.42rem;
  }

  .innerBanner p {
    font-size: 0.22rem;
    line-height: 1.4;
  }

  .breadMain {
    height: auto;
    padding: 0.18rem 0;
    align-items: flex-start;
    gap: 0.18rem;
    flex-direction: column;
  }

  .channelTabs {
    width: 100%;
    gap: 0.28rem;
    overflow-x: auto;
    padding-bottom: 0.04rem;
  }

  .channelTabs a {
    white-space: nowrap;
    font-size: 0.22rem;
    line-height: 0.46rem;
  }

  .channelTabs a.active::before {
    top: 0.15rem;
  }

  .crumb {
    flex-wrap: wrap;
  }

  .crumb a,
  .crumb span {
    font-size: 0.24rem;
  }
  .crumb a img{
      width: .24rem;
      height: .24rem;
  }

  .floatBar,
  .anchorSide {
    display: none;
  }

  .quickContact {
    padding: 0.56rem 0;
  }

  .quickContact .main {
    height: auto;
    min-height: 2.6rem;
    border-radius: 0.12rem;
    padding: 0.42rem 0.32rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .quickContact h2 {
    font-size: 0.36rem;
    margin-bottom: 0.12rem;
  }

  .quickContact p {
    font-size: 0.28rem;
    margin-bottom: 0.18rem;
  }

  .quickContact span,
  .quickContact a {
    font-size: 0.2rem;
  }

  .quickContact a {
    width: 1.9rem;
    height: 0.58rem;
    line-height: 0.58rem;
  }

  .footer {
    padding-top: 0.58rem;
    background-size: cover;
  }

  .footerMain {
    flex-direction: column;
    gap: 0.42rem;
  }

  .footerInfo {
    width: 100%;
  }

  .logo.white {
    width: 2.2rem !important;
    height: auto !important;
    margin-bottom: 0.32rem;
  }

  .footerInfo p,
  .footerInfo a {
    font-size: 0.2rem;
    line-height: 0.32rem;
    margin-bottom: 0.18rem;
  }

  .footerInfo a img,
  .footerInfo p img {
    width: 0.26rem;
    height: 0.26rem;
    flex: 0 0 auto;
  }

  .qr {
    margin-left: 0;
  }

  .footerCols {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.28rem 0.38rem;
  }

  .footerCols a:first-child {
    font-size: 0.22rem;
    margin-bottom: 0.2rem;
  }

  .footerCols a {
    font-size: 0.2rem;
    line-height: 0.38rem;
  }

  .copyright,
  .copyright a {
    font-size: 0.18rem;
    line-height: 0.3rem;
  }

  .copyright {
    margin-top: 0.44rem;
    padding: 0.24rem 0;
  }

  .sectionTit {
    margin-bottom: 0.36rem;
  }

  .sectionTit em {
    font-size: 0.28rem;
  }

  .sectionTit h2 {
    font-size: 0.34rem;
  }

  .productCard,
  .homeProductSwiper .productCard {
    height: auto;
    min-height: 3.6rem;
  }

  .productCard .imgBox,
  .homeProductSwiper .productCard .imgBox {
    height: 2.35rem;
  }

  .productCard .txt {
    padding: 0.22rem;
  }

  .productCard h3 {
    font-size: 0.24rem;
    line-height: 0.34rem;
    margin-bottom: 0.18rem;
  }

  .productCard p {
    font-size: 0.2rem;
  }

  .sideNav {
    width: 100%;
  }

  .sideGroupTit {
    height: 0.62rem;
    padding: 0 0.22rem;
  }

  .sideGroupTit a,
  .sideGroupTit em,
  .sideGroupTit span {
    font-size: 0.22rem;
  }

  .sideGroup .level2 {
    display: flex !important;
    gap: 0.14rem;
    overflow-x: auto;
    padding: 0.14rem 0;
  }

  .sideGroup .level2 a {
    flex: 0 0 auto;
    height: 0.5rem;
    line-height: 0.5rem;
    padding: 0 0.18rem;
    border-top: 0;
    font-size: 0.2rem;
    background: #f0f1f4;
  }

  .sideGroup .level2 a::after {
    display: none;
  }

  .page {
    gap: 0.18rem;
    margin-top: 0.46rem;
  }

  .page button {
    width: 2.2rem;
    height: 0.62rem;
    font-size: 0.22rem;
  }

  article img {
    max-width: 100% !important;
    height: auto !important;
  }
  .floatBar span{
      font-size: .24rem;
  }
}

@media (max-width: 560px) {
  .main {
    width: calc(100% - 0.36rem);
  }

  .topSearch input,
  header.search .topSearch input {
    font-size: 0.18rem;
    padding-right: 0.08rem;
  }

  .innerBanner {
    height: 3.2rem;
  }

  .footerCols {
    grid-template-columns: 1fr;
  }
}
