.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
  }
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.coverbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/*banner*/
.ind-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.ind-banner .swiper-slide {
  position: relative;
  height: 100%;
}
.ind-banner .swiper-slide .img {
  position: relative;
  height: 4.8rem;
}
.ind-banner .swiper-slide .img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-banner .onebox {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  top: 0;
  height: 100%;
  color: #fff;
  left: 50%;
  margin-left: -7.2rem;
  z-index: 2;
}
.ind-banner .onebox .en {
  font-size: var(--fs48);
  line-height: 0.6rem;
  font-family: 'SG-B';
}
.ind-banner .onebox .msg {
  margin-top: 0.2rem;
  width: 7.4rem;
  font-size: var(--fs28);
  line-height: 0.36rem;
  font-family: 'SG-M';
}
.ind-banner .onebox .more {
  margin-top: 0.2rem;
}
.ind-banner .onebox .more a {
  display: inline-block;
  font-size: var(--fs20);
  color: #fff;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  padding: 0 0.2rem;
  height: 0.56rem;
  line-height: 0.56rem;
  font-family: 'SG-B';
  background: #0075c7;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.ind-banner .onebox .more a:hover {
  background: #005E9F;
}
.ind-banner .se {
  position: absolute;
  top: 50%;
  margin-top: -0.35rem;
  display: none;
  z-index: 2;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.1rem;
  background: rgba(233, 233, 233, 0.3);
}
.ind-banner .se::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0.19rem;
  height: 0.3rem;
  margin-top: -0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.ind-banner .se:hover {
  background: #0075c7;
}
.ind-banner .prev {
  left: 24px;
}
.ind-banner .prev::before {
  left: 50%;
  margin-left: -0.1rem;
  background: url(../img/nimg19_left.png) center no-repeat;
  background-size: 0.19rem;
}
.ind-banner .prev:hover::before {
  background: url(../img/nimg19_lefton.png) center no-repeat;
  background-size: 0.19rem;
}
.ind-banner .next {
  right: 24px;
}
.ind-banner .next::before {
  right: 50%;
  margin-right: -0.1rem;
  background: url(../img/nimg19_right.png) center no-repeat;
  background-size: 0.19rem;
}
.ind-banner .next:hover::before {
  background: url(../img/nimg19_righton.png) center no-repeat;
  background-size: 0.19rem;
}
@media (max-width: 1004px) {
  .ind-banner .onebox {
    left: 0.3rem;
    margin-left: 0;
  }
  .ind-banner .onebox .en {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .ind-banner .onebox .msg {
    margin-top: 0.1rem;
    width: 80%;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .ind-banner .onebox .more {
    margin-top: 0.1rem;
  }
  .ind-banner .onebox .more a {
    font-size: var(--fs14);
    height: 0.76rem;
    line-height: 0.76rem;
  }
  .ind-banner .se {
    display: none;
    position: absolute;
    top: 50%;
    margin-top: -0.35rem;
    z-index: 2;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 0.1rem;
    background: rgba(233, 233, 233, 0.3);
  }
  .ind-banner .se::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0.19rem;
    height: 0.3rem;
    margin-top: -0.15rem;
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
  }
  .ind-banner .se:hover {
    background: #0075c7;
  }
  .ind-banner .prev {
    left: 24px;
  }
  .ind-banner .prev::before {
    left: 50%;
    margin-left: -0.1rem;
    background: url(../img/nimg19_left.png) center no-repeat;
    background-size: 0.19rem;
  }
  .ind-banner .prev:hover::before {
    background: url(../img/nimg19_lefton.png) center no-repeat;
    background-size: 0.19rem;
  }
  .ind-banner .next {
    right: 24px;
  }
  .ind-banner .next::before {
    right: 50%;
    margin-right: -0.1rem;
    background: url(../img/nimg19_right.png) center no-repeat;
    background-size: 0.19rem;
  }
  .ind-banner .next:hover::before {
    background: url(../img/nimg19_righton.png) center no-repeat;
    background-size: 0.19rem;
  }
}
.indTitle {
  font-size: var(--fs40);
  line-height: 0.5rem;
  color: #000;
  font-family: 'SG-M';
}
.indexP1 {
  overflow: hidden;
  padding: 0.8rem 0 0.4rem;
}
.indexP1 .indTitle {
  margin-bottom: 0.8rem;
}
.indSolu {
  position: relative;
  padding-bottom: 1.5rem;
}
.indSolu .imgList {
  width: 24.2rem;
  position: relative;
  left: 50%;
  margin-left: -12.1rem;
}
.indSolu .swiper-slide {
  position: relative;
  overflow: hidden;
}
.indSolu .swiper-slide .img {
  width: 8rem;
  height: 4.5rem;
  position: relative;
  margin: 0 auto;
  border-radius: 0.1rem;
  overflow: hidden;
  transform: scale(0.82);
  -webkit-transform: scale(0.82);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indSolu .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indSolu .swiper-slide .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.1rem;
  line-height: 0.36rem;
  text-align: center;
  font-size: var(--fs28);
  font-family: 'SG-M';
  color: #000;
}
.indSolu .swiper-slide-active .img {
  transform: scale(1);
  -webkit-transform: scale(1);
}
.indSolu .se {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.1rem;
  background: rgba(233, 233, 233, 0.3);
}
.indSolu .se::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0.19rem;
  height: 0.3rem;
  margin-top: -0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indSolu .se:hover {
  background: #0075c7;
}
.indSolu .prev {
  left: 50%;
  margin-left: -4rem;
}
.indSolu .prev::before {
  left: 50%;
  margin-left: -0.1rem;
  background: url(../img/nimg19_left.png) center no-repeat;
  background-size: 0.19rem;
}
.indSolu .prev:hover::before {
  background: url(../img/nimg19_lefton.png) center no-repeat;
  background-size: 0.19rem;
}
.indSolu .next {
  right: 50%;
  margin-right: -4rem;
}
.indSolu .next::before {
  right: 50%;
  margin-right: -0.1rem;
  background: url(../img/nimg19_right.png) center no-repeat;
  background-size: 0.19rem;
}
.indSolu .next:hover::before {
  background: url(../img/nimg19_righton.png) center no-repeat;
  background-size: 0.19rem;
}
.indexP2 {
  overflow: hidden;
  padding: 0.4rem 0;
}
.indexP2 .indTitle {
  margin-bottom: 0.4rem;
}
.live-action {
  position: relative;
  padding-bottom: 1.1rem;
  overflow: hidden;
}
.live-action .box {
  border-radius: 0.1rem;
  overflow: hidden;
  border: #eee solid 3px;
  background: #f4f4f4;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.live-action .box .img {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 3.2rem;
  background: #fff;
  border-radius: 0.08rem;
  overflow: hidden;
}
.live-action .box .img img {
  max-width: 100%;
  max-height: 100%;
}
.live-action .box .botDiv {
  padding: 0.1rem 0.1rem 0;
  height: 1.4rem;
}
.live-action .box .botDiv .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #000;
  font-family: 'SG-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.live-action .box .botDiv .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  height: 0.64rem;
  font-family: 'SG-B';
  color: rgba(0, 0, 0, 0.5);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.live-action .box:hover {
  border: #0075c7 solid 3px;
  background: #0075c7;
}
.live-action .box:hover .name,
.live-action .box:hover .msg {
  color: #fff;
}
.live-action .se {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.1rem;
  background: rgba(233, 233, 233, 0.3);
}
.live-action .se::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0.19rem;
  height: 0.3rem;
  margin-top: -0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.live-action .se:hover {
  background: #0075c7;
}
.live-action .prev {
  left: 0;
}
.live-action .prev::before {
  left: 50%;
  margin-left: -0.1rem;
  background: url(../img/nimg19_left.png) center no-repeat;
  background-size: 0.19rem;
}
.live-action .prev:hover::before {
  background: url(../img/nimg19_lefton.png) center no-repeat;
  background-size: 0.19rem;
}
.live-action .next {
  right: 0;
}
.live-action .next::before {
  right: 50%;
  margin-right: -0.1rem;
  background: url(../img/nimg19_right.png) center no-repeat;
  background-size: 0.19rem;
}
.live-action .next:hover::before {
  background: url(../img/nimg19_righton.png) center no-repeat;
  background-size: 0.19rem;
}
.indexP3 {
  padding: 0.4rem 0 0.8rem;
}
.indexP3 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP3 .leftImg {
  width: 6.8rem;
  border-radius: 0.1rem;
}
.indexP3 .leftImg img {
  width: 100%;
}
.indexP3 .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding: 0.32rem 0;
  width: 6.8rem;
}
.indexP3 .content {
  font-size: var(--fs20);
  line-height: 0.26rem;
  color: #000;
}
.indexP3 .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border-radius: 0.1rem;
  width: 1.48rem;
  height: 0.56rem;
  font-size: var(--fs20);
  color: #fff;
  font-family: 'SG-B';
  background: #0075c7;
}
.indexP3 .btnDiv a:hover {
  background: #005E9F;
}
.indexP4 {
  padding: 0 0 0.8rem;
}
.indexP4 .indTitle {
  margin-bottom: 0.4rem;
}
.indNews {
  position: relative;
  padding-bottom: 1.1rem;
  overflow: hidden;
}
.indNews .box {
  border-radius: 0.1rem;
  overflow: hidden;
  border: #eee solid 3px;
  background: #f4f4f4;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indNews .box .img {
  height: 1.8rem;
  background: #fff;
  border-radius: 0.08rem;
  overflow: hidden;
}
.indNews .box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indNews .box .botDiv {
  padding: 0.1rem 0.1rem 0;
  height: 1.8rem;
}
.indNews .box .botDiv .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--fs24);
  line-height: 0.32rem;
  max-height: 0.96rem;
  color: #000;
  font-family: 'SG-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indNews .box .botDiv .time {
  margin-top: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  font-family: 'SG-L';
  color: #000;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indNews .box:hover {
  border: #0075c7 solid 3px;
  background: #0075c7;
}
.indNews .box:hover .name,
.indNews .box:hover .time {
  color: #fff;
}
.indNews .se {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.1rem;
  background: rgba(233, 233, 233, 0.3);
}
.indNews .se::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0.19rem;
  height: 0.3rem;
  margin-top: -0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indNews .se:hover {
  background: #0075c7;
}
.indNews .prev {
  left: 0;
}
.indNews .prev::before {
  left: 50%;
  margin-left: -0.1rem;
  background: url(../img/nimg19_left.png) center no-repeat;
  background-size: 0.19rem;
}
.indNews .prev:hover::before {
  background: url(../img/nimg19_lefton.png) center no-repeat;
  background-size: 0.19rem;
}
.indNews .next {
  right: 0;
}
.indNews .next::before {
  right: 50%;
  margin-right: -0.1rem;
  background: url(../img/nimg19_right.png) center no-repeat;
  background-size: 0.19rem;
}
.indNews .next:hover::before {
  background: url(../img/nimg19_righton.png) center no-repeat;
  background-size: 0.19rem;
}
.indNews.other {
  padding-bottom: 0;
}
@media (max-width: 1004px) {
  .indTitle {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .indexP1 .indTitle {
    margin-bottom: 0.4rem;
  }
  .indSolu {
    padding: 0 var(--offset) 1.2rem;
  }
  .indSolu .imgList {
    width: 100%;
    left: 0;
    margin-left: 0;
    overflow: hidden;
  }
  .indSolu .swiper-slide .img {
    width: 100%;
    height: 3.4rem;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  .indSolu .swiper-slide .name {
    margin-top: 0.2rem;
    line-height: 0.56rem;
    font-size: var(--fs16);
  }
  .indSolu .se {
    width: 0.9rem;
    height: 0.9rem;
  }
  .indSolu .prev {
    left: var(--offset);
    margin-left: 0;
  }
  .indSolu .next {
    right: var(--offset);
    margin-right: 0;
  }
  .live-action {
    padding-bottom: 1.2rem;
  }
  .live-action .box {
    border: #eee solid 2px;
  }
  .live-action .box .img {
    height: 3rem;
  }
  .live-action .box .botDiv {
    padding: 0.1rem 0.1rem 0;
    height: 1.65rem;
  }
  .live-action .box .botDiv .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .live-action .box .botDiv .msg {
    font-size: var(--fs13);
    line-height: 0.42rem;
    height: 0.84rem;
  }
  .live-action .box:hover {
    border: #0075c7 solid 2px;
  }
  .live-action .se {
    width: 0.9rem;
    height: 0.9rem;
  }
  .indexP3 .mxfDiv {
    display: block;
  }
  .indexP3 .leftImg {
    width: auto;
  }
  .indexP3 .conDiv {
    display: block;
    padding: 0.5rem 0 0;
    width: auto;
  }
  .indexP3 .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .indexP3 .btnDiv {
    margin-top: 0.4rem;
  }
  .indexP3 .btnDiv a {
    width: 2.2rem;
    height: 0.8rem;
    font-size: var(--fs15);
  }
  .indNews {
    padding-bottom: 1.2rem;
  }
  .indNews .box {
    border: #eee solid 2px;
  }
  .indNews .box .img {
    height: 3.8rem;
  }
  .indNews .box .botDiv .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .indNews .box .botDiv .time {
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .indNews .box:hover {
    border: #0075c7 solid 2px;
  }
  .indNews .se {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.solution {
  padding: 0.8rem 0 0.4rem;
}
.solution .list {
  margin-top: 0.4rem;
}
.solution .list ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
.solution .list li {
  width: calc(50% - 0.2rem);
  margin-bottom: 0.4rem;
}
.solution .list li a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.1rem;
  border: #eee solid 3px;
  background: #f4f4f4;
}
.solution .list li a .imgDiv {
  height: 3.94rem;
  overflow: hidden;
  border-radius: 0.08rem;
}
.solution .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution .list li a .botDiv {
  height: 1.05rem;
  padding: 0.1rem;
}
.solution .list li a .name {
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #000;
  font-family: 'SG-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.solution .list li a:hover {
  border: #0075c7 solid 3px;
  background: #0075c7;
}
.solution .list li a:hover .name {
  color: #fff;
}
@media (max-width: 1004px) {
  .solution .list li {
    width: 100%;
  }
  .solution .list li a {
    border: #eee solid 2px;
  }
  .solution .list li a .imgDiv {
    height: auto;
  }
  .solution .list li a .imgDiv img {
    height: auto;
  }
  .solution .list li a .botDiv {
    height: 1.2rem;
  }
  .solution .list li a .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .solution .list li a:hover {
    border: #0075c7 solid 2px;
  }
}
.service {
  padding: 0.8rem 0 0.4rem;
}
.service .list {
  margin-top: 0.4rem;
}
.service .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.service .list li {
  width: calc((100% - 1.59rem) / 4);
  margin-right: 0.53rem;
  background: #f4f4f4;
  border-radius: 0.1rem;
}
.service .list li:nth-child(4n) {
  margin-right: 0;
}
.service .list li .imgDiv {
  height: 3.2rem;
  overflow: hidden;
  border-radius: 0.08rem;
}
.service .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service .list li .botDiv {
  padding: 0.1rem;
}
.service .list li .name {
  font-size: var(--fs24);
  line-height: 0.32rem;
  min-height: 0.64rem;
  color: #000;
  word-break: break-all;
  font-family: 'SG-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.service .list li .msg {
  margin-top: 0.1rem;
  font-size: var(--fs20);
  line-height: 0.26rem;
  color: #000;
  font-family: 'SG-L';
}
.support {
  padding: 0.4rem 0;
}
.support .list {
  margin-top: 0.4rem;
}
.support .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.support .list li {
  width: calc((100% - 1.59rem) / 4);
  margin-right: 0.53rem;
}
.support .list li:nth-child(4n) {
  margin-right: 0;
}
.support .list li a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.1rem;
  border: #eee solid 3px;
  background: #f4f4f4;
}
.support .list li a .imgDiv {
  height: 3.2rem;
  overflow: hidden;
  border-radius: 0.08rem;
}
.support .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.support .list li a .botDiv {
  height: 1.4rem;
  padding: 0.1rem;
}
.support .list li a .name {
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #000;
  font-family: 'SG-B';
  word-break: break-all;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.support .list li a:hover {
  border: #0075c7 solid 3px;
  background: #0075c7;
}
.support .list li a:hover .name {
  color: #fff;
}
@media (max-width: 1004px) {
  .service .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.4rem;
  }
  .service .list li:nth-child(2n) {
    margin-right: 0;
  }
  .service .list li .imgDiv {
    height: 3rem;
  }
  .service .list li .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .service .list li .msg {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .support .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .support .list li:nth-child(2n) {
    margin-right: 0;
  }
  .support .list li a {
    border: #eee solid 2px;
  }
  .support .list li a .imgDiv {
    height: 3rem;
  }
  .support .list li a .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .support .list li a:hover {
    border: #0075c7 solid 2px;
  }
}
.news {
  padding: 0.8rem 0 0.4rem;
}
.news .list {
  margin-top: 0.4rem;
}
.news .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.news .list li {
  width: calc((100% - 1.59rem) / 4);
  margin-right: 0.53rem;
  margin-bottom: 0.4rem;
}
.news .list li:nth-child(4n) {
  margin-right: 0;
}
.news .list li a {
  display: block;
  border-radius: 0.1rem;
  overflow: hidden;
  border: #eee solid 3px;
  background: #f4f4f4;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.news .list li a .img {
  height: 1.8rem;
  background: #fff;
  border-radius: 0.08rem;
  overflow: hidden;
}
.news .list li a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .list li a .botDiv {
  padding: 0.1rem 0.1rem 0;
  height: 1.8rem;
}
.news .list li a .botDiv .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--fs24);
  line-height: 0.32rem;
  max-height: 0.96rem;
  color: #000;
  font-family: 'SG-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.news .list li a .botDiv .time {
  margin-top: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  font-family: 'SG-L';
  color: #000;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.news .list li a:hover {
  border: #0075c7 solid 3px;
  background: #0075c7;
}
.news .list li a:hover .name,
.news .list li a:hover .time {
  color: #fff;
}
@media (max-width: 1004px) {
  .news .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .news .list li:nth-child(2n) {
    margin-right: 0;
  }
  .news .list li a {
    border: #eee solid 2px;
  }
  .news .list li a .img {
    height: 2rem;
  }
  .news .list li a .botDiv .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .news .list li a .botDiv .time {
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .news .list li a:hover {
    border: #0075c7 solid 2px;
  }
}
.contact {
  padding: 0.8rem 0 1rem;
}
.contact .content {
  margin-top: 0.4rem;
  font-size: var(--fs20);
  line-height: 0.26rem;
  color: #000;
}
.contact .form {
  margin: 0.6rem auto 0;
  width: 11.2rem;
}
.contact .form li {
  margin-bottom: 0.2rem;
  position: relative;
  padding-left: 2.2rem;
}
.contact .form li::after {
  content: '';
  display: block;
  clear: both;
}
.contact .form li .zi {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 0.6rem;
  font-size: var(--fs20);
  font-family: 'SG-B';
  color: #000;
}
.contact .form li .input1 {
  width: 100%;
  height: 0.6rem;
  border-radius: 0.1rem;
  border: #e7edf4 solid 3px;
  padding-left: 0.2rem;
  font-size: var(--fs18);
  font-family: 'SG-R';
}
.contact .form li textarea {
  display: block;
  width: 100%;
  height: 4.5rem;
  border-radius: 0.1rem;
  border: #e7edf4 solid 3px;
  padding: 0.16rem 0.2rem 0;
  font-size: var(--fs18);
  line-height: 0.3rem;
  font-family: 'SG-R';
}
.contact .form li .select {
  position: absolute;
  left: 2.2rem;
  top: 0;
  width: 2rem;
  height: 0.6rem;
}
.contact .form li .select .caption {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 0.6rem;
  line-height: 0.54rem;
  padding-left: 0.2rem;
  font-size: var(--fs18);
  color: #2b2b2b;
  border-radius: 0.1rem;
  border: #e7edf4 solid 3px;
  background: url(../img/selectIco3.png) right center no-repeat;
}
.contact .form li .select .xlist {
  width: 130%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  max-height: 2.4rem;
  overflow-y: auto;
  display: none;
  background: #fff;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
.contact .form li .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.contact .form li .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.contact .form li .select .xlist::-webkit-scrollbar-thumb {
  background-color: #0075c7;
}
.contact .form li .select .xlist a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  font-size: var(--fs16);
  color: #000;
  height: 0.48rem;
  overflow: hidden;
  padding: 0 0.2rem;
  border-bottom: 1px solid #e3e5e9;
}
.contact .form li .select .xlist a em {
  padding-left: 0.1rem;
  color: #999;
}
.contact .form li .select .xlist a:hover {
  color: #0075c7;
}
.contact .form li .select .xlist a:hover em {
  color: #0075c7;
}
.contact .form li .select .xlist a:last-child {
  border-bottom: none;
}
.contact .form .li01 {
  padding-left: 4.4rem;
}
.contact .btnDiv {
  width: 1.48rem;
}
.contact .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 0.56rem;
  border-radius: 0.1rem;
  background: #0075c7;
  font-size: var(--fs20);
  font-family: 'SG-B';
  color: #fff;
}
.contact .btnDiv a:hover {
  background: #005E9F;
}
@media (max-width: 1004px) {
  .contact {
    padding: 0.8rem 0 1rem;
  }
  .contact .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .contact .form {
    width: auto;
  }
  .contact .form li {
    padding-left: 0;
  }
  .contact .form li .zi {
    position: relative;
    line-height: 0.72rem;
    font-size: var(--fs15);
  }
  .contact .form li .input1 {
    width: 100%;
    height: 0.82rem;
    border: #e7edf4 solid 2px;
    font-size: var(--fs15);
  }
  .contact .form li textarea {
    height: 4rem;
    border: #e7edf4 solid 2px;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .contact .form li .select {
    float: left;
    position: relative;
    left: 0;
    top: 0;
    width: 38%;
    height: 0.82rem;
  }
  .contact .form li .select .caption {
    height: 0.82rem;
    line-height: 0.78rem;
    font-size: var(--fs14);
    border: #e7edf4 solid 2px;
  }
  .contact .form li .select .xlist {
    width: 180%;
    max-height: 4rem;
  }
  .contact .form li .select .xlist a {
    font-size: var(--fs14);
    height: 0.8rem;
  }
  .contact .form .li01 {
    padding-left: 0;
  }
  .contact .form .li01 .input1 {
    width: 60%;
    float: right;
  }
  .contact .btnDiv {
    padding-top: 0.2rem;
    width: 2.2rem;
  }
  .contact .btnDiv a {
    height: 0.8rem;
    font-size: var(--fs15);
  }
}
.aboutP1 {
  padding: 0.8rem 0 0.4rem;
}
.aboutP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.aboutP1 .conDiv {
  width: 6.8rem;
}
.aboutP1 .conDiv .content {
  margin-top: 0.8rem;
  font-size: var(--fs20);
  line-height: 0.26rem;
  color: #000;
}
.aboutP1 .conDiv .content p {
  padding-bottom: 0.5rem;
}
.aboutP1 .imgDiv {
  width: 6.8rem;
  border-radius: 0.1rem;
}
.aboutP1 .imgDiv img {
  width: 100%;
}
.aboutP2 {
  padding: 0.4rem 0;
}
.aboutP2 .list {
  margin-top: 0.4rem;
}
.aboutP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.aboutP2 .list li {
  width: calc((100% - 1.59rem) / 4);
  margin-right: 0.53rem;
  border-radius: 0.1rem;
  background: #f4f4f4;
}
.aboutP2 .list li:nth-child(4n) {
  margin-right: 0;
}
.aboutP2 .list li .imgDiv {
  border-radius: 0.08rem;
  overflow: hidden;
  height: 3.2rem;
}
.aboutP2 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutP2 .list li .botDiv {
  padding: 0.2rem 0.1rem;
  min-height: 2.1rem;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
  /* 可选：连字符 */
  hyphens: auto;
}
.aboutP2 .list li .name {
  text-align: center;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #000;
  font-family: 'SG-B';
}
.aboutP2 .list li .msg {
  margin-top: 0.2rem;
  font-size: var(--fs20);
  line-height: 0.26rem;
  text-align: center;
  color: #000;
  font-family: 'SG-L';
}
.aboutP3 {
  padding: 0.4rem 0;
}
.aboutP3 .list {
  margin-top: 0.4rem;
}
.aboutP3 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.aboutP3 .list li {
  width: calc((100% - 1.59rem) / 4);
  margin-right: 0.53rem;
  border-radius: 0.1rem;
  background: #f4f4f4;
  text-align: center;
  padding: 1.1rem 0.2rem 0;
  height: 3.2rem;
}
.aboutP3 .list li:nth-child(4n) {
  margin-right: 0;
}
.aboutP3 .list li .num {
  font-size: var(--fs40);
  line-height: 0.52rem;
  color: #0075c7;
  font-family: 'SG-B';
}
.aboutP3 .list li .msg {
  margin-top: 0.16rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #000;
  font-family: 'SG-B';
}
.aboutP4 {
  padding: 0.4rem 0;
}
.aboutP4 .list {
  margin-top: 0.4rem;
}
.aboutP4 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.aboutP4 .list li {
  width: calc((100% - 0.9rem) / 4);
  margin-right: 0.3rem;
}
.aboutP4 .list li:nth-child(4n) {
  margin-right: 0;
}
.aboutP4 .list li a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.1rem;
  border: #eee solid 3px;
  background: #f4f4f4;
}
.aboutP4 .list li a .imgDiv {
  height: 3.2rem;
  overflow: hidden;
  border-radius: 0.08rem;
}
.aboutP4 .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutP4 .list li a .botDiv {
  height: 1.4rem;
  padding: 0.1rem;
}
.aboutP4 .list li a .name {
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #000;
  font-family: 'SG-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP4 .list li a:hover {
  border: #0075c7 solid 3px;
  background: #0075c7;
}
.aboutP4 .list li a:hover .name {
  color: #fff;
}
@media (max-width: 1004px) {
  .aboutP1 .mxfDiv {
    display: block;
  }
  .aboutP1 .conDiv {
    width: auto;
  }
  .aboutP1 .conDiv .content {
    margin-top: 0.4rem;
    font-size: var(--f15);
    line-height: 0.52rem;
    padding-bottom: 0.2rem;
  }
  .aboutP1 .conDiv .content p {
    padding-bottom: 0.4rem;
  }
  .aboutP1 .imgDiv {
    width: auto;
  }
  .aboutP2 {
    padding: 0.4rem 0 0;
  }
  .aboutP2 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.4rem;
  }
  .aboutP2 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .aboutP2 .list li .imgDiv {
    height: auto;
  }
  .aboutP2 .list li .imgDiv img {
    height: auto;
  }
  .aboutP2 .list li .botDiv {
    padding: 0.2rem 0.1rem;
    min-height: auto;
  }
  .aboutP2 .list li .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .aboutP2 .list li .msg {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .aboutP3 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    padding: 0.8rem 0.2rem 0;
    margin-bottom: 0.4rem;
  }
  .aboutP3 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .aboutP3 .list li .num {
    font-size: var(--fs28);
    line-height: 0.64rem;
  }
  .aboutP3 .list li .msg {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .aboutP4 {
    padding: 0;
  }
  .aboutP4 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.4rem;
  }
  .aboutP4 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .aboutP4 .list li a {
    border: #eee solid 2px;
  }
  .aboutP4 .list li a .imgDiv {
    height: 3rem;
  }
  .aboutP4 .list li a .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .aboutP4 .list li a:hover {
    border: #0075c7 solid 2px;
  }
}
.login {
  padding: 0.8rem 0;
}
.login .bigBox {
  margin: 0 auto;
  width: 7.2rem;
  padding: 0.3rem 0.4rem;
  border-radius: 0.1rem;
  border: #e7edf4 solid 3px;
  box-shadow: 0px 8px 22px rgba(0, 0, 0, 0.05);
}
.login .title {
  text-align: center;
  line-height: 0.36rem;
  font-family: 'SG-M';
  color: #000;
  font-size: var(--fs28);
  margin-bottom: 0.2rem;
}
.login .content {
  text-align: center;
  font-size: var(--fs20);
  line-height: 0.26rem;
  color: #000;
}
.login .form {
  margin-top: 0.2rem;
}
.login .form li {
  padding-bottom: 0.2rem;
}
.login .form li .zi {
  font-size: var(--fs20);
  line-height: 0.26rem;
  color: #000;
  font-family: 'SG-B';
  margin-bottom: 0.2rem;
}
.login .form li .input1 {
  width: 100%;
  height: 0.6rem;
  border-radius: 0.1rem;
  border: #e7edf4 solid 3px;
  padding-left: 0.2rem;
  font-size: var(--fs18);
  font-family: 'SG-R';
}
.login .btnDiv {
  width: 1.06rem;
  margin: 0 auto;
}
.login .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 0.56rem;
  border-radius: 0.1rem;
  background: #0075c7;
  font-size: var(--fs20);
  font-family: 'SG-B';
  color: #fff;
}
.login .btnDiv a:hover {
  background: #005E9F;
}
@media (max-width: 1004px) {
  .login .bigBox {
    width: 100%;
    padding: 0.5rem 0.4rem;
    border: #e7edf4 solid 2px;
  }
  .login .title {
    line-height: 0.64rem;
    font-size: var(--fs22);
  }
  .login .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .login .form {
    margin-top: 0.4rem;
  }
  .login .form li .zi {
    line-height: 0.72rem;
    font-size: var(--fs15);
    margin-bottom: 0;
  }
  .login .form li .input1 {
    width: 100%;
    height: 0.82rem;
    border: #e7edf4 solid 2px;
    font-size: var(--fs15);
  }
  .login .btnDiv {
    width: 1.56rem;
  }
  .login .btnDiv a {
    height: 0.8rem;
    font-size: var(--fs15);
  }
}
.product {
  padding: 0.8rem 0;
}
.product .indTitle {
  margin-bottom: 0.4rem;
}
.product .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.product .rightDiv {
  width: calc(100% - 2.56rem);
  border-radius: 0.1rem;
  border: #0075c7 solid 3px;
  border-top-left-radius: 0;
  padding: 0.4rem;
}
.product .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.product .list li {
  width: calc((100% - 1.44rem) / 3);
  margin-right: 0.72rem;
  margin-top: 0.4rem;
}
.product .list li:nth-child(-n+3) {
  margin-top: 0;
}
.product .list li:nth-child(3n) {
  margin-right: 0;
}
.product .list li a {
  display: block;
  border-radius: 0.1rem;
  overflow: hidden;
  border: #eee solid 3px;
  background: #f4f4f4;
}
.product .list li a .img {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 3.2rem;
  background: #fff;
  border-radius: 0.08rem;
  overflow: hidden;
}
.product .list li a .img img {
  max-width: 100%;
  max-height: 100%;
}
.product .list li a .botDiv {
  padding: 0.1rem 0.1rem 0;
  height: 1.4rem;
}
.product .list li a .botDiv .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #000;
  font-family: 'SG-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li a .botDiv .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  height: 0.64rem;
  font-family: 'SG-B';
  color: rgba(0, 0, 0, 0.5);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li a:hover {
  border: #0075c7 solid 3px;
  background: #0075c7;
}
.product .list li a:hover .name,
.product .list li a:hover .msg {
  color: #fff;
}
.product .pageNum {
  padding-top: 0.4rem;
}
.proNav {
  width: 2.56rem;
}
.proNav li {
  font-size: var(--fs24);
  font-family: 'SG-B';
}
.proNav li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 1.44rem;
  background: #fff;
  border: #e7edf4 solid 3px;
  border-right: none;
  border-top-left-radius: 0.1rem;
  border-bottom-left-radius: 0.1rem;
  color: #000;
  text-align: center;
}
.proNav li a:hover {
  border: #0075c7 solid 3px;
  border-right: none;
  background: #0075c7;
  color: #fff;
}
.proNav li .aNow {
  border: #0075c7 solid 3px;
  border-right: none;
  background: #0075c7;
  color: #fff;
}
@media (max-width: 1004px) {
  .product .mxfDiv {
    display: block;
  }
  .product .rightDiv {
    width: 100%;
    border: #0075c7 solid 2px;
    border-top-left-radius: 0.1rem;
    padding: 0.3rem 0.2rem;
  }
  .product .list {
    max-height: 100%;
    overflow: auto;
    padding-right: 0;
  }
  .product .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.4rem;
  }
  .product .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .product .list li:nth-child(3) {
    margin-top: 0.4rem;
  }
  .product .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .product .list li:nth-child(2n) {
    margin-right: 0;
  }
  .product .list li a {
    border: #eee solid 2px;
  }
  .product .list li a .botDiv {
    padding: 0.1rem 0.1rem 0;
    height: 1.65rem;
  }
  .product .list li a .botDiv .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .product .list li a .botDiv .msg {
    font-size: var(--fs13);
    line-height: 0.42rem;
    height: 0.84rem;
  }
  .product .list li a:hover {
    border: #0075c7 solid 2px;
  }
  .proNav {
    width: auto;
  }
  .proNav ul {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-wrap: wrap;
  }
  .proNav li {
    width: 48%;
    font-size: var(--fs14);
    margin-bottom: 0.2rem;
  }
  .proNav li a {
    height: 1.2rem;
    border-radius: 0.1rem;
    border: #e7edf4 solid 2px;
    border-right: #e7edf4 solid 2px;
  }
  .proNav li a:hover {
    border: #0075c7 solid 2px;
    border-right: #0075c7 solid 2px;
  }
  .proNav li .aNow {
    border: #0075c7 solid 2px;
    border-right: #0075c7 solid 2px;
  }
}
.brochures {
  padding: 0.8rem 0 0.4rem;
}
.brochures .indTitle {
  margin-bottom: 0.4rem;
}
.brochures .list li {
  margin-bottom: 0.4rem;
  padding: 0 0.4rem;
  border: #e7edf4 solid 3px;
  border-radius: 0.1rem;
  box-shadow: 0px 8px 22px -4px rgba(0, 0, 0, 0.3);
}
.brochures .list li:last-child {
  margin-bottom: 0;
}
.brochures .list li .msgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  cursor: pointer;
  position: relative;
  height: 0.74rem;
  padding-left: 0.4rem;
}
.brochures .list li .msgDiv .name {
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #000;
  font-family: 'SG-B';
}
.brochures .list li .msgDiv .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -0.3rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #f9f9f9;
}
.brochures .list li .msgDiv .ico::after {
  content: '';
  width: 0.25rem;
  height: 0.16rem;
  background: url(../img/nimg25_bot.png) center no-repeat;
  background-size: 0.25rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.brochures .list li .aNow .ico::after {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.brochures .list li .box {
  display: none;
}
.brochures .list li .box dd {
  border-top: #e7edf4 solid 3px;
  font-size: var(--fs20);
}
.brochures .list li .box dd a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding-left: 0.8rem;
  height: 0.64rem;
  line-height: 0.24rem;
  color: #000;
}
.brochures .list li .box dd a:hover {
  color: #0075c7;
}
@media (max-width: 1004px) {
  .brochures .list li {
    padding: 0 0.3rem;
    border: #e7edf4 solid 2px;
    box-shadow: 0px 0.08rem 0.22rem -0.04rem rgba(0, 0, 0, 0.3);
  }
  .brochures .list li .msgDiv {
    height: 1rem;
    padding-left: 0;
  }
  .brochures .list li .msgDiv .name {
    font-size: var(--fs16);
    line-height: 0.42rem;
    color: #000;
    font-family: 'SG-B';
  }
  .brochures .list li .msgDiv .ico {
    right: 0;
    margin-top: -0.38rem;
    width: 0.76rem;
    height: 0.76rem;
  }
  .brochures .list li .box dd {
    border-top: #e7edf4 solid 2px;
    font-size: var(--fs14);
  }
  .brochures .list li .box dd a {
    display: block;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    padding-left: 0.3rem;
    height: auto;
    line-height: 0.42rem;
  }
}
.download {
  padding: 0.8rem 0 0.4rem;
}
.download .indTitle {
  margin-bottom: 0.4rem;
}
.download .list li {
  margin-bottom: 0.4rem;
  padding: 0 0.4rem;
  border: #e7edf4 solid 3px;
  border-radius: 0.1rem;
  box-shadow: 0px 8px 22px -4px rgba(0, 0, 0, 0.3);
}
.download .list li:last-child {
  margin-bottom: 0;
}
.download .list li .msgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  cursor: pointer;
  position: relative;
  height: 0.74rem;
  padding-left: 0.4rem;
}
.download .list li .msgDiv .name {
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #000;
  font-family: 'SG-B';
}
.download .list li .msgDiv .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -0.3rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #f9f9f9;
}
.download .list li .msgDiv .ico::after {
  content: '';
  width: 0.25rem;
  height: 0.16rem;
  background: url(../img/nimg25_bot.png) center no-repeat;
  background-size: 0.25rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.download .list li .aNow .ico::after {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.download .list li .box {
  display: none;
  padding: 0.2rem 0;
}
.download .list li .box dd {
  border: #e7edf4 solid 3px;
  border-radius: 0.1rem;
  padding: 0.2rem 2.16rem 0.2rem 0.8rem;
  margin-bottom: 0.2rem;
  color: #000;
  position: relative;
  font-size: var(--fs20);
}
.download .list li .box dd:last-child {
  margin-bottom: 0;
}
.download .list li .box dd .zi {
  font-family: 'SG-B';
  line-height: 0.32rem;
  margin-bottom: 0.2rem;
}
.download .list li .box dd .msg {
  line-height: 0.32rem;
  margin-bottom: 0.2rem;
}
.download .list li .box dd .msg em {
  padding-right: 0.45rem;
}
.download .list li .box dd .botbot {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.download .list li .box dd .mxfDiv {
  width: 50%;
  padding-right: 0.5rem;
}
.download .list li .box dd .mxfDiv .wen {
  line-height: 0.26rem;
}
.download .list li .box dd .mxfDiv p {
  position: relative;
  line-height: 0.26rem;
  padding-left: 0.3rem;
}
.download .list li .box dd .mxfDiv p::before {
  content: '';
  position: absolute;
  left: 0.12rem;
  top: 0.1rem;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
}
.download .list li .box dd .btnDiv {
  position: absolute;
  right: 0.8rem;
  top: 0.2rem;
  z-index: 1;
}
.download .list li .box dd .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.36rem;
  height: 0.56rem;
  border-radius: 0.1rem;
  background: #0075c7;
  font-size: var(--fs20);
  color: #fff;
  font-family: 'SG-B';
}
.download .list li .box dd .btnDiv a:hover {
  background: #005E9F;
}
@media (max-width: 1004px) {
  .download .list li {
    padding: 0 0.3rem;
    border: #e7edf4 solid 2px;
    box-shadow: 0px 0.08rem 0.22rem -0.04rem rgba(0, 0, 0, 0.3);
  }
  .download .list li .msgDiv {
    height: 1rem;
    padding-left: 0;
  }
  .download .list li .msgDiv .name {
    font-size: var(--fs16);
    line-height: 0.42rem;
    color: #000;
    font-family: 'SG-B';
  }
  .download .list li .msgDiv .ico {
    right: 0;
    margin-top: -0.38rem;
    width: 0.76rem;
    height: 0.76rem;
  }
  .download .list li .box dd {
    border: #e7edf4 solid 2px;
    border-radius: 0.08rem;
    padding: 0.2rem 0.3rem;
    font-size: var(--fs15);
  }
  .download .list li .box dd .zi {
    line-height: 0.48rem;
  }
  .download .list li .box dd .msg {
    line-height: 0.48rem;
  }
  .download .list li .box dd .msg em {
    padding-right: 0.35rem;
  }
  .download .list li .box dd .botbot {
    display: block;
  }
  .download .list li .box dd .mxfDiv {
    width: auto;
    padding-right: 0;
    padding-bottom: 0.2rem;
  }
  .download .list li .box dd .mxfDiv .wen {
    line-height: 0.48rem;
  }
  .download .list li .box dd .mxfDiv p {
    line-height: 0.48rem;
    padding-left: 0.34rem;
  }
  .download .list li .box dd .mxfDiv p::before {
    top: 0.18rem;
  }
  .download .list li .box dd .btnDiv {
    position: relative;
    right: 0;
    top: 0;
  }
  .download .list li .box dd .btnDiv a {
    width: 2.16rem;
    height: 0.8rem;
    font-size: var(--fs15);
  }
}
.newShow {
  padding: 0.8rem 0 0.4rem;
}
.newShow .toptop {
  width: 11.2rem;
  border-bottom: #0075c7 solid 3px;
}
.newShow .toptop .name {
  font-size: var(--fs28);
  line-height: 0.36rem;
  font-family: 'SG-M';
  color: #000;
}
.newShow .toptop .msg {
  padding: 0.4rem 0;
}
.newShow .toptop .msg em {
  padding-right: 0.3rem;
  color: #000;
  font-size: var(--fs20);
  line-height: 0.26rem;
}
.newShow .botbot::after {
  content: '';
  display: block;
  clear: both;
}
.newShow .conDiv {
  width: 11.2rem;
}
.newShow .conDiv .content {
  padding: 0.4rem 0.8rem 0;
  font-size: var(--fs20);
  line-height: 0.34rem;
  color: #000;
}
.newShow .conDiv .imgDiv {
  text-align: center;
}
.newShow .conDiv .imgDiv img {
  width: 100%;
}
.newShow .sideContact {
  position: sticky;
  top: 0;
  width: 3rem;
}
.newShow .sideContact .title {
  color: #000;
  font-size: var(--fs24);
  line-height: 0.32rem;
  font-family: 'SG-B';
  margin-bottom: 0.4rem;
}
.newShow .sideContact .list li {
  position: relative;
  padding-left: 0.32rem;
  font-size: var(--fs16);
  line-height: 0.22rem;
  margin-bottom: 0.18rem;
  color: #000;
}
.newShow .sideContact .list li a {
  color: #000;
  display: block;
}
.newShow .sideContact .list li a:hover {
  color: #0075c7;
}
.newShow .sideContact .list li img {
  position: absolute;
  left: 0;
  top: 0.02rem;
  width: 0.2rem;
}
.sideNews {
  padding: 0.4rem 0;
}
.sideNews .list ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.sideNews .list li {
  width: 6.4rem;
}
.sideNews .list li .zi {
  font-size: var(--fs20);
  line-height: 0.26rem;
  color: #000;
  font-family: 'SG-B';
  margin-bottom: 0.2rem;
}
.sideNews .list li:last-child .zi {
  text-align: right;
}
.sideNews .list li .pjDiv a {
  position: relative;
  height: 1.8rem;
  border-radius: 0.1rem;
  background: #f4f4f4;
  display: block;
  padding: 0.1rem 0.2rem 0 3.34rem;
}
.sideNews .list li .pjDiv a .imgDiv {
  position: absolute;
  left: 0;
  top: 0;
  width: 3.2rem;
  height: 1.8rem;
  border-radius: 0.08rem;
  overflow: hidden;
}
.sideNews .list li .pjDiv a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sideNews .list li .pjDiv a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: var(--fs20);
  line-height: 0.26rem;
  color: #000;
  font-family: 'SG-B';
  max-height: 0.78rem;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.sideNews .list li .pjDiv a .time {
  margin-top: 0.1rem;
  font-size: var(--fs20);
  line-height: 0.26rem;
  color: #000;
  font-family: 'SG-L';
}
.sideNews .list li .pjDiv a:hover .name {
  color: #0075c7;
}
@media (max-width: 1004px) {
  .newShow .toptop {
    width: auto;
    border-bottom: #0075c7 solid 2px;
  }
  .newShow .toptop .name {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .newShow .toptop .msg {
    padding: 0.3rem 0;
  }
  .newShow .toptop .msg em {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .newShow .mxfDiv {
    display: block;
  }
  .newShow .conDiv {
    float: none;
    width: auto;
    padding-top: 0;
  }
  .newShow .conDiv .content {
    padding: 0.4rem 0;
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .newShow .sideContact {
    float: none;
    position: relative;
    width: auto;
  }
  .newShow .sideContact .title {
    font-size: var(--fs20);
    line-height: 0.48rem;
  }
  .newShow .sideContact .list li {
    padding-left: 0.42rem;
    font-size: var(--fs15);
    line-height: 0.32rem;
    margin-bottom: 0.24rem;
  }
  .newShow .sideContact .list li img {
    top: 0;
    width: 0.3rem;
  }
  .sideNews .list ul {
    display: block;
  }
  .sideNews .list li {
    width: auto;
    margin-bottom: 0.4rem;
  }
  .sideNews .list li:last-child {
    margin-bottom: 0;
  }
  .sideNews .list li .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .sideNews .list li:last-child .zi {
    text-align: left;
  }
  .sideNews .list li .pjDiv a {
    padding: 0.2rem 0.2rem 0 3.1rem;
  }
  .sideNews .list li .pjDiv a .imgDiv {
    width: 2.8rem;
  }
  .sideNews .list li .pjDiv a .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs15);
    line-height: 0.42rem;
    max-height: 0.84rem;
  }
  .sideNews .list li .pjDiv a .time {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
}
.videoBox {
  padding: 0.8rem 0 0.4rem;
}
.videoBox .indTitle {
  margin-bottom: 0.4rem;
}
.videoBox .secondTab::after {
  content: '';
  display: block;
  clear: both;
}
.videoBox .secondTab li {
  float: left;
  font-size: var(--fs24);
  font-family: 'SG-B';
}
.videoBox .secondTab li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 1.1rem;
  padding: 0 0.2rem;
  text-align: center;
  border-top-left-radius: 0.1rem;
  border-top-right-radius: 0.1rem;
  border: #e7edf4 solid 3px;
  border-bottom: none;
  color: #000;
}
.videoBox .secondTab li a:hover {
  border: #0075c7 solid 3px;
  border-bottom: none;
  background: #0075c7;
  color: #fff;
}
.videoBox .secondTab li .aNow {
  border: #0075c7 solid 3px;
  border-bottom: none;
  background: #0075c7;
  color: #fff;
}
.videoBox .mxfDiv {
  border: #0075c7 solid 3px;
  border-radius: 0.1rem;
  border-top-left-radius: 0;
  padding: 0 0.4rem;
}
.videoBox .list {
  overflow: hidden;
}
.videoBox .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.videoBox .list li {
  width: 33.33%;
  position: relative;
}
.videoBox .list li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 300%;
  height: 3px;
  background: #e7edf4;
}
.videoBox .list li .box {
  margin: 0 0.2rem;
  cursor: pointer;
  padding: 0.3rem 0;
}
.videoBox .list li .imgDiv {
  height: 2.25rem;
  position: relative;
}
.videoBox .list li .imgDiv::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.72rem;
  margin-top: -0.72rem;
  width: 1.44rem;
  height: 1.44rem;
  background: url(../img/play.png) no-repeat;
  background-size: 1.44rem;
}
.videoBox .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.videoBox .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs24);
  line-height: 0.52rem;
  color: #000;
  font-family: 'SG-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.videoBox .list li .videoDiv {
  display: none;
}
.videoBox .list li:nth-child(-n+3)::after {
  display: none;
}
.videoBox .list li:nth-last-child(1):first-child::after,
.videoBox .list li:nth-last-child(1):nth-child(3n+1)::after {
  width: 300%;
}
.videoBox .list li:nth-last-child(2):first-child::after,
.videoBox .list li:nth-last-child(2):nth-child(3n+2)::after {
  width: 300%;
}
.videoBox .list li:hover .name {
  color: #0075c7;
}
.videoBox .pageNum {
  padding-bottom: 0.3rem;
}
.videoBox .pageMore {
  padding-top: 0;
}
.video-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.video-box.on {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.shipinLayer {
  width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  position: relative;
}
.shipinLayer .close {
  position: absolute;
  display: block;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  z-index: 1;
  background: url(../img/close2.png) no-repeat;
}
.shipinLayer .baozhe {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 5.6rem;
  background: #000;
}
.shipinLayer iframe {
  width: 100%;
  height: 5.6rem;
}
.shipinLayer video {
  max-width: 100%;
  max-height: 5.6rem;
}
@media (max-width: 1004px) {
  .videoBox .secondTab {
    padding-left: 0;
  }
  .videoBox .secondTab ul {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-wrap: wrap;
  }
  .videoBox .secondTab li {
    width: 48%;
    font-size: var(--fs14);
    margin-bottom: 0.2rem;
  }
  .videoBox .secondTab li a {
    height: 1.2rem;
    border-radius: 0.1rem;
    border: #e7edf4 solid 2px;
  }
  .videoBox .secondTab li a:hover {
    border: #0075c7 solid 2px;
  }
  .videoBox .secondTab li .aNow {
    border: #0075c7 solid 2px;
  }
  .videoBox .mxfDiv {
    border: #0075c7 solid 2px;
    padding: 0 0.2rem 0.3rem;
  }
  .videoBox .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .videoBox .list li::after {
    height: 2px;
  }
  .videoBox .list li .box {
    margin: 0;
    cursor: pointer;
    padding-top: 0.3rem;
  }
  .videoBox .list li .imgDiv {
    height: 2rem;
  }
  .videoBox .list li .imgDiv::after {
    margin-left: -0.6rem;
    margin-top: -0.6rem;
    width: 1.2rem;
    height: 1.2rem;
    background-size: 1.2rem;
  }
  .videoBox .list li .name {
    margin-top: 0.1rem;
    white-space: normal;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .videoBox .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .videoBox .list li:nth-child(2n) {
    margin-right: 0;
  }
  .videoBox .list li:nth-child(-n+2)::after {
    display: none;
  }
  .videoBox .list li:nth-child(3)::after {
    display: block;
  }
  .shipinLayer {
    width: 94%;
    padding: 1rem 0.3rem 0.5rem;
  }
  .shipinLayer .close {
    right: 0.3rem;
    top: 0.2rem;
    width: 0.6rem;
    height: 0.6rem;
    background-size: 0.6rem;
  }
  .shipinLayer .baozhe {
    height: 4rem;
  }
  .shipinLayer iframe {
    height: 4rem;
  }
  .shipinLayer video {
    max-height: 4rem;
  }
}
.productP1 {
  padding: 0.8rem 0 0.4rem;
}
.productP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.productP1 .proshowImg {
  position: relative;
  width: 7rem;
  overflow: hidden;
  border-radius: 0.1rem;
  border: #f3f3f3 solid 3px;
}
.productP1 .proshowImg .leftImg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 7rem;
}
.productP1 .proshowImg .leftImg img {
  max-width: 100%;
  max-height: 100%;
}
.productP1 .proshowImg .se {
  position: absolute;
  top: 50%;
  margin-top: -0.35rem;
  display: none;
  z-index: 2;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.1rem;
  background: rgba(233, 233, 233, 0.3);
}
.productP1 .proshowImg .se::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0.19rem;
  height: 0.3rem;
  margin-top: -0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP1 .proshowImg .se:hover {
  background: #0075c7;
}
.productP1 .proshowImg .prev {
  left: 24px;
}
.productP1 .proshowImg .prev::before {
  left: 50%;
  margin-left: -0.1rem;
  background: url(../img/nimg19_left.png) center no-repeat;
  background-size: 0.19rem;
}
.productP1 .proshowImg .prev:hover::before {
  background: url(../img/nimg19_lefton.png) center no-repeat;
  background-size: 0.19rem;
}
.productP1 .proshowImg .next {
  right: 24px;
}
.productP1 .proshowImg .next::before {
  right: 50%;
  margin-right: -0.1rem;
  background: url(../img/nimg19_right.png) center no-repeat;
  background-size: 0.19rem;
}
.productP1 .proshowImg .next:hover::before {
  background: url(../img/nimg19_righton.png) center no-repeat;
  background-size: 0.19rem;
}
.productP1 .conDiv {
  position: relative;
  width: 7rem;
  padding: 0.2rem;
}
.productP1 .conDiv .name {
  font-family: 'SG-M';
  font-size: var(--fs40);
  line-height: 0.52rem;
  color: #000;
}
.productP1 .conDiv .msg {
  margin: 0.4rem 0;
  font-size: var(--fs28);
  line-height: 0.36rem;
  max-height: 0.72rem;
  overflow: hidden;
  font-family: 'SG-M';
  color: #0075c7;
}
.productP1 .conDiv .content {
  font-size: var(--fs20);
  line-height: 0.26rem;
  color: #000;
  font-family: 'SG-L';
}
.productP1 .conDiv .btnGroup {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 0.8rem;
  bottom: 0.4rem;
}
.productP1 .conDiv .btnGroup ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.productP1 .conDiv .btnGroup li {
  font-size: var(--fs20);
}
.productP1 .conDiv .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.48rem;
  height: 0.56rem;
  border-radius: 0.1rem;
  background: #0075c7;
  font-family: 'SG-M';
  color: #fff;
}
.productP1 .conDiv .btnGroup li a:hover {
  background: #005E9F;
}
.productP1 .conDiv .btnGroup li:nth-child(2) a {
  width: 1.94rem;
  background: #959899;
}
.productP1 .conDiv .btnGroup li:nth-child(2) a:hover {
  background: #0075c7;
}
.productP2 {
  padding: 0.4rem 0 0.1rem;
  overflow: hidden;
}
.productP2 .title {
  font-size: var(--fs40);
  line-height: 0.52rem;
  color: #000;
  font-family: 'SG-M';
  margin-bottom: 0.4rem;
}
.productP2 .list {
  float: left;
  width: 50%;
  padding-right: 0.4rem;
}
.productP2 .list li {
  padding-bottom: 0.3rem;
  font-size: var(--fs20);
  line-height: 0.26rem;
  color: #000;
}
.productP2 .list li .zi {
  font-family: 'SG-B';
}
.productP2 .list li dd {
  position: relative;
  padding-left: 0.6rem;
}
.productP2 .list li dd::before {
  content: '';
  position: absolute;
  left: 0.42rem;
  top: 0.1rem;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
}
.productP2 .list li dt {
  position: relative;
  padding-left: 0.3rem;
  font-weight: 400;
}
.productP2 .list li dt::before {
  content: '';
  position: absolute;
  left: 0.12rem;
  top: 0.1rem;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
}
.productP3 {
  padding: 0.4rem 0;
}
.productP3 .title {
  font-size: var(--fs40);
  line-height: 0.52rem;
  color: #000;
  font-family: 'SG-M';
  margin-bottom: 0.2rem;
}
.productP3 .list li {
  padding: 0.2rem 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.productP3 .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 7rem;
  height: 3.94rem;
}
.productP3 .list li .imgDiv img {
  max-width: 100%;
  max-height: 100%;
}
.productP3 .list li .conDiv {
  width: 7rem;
  color: #000;
}
.productP3 .list li .name {
  font-size: var(--fs20);
  line-height: 0.26rem;
  font-family: 'SG-B';
  margin-bottom: 0.3rem;
}
.productP3 .list li .content {
  font-size: var(--fs20);
  line-height: 0.26rem;
}
.productP3 .list li:nth-child(even) .imgDiv {
  order: 1;
}
.productP4 {
  padding: 0.4rem 0;
}
.productP4 .title {
  font-size: var(--fs40);
  line-height: 0.52rem;
  color: #000;
  font-family: 'SG-M';
  margin-bottom: 0.4rem;
}
.productP4 .table {
  padding: 0 0.4rem;
  border-radius: 0.1rem;
  border: #e7edf4 solid 3px;
  box-shadow: 0px 0.08rem 0.22rem -0.04rem rgba(0, 0, 0, 0.3);
}
.productP4 .table li {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  color: #000;
  font-size: var(--fs20);
  line-height: 0.26rem;
  padding: 0.2rem 0;
  border-bottom: #e7edf4 solid 3px;
}
.productP4 .table li:last-child {
  border-bottom: none;
}
.productP4 .table li .en {
  width: 50%;
  padding: 0 0.3rem 0 0.8rem;
  font-family: 'SG-B';
  color: #0075c7;
}
.productP4 .table li .zi {
  width: 50%;
  padding: 0 0.3rem 0 0.8rem;
  font-family: 'SG-B';
}
.productP4 .table li .msg {
  width: 50%;
  padding-right: 0.8rem;
  word-break: break-all;
}
.productP5 {
  padding: 0.4rem 0;
}
.productP5 .title {
  font-size: var(--fs40);
  line-height: 0.52rem;
  color: #000;
  font-family: 'SG-M';
  margin-bottom: 0.4rem;
}
.productP5 .shipinDiv {
  margin: 0 auto;
  width: 6.8rem;
  height: 3.82rem;
  position: relative;
  overflow: hidden;
}
.productP5 .shipinDiv .imgDiv {
  height: 3.82rem;
}
.productP5 .shipinDiv .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productP5 .shipinDiv video {
  max-width: 100%;
  max-height: 3.82rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  object-fit: cover;
}
.productP5 .shipinDiv .playbox {
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.24rem;
  height: 1.24rem;
  margin-left: -0.62rem;
  margin-top: -0.62rem;
  z-index: 1;
}
.productP5 .shipinDiv .playbox img {
  width: 1.24rem;
}
.productP5 .shipinDiv.cur {
  background: #000;
}
.productP5 .shipinDiv.cur .imgDiv,
.productP5 .shipinDiv.cur .playbox {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.productP5 .shipinDiv.cur video {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.productP6 {
  padding: 0.4rem 0 0.1rem;
  overflow: hidden;
}
.productP6 .title {
  font-size: var(--fs40);
  line-height: 0.52rem;
  color: #000;
  font-family: 'SG-M';
  margin-bottom: 0.4rem;
}
.productP6 .list {
  float: left;
  width: 50%;
  padding-right: 0.4rem;
}
.productP6 .list li {
  padding-bottom: 0.3rem;
  font-size: var(--fs20);
  line-height: 0.26rem;
  color: #000;
}
.productP6 .list li:nth-child(2n) {
  margin-right: 0;
}
.productP6 .list li .zi {
  font-family: 'SG-B';
  margin-bottom: 0.25rem;
}
.productP6 .list li dd {
  position: relative;
  padding-left: 0.3rem;
  padding-bottom: 0.25rem;
}
.productP6 .list li dd::before {
  content: '';
  position: absolute;
  left: 0.12rem;
  top: 0.1rem;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
}
.productP7 {
  padding: 0.4rem 0;
}
.productP7 .title {
  font-size: var(--fs40);
  line-height: 0.52rem;
  color: #000;
  font-family: 'SG-M';
  margin-bottom: 0.4rem;
}
.productP7 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.productP7 .list li {
  width: calc((100% - 1.62rem) / 4);
  margin-right: 0.54rem;
  border-radius: 0.1rem;
  overflow: hidden;
  border: #eee solid 3px;
  background: #f4f4f4;
}
.productP7 .list li:nth-child(4n) {
  margin-right: 0;
}
.productP7 .list li .img {
  height: 3.2rem;
  background: #fff;
  border-radius: 0.08rem;
  overflow: hidden;
}
.productP7 .list li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productP7 .list li .botDiv {
  padding: 0.1rem 0.1rem 0;
  height: 1.4rem;
}
.productP7 .list li .botDiv .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #000;
  font-family: 'SG-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP7 .list li .botDiv .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  height: 0.64rem;
  font-family: 'SG-B';
  color: rgba(0, 0, 0, 0.5);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.hotProduct {
  padding: 0.4rem 0 0.8rem;
}
.hotProduct .title {
  font-size: var(--fs40);
  line-height: 0.52rem;
  color: #000;
  font-family: 'SG-M';
  margin-bottom: 0.4rem;
}
.hotProduct .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.hotProduct .list li {
  width: calc((100% - 1.62rem) / 4);
  margin-right: 0.54rem;
}
.hotProduct .list li:nth-child(4n) {
  margin-right: 0;
}
.hotProduct .list li a {
  display: block;
  border-radius: 0.1rem;
  overflow: hidden;
  border: #eee solid 3px;
  background: #f4f4f4;
}
.hotProduct .list li a .img {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 3.2rem;
  background: #fff;
  border-radius: 0.08rem;
  overflow: hidden;
}
.hotProduct .list li a .img img {
  max-width: 100%;
  max-height: 100%;
}
.hotProduct .list li a .botDiv {
  padding: 0.1rem 0.1rem 0;
  height: 1.4rem;
}
.hotProduct .list li a .botDiv .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #000;
  font-family: 'SG-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.hotProduct .list li a .botDiv .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  height: 0.64rem;
  font-family: 'SG-B';
  color: rgba(0, 0, 0, 0.5);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.hotProduct .list li a:hover {
  border: #0075c7 solid 3px;
  background: #0075c7;
}
.hotProduct .list li a:hover .name,
.hotProduct .list li a:hover .msg {
  color: #fff;
}
@media (max-width: 1004px) {
  .productP1 .mxfDiv {
    display: block;
  }
  .productP1 .proshowImg {
    width: 100%;
    border: #f3f3f3 solid 2px;
  }
  .productP1 .proshowImg .leftImg {
    height: 6rem;
  }
  .productP1 .proshowImg .prev {
    left: 0.2rem;
  }
  .productP1 .proshowImg .prev::before {
    left: 50%;
    margin-left: -0.1rem;
    background: url(../img/nimg19_left.png) center no-repeat;
    background-size: 0.19rem;
  }
  .productP1 .proshowImg .prev:hover::before {
    background: url(../img/nimg19_lefton.png) center no-repeat;
    background-size: 0.19rem;
  }
  .productP1 .proshowImg .next {
    right: 0.2rem;
  }
  .productP1 .proshowImg .next::before {
    right: 50%;
    margin-right: -0.1rem;
    background: url(../img/nimg19_right.png) center no-repeat;
    background-size: 0.19rem;
  }
  .productP1 .proshowImg .next:hover::before {
    background: url(../img/nimg19_righton.png) center no-repeat;
    background-size: 0.19rem;
  }
  .productP1 .conDiv {
    width: auto;
    padding: 0.6rem 0 0;
  }
  .productP1 .conDiv .name {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .productP1 .conDiv .msg {
    font-size: var(--fs17);
    line-height: 0.52rem;
    max-height: 100%;
  }
  .productP1 .conDiv .content {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .productP1 .conDiv .btnGroup {
    position: relative;
    padding: 0.6rem 0.3rem 0;
    bottom: 0;
  }
  .productP1 .conDiv .btnGroup li {
    font-size: var(--fs15);
  }
  .productP1 .conDiv .btnGroup li a {
    width: 2.28rem;
    height: 0.8rem;
  }
  .productP1 .conDiv .btnGroup li:nth-child(2) a {
    width: 2.94rem;
  }
  .productP2 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .productP2 .list {
    float: none;
    width: auto;
    padding-right: 0;
  }
  .productP2 .list li {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .productP2 .list li dd {
    padding-left: 0.64rem;
  }
  .productP2 .list li dd::before {
    top: 0.18rem;
  }
  .productP2 .list li dt {
    padding-left: 0.34rem;
  }
  .productP2 .list li dt::before {
    top: 0.18rem;
  }
  .productP3 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .productP3 .list li {
    display: block;
  }
  .productP3 .list li .imgDiv {
    width: auto;
  }
  .productP3 .list li .conDiv {
    width: auto;
    padding-top: 0.4rem;
  }
  .productP3 .list li .name {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .productP3 .list li .content {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .productP4 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .productP4 .table {
    padding: 0 0.2rem;
    border: #e7edf4 solid 2px;
  }
  .productP4 .table li {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    color: #000;
    font-size: var(--fs14);
    line-height: 0.42rem;
    border-bottom: #e7edf4 solid 2px;
  }
  .productP4 .table li .en {
    padding: 0 0.2rem 0 0;
  }
  .productP4 .table li .zi {
    padding: 0 0.2rem 0 0;
  }
  .productP4 .table li .msg {
    padding-right: 0;
  }
  .productP5 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .productP5 .shipinDiv {
    width: 100%;
  }
  .productP6 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .productP6 .list {
    float: none;
    width: auto;
    padding-right: 0;
  }
  .productP6 .list li {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .productP6 .list li dd {
    padding-left: 0.34rem;
  }
  .productP6 .list li dd::before {
    top: 0.18rem;
  }
  .productP7 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .productP7 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.4rem;
    border: #eee solid 2px;
  }
  .productP7 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .productP7 .list li:nth-child(3) {
    margin-top: 0.4rem;
  }
  .productP7 .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .productP7 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .productP7 .list li .botDiv {
    padding: 0.1rem 0.1rem 0;
    height: 1.65rem;
  }
  .productP7 .list li .botDiv .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .productP7 .list li .botDiv .msg {
    font-size: var(--fs13);
    line-height: 0.42rem;
    height: 0.84rem;
  }
  .hotProduct .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .hotProduct .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.4rem;
  }
  .hotProduct .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .hotProduct .list li:nth-child(3) {
    margin-top: 0.4rem;
  }
  .hotProduct .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .hotProduct .list li:nth-child(2n) {
    margin-right: 0;
  }
  .hotProduct .list li a {
    border: #eee solid 2px;
  }
  .hotProduct .list li a .botDiv {
    padding: 0.1rem 0.1rem 0;
    height: 1.65rem;
  }
  .hotProduct .list li a .botDiv .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .hotProduct .list li a .botDiv .msg {
    font-size: var(--fs13);
    line-height: 0.42rem;
    height: 0.84rem;
  }
  .hotProduct .list li a:hover {
    border: #0075c7 solid 2px;
  }
}
.pageCon {
  padding: 1.2rem 0;
}
.pageCon .title {
  text-align: center;
  font-size: var(--fs48);
  color: #333;
  font-weight: bold;
  line-height: 0.48rem;
  margin-bottom: 0.45rem;
}
.pageCon .content {
  font-size: var(--fs18);
  line-height: 0.36rem;
}
@media (max-width: 1004px) {
  .pageCon {
    padding: 1rem 0;
  }
  .pageCon .title {
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .pageCon .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
}
