.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.widget {
  margin: 0!important;
}
.row {
  margin-left: 0!important;
  margin-right: 0!important;
}
.container-fluid {
  padding-right: 0!important;
  padding-left: 0!important;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding-right: 0!important;
  padding-left: 0!important;
}
.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;
}
@keyframes indmhRun {
  0% {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
/*banner*/
.ind-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ind-banner .swiper-slide {
  position: relative;
}
.ind-banner .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
}
.ind-banner .swiper-pagination {
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0.3rem;
  z-index: 2;
}
.ind-banner .swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 2rem;
  height: 4px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 8px;
  margin-left: 8px!important;
  margin-right: 8px!important;
  overflow: hidden;
}
.ind-banner .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #182295;
  border-radius: 8px;
  transition: All 5s linear;
  -webkit-transition: All 5s linear;
  -moz-transition: All 5s linear;
  -o-transition: All 5s linear;
}
.ind-banner .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.5);
}
.ind-banner .swiper-pagination-bullet-active::after {
  width: 100%;
}
@media (max-width: 1600px) {
}
@media (max-width: 1004px) {
  .ind-banner .swiper-slide .img img {
    height: 100%;
    object-fit: cover;
  }
  .ind-banner .onebox {
    left: 0.3rem;
    right: 0.3rem;
    width: 85%;
    margin-left: 0;
  }
  .ind-banner .onebox .en {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .ind-banner .onebox .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .ind-banner .swiper-pagination-bullet {
    margin: 0 0.1rem !important;
    width: 1rem;
  }
}
.indTitle {
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #000;
  font-family: 'Poppins-SB';
  text-align: center;
}
.indexP1 {
  padding: 1.1rem 0 0.3rem;
  overflow: hidden;
}
.indexP1 .indTitle {
  margin-bottom: 0.5rem;
}
.indProduct {
  position: relative;
}
.indProduct .imgList {
  padding-bottom: 0.6rem;
  overflow: hidden;
}
.indProduct .imgList li {
  width: calc((100% - 0.4rem) / 2);
  margin-right: 0.4rem;
}
.indProduct .imgList li .imgDiv {
  border-radius: 0.2rem;
  height: 4.2rem;
  overflow: hidden;
}
.indProduct .imgList li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.indProduct .imgList li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.2rem;
  line-height: 0.4rem;
  font-size: var(--fs30);
  color: #000;
  font-family: 'Poppins-SB';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indProduct .imgList li .msg {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 0.32rem;
  color: #000;
  font-size: var(--fs18);
}
.indProduct .imgList li .label {
  margin-top: 0.18rem;
}
.indProduct .imgList li .label dd {
  float: left;
  margin-right: 0.15rem;
  margin-bottom: 0.1rem;
  height: 0.46rem;
  line-height: 0.46rem;
  border-radius: 0.48rem;
  background: #eee;
  font-size: var(--fs16);
  color: #333;
  padding: 0 0.2rem;
}
.indProduct .imgList li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indProduct .imgList li:hover .name {
  color: #182295;
}
.indProduct .swiper-pagination {
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.indProduct .swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #dbdbdb;
  border: none;
  border-radius: 50%;
  margin-left: 5px!important;
  margin-right: 5px!important;
  overflow: hidden;
}
.indProduct .swiper-pagination-bullet-active {
  border-radius: 20px;
  width: 32px;
  background: #182295;
}
.indexP2 {
  padding: 1.2rem 0;
  overflow: hidden;
}
.indexP2 .indTitle {
  margin-bottom: 0.5rem;
}
.indVideo {
  position: relative;
  overflow: hidden;
}
.indVideo .imgList {
  width: 28.6rem;
  position: relative;
  left: 50%;
  margin-left: -14.3rem;
}
.indVideo .swiper-slide {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.indVideo .swiper-slide .img {
  width: 9.36rem;
  height: 5.29rem;
  position: relative;
  margin: 0 auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.indVideo .swiper-slide .img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  visibility: visible;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indVideo .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indVideo .swiper-slide .layer {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  padding: 0 0.45rem;
  top: -50%;
  color: #fff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indVideo .swiper-slide .name {
  font-size: var(--fs30);
  line-height: 0.42rem;
  font-family: 'Poppins-SB';
}
.indVideo .swiper-slide .more {
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.indVideo .swiper-slide .videoDiv {
  display: none;
}
.indVideo .swiper-slide-active .img::after {
  opacity: 0;
  visibility: hidden;
}
.indVideo .swiper-slide-active .layer {
  top: 0.4rem;
}
.indVideo .swiper-pagination {
  position: relative;
  padding-top: 0.3rem;
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.indVideo .swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #dbdbdb;
  border: none;
  border-radius: 50%;
  margin-left: 5px!important;
  margin-right: 5px!important;
  overflow: hidden;
}
.indVideo .swiper-pagination-bullet-active {
  background: #182295;
}
.indmh {
  width: 100%;
  position: relative;
  height: 260vh;
}
#smokeCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.indmh-sticky {
  width: 100%;
  top: 0;
  left: 0;
  position: sticky;
  overflow: hidden;
}
.indmh-bg {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.indmh-logo {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100vh;
  top: -2px;
  left: 0;
}
.indmh-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indmh-shade {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
}
.indmh-content {
  position: absolute;
  width: 100%;
  z-index: 4;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.8s ease;
}
.indmh-desc {
  width: 10.8rem;
  margin: 0 auto 0.9rem;
  color: #fff;
  font-size: var(--fs36);
  line-height: 0.52rem;
  text-align: center;
  font-family: 'Poppins-SB';
}
.indmh-more {
  margin: 0 auto;
  width: 1.8rem;
}
.indmh-more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.48rem;
  background: #fff;
  font-size: var(--fs16);
  color: #000;
}
.indmh-more a:hover {
  background: #182295;
  color: #fff;
}
.indmh-content.active {
  opacity: 1;
  pointer-events: auto;
}
.indmh-content.active .indmh-desc {
  animation: indmhRun 0.8s ease both 0.2s;
}
.indmh-content.active .indmh-more {
  animation: indmhRun 0.8s ease both 0.4s;
}
.indexP3 {
  padding: 1.3rem 0 1.2rem;
}
.indexP3 .indTitle {
  margin-bottom: 0.55rem;
}
.leftScroll,
.rightScroll {
  padding: 5px 0;
}
.leftScroll .list ul,
.rightScroll .list ul {
  margin: 0;
}
.leftScroll .list li,
.rightScroll .list li {
  float: left;
  cursor: pointer;
  margin: 0 0.1rem;
}
.leftScroll .list li .limg,
.rightScroll .list li .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border-radius: 0.16rem;
  height: 2.4rem;
  width: 3.68rem;
  overflow: hidden;
}
.leftScroll .list li .limg img,
.rightScroll .list li .limg img {
  max-width: 100%;
  max-height: 100%;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.leftScroll .list li .limg:hover img,
.rightScroll .list li .limg:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.tempWrap {
  width: 100%!important;
}
@media (max-width: 1600px) {
  .indmh {
    height: 280vh;
  }
}
@media (max-width: 1004px) {
  .indTitle {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .indexP1 {
    padding: 0.9rem 0 0.2rem;
  }
  .indProduct {
    position: relative;
  }
  .indProduct .imgList {
    padding-bottom: 0.8rem;
  }
  .indProduct .imgList li {
    width: 100%;
    margin-right: 0;
  }
  .indProduct .imgList li .imgDiv {
    border-radius: 0.24rem;
    height: 3.2rem;
  }
  .indProduct .imgList li .name {
    line-height: 0.56rem;
    font-size: var(--fs16);
  }
  .indProduct .imgList li .msg {
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .indProduct .imgList li .label {
    max-height: 1.22rem;
    overflow: hidden;
  }
  .indProduct .imgList li .label dd {
    margin-right: 0.1rem;
    height: 0.56rem;
    line-height: 0.56rem;
    font-size: var(--fs13);
  }
  .indProduct .imgList li:hover .imgDiv img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  .indProduct .imgList li:hover .name {
    color: #182295;
  }
  .indexP2 {
    padding: 0.7rem var(--offset) 0.9rem;
  }
  .indVideo .imgList {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .indVideo .swiper-slide .img {
    width: 100%;
    height: 3.6rem;
    border-radius: 0.2rem;
  }
  .indVideo .swiper-slide .layer {
    padding: 0 0.3rem;
  }
  .indVideo .swiper-slide .name {
    font-size: var(--fs16);
    line-height: 0.56rem;
  }
  .indVideo .swiper-slide .more {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indVideo .swiper-slide-active .layer {
    top: 0.3rem;
  }
  .indmh {
    height: 8rem;
  }
  .indmh-bg {
    height: 8rem;
  }
  .indmh-logo {
    display: none;
  }
  .indmh-content {
    opacity: 1;
    height: 100%;
  }
  .indmh-desc {
    width: auto;
    margin: 0 auto 0.6rem;
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .indmh-more {
    width: 2.6rem;
  }
  .indmh-more a {
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .indexP3 {
    padding: 1rem 0 0.9rem;
  }
  .leftScroll .list li,
  .rightScroll .list li {
    margin: 0 0.06rem;
  }
  .leftScroll .list li .limg,
  .rightScroll .list li .limg {
    border-radius: 0.2rem;
    height: 1.7rem;
    width: 2.6rem;
  }
}
.videoModal-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;
}
.videoModal-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;
}
.videoLayer {
  width: 10rem;
  margin: 0 auto;
  background: #fff;
  padding: 0.5rem;
  position: relative;
}
.videoLayer .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;
}
.videoLayer iframe {
  width: 100%;
  height: 5.6rem;
}
.videoLayer video {
  max-width: 100%;
  max-height: 5.6rem;
}
.videoLayer .close {
  position: absolute;
  display: block;
  right: 10px;
  top: 10px;
  width: 0.3rem;
  z-index: 2;
  height: 0.3rem;
  opacity: 1;
  background: url(../img/close2.png) center no-repeat;
  background-size: 0.3rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.videoLayer .close:hover {
  transform: rotate(-90deg);
}
@media (max-width: 1004px) {
  .videoLayer {
    width: 94%;
    padding: 1rem 0.3rem 0.5rem;
  }
  .videoLayer .close {
    right: 0.3rem;
    top: 0.2rem;
    width: 0.6rem;
    height: 0.6rem;
    background-size: 0.5rem;
  }
  .videoLayer .baozhe {
    height: 4rem;
  }
  .videoLayer iframe {
    height: 4rem;
  }
  .videoLayer video {
    max-height: 4rem;
  }
}
.about {
  padding: 1.1rem 0 1.2rem;
}
.about .indTitle {
  margin-bottom: 0.45rem;
}
.about .content {
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #000;
}
.about .list {
  padding: 0.56rem 0;
}
.about .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.about .list li {
  width: calc((100% - 0.9rem) / 3);
  position: relative;
  margin-right: 0.45rem;
  min-height: 3.9rem;
  text-align: center;
  padding: 0.56rem 0.3rem 0.4rem;
  background: #f1f3f5;
  border-radius: 0.2rem;
}
.about .list li:nth-child(3n) {
  margin-right: 0;
}
.about .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 auto;
  background: #182295;
  border-radius: 50%;
}
.about .list li .ico img {
  width: 0.48rem;
}
.about .list li .name {
  line-height: 0.32rem;
  color: #000;
  font-size: var(--fs22);
  font-family: 'Poppins-M';
  margin: 0.3rem 0 0.2rem;
}
.about .list li .msg {
  font-size: var(--fs16);
  color: #333;
  line-height: 0.24rem;
}
.about .bigImg {
  margin-top: 0.65rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.about .bigImg img {
  width: 100%;
}
@media (max-width: 1004px) {
  .about {
    padding: 0.9rem 0 1rem;
  }
  .about .indTitle {
    margin-bottom: 0.45rem;
  }
  .about .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .about .list {
    padding: 0.6rem 0;
  }
  .about .list ul {
    display: block;
  }
  .about .list li {
    width: 100%;
    margin-bottom: 0.3rem;
    margin-right: 0;
    padding: 0.6rem 0.3rem 0.5rem;
    border-radius: 0.24rem;
  }
  .about .list li:last-child {
    margin-bottom: 0;
  }
  .about .list li .ico {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
  }
  .about .list li .ico img {
    width: 0.64rem;
  }
  .about .list li .name {
    line-height: 0.48rem;
    font-size: var(--fs16);
  }
  .about .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .about .bigImg {
    border-radius: 0.2rem;
  }
}
.faq {
  padding: 1.1rem 0 0.4rem;
}
.faq .indTitle {
  text-align: left;
  margin-bottom: 0.5rem;
}
.faq .list {
  border-top: #e2e2e2 solid 1px;
  padding-bottom: 0.8rem;
}
.faq .list ul {
  margin: 0;
}
.faq .list li {
  padding: 0.26rem 0;
  border-bottom: #e2e2e2 solid 1px;
}
.faq .list li .msgDiv {
  padding: 0 0.6rem;
  position: relative;
  cursor: pointer;
}
.faq .list li .ico {
  position: absolute;
  left: 10px;
  top: 0.14rem;
  width: 0.2rem;
  height: 0.2rem;
}
.faq .list li .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.1rem;
  margin-top: -0.02rem;
  width: 0.2rem;
  height: 0.04rem;
  background: #666;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.faq .list li .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.02rem;
  margin-top: -0.1rem;
  width: 0.04rem;
  height: 0.2rem;
  background: #666;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.faq .list li .name {
  color: #000;
  line-height: 0.48rem;
  font-size: var(--fs22);
  font-family: 'Poppins-M';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.faq .list li .box {
  display: none;
}
.faq .list li .msgDiv.aNow .name {
  color: #182295;
}
.faq .list li .msgDiv.aNow .ico:before {
  background: #182295;
}
.faq .list li .msgDiv.aNow .ico:after {
  background: #182295;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.faq .list li .content {
  line-height: 0.32rem;
  font-size: var(--fs16);
  padding: 0.12rem 1rem 0.15rem 0.6rem;
}
.faq .list li .content a {
  color: #182295;
  text-decoration: underline;
}
@media (max-width: 1004px) {
  .faq {
    padding: 0.9rem 0 0.4rem;
  }
  .faq .list li {
    padding: 0.25rem 0;
  }
  .faq .list li .msgDiv {
    padding: 0 0.4rem;
  }
  .faq .list li .ico {
    left: 0;
    width: 12px;
    height: 12px;
  }
  .faq .list li .ico:before {
    margin-left: -6px;
    margin-top: -1px;
    width: 12px;
    height: 2px;
  }
  .faq .list li .ico:after {
    margin-left: -1px;
    margin-top: -6px;
    width: 2px;
    height: 12px;
  }
  .faq .list li .name {
    line-height: 0.56rem;
    font-size: var(--fs17);
  }
  .faq .list li .content {
    line-height: 0.48rem;
    font-size: var(--fs14);
    padding: 0.12rem 0.3rem 0.15rem 0.4rem;
  }
}
.contactP1 {
  padding: 1.1rem 0 1.2rem;
}
.contactP1 .indTitle {
  margin-bottom: 0.45rem;
}
.contactP1 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.contactP1 .list li {
  width: calc((100% - 0.45rem) / 2);
  position: relative;
  margin-right: 0.45rem;
  min-height: 3.9rem;
  text-align: center;
  padding: 0.56rem 0.3rem 0.4rem;
  background: #f1f3f5;
  border-radius: 0.2rem;
}
.contactP1 .list li:nth-child(2n) {
  margin-right: 0;
}
.contactP1 .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 auto;
  background: #182295;
  border-radius: 50%;
}
.contactP1 .list li .ico img {
  width: 0.5rem;
}
.contactP1 .list li .name {
  line-height: 0.32rem;
  color: #000;
  font-size: var(--fs22);
  font-family: 'Poppins-M';
  margin: 0.3rem 0 0.05rem;
}
.contactP1 .list li .msg {
  font-size: var(--fs16);
  color: #333;
  line-height: 0.24rem;
  min-height: 0.48rem;
  width: 3.5rem;
  margin: 0 auto;
}
.contactP1 .list li .links {
  margin-top: 0.2rem;
}
.contactP1 .list li .links a {
  display: block;
  text-align: center;
  font-size: var(--fs16);
  color: #182295;
  text-decoration: underline;
  line-height: 0.24rem;
}
.contactP2 {
  padding: 1.3rem 0 1.2rem;
  background: url(../img/contactP2.jpg) center top no-repeat;
  background-size: 100%;
}
.contactP2 .title {
  width: 10.8rem;
  margin: 0 auto 1.3rem;
  font-size: var(--fs30);
  line-height: 0.48rem;
  text-align: center;
  color: #fff;
  font-family: 'Poppins-M';
}
.contactP2 .pjDiv {
  padding: 0.8rem 1.26rem 1rem;
  background: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 0 0.3rem rgba(24, 34, 149, 0.1);
}
.contactP2 .form::after {
  content: '';
  display: block;
  clear: both;
}
.contactP2 .form ul {
  margin-right: -0.4rem;
}
.contactP2 .form li {
  float: left;
  width: 50%;
  margin-bottom: 0.5rem;
}
.contactP2 .form li:nth-child(3),
.contactP2 .form li:nth-child(4) {
  width: 100%;
}
.contactP2 .form li .box {
  margin-right: 0.4rem;
}
.contactP2 .form li .zi {
  height: 0.38rem;
  font-size: var(--fs18);
  line-height: 0.2rem;
  color: #000;
}
.contactP2 .form li .zi em {
  color: #F00;
}
.contactP2 .form li .input1 {
  width: 100%;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.2rem;
  background: #f3f3f3;
  border-radius: 0.1rem;
  font-size: var(--fs16);
  font-family: 'Poppins-R';
}
.contactP2 .form li textarea {
  width: 100%;
  height: 1.4rem;
  background: #f3f3f3;
  border-radius: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
  padding: 0.1rem 0.2rem;
  font-family: 'Poppins-R';
}
.contactP2 .btnDiv {
  margin: 0 auto;
  width: 2.6rem;
  text-align: center;
}
.contactP2 .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0.6rem;
  border-radius: 0.48rem;
  background: #182295;
  font-size: var(--fs18);
  color: #fff;
}
@media (max-width: 1004px) {
  .contactP1 {
    padding: 0.9rem 0 1rem;
  }
  .contactP1 .indTitle {
    margin-bottom: 0.55rem;
  }
  .contactP1 .list ul {
    display: block;
  }
  .contactP1 .list li {
    width: 100%;
    margin-bottom: 0.3rem;
    margin-right: 0;
    padding: 0.6rem 0.3rem 0.5rem;
    border-radius: 0.24rem;
  }
  .contactP1 .list li:last-child {
    margin-bottom: 0;
  }
  .contactP1 .list li .ico {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
  }
  .contactP1 .list li .ico img {
    width: 0.64rem;
  }
  .contactP1 .list li .name {
    line-height: 0.48rem;
    font-size: var(--fs16);
  }
  .contactP1 .list li .msg {
    width: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .contactP1 .list li .links a {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .contactP2 {
    padding: 0.5rem 0 1rem;
    background-size: 200%;
  }
  .contactP2 .title {
    width: auto;
    margin: 0 auto 0.6rem;
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .contactP2 .pjDiv {
    padding: 0.65rem 0.3rem 0.8rem;
  }
  .contactP2 .form ul {
    margin-right: 0;
  }
  .contactP2 .form li {
    float: none;
    width: auto;
    margin-bottom: 0.3rem;
  }
  .contactP2 .form li .box {
    margin-right: 0;
  }
  .contactP2 .form li .zi {
    height: 0.6rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .contactP2 .form li .input1 {
    height: 0.86rem;
    line-height: 0.86rem;
    font-size: var(--fs14);
    padding-left: 0.3rem;
  }
  .contactP2 .form li textarea {
    height: 2.8rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0.2rem 0.3rem;
  }
  .contactP2 .btnDiv {
    margin: 0.4rem auto 0;
  }
  .contactP2 .btnDiv a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
}
.news {
  padding: 1rem 0 1.2rem;
}
.news .zjMxf {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0.6rem;
}
.news .zjMxf::after {
  content: '';
  display: block;
  clear: both;
}
.news .zjMxf .select {
  width: 3.3rem;
  height: 0.6rem;
  position: relative;
}
.news .zjMxf .select .caption {
  border-radius: 0.48rem;
  position: relative;
  cursor: pointer;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.3rem;
  font-size: var(--fs16);
  z-index: 3;
  background: #fff url(../img/selectIco.png) right center no-repeat;
  box-shadow: 0 0 0.4rem rgba(1, 20, 42, 0.1);
}
.news .zjMxf .select .on {
  border-radius: 0;
  border-top-left-radius: 0.32rem;
  border-top-right-radius: 0.32rem;
}
.news .zjMxf .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  background: #fff;
  max-height: 2.4rem;
  overflow-y: auto;
  display: none;
  border-bottom-left-radius: 0.24rem;
  border-bottom-right-radius: 0.24rem;
  box-shadow: 0 0 0.4rem rgba(1, 20, 42, 0.1);
}
.news .zjMxf .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.news .zjMxf .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.news .zjMxf .select .xlist::-webkit-scrollbar-thumb {
  background-color: #182295;
}
.news .zjMxf .select .xlist a {
  display: block;
  font-size: var(--fs16);
  color: #666;
  height: 0.6rem;
  line-height: 0.6rem;
  padding: 0 0.3rem;
  border-bottom: 1px solid #ddd;
}
.news .zjMxf .select .xlist a:hover {
  color: #182295;
}
.news .zjMxf .select .xlist a:last-child {
  border-bottom: none;
}
.news .zjMxf .select .xlist .on {
  color: #182295;
}
.news .zjMxf .form {
  margin-left: 0.3rem;
  width: 3.3rem;
  height: 0.6rem;
  border-radius: 0.48rem;
  box-shadow: 0 0 0.4rem rgba(1, 20, 42, 0.1);
  overflow: hidden;
}
.news .zjMxf .form .input1 {
  width: 100%;
  background: #fff url(../img/nimg20_1.png) 0.2rem center no-repeat;
  padding-left: 0.6rem;
  font-size: var(--fs16);
  color: #666;
  height: 0.6rem;
  line-height: 0.6rem;
  font-family: 'Poppins-R';
}
.news .zjMxf .form .input1::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
}
.news .zjMxf .form .input1:-moz-placeholder {
  color: #666;
  opacity: 1;
}
.news .zjMxf .form .input1::-moz-placeholder {
  color: #666;
  opacity: 1;
}
.news .zjMxf .form .input1:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}
.news .zjMxf .btnDiv {
  margin-left: 0.25rem;
}
.news .zjMxf .btnDiv a {
  position: relative;
  overflow: hidden;
  display: block;
  width: 1.4rem;
  height: 0.6rem;
  line-height: 0.6rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs18);
  border-radius: 0.48rem;
  background: #182295;
}
.news .list {
  padding-bottom: 0.2rem;
}
.news .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.news .list li {
  width: calc((100% - 0.8rem) / 3);
  position: relative;
  margin-right: 0.4rem;
  margin-bottom: 0.6rem;
}
.news .list li:nth-child(3n) {
  margin-right: 0;
}
.news .list li a {
  display: block;
  box-shadow: 0 0 0.4rem rgba(1, 20, 42, 0.1);
  border-radius: 0.2rem;
  background: #fff;
  overflow: hidden;
}
.news .list li a .imgDiv {
  height: 2.9rem;
  overflow: hidden;
}
.news .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.news .list li a .botDiv {
  height: 2.2rem;
  padding: 0.36rem 0.4rem 0;
}
.news .list li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--fs20);
  line-height: 0.3rem;
  height: 0.9rem;
  color: #333;
  font-family: 'Poppins-M';
  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 .time {
  margin-top: 0.45rem;
  font-family: 'Poppins-M';
  font-size: var(--fs16);
  line-height: 0.2rem;
  color: #666;
  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 {
  background: #182295;
}
.news .list li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.news .list li a:hover .name,
.news .list li a:hover .time {
  color: #fff;
}
.newsPic {
  position: relative;
  border-radius: 0.12rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0.4rem rgba(1, 20, 42, 0.08);
}
.newsPic .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.newsPic .imgDiv {
  width: 50%;
  height: 4.58rem;
}
.newsPic .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsPic .conDiv {
  width: 50%;
  padding: 0.75rem 1.2rem 0 0.8rem;
}
.newsPic .time {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.24rem;
  font-family: 'Poppins-M';
}
.newsPic .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0.1rem 0 0.2rem;
  font-size: var(--fs26);
  line-height: 0.36rem;
  height: 0.72rem;
  font-family: 'Poppins-M';
  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;
}
.newsPic .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #666;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.9rem;
}
.newsPic .mxfDiv:hover .name {
  color: #182295;
}
.newsPic .swiper-pagination {
  width: auto;
  left: calc(50% + 0.8rem);
  bottom: 0.8rem;
  z-index: 2;
}
.newsPic .swiper-pagination-bullet {
  float: left;
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #c6c6d1;
  border: none;
  border-radius: 50%;
  margin-left: 0!important;
  margin-right: 0.2rem !important;
  overflow: hidden;
}
.newsPic .swiper-pagination-bullet-active {
  background: #182295;
}
@media (max-width: 1004px) {
  .news {
    padding: 0.9rem 0 1rem;
  }
  .news .zjMxf {
    margin: 0.7rem 0 0.6rem;
  }
  .news .zjMxf .select {
    float: none;
    width: 100%;
    height: 0.9rem;
  }
  .news .zjMxf .select .caption {
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs14);
  }
  .news .zjMxf .select .on {
    border-top-left-radius: 0.48rem;
    border-top-right-radius: 0.48rem;
  }
  .news .zjMxf .select .xlist {
    max-height: 4.3rem;
    border-bottom-left-radius: 0.48rem;
    border-bottom-right-radius: 0.48rem;
  }
  .news .zjMxf .select .xlist a {
    font-size: var(--fs14);
    height: 0.86rem;
    line-height: 0.86rem;
  }
  .news .zjMxf .form {
    float: none;
    margin-left: 0;
    margin-top: 0.3rem;
    width: 100%;
    height: 0.9rem;
  }
  .news .zjMxf .form .input1 {
    width: 100%;
    background: #fff url(../img/nimg20_1.png) 0.3rem center no-repeat;
    background-size: 0.36rem;
    padding-left: 0.8rem;
    font-size: var(--fs14);
    height: 0.9rem;
    line-height: 0.9rem;
  }
  .news .zjMxf .btnDiv {
    margin-top: 0.3rem;
    margin-left: 0;
    float: none;
  }
  .news .zjMxf .btnDiv a {
    display: block;
    width: 2.1rem;
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs15);
  }
  .news .list {
    padding-bottom: 0.6rem;
  }
  .news .list ul {
    display: block;
  }
  .news .list li {
    width: auto;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
  .news .list li a .imgDiv {
    height: 4.2rem;
  }
  .news .list li a .botDiv {
    height: auto;
    padding: 0.4rem 0.35rem;
  }
  .news .list li a .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .news .list li a .time {
    margin-top: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .newsPic {
    border-radius: 0.2rem;
  }
  .newsPic .mxfDiv {
    display: block;
  }
  .newsPic .imgDiv {
    width: auto;
    height: 3.8rem;
  }
  .newsPic .conDiv {
    width: auto;
    padding: 0.6rem 0.3rem 1.2rem;
  }
  .newsPic .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .newsPic .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .newsPic .content {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .newsPic .swiper-pagination {
    width: 100%;
    left: 0;
    bottom: 0.5rem;
  }
  .newsPic .swiper-pagination-bullet {
    float: none;
    display: inline-block;
    margin-left: 0.1rem !important;
    margin-right: 0.1rem !important;
  }
}
.newshow {
  padding: 1rem 0 1.2rem;
  overflow: hidden;
}
.newshow .leftDiv {
  width: 62.5%;
}
.newshow .name {
  font-family: 'Poppins-M';
  font-size: var(--fs40);
  line-height: 0.48rem;
  color: #000;
  margin: 0 0 0.3rem;
}
.newshow .time {
  font-family: 'Poppins-M';
  font-size: var(--fs18);
  line-height: 0.2rem;
  padding-bottom: 0.4rem;
  border-bottom: #e4e4e4 solid 1px;
}
.newshow .content {
  padding-top: 0.35rem;
  font-size: var(--fs18);
  color: #333;
  line-height: 0.36rem;
}
.newshow .imgDiv {
  text-align: center;
}
.newshow .imgDiv img {
  max-width: 100%;
}
.pageDown {
  padding-top: 1rem;
}
.pageDown li {
  margin-bottom: 20px;
}
.pageDown li:last-child {
  margin-bottom: 0;
}
.pageDown li a {
  display: block;
  position: relative;
  font-size: var(--fs18);
  padding: 0.2rem 0.4rem 0;
  height: 1.06rem;
  line-height: 0.32rem;
  border: #e1e1e1 solid 1px;
  border-top: none;
}
.pageDown li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #5f5f5f;
}
.pageDown li em {
  display: block;
  color: #000;
}
.pageDown li p {
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.32rem;
  overflow: hidden;
  color: #666;
}
.pageDown li a:hover::before {
  background: #182295;
}
.sideNews {
  width: 30.8%;
}
.sideNews .title {
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-family: 'Poppins-M';
  color: #000;
}
.sideNews .list ul {
  margin: 0;
}
.sideNews .list li a {
  display: block;
  padding: 0.3rem 0;
  border-bottom: #e4e4e4 solid 1px;
}
.sideNews .list li a .cn {
  font-size: var(--fs18);
  line-height: 0.24rem;
  min-height: 0.48rem;
  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;
}
.sideNews .list li a .zi {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  color: #999;
}
.sideNews .list li a:hover .cn {
  color: #182295;
}
.sideNews .list li:last-child a {
  border-bottom: none;
}
@media (max-width: 1004px) {
  .newshow {
    padding: 0.7rem 0 1rem;
  }
  .newshow .leftDiv {
    width: auto;
    float: none;
  }
  .newshow .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
    width: auto;
  }
  .newshow .time {
    font-size: var(--fs15);
    line-height: 0.42rem;
  }
  .newshow .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .pageDown {
    padding-top: 0.75rem;
  }
  .pageDown li {
    margin-bottom: 0.3rem;
  }
  .pageDown li a {
    font-size: var(--fs14);
    padding: 0.2rem 0.3rem;
    height: auto;
    line-height: 0.52rem;
  }
  .pageDown li p {
    height: 0.52rem;
  }
  .sideNews {
    display: none;
  }
}
.wholesale {
  padding: 1.1rem 0 1.2rem;
}
.wholesale .msg {
  text-align: center;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #333;
  margin: 0.1rem 0 0.4rem;
}
.wholesale .title {
  height: 0.5rem;
  border-bottom: #dcdcdc solid 1px;
  line-height: 0.3rem;
  font-size: var(--fs24);
  color: #000;
  padding-left: 12px;
}
.wholesale .title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 3px;
  height: 0.2rem;
  background: #182295;
  border-radius: 2px;
}
.wholesale .form {
  padding: 0.5rem 0 0.1rem;
}
.wholesale .form::after {
  content: '';
  display: block;
  clear: both;
}
.wholesale .form ul {
  margin-right: -0.4rem;
}
.wholesale .form li {
  float: left;
  width: 50%;
  margin-bottom: 0.5rem;
}
.wholesale .form li .box {
  margin-right: 0.4rem;
}
.wholesale .form li .zi {
  height: 0.38rem;
  font-size: var(--fs18);
  line-height: 0.2rem;
  color: #000;
}
.wholesale .form li .zi em {
  color: #F00;
}
.wholesale .form li .input1 {
  width: 100%;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.2rem;
  background: #f3f3f3;
  border-radius: 0.1rem;
  font-size: var(--fs16);
  font-family: 'Poppins-R';
}
.wholesale .form li textarea {
  width: 100%;
  height: 1.4rem;
  background: #f3f3f3;
  border-radius: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
  padding: 0.1rem 0.2rem;
  font-family: 'Poppins-R';
}
.wholesale .form .li01 {
  width: 100%;
}
.wholesale .btnDiv {
  margin: 0 auto;
  width: 2.6rem;
  text-align: center;
}
.wholesale .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0.6rem;
  border-radius: 0.48rem;
  background: #182295;
  font-size: var(--fs18);
  color: #fff;
}
@media (max-width: 1004px) {
  .wholesale {
    padding: 0.9rem 0 1rem;
  }
  .wholesale .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin: 0.2rem 0 0.5rem;
  }
  .wholesale .title {
    height: 0.68rem;
    line-height: 0.48rem;
    font-size: var(--fs16);
  }
  .wholesale .title::before {
    width: 2px;
    height: 0.32rem;
  }
  .wholesale .form ul {
    margin-right: 0;
  }
  .wholesale .form li {
    float: none;
    width: auto;
    margin-bottom: 0.3rem;
  }
  .wholesale .form li .box {
    margin-right: 0;
  }
  .wholesale .form li .zi {
    height: 0.6rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .wholesale .form li .input1 {
    height: 0.86rem;
    line-height: 0.86rem;
    font-size: var(--fs14);
    padding-left: 0.3rem;
  }
  .wholesale .form li textarea {
    height: 2.8rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0.2rem 0.3rem;
  }
  .wholesale .btnDiv {
    margin: 0.3rem auto 0;
  }
  .wholesale .btnDiv a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
}
.product {
  padding: 1rem 0 0.3rem;
  background: #f5f5f7 url(../img/bg1.png) top repeat-x;
}
.product .indTitle {
  margin-bottom: 0.75rem;
}
.product .toptop {
  position: relative;
  height: 0.6rem;
  margin-bottom: 0.75rem;
}
.product .toptop::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e9e9eb;
}
.product .links li {
  position: relative;
  z-index: 1;
  float: left;
  margin-right: 0.75rem;
  font-size: var(--fs18);
}
.product .links li a {
  position: relative;
  display: block;
  height: 0.6rem;
  line-height: 0.4rem;
  color: #000;
}
.product .links li a::after {
  content: '';
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #182295;
  z-index: 1;
}
.product .links li a:hover {
  color: #182295;
}
.product .links li .aNow {
  color: #182295;
}
.product .links li .aNow::after {
  display: block;
}
.product .form {
  position: absolute;
  right: 0;
  top: 0;
  width: 3.7rem;
  height: 0.42rem;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}
