* {
  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;
}

@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: MiSans, MiSans;
  src: url(../fonts/MiSans-Semibold.ttf);
  font-weight: 600;
}

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;
}

/* img[src=""] {
  opacity: 0;
  pointer-events: none;
} */

/*多行溢出*/
.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: 999;
  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: "✓";
  font-family: Microsoft YaHei, Microsoft YaHei;
  color: #fff;
  font-size: .12rem;
  font-weight: bold;
  background-color: #005BAC;
  border: .01rem solid #fff;
}

:root {
  --blue: #0b63c7;
  --dark-blue: #004386;
  --deep-blue: #00356e;
  --orange: #ffaf15;
  --text: #111;
  --muted: #777;
  --line: #e5e8ee;
}

body {
  min-width: 12rem;
  background: #fff;
}

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

header {
  height: .98rem;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 .02rem .08rem rgba(0, 0, 0, .04);
}

.header-main {
  height: .98rem;
  display: flex;
  align-items: center;
}

.logo,
.footer-logo {
  display: flex;
  align-items: center;
  width: 2.1rem;
}

.logo img,
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo {
  width: 1.57rem;
}

.mobile-menu-btn,
.nav-toggle {
  display: none;
}

.logo-icon {
  position: relative;
  display: block;
  width: .55rem;
  height: .55rem;
  margin-right: .12rem;
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: .02rem;
  background: conic-gradient(from 20deg, #0069b8, #50c4f0, #0069b8, #75d4f0, #0069b8);
  clip-path: polygon(50% 0, 62% 32%, 96% 10%, 72% 44%, 100% 50%, 72% 56%, 96% 90%, 62% 68%, 50% 100%, 38% 68%, 4% 90%, 28% 56%, 0 50%, 28% 44%, 4% 10%, 38% 32%);
}

.logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.head-nav {
  /* flex: 1; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  margin-left: 2.26rem;
}

.head-nav .item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.head-nav .item>a {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.18rem;
  color: #333333;
  transition: color .3s;
}

.head-nav .item.active>a,
.head-nav .item:hover>a {
  color: #0069b8;
}

.head-nav .item.active>a::after,
.head-nav .item:hover>a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: .68rem;
  height: .03rem;
  background: #0069b8;
  transform: translateX(-50%);
}

.sub-nav {
  position: absolute;
  left: 50%;
  top: .98rem;
  min-width: 1.24rem;
  background: #fff;
  box-shadow: 0 .04rem .16rem rgba(0, 71, 126, .15);
  transform: translateX(-50%) translateY(.1rem);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.head-nav .item:hover .sub-nav {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.sub-nav a {
  height: .48rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 .22rem;
  white-space: nowrap;
  font-weight: 400;
  font-size: 0.16rem;
  color: #333333;
}

.sub-nav a:not(:last-child) {
  border-bottom: .01rem solid #E1E1E1;
}

.sub-nav a:hover {
  background: #0069b8;
  color: #fff;
}

.head-tool {
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.search-btn {
  width: .18rem;
  height: .18rem;
}

.tool-line {
  width: .01rem;
  height: .22rem;
  background: #d7d7d7;
  margin: 0 .3rem;
}

.lang-select {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: .08rem;
  height: .3rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.lang-btn span {
  font-weight: 400;
  font-size: 0.16rem;
  color: #666666;
}

.lang-icon {
  position: relative;
  width: .18rem;
  height: .18rem;
  border-radius: 50%;
}

.lang-btn i {
  width: 0;
  height: 0;
  border-left: .04rem solid transparent;
  border-right: .04rem solid transparent;
  border-top: .06rem solid #0069b8;
}

.lang-dropdown {
  position: absolute;
  top: .82rem;
  right: -.05rem;
  z-index: 2;
  width: .98rem;
  padding: .08rem 0;
  background: #fff;
  box-shadow: 0 .02rem .14rem rgba(0, 0, 0, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(.06rem);
  transition: opacity .25s, visibility .25s, transform .25s;
}

.lang-dropdown::before {
  content: '';
  position: absolute;
  top: -.07rem;
  right: .46rem;
  width: 0;
  height: 0;
  border-left: .07rem solid transparent;
  border-right: .07rem solid transparent;
  border-bottom: .07rem solid #fff;
}

.lang-select:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: center;
  height: .34rem;
  padding: 0 .22rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #777777;
  white-space: nowrap;
  transition: color .2s;
}

.lang-option:hover,
.lang-option.active {
  color: #0069b8;
}

.float-bar {
  position: fixed;
  right: .48rem;
  top: 50%;
  z-index: 800;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.float-bar a {
  width: .52rem;
  height: .52rem;
  background: #fff;
  box-shadow: 0rem 0rem 0.06rem 0.01rem rgba(0, 0, 0, 0.16);
  border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: width .28s, background .28s, border-color .28s;
}

.float-bar a:not(:last-child) {
  margin-bottom: .15rem;
  border: 0.01rem solid #EBEBEB;
}

.float-bar a:last-child {
  background: #0069b8;
}

.float-bar .mail-link,
.float-bar .phone-link {
  position: relative;
}

.float-bar .mail-link span,
.float-bar .phone-link span {
  position: absolute;
  left: .16rem;
  right: .58rem;
  top: 50%;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 400;
  font-size: .18rem;
  line-height: .52rem;
  color: #fff;
  text-align: left;
  opacity: 0;
  transform: translateY(-50%) translateX(.18rem);
  transition: opacity .18s, transform .28s;
}

.float-bar .mail-link:hover,
.float-bar .phone-link:hover {
  width: 2.6rem;
  background: #0069b8;
  border-color: #0069b8;
}

.float-bar .mail-link:hover span,
.float-bar .phone-link:hover span {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.float-bar .mail-link img,
.float-bar .phone-link img {
  position: absolute;
  right: .12rem;
  top: 50%;
  transform: translateY(-50%);
}

.float-bar .mail-link:hover img,
.float-bar .phone-link:hover img {
  filter: brightness(0) invert(1);
}

.float-bar a img {
  width: .28rem;
  height: .28rem;
  object-fit: contain;
}

.footer {
  background: #E8E8E8;
  /* border-top: .04rem solid #0069b8; */
  position: relative;
}

.footer::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  /*width: 13.6rem;*/
  width: 70%;
  height: 0.06rem;
  background: #005BAC;
}

.footer::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  /*width: 5.6rem;*/
  width: 30%;
  height: 0.06rem;
  background: #7FCDEC;
}

.footer-main {
  display: flex;
  padding-top: .59rem;
  padding-bottom: .9rem;
}

.footer-info {
  width: 4.35rem;
}

.footer-logo {
  margin-bottom: .38rem;
}

.footer-hotline {
  display: flex;
  align-items: center;
  margin-bottom: .34rem;
  gap: .1rem;
}

.footer-hotline p {
  font-weight: 400;
  font-size: 0.14rem;
  color: #333333;
}

.footer-hotline strong {
  display: block;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  font-size: 0.22rem;
  color: #005BAC;
}

.footer-contact {
  font-weight: 400;
  font-size: 0.16rem;
  color: #333333;
  margin-bottom: .2rem;
  display: flex;
  align-items: center;
  gap: .15rem;
}

.footer-contact img {
  width: .24rem;
  height: .24rem;
}

.social-list {
  display: flex;
  gap: .12rem;
  margin-top: .3rem;
}

.social-list a {
  width: 0.35rem;
  height: 0.35rem;
  background: #A2A2A2;
  border-radius: 0.03rem 0.03rem 0.03rem 0.03rem;
  padding: .08rem;
  position: relative;
}

.social-list a code{
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    background: #fff;
    padding: .1rem;
    border-radius: .05rem;
    top: calc(100% + .2rem);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
}

.social-list a:hover code{
    opacity: 1;
    pointer-events: auto;
    top: calc(100% + .1rem);
}

.social-list a code img{
    width: 100%;
    height: 100%;
}

.social-list a:hover {
  background: #005BAC;
}

.social-list a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.footer-nav dt {
  font-weight: bold;
  font-size: 0.18rem;
  color: #333333;
  margin-bottom: .28rem;
}

.footer-nav dd a {
  font-weight: 400;
  font-size: 0.16rem;
  color: #333333;
  margin-bottom: .18rem;
}

.footer-nav dd a:hover {
  color: #005BAC;
}

.footer-bottom {
  height: .6rem;
  border-top: .01rem solid #B9B9B9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom span,
.footer-bottom a {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #888888;
}

.footer-bottom .beian-group {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.inner-banner {
  position: relative;
  height: 5rem;
  padding-top: .98rem;
  overflow: hidden;
}

.inner-banner::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( 90deg, rgba(12,119,213,0.76) 0%, rgba(0,91,172,0) 30%);
}

.inner-banner .banner-img {
  position: absolute;
  inset: .98rem 0 0;
  width: 100%;
  height: calc(100% - .98rem);
  object-fit: cover;
  z-index: 0;
}

.inner-banner .main {
  position: relative;
  height: 100%;
  z-index: 2;
  padding-top: 1.74rem;
}

.inner-banner h1 {
  font-size: .48rem;
  line-height: .58rem;
  font-weight: bold;
  color: #fff;
}

.breadMain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: .2rem;
  border-bottom: 0.01rem solid rgba(255, 255, 255, .4);
}