.product .form .input1 {
  width: 100%;
  height: 0.42rem;
  line-height: 0.42rem;
  font-size: var(--fs16);
  padding-left: 0.2rem;
  font-family: 'Poppins-R';
}
.product .form .btn1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.48rem;
  height: 0.42rem;
  background: url(../img/nimg18_1.png) center no-repeat;
  z-index: 1;
}
.product .title {
  font-family: 'Poppins-SB';
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #000;
  margin-bottom: 0.5rem;
}
.product .list {
  padding-bottom: 0.4rem;
}
.product .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.product .list li {
  width: calc((100% - 0.9rem) / 4);
  margin-right: 0.3rem;
  margin-bottom: 0.5rem;
}
.product .list li:nth-child(4n) {
  margin-right: 0;
}
.product .list li .imgDiv {
  height: 3.96rem;
  background: #fff;
  border-radius: 6px;
}
.product .list li .imgDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 100%;
}
.product .list li .imgDiv a img {
  max-width: 2.8rem;
  max-height: 2.8rem;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.product .list li .imgDiv a:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.product .list li .name {
  font-size: var(--fs22);
  margin-top: 0.2rem;
  font-family: 'Poppins-M';
}
.product .list li .name a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  line-height: 0.36rem;
  color: #000;
}
.product .list li .name a:hover {
  color: #182295;
}
.product .list li .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.08rem;
  line-height: 0.24rem;
  height: 0.72rem;
  color: #333;
  font-size: var(--fs16);
}
.product .list li .botbot {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-top: 0.15rem;
}
.product .list li .more a {
  font-size: var(--fs16);
  color: #333;
  line-height: 0.3rem;
}
.product .list li .more a:hover {
  color: #182295;
}
.product .list li .xiazai a {
  font-size: var(--fs16);
  color: #333;
  line-height: 0.3rem;
  padding-right: 0.32rem;
  background: url(../img/nimg26_1.png) right center no-repeat;
  background-size: 0.26rem;
}
.product .list li .xiazai a:hover {
  color: #182295;
  background: url(../img/nimg26_1on.png) right center no-repeat;
  background-size: 0.26rem;
}
@media (max-width: 1004px) {
  .product {
    padding: 0.9rem 0 0.3rem;
  }
  .product .indTitle {
    margin-bottom: 0.65rem;
  }
  .product .toptop {
    padding-bottom: 0.7rem;
    height: auto;
    margin-bottom: 0.6rem;
  }
  .product .links {
    overflow: hidden;
  }
  .product .links li {
    margin-right: 0.3rem;
    font-size: var(--fs14);
  }
  .product .links li a {
    height: 0.86rem;
    line-height: 0.52rem;
  }
  .product .form {
    position: relative;
    margin-top: 0.5rem;
    width: 100%;
    height: 0.86rem;
    border-radius: 8px;
  }
  .product .form .input1 {
    height: 0.86rem;
    line-height: 0.86rem;
    font-size: var(--fs14);
    padding-left: 0.3rem;
  }
  .product .form .btn1 {
    width: 1rem;
    height: 0.86rem;
    background: url(../img/nimg18_1.png) center no-repeat;
    z-index: 1;
  }
  .product .title {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .product .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .product .list li:nth-child(4n) {
    margin-right: 0.2rem;
  }
  .product .list li:nth-child(2n) {
    margin-right: 0;
  }
  .product .list li .imgDiv {
    height: 3.2rem;
  }
  .product .list li .name {
    font-size: var(--fs15);
  }
  .product .list li .name a {
    line-height: 0.52rem;
  }
  .product .list li .msg {
    margin-top: 0.1rem;
    line-height: 0.48rem;
    height: 1.44rem;
    font-size: var(--fs13);
  }
  .product .list li .more a {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .product .list li .xiazai a {
    font-size: var(--fs13);
    line-height: 0.42rem;
    padding-right: 0;
    background: none;
  }
  .product .list li .xiazai a:hover {
    background: none;
  }
}
.verify {
  padding: 1.1rem 0 1.2rem;
}
.verify .msg {
  font-size: var(--fs18);
  line-height: 0.3rem;
  text-align: center;
  color: #333;
  padding: 0.1rem 0 0.75rem;
}
.verify .form {
  position: relative;
  margin: 0 auto;
  width: 7.2rem;
  border-radius: 6px;
  overflow: hidden;
}
.verify .form .input1 {
  width: 100%;
  background: #f3f3f3;
  padding-left: 0.2rem;
  height: 0.6rem;
  line-height: 0.6rem;
  font-family: 'Poppins-R';
  font-size: var(--fs18);
  color: #000;
}
.verify .form .input1::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}
.verify .form .input1:-moz-placeholder {
  color: #000;
  opacity: 1;
}
.verify .form .input1::-moz-placeholder {
  color: #000;
  opacity: 1;
}
.verify .form .input1:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}
.verify .form .btn1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 1.2rem;
  height: 0.6rem;
  background: #182295;
  font-size: var(--fs18);
  color: #fff;
  text-align: center;
  line-height: 0.6rem;
}
.verify .pjDiv {
  margin-top: 1.4rem;
  background: #f3f3f3;
  border-radius: 0.16rem;
  padding: 1.1rem 1.25rem 0.8rem;
}
.verify .list {
  margin-top: 0.5rem;
}
.verify .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.verify .list li {
  width: calc((100% - 0.4rem) / 2);
  margin-right: 0.4rem;
}
.verify .list li:nth-child(2n) {
  margin-right: 0;
}
.verify .list li .limg {
  border-radius: 0.1rem;
  overflow: hidden;
}
.verify .list li .limg img {
  width: 100%;
}
.verify .list li .zi {
  margin-top: 0.3rem;
  font-size: var(--fs24);
  line-height: 0.3rem;
  text-align: center;
  color: #000;
  padding: 0 0.8rem;
}
.verify .resultDiv {
  margin: 0.6rem auto 0;
  width: 8.3rem;
}
.verify .resultDiv li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  border-bottom: #f3f3f3 solid 1px;
  position: relative;
  height: 1rem;
  font-size: var(--fs18);
  color: #999;
}
.verify .resultDiv li em {
  color: #000;
  width: 50%;
  padding-left: 0.4rem;
  text-align: right;
}
@media (max-width: 1004px) {
  .verify {
    padding: 0.9rem 0 1rem;
  }
  .verify .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0.2rem 0 0.6rem;
  }
  .verify .form {
    width: 100%;
  }
  .verify .form .input1 {
    height: 0.86rem;
    line-height: 0.86rem;
    font-size: var(--fs14);
  }
  .verify .form .btn1 {
    width: 1.8rem;
    height: 0.86rem;
    font-size: var(--fs14);
    line-height: 0.86rem;
  }
  .verify .pjDiv {
    margin-top: 0.8rem;
    border-radius: 0.16rem;
    padding: 0.8rem 0.3rem 0.65rem;
  }
  .verify .list ul {
    display: block;
  }
  .verify .list li {
    width: auto;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .verify .list li:nth-child(2n) {
    margin-right: 0;
  }
  .verify .list li:last-child {
    margin-bottom: 0;
  }
  .verify .list li .limg {
    border-radius: 0.2rem;
  }
  .verify .list li .zi {
    font-size: var(--fs15);
    line-height: 0.48rem;
    padding: 0;
  }
  .verify .resultDiv {
    width: auto;
  }
  .verify .resultDiv li {
    height: 1.2rem;
    font-size: var(--fs14);
  }
  .verify .resultDiv li em {
    padding-left: 0.3rem;
  }
}
.proDiv .imgDiv img,
.proDiv .imgDiv input,
.proDiv .imgDiv video {
  display: block;
  width: 100%;
}
.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;
  }
}