.breadMain .crumb {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #FFFFFF;
  display: flex;
  align-items: flex-end;
  gap: .1rem;
}

.breadMain .crumb a {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #FFFFFF;
}

.breadMain .crumb a img {
  width: .15rem;
  height: .15rem;
  object-fit: contain;
}

.breadMain .inner-tabs {
  display: flex;
  gap: .3rem;
}

.inner-tabs a {
  min-width: 1.32rem;
  height: 0.44rem;
  background: #FFFFFF;
  border-radius: 0.23rem 0.23rem 0.23rem 0.23rem;
  /*border: 0.01rem solid #E1E1E1;*/
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .16rem;
  color: #333;
}

.inner-tabs a.active,
.inner-tabs a:hover {
  background: #005BAC;
  color: #fff;
}

.page-title {
  text-align: center;
}

.page-title h2 {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 0.4rem;
  color: #333333;
  padding-bottom: .2rem;
}

.page-title h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: .72rem;
  height: .04rem;
  background: #0069b8;
  transform: translateX(-50%);
}

.blue-tag-title {
  position: relative;
  padding-left: .16rem;
  font-weight: bold;
  font-size: 0.3rem;
  color: #333333;
  line-height: 1;
}

.blue-tag-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0.04rem;
  height: 0.3rem;
  background: #005BAC;
  border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
}

.text-cont p {
  font-size: .16rem;
  line-height: .32rem;
  color: #444;
}

.compage {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .08rem;
  margin-top: .62rem;
}

.compage a,
.compage span,
.compage input {
  min-width: .28rem;
  height: .28rem;
  border: .01rem solid #e1e1e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .14rem;
  color: #999;
}

.compage span{
  border: 0;
}

.compage a.act,
.compage a:hover {
  background: #0069b8;
  border-color: #0069b8;
  color: #fff;
}

.compage input {
  width: .5rem;
  padding: 0 .08rem;
  background: #fff;
}

.article-body p {
  font-size: .16rem;
  line-height: .32rem;
  color: #333;
  margin-bottom: .28rem;
}

.article-body .imgBox {
  width: 100%;
  min-height: 3.4rem;
  background: #e9eef2;
  margin-bottom: .24rem;
}

@media (max-width: 768px) {
  body {
    min-width: 0;
    overflow-x: hidden;
  }

  .main {
    width: 92%;
    max-width: none;
  }

  header {
    height: 1.08rem;
  }

  .header-main {
    height: 1.08rem;
    flex-wrap: nowrap;
    align-items: center;
    padding-top: 0;
  }

  .logo {
    width: 1.68rem;
  }

  .mobile-menu-btn {
    width: .58rem;
    height: .58rem;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .1rem;
  }

  .mobile-menu-btn span {
    width: .38rem;
    height: .03rem;
    background: #222;
    border-radius: .02rem;
    transition: transform .3s ease, opacity .3s ease;
  }

  header.menu-open .mobile-menu-btn span:nth-child(1) {
    transform: translateY(.13rem) rotate(45deg);
  }

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

  header.menu-open .mobile-menu-btn span:nth-child(3) {
    transform: translateY(-.13rem) rotate(-45deg);
  }

  .head-tool {
    height: auto;
    gap: .18rem;
    margin-left: .18rem;
  }

  .search-btn {
    width: .34rem;
    height: .34rem;
  }

  .tool-line {
    display: none;
  }

  .lang-select {
    height: auto;
    display: flex;
  }

  .lang-btn {
    height: .52rem;
    gap: .06rem;
  }

  .lang-icon {
    width: .3rem;
    height: .3rem;
  }

  .lang-btn span {
    max-width: 1.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .2rem;
  }

  .lang-btn i {
    border-left-width: .06rem;
    border-right-width: .06rem;
    border-top-width: .08rem;
  }

  .lang-dropdown {
    top: .62rem;
    right: 0;
    width: 1.48rem;
  }

  .lang-select.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .lang-option {
    height: .48rem;
    font-size: .22rem;
  }

  .head-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 1.08rem;
    bottom: 0;
    width: 100%;
    height: auto;
    margin-left: 0;
    padding: .12rem .32rem .6rem;
    background: #fff;
    overflow-y: auto;
    box-shadow: 0 .08rem .18rem rgba(0, 0, 0, .08);
  }

  header.menu-open .head-nav {
    display: block;
  }

  .head-nav .item {
    width: 100%;
    min-height: .76rem;
    height: auto;
    display: grid;
    grid-template-columns: 1fr .62rem;
    align-items: center;
    border-bottom: .01rem solid #e5e5e5;
  }

  .head-nav .item>a {
    height: .76rem;
    justify-content: flex-start;
    font-size: .26rem;
    white-space: nowrap;
    color: #333;
  }

  .head-nav .item.active>a::after,
  .head-nav .item:hover>a::after {
    display: none;
  }

  .nav-toggle {
    position: relative;
    display: block;
    width: .62rem;
    height: .76rem;
    grid-column: 2;
  }

  .nav-toggle::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: .18rem;
    height: .18rem;
    border-right: .03rem solid #999;
    border-bottom: .03rem solid #999;
    transform: translate(-50%, -65%) rotate(45deg);
    transition: transform .3s ease, border-color .3s ease;
  }

  .head-nav .item.open .nav-toggle::before {
    border-color: #005BAC;
    transform: translate(-50%, -35%) rotate(-135deg);
  }

  .sub-nav {
    position: static;
    display: none;
    grid-column: 1 / 3;
    min-width: 0;
    width: 100%;
    padding: 0 0 .18rem .24rem;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .head-nav .item:hover .sub-nav {
    transform: none;
  }

  .head-nav .item.open .sub-nav {
    display: block;
  }

  .sub-nav a {
    height: .56rem;
    justify-content: flex-start;
    padding: 0;
    font-size: .23rem;
    color: #666;
  }

  .sub-nav a:not(:last-child) {
    border-bottom: 0;
  }

  .sub-nav a:hover {
    background: transparent;
    color: #005BAC;
  }

  .float-bar {
    right: .18rem;
    top: auto;
    bottom: .32rem;
    transform: none;
  }

  .float-bar a,
  .float-bar .mail-link:hover,
  .float-bar .phone-link:hover {
    width: .72rem;
    height: .72rem;
  }

  .float-bar a:not(:last-child) {
    margin-bottom: .12rem;
  }

  .float-bar .mail-link span,
  .float-bar .phone-link span {
    display: none;
  }

  /* .float-bar a img, */
  .float-bar .mail-link img,
  .float-bar .phone-link img {
    width: .34rem;
    height: .34rem;
    right: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .footer-main {
    display: block;
    padding-top: .56rem;
    padding-bottom: .58rem;
  }

  .footer-info {
    width: 100%;
  }

  .footer-logo {
    width: 2rem;
    margin-bottom: .28rem;
  }

  .footer-hotline strong {
    font-size: .3rem;
  }

  .footer-contact {
    align-items: flex-start;
    font-size: .22rem;
    line-height: .34rem;
  }

  .social-list a {
    width: .48rem;
    height: .48rem;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .42rem .32rem;
    margin: .5rem 0 0;
  }

  .footer-nav dt {
    font-size: .24rem;
    margin-bottom: .18rem;
  }

  .footer-nav dd a {
    font-size: .22rem;
    line-height: .32rem;
    margin-bottom: .12rem;
  }

  .footer-bottom {
    height: auto;
    display: block;
    padding: .26rem 0;
  }

  .footer-bottom span,
  .footer-bottom a {
    display: block;
    font-size: .2rem;
    line-height: .32rem;
  }

  .footer-bottom .beian-group {
    display: flex;
    gap: .2rem;
  }

  .footer-bottom .beian-group a {
    display: inline;
  }

  .inner-banner {
    height: 4.2rem;
    padding-top: 1.08rem;
  }

  .inner-banner .banner-img {
    inset: 1.08rem 0 0;
    height: calc(100% - 1.08rem);
  }

  .inner-banner .main {
    padding-top: .72rem;
  }

  .inner-banner h1 {
    font-size: .42rem;
    line-height: .52rem;
  }

  .breadMain {
    display: block;
    padding-bottom: .14rem;
  }

  .breadMain .crumb {
    gap: .08rem;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: .12rem;
  }

  .breadMain .crumb,
  .breadMain .crumb a {
    font-size: .2rem;
  }

  .breadMain .inner-tabs {
    gap: .16rem;
    overflow-x: auto;
    padding-bottom: .02rem;
  }

  .inner-tabs a {
    flex: 0 0 auto;
    min-width: 1.5rem;
    height: .52rem;
    padding: 0 .24rem;
    font-size: .22rem;
  }

  .page-title h2 {
    font-size: .38rem;
    padding-bottom: .18rem;
  }

  .blue-tag-title {
    font-size: .32rem;
    padding-left: .18rem;
  }

  .blue-tag-title::before {
    width: .05rem;
    height: .32rem;
  }

  .text-cont p,
  .article-body p {
    font-size: .24rem;
    line-height: .42rem;
  }

  .compage {
    flex-wrap: wrap;
    gap: .12rem;
    margin-top: .42rem;
  }

  .compage a,
  .compage span,
  .compage input {
    min-width: .46rem;
    height: .46rem;
    font-size: .2rem;
  }

  .compage input {
    width: .82rem;
  }
}
