.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);
  }
}
@keyframes breath {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-webkit-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-moz-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-ms-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@keyframes circle_1 {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.08) translate(-2%, 2%);
    opacity: 1;
  }
}
.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 spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinaaa {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes myfirst {
  0% {
    transform: rotate(0deg) scaleX(1) scaleY(1);
  }
  25% {
    transform: rotate(90deg) scaleX(1.15) scaleY(0.9);
  }
  50% {
    transform: rotate(180deg) scaleX(0.9) scaleY(1.1);
  }
  75% {
    transform: rotate(270deg) scaleX(1.08) scaleY(0.95);
  }
  100% {
    transform: rotate(360deg) scaleX(1) scaleY(1);
  }
}
@keyframes myfirst2 {
  0% {
    transform: rotate(0deg) scaleX(1) scaleY(1);
  }
  25% {
    transform: rotate(-90deg) scaleX(0.9) scaleY(1.12);
  }
  50% {
    transform: rotate(-180deg) scaleX(1.1) scaleY(0.88);
  }
  75% {
    transform: rotate(-270deg) scaleX(0.95) scaleY(1.05);
  }
  100% {
    transform: rotate(-360deg) scaleX(1) scaleY(1);
  }
}
@keyframes fadeOfOpacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeOfOpacity {
  animation: fadeOfOpacity 0.35s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}
@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);
  }
}
.upDown {
  animation: upDown 1.6s cubic-bezier(0.4, 0, 0.2, 1) alternate infinite;
}
.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*/
.indexP0 {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0.9rem 0.9rem;
}
.indexP0 .rightDiv {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  bottom: 0.9rem;
  z-index: 2;
}
.indexP0 .icolist {
  border-radius: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(17.5px);
  width: 3.76rem;
  padding: 0.7rem 0.6rem;
}
.indexP0 .icolist li {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  padding-left: 0.72rem;
  min-height: 0.56rem;
  margin-bottom: 0.3rem;
  font-size: var(--fs14);
  line-height: 0.24rem;
  color: #fff;
}
.indexP0 .icolist li:last-child {
  margin-bottom: 0;
}
.indexP0 .icolist li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}
.indexP0 .icolist li .ico img {
  max-width: 0.26rem;
}
.indexP0 .icolist li .name{
	font-weight:bold;
}
.indexP0 .mouse {
  position: absolute;
  left: 50%;
  margin-left: -1.5rem;
  bottom: 0.32rem;
  z-index: 3;
  width: 3rem;
}
.indexP0 .mouse .kuang {
  position: relative;
  margin: 0 auto;
  width: 0.32rem;
  height: 0.52rem;
  border-radius: 0.48rem;
  border: 1px solid #fff;
}
.indexP0 .mouse .kuang span {
  left: 50%;
  margin-left: -1px;
  position: absolute;
  top: 18px;
  width: 2px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  animation: upDown 1s ease-out infinite;
}
.ind-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ind-banner .swiper-slide {
  position: relative;
}
.ind-banner .swiper-slide .img {
  position: relative;
  height: 100vh;
}
.ind-banner .swiper-slide .img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: rgba(0, 0, 0, 0.2);
}
.ind-banner .swiper-slide .img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: linear-gradient(23deg, rgba(0, 0, 0, 0) 39.96%, #000 83.48%);
}
.ind-banner .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-banner .swiper-slide .img video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-banner .onebox {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  bottom: 0.96rem;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.ind-banner .onebox .baozhe {
  overflow: hidden;
  width: 0;
}
.ind-banner .onebox .cn {
	width:56%;
  font-size: var(--fs50);
  line-height: 0.64rem;
  color: #fff;
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.ind-banner .onebox .wen {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #fff;
  font-weight: 300;
}
.ind-banner .cn,
.ind-banner .wen,
.ind-banner .botbot {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 1.4s ease;
  -webkit-transition: all 1.4s ease;
  -moz-transition: all 1.4s ease;
  -ms-transition: all 1.4s ease;
  -o-transition: all 1.4s ease;
  transition-delay: 1s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ind-banner .botbot {
  margin-top: 0.65rem;
  display: flex;
}
.ind-banner .botbot .playbtn {
  margin-right: 0.5rem;
}
.ind-banner .botbot .playbtn a {
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  background: url(../img/play.svg) no-repeat;
  background-size: cover;
}
.ind-banner .botbot .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border-radius: 0.45rem;
  width: 1.8rem;
  height: 0.7rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: var(--fs18);
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
}
.ind-banner .botbot .btnDiv a:hover {
  border: 2px solid rgba(0, 185, 191, 0.4);
  background: rgba(0, 185, 191, 0.15);
}
.ind-banner .swiper-slide-active .baozhe {
  width: 100%;
}
.ind-banner .swiper-slide-active .cn,
.ind-banner .swiper-slide-active .wen,
.ind-banner .swiper-slide-active .botbot {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.ind-banner .swiper-pagination {
  display: none;
  width: 100%;
  left: 0;
  margin-left: 0;
  bottom: 0.6rem;
  z-index: 2;
}
.ind-banner .swiper-pagination-bullet {
  position: relative;
  width: 55px;
  height: 3px;
  opacity: 1;
  background: #fff;
  border: none;
  border-radius: 0;
  margin: 0 5px!important;
  overflow: hidden;
}
.ind-banner .swiper-pagination-bullet-active {
  background: #d00b3c;
}
.ind-banner .videoDiv {
  display: none;
}
@media (max-width: 1600px) {
  .indexP0 .rightDiv {
    margin-right: -8rem;
  }
  .ind-banner .onebox {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .indexP0 {
    border-radius: 0 0 0.64rem 0.64rem;
  }
  .indexP0 .rightDiv,
  .indexP0 .mouse {
    display: none;
  }
  .ind-banner {
    max-height: 7.5rem;
  }
  .ind-banner .swiper-slide .img {
    height: 7.5rem;
  }
  .ind-banner .swiper-slide .img img {
    height: 100%;
    object-fit: cover;
  }
  .ind-banner .swiper-slide .img video {
    height: 7rem;
    display: none;
  }
  .ind-banner .onebox {
    left: var(--offset);
    right: var(--offset);
    margin-left: 0;
    bottom: 0.46rem;
  }
  .ind-banner .onebox .cn {
	  width:auto;
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .ind-banner .onebox .wen {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .ind-banner .botbot {
    margin-top: 0.4rem;
  }
  .ind-banner .botbot .playbtn {
    margin-right: 0.35rem;
  }
  .ind-banner .botbot .playbtn a {
    width: 0.9rem;
    height: 0.9rem;
  }
  .ind-banner .botbot .btnDiv a {
    width: 2.4rem;
    height: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: var(--fs14);
  }
  .ind-banner .botbot .btnDiv a:hover {
    border: 1px solid rgba(0, 185, 191, 0.4);
  }
  .ind-banner .swiper-pagination {
    bottom: 0.4rem;
  }
  .ind-banner .swiper-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }
}
.background-noise {
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background-image: url(../img/noise.png);
  background-position: 0 0;
  background-size: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.ultra-gradient-wrapper {
  inset: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
  font-size: 1vw;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}
.main-shapes-wrapper {
  inset: 0;
  filter: blur(110px);
  width: 100%;
  height: 100%;
}
.main-shapes-wrapper div {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}
.shape-1 {
  width: 40em;
  height: 40em;
  background-color: #cbe7fc;
  border-radius: 999em;
  position: absolute;
  bottom: -20em;
  left: -5rem;
  transform: rotate(-28deg);
}
.shape-2 {
  width: 40em;
  height: 40em;
  background-color: #a9ddfd;
  border-radius: 999em;
  margin-left: auto;
  position: absolute;
  top: -10em;
  right: -20em;
}
.shape-3 {
  width: 40em;
  height: 40em;
  background-color: #a4c1fc;
  border-radius: 999em;
  position: absolute;
  bottom: -20em;
  left: 0;
  transform: rotate(-28deg);
}
.shape-4 {
  width: 40em;
  height: 40em;
  background-color: #b5d8fc;
  border-radius: 999em;
  margin-left: auto;
  position: absolute;
  top: -15em;
  right: 0;
}
.shape-3,
.shape-4 {
  animation: myfirst 3s ease-in-out infinite;
}
.shape-2,
.shape-1 {
  animation: myfirst2 3s ease-in-out 0s infinite;
}
.indexP1 {
  position: relative;
  padding: 3.2rem 0 4.68rem;
  margin-top: -1.9rem;
  background: #f3f5f9;
  background-size: cover;
  overflow: hidden;
}
.indexP1 .en {
  font-size: 1.28rem;
  font-family: 'Mont-B';
  font-weight: 500;
  text-transform: uppercase;
}
.indexP1 .en em {
  display: inline-block;
  opacity: 0.2;
  background: linear-gradient(180deg, #00B9BF 0%, #F4F5F6 86.06%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.indexP1 .ind_r2_txt {
  color: rgba(0, 0, 0, 0.2);
  /* 原文本半透明，作为背景 */
  font-size: var(--fs48);
  line-height: 0.72rem;
  /* 新增：定义滚动进度变量，初始为0，由JS更新 */
  --go: 0;
}
.indexP1 .ind_r2_txt .txt_sty {
  position: relative;
  /* 作为伪元素的包含块 */
  margin-right: 15%;
  /* 保留原有间距 */
  display: inline-flex;
  /* 保持原display */
  /* 确保父容器宽度与文本内容一致 */
  white-space: nowrap;
}
.indexP1 .ind_r2_txt .txt_sty::after {
  content: attr(data-txt);
  /* 显示与HTML相同的文本 */
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  /* 初始宽度为0，由下方计算覆盖 */
  height: 100%;
  /* 高度撑满整行 */
  color: #1E237F;
  /* 黑色文字，覆盖在半透明原文本上 */
  background-color: transparent;
  white-space: nowrap;
  overflow: hidden;
  /* 宽度变化时切掉右侧部分 */
  /* 继承父元素字体样式，确保完全重叠 */
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  font-weight: inherit;
  pointer-events: none;
  width: clamp(0%, calc((var(--go) - 0) / 0.3 * 100%), 100%);
}
.indexP1 .ind_r2_txt .txt_sty:nth-child(2)::after {
  width: clamp(0%, calc((var(--go) - 0.33) / 0.15 * 100%), 100%);
}
.indexP1 .txtImg {
  position: absolute;
  right: -45%;
  bottom: 1.74rem;
  transform: translateX(0);
  /* 初始位置 */
  will-change: transform;
  /* 性能优化 */
  z-index: 2;
}
.indexP1 .txtImg img {
  width: 13.68rem;
}
.indexP2 {
  position: relative;
  z-index: 2;
  margin-top: -1.2rem;
  background: #fff;
  border-radius: 0.9rem 0.9rem 0 0;
  padding: 1.7rem 0 0;
  min-height: 2rem;
}
.indexP2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 74.99%, rgba(255, 255, 255, 0.79) 83.94%);
}
.indexP2 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
}
.indexP2 .conDiv {
  position: sticky;
  padding-top: 0.7rem;
  top: 1rem;
  width: 6rem;
  z-index: 2;
}
.indexP2 .conDiv .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.2rem;
}
.indexP2 .conDiv .zi {
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #333;
  font-weight: 300;
  margin-bottom: 0.8rem;
}
.indexP2 .conDiv .more 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: 1.35rem;
  height: 0.45rem;
  border-radius: 0.45rem;
  background: #00B9BF;
  color: #fff;
  font-size: var(--fs16);
}
.indexP2 .conDiv .more a em {
  margin-left: 0.1rem;
  width: 0.14rem;
  height: 0.12rem;
  background: url(../img/ico2.png) no-repeat;
  background-size: 0.14rem;
}
.indexP2 .numlist {
  width: 7.9rem;
  padding-bottom: 0.6rem;
}
.indexP2 .numlist li {
  display: flex;
  align-items: center;
  margin-bottom: 0.7rem;
}
.indexP2 .numlist li:last-child {
  margin-bottom: 0;
}
.indexP2 .numlist li .ico {
  width: 1.2rem;
}
.indexP2 .numlist li .ico img {
  width: 0.45rem;
}
.indexP2 .numlist li .num {
  width: 4.8rem;
  font-size: 0.8rem;
  color: #1E237F;
  font-weight: 600;
  line-height: 1rem;
}
.indexP2 .numlist li .num span {
  font-size: var(--fs48);
}
.indexP2 .numlist li .unit {
  width: 2rem;
  color: #333;
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-weight: 300;
}
.indexP3 {
  padding: 1.6rem 0 0.4rem;
  background: url(../img/indexP3.png) center no-repeat;
  background-size: cover;
}
.indexP3 .zi {
  font-size: var(--fs30);
  line-height: 0.4rem;
  text-align: center;
  color: #333;
  font-weight: 500;
}
.indexP3 .title {
  text-align: center;
  margin: 0.1rem 0 0.8rem;
  color: #333;
  font-size: var(--fs52);
  line-height: 0.9rem;
  font-weight: 300;
}
.indexP3 .title b {
  font-weight: 600;
}
.indexP3 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: stretch;
}
.indexP3 .mxfDiv .leftDiv {
  width: 10.6rem;
  height: 7.8rem;
}
.indexP3 .mxfDiv .leftDiv ul {
  margin-right: -0.28rem;
}
.indexP3 .mxfDiv .leftDiv ul::after {
  content: '';
  display: block;
  clear: both;
}
.indexP3 .mxfDiv .leftDiv li {
  float: left;
  width: 50%;
  margin-top: 0.28rem;
}
.indexP3 .mxfDiv .leftDiv li .box {
  margin-right: 0.28rem;
}
.indexP3 .mxfDiv .leftDiv li .box a {
  display: block;
  position: relative;
  background: #fff;
  overflow: hidden;
  height: 3.8rem;
  padding: 0.3rem 0.4rem 0 0.4rem;
  border-radius: 0.2rem;
  box-shadow: 0.1rem 0 0.3rem 0 rgba(0, 0, 0, 0.1), 0 0.1rem 0.3rem 0 rgba(0, 0, 0, 0.05);
}
.indexP3 .mxfDiv .leftDiv li .box a .en {
  font-size: var(--fs24);
  line-height: 0.4rem;
  color: #1E237F;
  font-weight: 600;
  margin-bottom: 0.2rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP3 .mxfDiv .leftDiv li .box a .cn {
  font-size: var(--fs28);
  line-height: 0.42rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.indexP3 .mxfDiv .leftDiv li .box a .msg {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #666;
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.indexP3 .mxfDiv .leftDiv li .box a .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.54rem;
  height: 0.5rem;
  border-radius: 0.45rem;
  background: #00B9BF;
  color: #fff;
  font-size: var(--fs16);
  font-weight: 400;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP3 .mxfDiv .leftDiv li .box a .mon_dot_case {
  width: 1px;
  height: 1px;
  position: absolute;
  top: -20%;
  left: -0.9375vw;
}
.indexP3 .mxfDiv .leftDiv li .box a .mon_dot {
  z-index: 0;
  width: 14.1667vw;
  height: 14.1667vw;
  background-image: url(../img/dot_b.png);
  opacity: 0.5;
  background-size: 100% 100%;
  border-radius: 100%;
  margin-top: -8.08333vw;
  margin-left: -8.08333vw;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
.indexP3 .mxfDiv .leftDiv li .box a:hover .en {
  color: #00B9BF;
}
.indexP3 .mxfDiv .leftDiv li .box a:hover .more {
  background: #1E237F;
}
.indexP3 .mxfDiv .leftDiv li:first-child {
  margin-top: 0;
  width: 100%;
}
.indexP3 .mxfDiv .leftDiv li:first-child .box a {
  padding: 0.82rem 3.0rem 0 0.4rem;
  height: 3.72rem;
}
.indexP3 .mxfDiv .leftDiv li:first-child .box a .en {
  margin-bottom: 0.3rem;
}
.indexP3 .mxfDiv .leftDiv li:first-child .box a .cn {
  margin-bottom: 0.3rem;
}
.indexP3 .mxfDiv .leftDiv li:first-child .box a .more {
  position: absolute;
  right: 0.5rem;
  bottom: 0.82rem;
  z-index: 1;
}
.indexP3 .mxfDiv .rightImg {
  width: calc(100% - (10.6rem + 0.34rem));
  height: 7.8rem;
  overflow: hidden;
  border-radius: 0.2rem;
}
.indexP3 .mxfDiv .rightImg img {
  width: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP3 .mxfDiv .rightImg:hover img {
  transform: scale(1.05);
}
.indexP4 {
  position: relative;
  overflow: hidden;
  padding: 1.8rem 0 1.25rem;
}
.indexP4 .colorbg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(192deg, rgba(255, 255, 255, 0.8) 34.27%, rgba(255, 255, 255, 0) 64.32%);
  z-index: 2;
}
.indexP4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/hotelP4.png) center 0.9rem no-repeat;
  background-size: 100%;
  z-index: 1;
}
.indexP4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(90deg, #F2F6FF 5.93%, #FFF 93.21%);
  z-index: 0;
}
.indexP4 .zi {
  position: relative;
  z-index: 2;
  font-size: var(--fs30);
  line-height: 0.4rem;
  text-align: center;
  color: #333;
  font-weight: 500;
}
.indexP4 .title {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0.1rem 0 0.35rem;
  color: #333;
  font-size: var(--fs52);
  line-height: 0.9rem;
  font-weight: 300;
}
.indexP4 .title b {
  font-weight: 600;
}
.indexP4 .lunbo {
  z-index: 2;
  position: relative;
  overflow: hidden;
}
.indexP4 .lunbo .imgList {
  overflow: hidden;
  padding: 0.4rem 0;
}
.indexP4 .lunbo .swiper-wrapper {
  pointer-events: none;
}
.indexP4 .lunbo .swiper-slide {
  pointer-events: auto;
  width: 6rem;
  min-height: 5.2rem;
  border-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.3rem;
  transition: all 0.45s ease;
}
.indexP4 .lunbo .swiper-slide .imgDiv {
  height: 2.32rem;
  border-radius: 0.3rem;
  overflow: hidden;
}
.indexP4 .lunbo .swiper-slide .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexP4 .lunbo .swiper-slide .name {
  overflow: hidden;
  margin: 0.3rem 0 0.1rem;
  text-align: center;
  color: #333;
  font-size: var(--fs18);
  line-height: 0.4rem;
  min-height: 0.8rem;
  text-transform: uppercase;
  font-weight: 400;
  font-family: 'Mont-B';
}
.indexP4 .lunbo .swiper-slide .name em {
  display: block;
  font-size: var(--fs24);
  margin-bottom: 0.1rem;
}
.indexP4 .lunbo .swiper-slide .msg {
  overflow: hidden;
  padding: 0 0.15rem;
  margin: 0 auto;
  font-size: var(--fs18);
  line-height: 0.3rem;
  max-height: 0;
  text-align: center;
}
.indexP4 .lunbo .swiper-slide .more {
  margin-top: 0.3rem;
  display: none;
}
.indexP4 .lunbo .swiper-slide .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  min-width: 1.56rem;
  height: 0.5rem;
  border-radius: 0.45rem;
  background: #00B9BF;
  color: #fff;
  font-size: var(--fs16);
}
.indexP4 .lunbo .swiper-slide .more a em {
  margin-left: 0.1rem;
  width: 0.14rem;
  height: 0.12rem;
  background: url(../img/ico2.png) no-repeat;
  background-size: 0.14rem;
}
.indexP4 .lunbo .swiper-slide-active {
  box-shadow: 0 0.2rem 0.3rem 0 rgba(0, 0, 0, 0.1);
}
.indexP4 .lunbo .swiper-slide-active .baozhe .name {
  font-weight: 600;
  font-size: var(--fs28);
}
.indexP4 .lunbo .swiper-slide-active .baozhe .name em {
  font-size: var(--fs36);
}
.indexP4 .lunbo .swiper-slide-active .baozhe .msg {
  max-height: 0.6rem;
}
.indexP4 .lunbo .swiper-slide-active .baozhe .more {
  display: flex;
  justify-content: center;
}
.indexP4 .lunbo .swiper-pagination {
  position: relative;
  bottom: 0;
  padding-top: 0.2rem;
}
.indexP4 .lunbo .swiper-pagination-bullet {
  opacity: 0.5;
  width: 14px;
  height: 14px;
  margin: 0 7px!important;
  background: #fff;
  border: #00B9BF solid 1px;
}
.indexP4 .lunbo .swiper-pagination-bullet-active {
  opacity: 1;
  background: #00B9BF;
}
.indexP5 {
  background: linear-gradient(90deg, #F2F6FF 5.93%, #FFF 93.21%);
}
.indexP5 .zi {
  font-size: var(--fs30);
  line-height: 0.4rem;
  text-align: center;
  color: #333;
  font-weight: 500;
}
.indexP5 .title {
  text-align: center;
  margin: 0.1rem 0 0.8rem;
  color: #333;
  font-size: var(--fs52);
  line-height: 0.9rem;
  font-weight: 300;
}
.indexP5 .title b {
  font-weight: 600;
}
.indexP5 .mxfDiv {
  position: relative;
  border-radius: 0.9rem;
  padding-top: 2.1rem;
  height: 7.52rem;
  background: url(../img/indexP5.jpg) center no-repeat;
  background-size: cover;
  z-index: 1;
  overflow: hidden;
}
.indexP5 .mxfDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 0.9rem 0.9rem;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
}
.indexP5 .mxfDiv .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding-right: 1.6rem;
}
.indexP5 .mxfDiv .imgDiv {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4.4rem;
  z-index: 1;
}
.indexP5 .mxfDiv .imgDiv img {
  width: 100%;
}
.indexP5 .mxfDiv .conDiv {
  position: relative;
  z-index: 1;
}
.indexP5 .mxfDiv .conDiv .en {
  font-size: var(--fs52);
  color: #1E237F;
  line-height: 0.9rem;
  font-weight: 600;
}
.indexP5 .mxfDiv .conDiv .cn {
  font-size: var(--fs52);
  color: #1E237F;
  line-height: 0.9rem;
  font-weight: 300;
}
.indexP5 .mxfDiv .conDiv .limg {
  margin-top: 1.2rem;
}
.indexP5 .mxfDiv .conDiv .limg img {
  width: 6.61rem;
}
.indexP5 .mxfDiv .baozhe {
  position: relative;
  z-index: 2;
  width: 6.8rem;
  height: 3.76rem;
  border-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
}
.indexP5 .mxfDiv .baozhe a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.5rem 0.7rem 0;
}
.indexP5 .mxfDiv .baozhe a .content {
  font-size: var(--fs18);
  line-height: 0.3rem;
  font-weight: 400;
  color: #666;
  /*text-align: justify;*/
}
.indexP5 .mxfDiv .baozhe a .more {
  margin-top: 0.3rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: #00B9BF url(../img/ico3on.png) center no-repeat;
  background-size: 0.14rem;
}
.indexP6 {
  margin-top: -0.94rem;
}
.indexP6 .mxfDiv {
  position: relative;
  border-radius: 0 0 0.9rem 0.9rem;
  padding-top: 3rem;
  height: 8.46rem;
  background: url(../img/indexP6.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.indexP6 .mxfDiv::before {
  content: '';
  position: absolute;
  right: 1rem;
  top: 2.26rem;
  width: 4.47rem;
  height: 5.22rem;
  background: url(../img/nimg447Bg.svg) no-repeat;
  background-size: 4.47rem;
}
.indexP6 .mxfDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 0.9rem 0.9rem;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(0, 185, 191, 0.5) 100%);
}
.indexP6 .mxfDiv .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding-left: 2.9rem;
}
.indexP6 .mxfDiv .imgDiv {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5.77rem;
  pointer-events: none;
  z-index: 2;
}
.indexP6 .mxfDiv .imgDiv img {
  width: 100%;
}
.indexP6 .mxfDiv .conDiv {
  position: relative;
  z-index: 1;
  text-align: right;
  order: 1;
}
.indexP6 .mxfDiv .conDiv .en {
  font-size: var(--fs52);
  color: #fff;
  line-height: 0.9rem;
  font-weight: 300;
}
.indexP6 .mxfDiv .conDiv .cn {
  font-size: var(--fs52);
  color: #fff;
  line-height: 0.9rem;
  font-weight: 600;
}
.indexP6 .mxfDiv .conDiv .limg {
  margin-top: 1.3rem;
}
.indexP6 .mxfDiv .conDiv .limg img {
  width: 6.61rem;
}
.indexP6 .mxfDiv .baozhe {
  position: relative;
  z-index: 1;
  width: 6.8rem;
  height: 3.76rem;
  border-radius: 0.3rem;
  background: #fff;
}
.indexP6 .mxfDiv .baozhe a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.55rem 0.7rem 0;
}
.indexP6 .mxfDiv .baozhe a .content {
  font-size: var(--fs18);
  line-height: 0.3rem;
  font-weight: 400;
  color: #666;
}
.indexP6 .mxfDiv .baozhe a .more {
  margin-top: 0.3rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: #00B9BF url(../img/ico3on.png) center no-repeat;
  background-size: 0.14rem;
}
.indexP7 {
  padding: 0.8rem 0 2.14rem;
}
.indexP7 .zi {
  font-size: var(--fs30);
  line-height: 0.4rem;
  text-align: center;
  color: #333;
  font-weight: 500;
}
.indexP7 .title {
  text-align: center;
  margin: 0.1rem 0 0.76rem;
  color: #333;
  font-size: var(--fs52);
  line-height: 0.9rem;
  font-weight: 300;
}
.indexP7 .touDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 0.3rem;
}
.indexP7 .touDiv .pjDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  width: 48%;
  height: 3.2rem;
  padding: 0 1.68rem 0 0.5rem;
  background: #00B9BF;
  border-radius: 0.3rem;
  color: #fff;
  position: relative;
}
.indexP7 .touDiv .pjDiv .ico {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP7 .touDiv .pjDiv .ico img {
  width: 0.8rem;
}
.indexP7 .touDiv .pjDiv .wen {
  position: relative;
  left: 0;
  font-size: var(--fs36);
  line-height: 0.54rem;
  font-weight: 600;
  margin-bottom: 0.16rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP7 .touDiv .pjDiv .msg {
  position: relative;
  left: 0;
  font-size: var(--fs30);
  line-height: 0.36rem;
  font-weight: 300;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP7 .touDiv .pjDiv:hover .ico {
  right: 0.6rem;
}
.indexP7 .touDiv .pjDiv:hover .wen,
.indexP7 .touDiv .pjDiv:hover .msg {
  left: 0.1rem;
}
.indexP7 .list {
  width: calc(100% - (48% + 0.3rem));
}
.indexP7 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin: 0;
}
.indexP7 .list li {
  position: relative;
  width: calc((100% - 0.3rem) / 2);
  min-height: 3.2rem;
  padding: 0.4rem 0.4rem 0;
  margin-right: 0.3rem;
  background: #fff;
  border-radius: 0.3rem;
  text-align: center;
  overflow: hidden;
  box-shadow: 0.2rem 0 0.3rem -0.1rem rgba(0, 0, 0, 0.1), 0 0.2rem 0.3rem -0.1rem rgba(0, 0, 0, 0.1);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP7 .list li:nth-child(2n) {
  margin-right: 0;
}
.indexP7 .list li .ico img {
  width: 0.8rem;
}
.indexP7 .list li .name {
  margin: 0.3rem 0 0.1rem;
  font-size: var(--fs30);
  line-height: 0.4rem;
  font-weight: 600;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP7 .list li .msg {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #666;
  font-weight: 400;
}
.indexP7 .list li .mon_dot_case {
  width: 1px;
  height: 1px;
  position: absolute;
  top: -20%;
  left: -0.9375vw;
}
.indexP7 .list li .mon_dot {
  z-index: 0;
  width: 14.1667vw;
  height: 14.1667vw;
  background-image: url(../img/dot_b.png);
  opacity: 0.5;
  background-size: 100% 100%;
  border-radius: 100%;
  margin-top: -8.08333vw;
  margin-left: -8.08333vw;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
.indexP7 .list li:hover {
  padding: 0.4rem 0.4rem 0;
}
.indexP7 .botDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP7 .botDiv .pjDiv {
  width: 48%;
  height: 3.2rem;
  padding: 0.5rem 0.72rem 0 0.5rem;
  background: #43445C;
  border-radius: 0.3rem;
  color: #fff;
  position: relative;
}
.indexP7 .botDiv .pjDiv .wen {
  position: relative;
  top: 0;
  font-size: var(--fs30);
  line-height: 0.6rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP7 .botDiv .pjDiv .more {
  display: flex;
  justify-content: flex-end;
}
.indexP7 .botDiv .pjDiv .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  min-width: 1.56rem;
  padding: 0 0.2rem;
  height: 0.56rem;
  background: #00B9BF;
  color: #fff;
  border-radius: 0.45rem;
  font-size: var(--fs16);
}
.indexP7 .botDiv .pjDiv .more a em {
  margin-left: 0.12rem;
  width: 0.14rem;
  height: 0.12rem;
  background: url(../img/ico2.png) no-repeat;
  background-size: 0.14rem;
}
.indexP7 .botDiv .pjDiv:hover .wen {
  top: -0.1rem;
}
.indexP8 {
  padding: 1.3rem 0 2rem;
  position: relative;
}
.indexP8::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.indexP8 .toptop {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-bottom: 1.35rem;
}
.indexP8 .toptop .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  font-weight: 600;
}
.indexP8 .toptop .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  min-width: 1.35rem;
  height: 0.45rem;
  border-radius: 0.45rem;
  padding: 0 0.3rem;
  background: #00B9BF;
  color: #fff;
  font-size: var(--fs16);
}
.indNews {
  position: relative;
  z-index: 1;
}
.indNews .imgList {
  overflow: hidden;
  padding: 0.2rem;
  margin: -0.2rem;
}
.indNews .box {
  border-radius: 0.15rem;
  box-shadow: 0 0.1rem 0.15rem 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
  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 .imgDiv {
  position: relative;
  height: 2.9rem;
  border-radius: 0.15rem;
  overflow: hidden;
}
.indNews .box .imgDiv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 60%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
.indNews .box .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indNews .box .botDiv {
  padding: 0.38rem 0.35rem 0;
  height: 2.75rem;
}
.indNews .box .botDiv .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--fs30);
  line-height: 0.36rem;
  max-height: 1.08rem;
  color: #333;
  font-weight: 300;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indNews .box .botDiv .time {
  position: relative;
  margin-top: 0.42rem;
  font-size: var(--fs16);
  line-height: 0.6rem;
  color: #999;
}
.indNews .box .botDiv .time::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: #1E237F solid 1px;
  background: url(../img/ico3.png) center no-repeat;
  background-size: 0.14rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indNews .box:hover .imgDiv::after {
  transform: translateX(100%);
}
.indNews .box:hover .imgDiv img {
  transform: scale(1.1);
}
.indNews .box:hover .name {
  color: #1E237F;
}
.indNews .box:hover .time::after {
  background: #1E237F url(../img/ico3on.png) center no-repeat;
  background-size: 0.14rem;
  transform: rotate(45deg);
}
.indNews .swiper-pagination {
  display: none;
  margin-top: 0.6rem;
  position: relative;
  bottom: 0;
}
.indNews .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #fff;
  border: #ddd solid 1px;
}
.indNews .swiper-pagination-bullet-active {
  background: #1E237F;
  border: #1E237F solid 1px;
}
@media (max-width: 1004px) {
  .indexP1 {
    padding: 2.4rem 0;
    margin-top: -1.2rem;
  }
  .indexP1 .en {
    font-size: var(--fs48);
  }
  .indexP1 .en em {
    opacity: 0.4;
  }
  .indexP1 .ind_r2_txt {
    /* 原文本半透明，作为背景 */
    font-size: 0.36rem;
    line-height: 0.6rem;
  }
  .indexP1 .txtImg {
    bottom: 0.75rem;
  }
  .indexP1 .txtImg img {
    width: 6.42rem;
  }
  .indexP2 {
    margin-top: -0.5rem;
    border-radius: 0.64rem 0.64rem 0 0;
    padding: 1.1rem 0 0;
  }
  .indexP2::after {
    display: none;
  }
  .indexP2 .mxfDiv {
    display: block;
  }
  .indexP2 .conDiv {
    position: relative;
    padding-top: 0;
    top: 0;
    width: auto;
  }
  .indexP2 .conDiv .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .indexP2 .conDiv .zi {
    font-size: var(--fs16);
    line-height: 0.52rem;
    margin-bottom: 0.65rem;
  }
  .indexP2 .conDiv .more a {
    width: 2.4rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .indexP2 .conDiv .more a em {
    width: 0.2rem;
    height: 0.18rem;
    background-size: 0.2rem;
  }
  .indexP2 .numlist {
    margin-top: 0.7rem;
    width: auto;
    padding-bottom: 0;
  }
  .indexP2 .numlist ul::after {
    content: '';
    display: block;
    clear: both;
  }
  .indexP2 .numlist li {
    float: left;
    display: block;
    width: 50%;
    margin-bottom: 0.5rem;
  }
  .indexP2 .numlist li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .indexP2 .numlist li .ico {
    width: auto;
  }
  .indexP2 .numlist li .ico img {
    width: 0.64rem;
  }
  .indexP2 .numlist li .num {
    width: auto;
    font-size: var(--fs28);
    line-height: 0.9rem;
  }
  .indexP2 .numlist li .num span {
    font-size: var(--fs17);
  }
  .indexP2 .numlist li .unit {
	  width:auto;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .indexP3 {
    padding: 1rem 0 0.4rem;
  }
  .indexP3 .zi {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .indexP3 .title {
    margin: 0.1rem 0 0.65rem;
    font-size: var(--fs22);
    line-height: 0.6rem;
  }
  .indexP3 .mxfDiv {
    display: block;
  }
  .indexP3 .mxfDiv .leftDiv {
    width: 100%;
    height: auto;
  }
  .indexP3 .mxfDiv .leftDiv ul {
    margin-right: 0;
  }
  .indexP3 .mxfDiv .leftDiv li {
    float: none;
    width: 100%;
    margin-top: 0.3rem;
  }
  .indexP3 .mxfDiv .leftDiv li .box {
    margin-right: 0;
  }
  .indexP3 .mxfDiv .leftDiv li .box a {
    height: auto;
    padding: 0.5rem 0.45rem;
    border-radius: 0.24rem;
  }
  .indexP3 .mxfDiv .leftDiv li .box a .en {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .indexP3 .mxfDiv .leftDiv li .box a .cn {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .indexP3 .mxfDiv .leftDiv li .box a .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP3 .mxfDiv .leftDiv li .box a .more {
    width: 2.4rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .indexP3 .mxfDiv .leftDiv li:first-child {
    margin-top: 0;
    width: 100%;
  }
  .indexP3 .mxfDiv .leftDiv li:first-child .box a {
    padding: 0.5rem 0.45rem;
    height: auto;
  }
  .indexP3 .mxfDiv .leftDiv li:first-child .box a .en {
    margin-bottom: 0.2rem;
  }
  .indexP3 .mxfDiv .leftDiv li:first-child .box a .cn {
    margin-bottom: 0.2rem;
  }
  .indexP3 .mxfDiv .leftDiv li:first-child .box a .more {
    position: relative;
    right: 0;
    bottom: 0;
  }
  .indexP3 .mxfDiv .rightImg {
    display: none;
    margin-top: 0.6rem;
    width: auto;
    height: auto;
    border-radius: 0.24rem;
  }
  .indexP4 {
    padding: 1.2rem 0 1rem;
  }
  .indexP4::before {
    background: url(../img/hotelP4.png) center no-repeat;
    background-size: 100%;
  }
  .indexP4 .zi {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .indexP4 .title {
    margin: 0.1rem 0 0.3rem;
    font-size: var(--fs22);
    line-height: 0.6rem;
  }
  .indexP4 .lunbo {
    overflow: visible;
  }
  .indexP4 .lunbo .imgList {
    padding: 0 0 0.4rem;
    overflow: hidden;
  }
  .indexP4 .lunbo .swiper-slide {
    width: 100%;
    min-height: 4rem;
  }
  .indexP4 .lunbo .swiper-slide .imgDiv {
    height: 2.4rem;
  }
  .indexP4 .lunbo .swiper-slide .name {
    margin: 0.4rem 0 0.1rem;
    font-size: var(--fs18);
    line-height: 0.64rem;
    max-height: 1.28rem;
  }
  .indexP4 .lunbo .swiper-slide .name em {
    font-size: var(--fs24);
  }
  .indexP4 .lunbo .swiper-slide .msg {
    width: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
    max-height: 0.96rem;
  }
  .indexP4 .lunbo .swiper-slide .more {
    margin-top: 0.3rem;
    display: flex;
  }
  .indexP4 .lunbo .swiper-slide .more a {
    min-width: 2.36rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .indexP4 .lunbo .swiper-slide .more a em {
    width: 0.2rem;
    height: 0.18rem;
    background-size: 0.2rem;
  }
  .indexP4 .lunbo .swiper-slide-active {
    box-shadow: none;
  }
  .indexP4 .lunbo .swiper-slide-active .baozhe .name {
    font-size: var(--fs18);
  }
  .indexP4 .lunbo .swiper-slide-active .baozhe .name em {
    font-size: var(--fs24);
  }
  .indexP4 .lunbo .swiper-slide-active .baozhe .msg {
    max-height: 0.96rem;
  }
  .indexP5 .zi {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .indexP5 .title {
    margin: 0.1rem 0 0.65rem;
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .indexP5 .mxfDiv {
    border-radius: 0.64rem;
    padding: 0.9rem 0 4rem;
    height: auto;
    background: url(../img/indexP5.jpg) center no-repeat;
    background-size: cover;
    z-index: 1;
  }
  .indexP5 .mxfDiv::after {
    border-radius: 0 0 0.64rem 0.64rem;
  }
  .indexP5 .mxfDiv .wrap {
    display: block;
    padding: 0 var(--offset);
  }
  .indexP5 .mxfDiv .imgDiv {
    z-index: 3;
    width: 3.4rem;
  }
  .indexP5 .mxfDiv .conDiv {
    position: relative;
    z-index: 1;
  }
  .indexP5 .mxfDiv .conDiv .en {
    font-size: var(--fs24);
  }
  .indexP5 .mxfDiv .conDiv .cn {
    font-size: var(--fs24);
  }
  .indexP5 .mxfDiv .conDiv .limg {
    display: none;
  }
  .indexP5 .mxfDiv .baozhe {
    width: auto;
    height: auto;
    margin-top: 0.6rem;
  }
  .indexP5 .mxfDiv .baozhe a {
    padding: 0.6rem 0.35rem;
  }
  .indexP5 .mxfDiv .baozhe a .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP5 .mxfDiv .baozhe a .more {
    margin-top: 0.4rem;
    width: 0.84rem;
    height: 0.84rem;
    background-size: 0.24rem;
  }
  .indexP6 {
    margin-top: -0.6rem;
  }
  .indexP6 .mxfDiv {
    border-radius: 0 0 0.64rem 0.64rem;
    padding: 1.5rem 0 3.5rem;
    height: auto;
    background: url(../img/indexP6.jpg) center no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  .indexP6 .mxfDiv::before {
    display: none;
  }
  .indexP6 .mxfDiv::after {
    border-radius: 0 0 0.64rem 0.64rem;
  }
  .indexP6 .mxfDiv .wrap {
    display: block;
    padding: 0 var(--offset);
  }
  .indexP6 .mxfDiv .imgDiv {
    width: 3.6rem;
  }
  .indexP6 .mxfDiv .conDiv .en {
    font-size: var(--fs24);
  }
  .indexP6 .mxfDiv .conDiv .cn {
    font-size: var(--fs24);
  }
  .indexP6 .mxfDiv .conDiv .limg {
    margin-top: 1.3rem;
  }
  .indexP6 .mxfDiv .conDiv .limg img {
    width: 6.61rem;
  }
  .indexP6 .mxfDiv .baozhe {
    width: auto;
    height: auto;
    margin-top: 0.6rem;
  }
  .indexP6 .mxfDiv .baozhe a {
    padding: 0.6rem 0.35rem;
  }
  .indexP6 .mxfDiv .baozhe a .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP6 .mxfDiv .baozhe a .more {
    margin-top: 0.4rem;
    width: 0.84rem;
    height: 0.84rem;
    background-size: 0.24rem;
  }
  .indexP7 {
    padding: 1rem 0 1.2rem;
  }
  .indexP7 .zi {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .indexP7 .title {
    margin: 0.1rem 0 0.65rem;
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .indexP7 .touDiv {
    display: block;
  }
  .indexP7 .touDiv .pjDiv {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    width: 100%;
    height: 3.2rem;
    padding: 0 1.4rem 0 0.4rem;
  }
  .indexP7 .touDiv .pjDiv .ico {
    right: 0.4rem;
    top: 0.4rem;
  }
  .indexP7 .touDiv .pjDiv .wen {
    font-size: var(--fs20);
    line-height: 0.64rem;
    margin-bottom: 0.2rem;
  }
  .indexP7 .touDiv .pjDiv .msg {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .indexP7 .list {
    margin-top: 0.3rem;
    width: 100%;
  }
  .indexP7 .list ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
    margin: 0;
  }
  .indexP7 .list li {
    width: calc((100% - 0.2rem) / 2);
    padding: 0.5rem 0.3rem;
    margin-right: 0.2rem;
  }
  .indexP7 .list li .name {
    margin: 0.4rem 0 0.1rem;
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .indexP7 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP7 .list li:hover{
	  padding: 0.5rem 0.3rem;
  }
  .indexP7 .botDiv {
    display: block;
  }
  .indexP7 .botDiv .pjDiv {
    margin-top: 0.3rem;
    width: 100%;
    height: auto;
    padding: 0.4rem;
  }
  .indexP7 .botDiv .pjDiv .wen {
    font-size: var(--fs18);
    line-height: 0.64rem;
    margin-bottom: 0.4rem;
  }
  .indexP7 .botDiv .pjDiv .more a {
    min-width: 1.56rem;
    padding: 0 0.4rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .indexP7 .botDiv .pjDiv .more a em {
    width: 0.2rem;
    height: 0.18rem;
    background-size: 0.2rem;
  }
  .indexP8 {
    padding: 0.9rem 0 1.2rem;
    position: relative;
  }
  .indexP8::after {
    border-radius: 0.64rem 0.64rem 0 0;
  }
  .indexP8 .toptop {
    margin-bottom: 0.7rem;
  }
  .indexP8 .toptop .title {
    font-size: var(--fs24);
    line-height: 0.82rem;
  }
  .indexP8 .toptop .moreBtn a {
    height: 0.82rem;
    padding: 0 0.45rem;
    font-size: var(--fs14);
  }
  .indNews .imgList {
    padding: 0;
    margin: 0;
  }
  .indNews .box {
    border-radius: 0.2rem;
    box-shadow: none;
    overflow: hidden;
  }
  .indNews .box .imgDiv {
    height: 3.8rem;
    border-radius: 0.2rem;
  }
  .indNews .box .botDiv {
    padding: 0.35rem 0.35rem 0;
    height: 3.2rem;
  }
  .indNews .box .botDiv .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
    max-height: 1.44rem;
  }
  .indNews .box .botDiv .time {
    margin-top: 0.24rem;
    font-size: var(--fs15);
    line-height: 0.72rem;
  }
  .indNews .box .botDiv .time::after {
    width: 0.72rem;
    height: 0.72rem;
    background-size: 0.2rem;
  }
  .indNews .box:hover .time::after {
    background-size: 0.2rem;
  }
  .indNews .swiper-pagination {
    display: block;
  }
}
.exper-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  border-bottom-left-radius: 0.9rem;
  border-bottom-right-radius: 0.9rem;
}
.exper-banner .swiper-slide {
  position: relative;
}
.exper-banner .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.exper-banner .swiper-slide .img {
  height: 8.45rem;
}
.exper-banner .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exper-banner .swiper-pagination {
  width: auto;
  left: 50%;
  margin-left: -7.68rem;
  bottom: 0.64rem;
  z-index: 3;
}
.exper-banner .swiper-pagination .swiper-pagination-bullet {
  width: 0.36rem;
  height: 0.36rem;
  margin: 0 6px 0 0;
  border: transparent solid 1px;
  background: none;
  position: relative;
  opacity: 1;
}
.exper-banner .swiper-pagination .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.05rem;
  margin-top: -0.05rem;
  width: 0.1rem;
  height: 0.1rem;
  background: #fff;
  border-radius: 50%;
}
.exper-banner .swiper-pagination .swiper-pagination-bullet-active {
  border: #fff solid 1px;
}
.exper-banner .thumb-slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 0.5rem;
  background: rgba(0, 185, 191, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.56);
  z-index: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s ease;
  pointer-events: none;
}
.exper-banner .thumb-box {
  display: flex;
  align-items: stretch;
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  bottom: 2.16rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: 3;
}
.exper-banner .thumb-box a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  font-size: var(--fs18);
  color: #fff;
  min-width: 1.8rem;
  height: 0.6rem;
  text-align:center;
  border-radius: 0.5rem;
}
.exper-banner .thumb-box .on {
  background: rgba(0, 185, 191, 0.6);
  backdrop-filter: blur(10px);
}
.exper-banner .info {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 0;
  height: 95%;
  color: #fff;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.exper-banner .info .cn {
  font-size: var(--fs50);
  line-height: 0.64rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.exper-banner .info .msg {
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-weight: 400;
}
.experienceP1 {
  margin-top: -0.8rem;
  padding: 1.9rem 0;
  background: url(../img/experienceP1.jpg) center no-repeat;
  background-size: cover;
}
.experienceP1 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.86rem;
}
.experienceP1 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.experienceP1 .list li {
  width: calc((100% - 1.24rem) / 3);
  margin-right: 0.62rem;
  min-height: 5.5rem;
  padding: 0.9rem 0.3rem 0.4rem;
  border-radius: 0.3rem;
  border: 1px solid #E1EFF5;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.experienceP1 .list li:nth-child(3n) {
  margin-right: 0;
}
.experienceP1 .list li .ico {
  width: 1.12rem;
  margin: 0 auto;
}
.experienceP1 .list li .ico img {
  max-width: 100%;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.experienceP1 .list li .num {
  margin-top: 0.28rem;
  line-height: 1rem;
  color: #333;
  font-weight: 600;
  font-size: var(--fs84);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.experienceP1 .list li .num span {
  padding-left: 0.2rem;
  font-size: var(--fs32);
}
.experienceP1 .list li .unit {
  margin-top: 5px;
  font-size: var(--fs36);
  line-height: 0.54rem;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.experienceP1 .list li .msg {
  margin-top: 0.16rem;
  font-size: var(--fs18);
  color: #666;
  line-height: 0.3rem;
  font-weight: 400;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.experienceP1 .list li:hover {
  background: #00B9BF;
  border: #00B9BF solid 1px;
  box-shadow: 0 0.1rem 0.3rem 0 rgba(0, 185, 191, 0.4);
}
.experienceP1 .list li:hover .ico img {
  filter: brightness(0) invert(1);
}
.experienceP1 .list li:hover .num,
.experienceP1 .list li:hover .unit,
.experienceP1 .list li:hover .msg {
  color: #fff;
}
.experienceP1 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.experienceP1 .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #fff;
  border: #ddd solid 1px;
}
.experienceP1 .swiper-pagination-bullet-active {
  background: #00B9BF;
  border: #00B9BF solid 1px;
}
.experienceP2 {
  padding: 0.92rem 0 1.3rem;
}
.experienceP2 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.experienceP2 .zi {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 300;
  margin-bottom: 0.84rem;
}
.experienceP2 .list ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin: 0;
}
.experienceP2 .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.38rem;
  height: 1.38rem;
  border: #D9D9D9 solid 1px;
  border-radius: 50%;
  margin: 0 auto;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.experienceP2 .list li .ico img {
  width: 0.72rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.experienceP2 .list li .name {
  margin-top: 0.4rem;
  text-align: center;
  font-size: var(--fs22);
  line-height: 0.4rem;
  color: #333;
  font-weight: 600;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.experienceP2 .list li:hover .ico {
  border: #00B9BF solid 1px;
  background: #00B9BF;
}
.experienceP2 .list li:hover .ico img {
  filter: brightness(0) invert(1);
}
.experienceP2 .list li:hover .name {
  color: #00B9BF;
}
.experienceP3 {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 0;
  background: url(../img/bg1.png) center bottom no-repeat;
  background-size: 100%;
}
.experienceP3 .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../img/experienceP3.png) center bottom no-repeat;
  background-size: 100%;
}
.experienceP3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(192deg, rgba(255, 255, 255, 0.8) 34.27%, rgba(255, 255, 255, 0) 64.32%);
  z-index: 1;
}
.experienceP3::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(33deg, rgba(255, 255, 255, 0.8) 7.76%, rgba(255, 255, 255, 0) 48.93%);
  z-index: 1;
}
.experienceP3 .title {
  position: relative;
  z-index: 2;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.experienceP3 .zi {
  position: relative;
  z-index: 2;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 300;
  margin-bottom: 0.8rem;
}
.experienceP3 .list {
  position: relative;
  z-index: 2;
}
.experienceP3 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.experienceP3 .list li {
  width: calc((100% - 0.9rem) / 3);
  margin-right: 0.45rem;
  min-height: 4.86rem;
  padding: 0.88rem 0.5rem 0.4rem;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0.1rem 0.3rem 0 rgba(0, 185, 191, 0.2);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.experienceP3 .list li:nth-child(3n) {
  margin-right: 0;
}
.experienceP3 .list li .ico {
  width: 0.92rem;
  height: 1.38rem;
}
.experienceP3 .list li .ico img {
  max-width: 100%;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.experienceP3 .list li .name {
  font-size: var(--fs30);
  line-height: 0.48rem;
  color: #333;
  font-weight: 600;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.experienceP3 .list li .msg {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  color: #666;
  line-height: 0.3rem;
  font-weight: 400;
  /*text-align: justify;*/
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.experienceP3 .list li:hover {
  background: #00B9BF;
}
.experienceP3 .list li:hover .ico img {
  filter: brightness(0) invert(1);
}
.experienceP3 .list li:hover .name,
.experienceP3 .list li:hover .msg {
  color: #fff;
}
.experienceP3 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.experienceP3 .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #fff;
  border: #ddd solid 1px;
}
.experienceP3 .swiper-pagination-bullet-active {
  background: #00B9BF;
  border: #00B9BF solid 1px;
}
@media (max-width: 1600px) {
  .exper-banner .swiper-pagination {
    margin-left: -8rem;
  }
  .exper-banner .thumb-box {
    margin-left: -8rem;
  }
  .exper-banner .info {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .exper-banner {
    border-bottom-left-radius: 0.64rem;
    border-bottom-right-radius: 0.64rem;
  }
  .exper-banner .swiper-slide .img {
    height: 7rem;
  }
  .exper-banner .swiper-pagination {
    left: var(--offset);
    margin-left: 0;
    bottom: 0.3rem;
  }
  .exper-banner .thumb-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 0.5rem;
    background: rgba(0, 185, 191, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.56);
    z-index: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s ease;
    pointer-events: none;
  }
  .exper-banner .thumb-box {
    left: var(--offset);
    margin-left: 0;
    bottom: 1.5rem;
	width: calc(100% - 0.6rem);
  }
  .exper-banner .thumb-box a {
    font-size: var(--fs12);
    min-width: 1.5rem;
    height: 0.72rem;
	width:25%;
	line-height: 0.3rem;
	padding:0 0.1rem;
  }
  .exper-banner .info {
    left: var(--offset);
    right: var(--offset);
    margin-left: 0;
    height: 85%;
  }
  .exper-banner .info .cn {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.2rem;
  }
  .exper-banner .info .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .experienceP1 {
    padding: 1.6rem 0;
  }
  .experienceP1 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
    margin-bottom: 0.6rem;
  }
  .experienceP1 .list {
    overflow: hidden;
  }
  .experienceP1 .list ul {
    display: flex;
    flex-flow: nowrap;
    width: 100%;
  }
  .experienceP1 .list li {
    width: 100%;
    margin-right: 0;
    padding: 0.75rem 0.3rem 0.4rem;
  }
  .experienceP1 .list li .ico {
    width: 1.2rem;
  }
  .experienceP1 .list li .num {
    margin-top: 0.2rem;
    line-height: 0.72rem;
    font-size: var(--fs28);
  }
  .experienceP1 .list li .num span {
    font-size: var(--fs15);
  }
  .experienceP1 .list li .unit {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .experienceP1 .list li .msg {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .experienceP1 .swiper-pagination {
    display: block;
  }
  .experienceP2 {
    padding: 0.8rem 0 1rem;
  }
  .experienceP2 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .experienceP2 .zi {
    font-size: var(--fs22);
    line-height: 0.6rem;
    margin-bottom: 0.65rem;
  }
  .experienceP2 .list ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
  }
  .experienceP2 .list li {
    width: 33.33%;
    margin-top: 0.5rem;
  }
  .experienceP2 .list li:nth-child(-n+3) {
    margin-top: 0;
  }
  .experienceP2 .list li .ico {
    width: 1.48rem;
    height: 1.48rem;
  }
  .experienceP2 .list li .name {
    margin-top: 0.3rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .experienceP3 {
    padding: 1rem 0 0.9rem;
  }
  .experienceP3 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .experienceP3 .zi {
    font-size: var(--fs22);
    line-height: 0.6rem;
    margin-bottom: 0.45rem;
  }
  .experienceP3 .list {
    padding: 0.2rem 0;
  }
  .experienceP3 .list ul {
    flex-flow: nowrap;
  }
  .experienceP3 .list li {
    width: auto;
    margin-right: 0;
    min-height: 4.86rem;
    padding: 0.65rem 0.4rem 0.3rem;
    border-radius: 0.24rem;
  }
  .experienceP3 .list li .ico {
    height: 1.45rem;
  }
  .experienceP3 .list li .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .experienceP3 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .experienceP3 .list li:hover {
    background: #00B9BF;
  }
  .experienceP3 .list li:hover .ico img {
    filter: brightness(0) invert(1);
  }
  .experienceP3 .list li:hover .name,
  .experienceP3 .list li:hover .msg {
    color: #fff;
  }
  .experienceP3 .swiper-pagination {
    display: block;
  }
}
.apiP1 {
  padding: 1.68rem 0 1.4rem;
}
.apiP1 .numlist ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin: 0;
}
.apiP1 .numlist li .num {
  color: #1E237F;
  font-size: var(--fs24);
}
.apiP1 .numlist li .num .numUp {
  font-size: var(--fs84);
  font-weight: 600;
  padding-right: 0.1rem;
}
.apiP1 .numlist li .num em {
  font-size: var(--fs84);
}
.apiP1 .numlist li .zi {
  margin-top: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
  font-weight: 300;
}
.apiP1 .btnDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.9rem;
}
.apiP1 .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: 1.8rem;
  height: 0.6rem;
  border-radius: 0.45rem;
  background: #00B9BF;
  color: #fff;
  font-size: var(--fs18);
}
.apiP2 {
  padding: 0.75rem 0 1.6rem;
  background: #00B9BF;
  border-radius: 0.9rem 0.9rem 0 0;
  overflow: hidden;
}
.apiP2 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.apiP2 .zi {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #fff;
  text-align: center;
  font-weight: 300;
}
.apiP2 .list {
  padding: 0.68rem 0 0.9rem;
}
.apiP2 .list ul {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.apiP2 .list li {
  width: calc((100% - 0.4rem) / 2);
  padding: 0.42rem 0.5rem 0.3rem;
  min-height: 4.5rem;
  position: relative;
  margin-right: 0.4rem;
  border-radius: 0.3rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: -1px 6px 14.3px 0 rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(2.5px);
}
.apiP2 .list li:nth-child(2n) {
  margin-right: 0;
}
.apiP2 .list li .imgDiv img {
  width: 3.25rem;
}
.apiP2 .list li .name {
  margin-top: 0.5rem;
  font-size: var(--fs30);
  font-weight: 600;
  line-height: 0.4rem;
  color: #fff;
}
.apiP2 .pjDiv {
  position: relative;
  margin-top: 0.2rem;
  min-height: 6.1rem;
}
.apiP2 .midImg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  top: 0;
  width: 6.43rem;
  height: 5.42rem;
  margin-left: -3.22rem;
}
.apiP2 .midImg img {
  max-width: 6.43rem;
}
.apiP2 .lie {
  padding-top: 0.56rem;
}
.apiP2 .lie ul {
  margin-bottom: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  justify-content: space-between;
}
.apiP2 .lie li {
  position: relative;
  width: calc((100% - 7.4rem) / 2);
  margin-right: 7.4rem;
  min-height: 3.2rem;
  padding-bottom: 0.4rem;
  color: #fff;
}
.apiP2 .lie li:nth-child(2n) {
  margin-right: 0;
}
.apiP2 .lie li .name {
  font-size: var(--fs36);
  line-height: 0.54rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.apiP2 .lie li .msg {
  font-size: var(--fs18);
  line-height: 0.3rem;
  font-weight: 400;
}
.apiP2 .lie li:nth-child(even) {
  text-align: right;
}
.apiP2 .imglist {
  margin-top: 0.8rem;
}
.apiP2 .imglist ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.apiP2 .imglist li {
  width: calc((100% - 0.96rem) / 4);
  margin-right: 0.32rem;
  height: 3.2rem;
  padding: 0.6rem 0.3rem 0.4rem;
  border-radius: 0.2rem;
  border: 1px solid #E1EFF5;
  background: #fff;
  text-align: center;
}
.apiP2 .imglist li:nth-child(4n) {
  margin-right: 0;
}
.apiP2 .imglist li .imgDiv {
  width: 1.6rem;
  height: 1.12rem;
  margin: 0 auto;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.apiP2 .imglist li .imgDiv img {
  max-width: 100%;
}
.apiP2 .imglist li .name {
  margin-top: 0.5rem;
  line-height: 0.4rem;
  color: #333;
  font-weight: 600;
  font-size: var(--fs30);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.apiP2 .imglist li .msg {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  margin-top: 0.1rem;
  font-size: var(--fs18);
  color: #00B9BF;
  line-height: 0.3rem;
  font-weight: 400;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.apiP2 .imglist li:hover .imgDiv {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.apiP2 .imglist li:hover .name {
  margin-top: 0.4rem;
  color: #00B9BF;
}
.apiP2 .imglist li:hover .msg {
  max-height: 2rem;
  opacity: 1;
  visibility: visible;
}
.apiP2 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.apiP2 .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #fff;
  border: #ddd solid 1px;
}
.apiP2 .swiper-pagination-bullet-active {
  background: #1E237F;
  border: #1E237F solid 1px;
}
.apiP3 {
  padding: 1.4rem 0 1.34rem;
}
.apiP3 .list ul {
  margin: 0;
}
.apiP3 .list li {
  margin-top: 0.5rem;
  position: relative;
  border-radius: 0.3rem;
  overflow: hidden;
}
.apiP3 .list li .imgDiv {
  position: relative;
}
.apiP3 .list li .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, rgba(24, 38, 65, 0.9) 26.92%, rgba(31, 74, 156, 0) 84.62%);
}
.apiP3 .list li .imgDiv img {
  width: 100%;
}
.apiP3 .list li .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 1.24rem;
  top: 0;
  height: 100%;
  z-index: 2;
}
.apiP3 .list li .conDiv .name {
  font-size: var(--fs52);
  color: #fff;
  line-height: 0.9rem;
  font-weight: 600;
}
.apiP3 .list li .conDiv .msg {
  width: 6.3rem;
  margin-top: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  font-weight: 400;
  color: #fff;
}
.apiP3 .list li .conDiv .more {
  margin-top: 0.5rem;
}
.apiP3 .list li .conDiv .more 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: 1.56rem;
  height: 0.5rem;
  border-radius: 0.45rem;
  background: #00B9BF;
  font-size: var(--fs16);
  color: #fff;
}
.apiP3 .list li:first-child {
  margin-top: 0;
}
.apiP3 .list li:nth-child(2) .imgDiv::after {
  background: linear-gradient(90deg, #F2F6F8 0%, rgba(255, 255, 255, 0) 62.98%);
}
.apiP3 .list li:nth-child(2) .conDiv .name {
  color: #1E237F;
}
.apiP3 .list li:nth-child(2) .conDiv .msg {
  width: 4.2rem;
  color: #333;
}
@media (max-width: 1004px) {
  .apiP1 {
    padding: 1.1rem 0 1rem;
  }
  .apiP1 .numlist ul {
    flex-flow: wrap;
  }
  .apiP1 .numlist li {
    width: 33.33%;
    margin-top: 0.5rem;
    text-align: center;
  }
  .apiP1 .numlist li:nth-child(-n+3) {
    margin-top: 0;
  }
  .apiP1 .numlist li:nth-child(4),
  .apiP1 .numlist li:nth-child(5) {
    width: 50%;
    padding: 0 6%;
  }
  .apiP1 .numlist li .num {
    font-size: var(--fs16);
  }
  .apiP1 .numlist li .num .numUp {
    font-size: var(--fs32);
    line-height: 0.72rem;
  }
  .apiP1 .numlist li .num em {
    font-size: var(--fs32);
  }
  .apiP1 .numlist li .zi {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .apiP1 .btnDiv {
    margin-top: 0.65rem;
  }
  .apiP1 .btnDiv a {
    width: 2.4rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .apiP2 {
    padding: 0.75rem 0 1.1rem;
    border-radius: 0.64rem 0.64rem 0 0;
  }
  .apiP2 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .apiP2 .zi {
    font-size: var(--fs22);
    line-height: 0.6rem;
  }
  .apiP2 .list {
    padding: 0.65rem 0 0.8rem;
  }
  .apiP2 .list li {
    width: calc((100% - 0.2rem) / 2);
    padding: 0.42rem 0.3rem 0.4rem;
    min-height: 3.2rem;
    position: relative;
    margin-right: 0.2rem;
    border-radius: 0.24rem;
  }
  .apiP2 .list li .imgDiv img {
    width: 2.4rem;
  }
  .apiP2 .list li .name {
    margin-top: 0.35rem;
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .apiP2 .pjDiv {
    margin-top: 0.2rem;
    min-height: 6.1rem;
  }
  .apiP2 .midImg {
    position: relative;
    left: 0;
    width: 100%;
    height: auto;
    margin-left: 0;
  }
  .apiP2 .midImg img {
    max-width: 60%;
  }
  .apiP2 .lie {
    padding: 0.4rem 0;
  }
  .apiP2 .lie ul {
    display: block;
  }
  .apiP2 .lie li {
    width: 100%;
    margin-right: 0;
    min-height: 2rem;
    padding-bottom: 0.5rem;
  }
  .apiP2 .lie li:nth-child(2n) {
    margin-right: 0;
  }
  .apiP2 .lie li .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .apiP2 .lie li .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .apiP2 .lie li:nth-child(even) {
    text-align: left;
  }
  .apiP2 .imglist {
    margin-top: 0.65rem;
    overflow: hidden;
  }
  .apiP2 .imglist ul {
    flex-flow: nowrap;
  }
  .apiP2 .imglist li {
    width: auto;
    margin-right: 0;
    height: 4.3rem;
    padding: 0.35rem 0.3rem 0.2rem;
    border-radius: 0.24rem;
  }
  .apiP2 .imglist li .name {
    margin-top: 0.35rem;
    line-height: 0.48rem;
    font-size: var(--fs18);
  }
  .apiP2 .imglist li .msg {
    opacity: 1;
    visibility: visible;
    max-height: 100%;
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.46rem;
  }
  .apiP2 .imglist li:hover .imgDiv {
    opacity: 1;
    visibility: visible;
    height: 1.12rem;
  }
  .apiP2 .imglist li:hover .name {
    margin-top: 0.35rem;
    color: #333;
  }
  .apiP2 .swiper-pagination {
    display: block;
  }
  .apiP3 {
    padding: 1rem 0;
  }
  .apiP3 .list li {
    border-radius: 0.24rem;
  }
  .apiP3 .list li .conDiv {
    padding: 0.5rem 0.4rem;
    background: #f6f6f6;
    display: block;
    position: relative;
    left: 0;
    top: 0;
  }
  .apiP3 .list li .conDiv .name {
    font-size: var(--fs22);
    color: #1E237F;
    line-height: 0.52rem;
  }
  .apiP3 .list li .conDiv .msg {
    width: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
    color: #333;
  }
  .apiP3 .list li .conDiv .more {
    margin-top: 0.35rem;
  }
  .apiP3 .list li .conDiv .more a {
    width: 2.4rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .apiP3 .list li:nth-child(2) .conDiv .msg {
    width: auto;
  }
}
.tourismP1 {
  position: relative;
  overflow: hidden;
  margin-top: -0.8rem;
  padding: 1.9rem 0 1.2rem;
  background: url(../img/tourismP1.jpg) center top no-repeat;
  background-size: 100%;
}
.tourismP1 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.tourismP1 .zi {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 300;
  margin-bottom: 0.6rem;
}
.tourismP1 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.tourismP1 .list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
  width: calc((100% - 0.48rem) / 3);
  margin-right: 0.24rem;
  min-height: 5rem;
  padding: 0.4rem;
  border-radius: 0.3rem;
  background: #fff;
  text-align: center;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.tourismP1 .list li:nth-child(3n) {
  margin-right: 0;
}
.tourismP1 .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: #00B9BF solid 2px;
  margin: 0 auto;
  overflow:hidden;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.tourismP1 .list li .ico img {
  max-width: 0.48rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.tourismP1 .list li .name {
  margin-top: 0.4rem;
  font-size: var(--fs36);
  line-height: 0.54rem;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.tourismP1 .list li .msg {
  margin-top: 0.2rem;
  font-size: var(--fs22);
  color: #666;
  line-height: 0.3rem;
  font-weight: 400;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.tourismP1 .list li .content {
  margin-top: 0.14rem;
  max-height: 0;
  overflow: hidden;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #fff;
  font-weight: 400;
  text-align:justify;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.tourismP1 .list li:hover {
  background: #00B9BF;
}
.tourismP1 .list li:hover .ico {
  height: 0;
}
.tourismP1 .list li:hover .ico img {
  filter: brightness(0) invert(1);
}
.tourismP1 .list li:hover .name,
.tourismP1 .list li:hover .msg {
  color: #fff;
}
.tourismP1 .list li:hover .name{
	margin-top: 0;
}
.tourismP1 .list li:hover .content {
  max-height: 3rem;
}
.tourismP1 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.tourismP1 .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #fff;
  border: #ddd solid 1px;
}
.tourismP1 .swiper-pagination-bullet-active {
  background: #00B9BF;
  border: #00B9BF solid 1px;
}
.tourismP2 {
  padding: 1.4rem 0 1.1rem;
  position: relative;
  background: url(../img/tourismP2.jpg) center no-repeat;
  background-size: cover;
}
.tourismP2 .title {
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 100%;
  z-index: 1;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.tourismP2 .mxfDiv {
  margin: 0 auto;
  width: 7.22rem;
  height: 6.7rem;
  position: relative;
}
.tourismP2 .mxfDiv::before {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -3rem;
  margin-top: -3rem;
  top: 50%;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: rgba(217, 217, 217, 0.7) dashed 1px;
}
.tourismP2 .mxfDiv::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -3.3rem;
  margin-top: -3.3rem;
  top: 50%;
  width: 6.6rem;
  height: 6.6rem;
  border-radius: 50%;
  border: rgba(0, 185, 191, 0.3) solid 1px;
}
.tourismP2 .mxfDiv .midImg {
  position: absolute;
  left: 50%;
  margin-left: -3.61rem;
  top: 0;
}
.tourismP2 .mxfDiv .midImg img {
  width: 7.22rem;
}
.tourismP2 .mxfDiv .lie li {
  position: absolute;
}
.tourismP2 .mxfDiv .lie li .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.36rem;
  height: 1.36rem;
  border-radius: 50%;
  font-size: var(--fs20);
  line-height: 0.3rem;
  font-weight: 600;
  text-align: center;
}
.tourismP2 .mxfDiv .lie li:nth-child(1) {
  left: 0.52rem;
  top: 2.15rem;
}
.tourismP2 .mxfDiv .lie li:nth-child(1) .name {
  background: rgba(0, 185, 191, 0.2);
  border: #00B9BF solid 1px;
  color: #00B9BF;
}
.tourismP2 .mxfDiv .lie li:nth-child(2) {
  right: 0.52rem;
  top: 2.15rem;
}
.tourismP2 .mxfDiv .lie li:nth-child(2) .name {
  background: rgba(168, 244, 202, 0.2);
  border: #27DBA8 solid 1px;
  color: #33C87D;
}
.tourismP2 .mxfDiv .lie li:nth-child(3) {
  left: 50%;
  margin-left: -0.68rem;
  bottom: 0.2rem;
}
.tourismP2 .mxfDiv .lie li:nth-child(3) .name {
  background: rgba(147, 192, 255, 0.2);
  border: #3286FE solid 1px;
  color: #3286FE;
}
.tourismP2 .mxfDiv .dian li {
  position: absolute;
  z-index: 1;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
}
.tourismP2 .mxfDiv .dian li:nth-child(1) {
  top: 1.66rem;
  left: 0.6rem;
  border: rgba(195, 238, 255, 0.9) solid 0.05rem;
  background: #00B9BF;
}
.tourismP2 .mxfDiv .dian li:nth-child(2) {
  top: 3.82rem;
  left: 0.24rem;
  border: rgba(195, 238, 255, 0.9) solid 0.05rem;
  background: #00B9BF;
}
.tourismP2 .mxfDiv .dian li:nth-child(3) {
  bottom: 0.28rem;
  left: 50%;
  margin-left: -1.6rem;
  border: rgba(195, 235, 255, 0.9) solid 0.05rem;
  background: #3286FE;
}
.tourismP2 .mxfDiv .dian li:nth-child(4) {
  bottom: 0.28rem;
  right: 50%;
  margin-right: -1.6rem;
  border: rgba(195, 235, 255, 0.9) solid 0.05rem;
  background: #3286FE;
}
.tourismP2 .mxfDiv .dian li:nth-child(5) {
  top: 1.66rem;
  right: 0.6rem;
  border: rgba(195, 255, 202, 0.9) solid 0.05rem;
  background: #59D999;
}
.tourismP2 .mxfDiv .dian li:nth-child(6) {
  top: 3.82rem;
  right: 0.24rem;
  border: rgba(195, 255, 202, 0.9) solid 0.05rem;
  background: #59D999;
}
.tourismP2 .mxfDiv .list li {
  position: absolute;
}
.tourismP2 .mxfDiv .list li .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  border: transparent solid 1px;
  font-size: var(--fs30);
  line-height: 0.4rem;
  color: #333;
  font-weight: 600;
  border-radius: 0.48rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.tourismP2 .mxfDiv .list li .layerDiv {
  position: absolute;
  text-align: center;
  width: 3.65rem;
  border-radius: 0.15rem;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  overflow: hidden;
  box-shadow: 0 5px 0.2rem 0 rgba(0, 185, 191, 0.1);
  transition: All 0.5s ease;
}
.tourismP2 .mxfDiv .list li .layerDiv .imgDiv {
  height: 1.8rem;
  overflow: hidden;
}
.tourismP2 .mxfDiv .list li .layerDiv .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tourismP2 .mxfDiv .list li .layerDiv .botDiv {
  background: #fff;
  padding: 0.24rem 0.5rem 0.36rem 0.26rem;
}
.tourismP2 .mxfDiv .list li .layerDiv .msg {
  font-size: var(--fs18);
  line-height: 0.3rem;
  font-weight: 400;
  /*text-align: justify;*/
}
.tourismP2 .mxfDiv .list li .layerDiv .msg b {
  font-size: var(--fs20);
  display: block;
  color: #333;
}
.tourismP2 .mxfDiv .list li:nth-child(1) {
  top: 1.55rem;
  left: -2.8rem;
}
.tourismP2 .mxfDiv .list li:nth-child(1) .name {
  top: 0;
  right: 0;
}
.tourismP2 .mxfDiv .list li:nth-child(1) .layerDiv {
  top: 0;
  left: 50%;
  margin-left: -3.62rem;
}
.tourismP2 .mxfDiv .list li:nth-child(1):hover .name {
  top: -0.1rem;
  right: 0.3rem;
  padding: 0.1rem 0.3rem;
  border: #00B9BF solid 1px;
  color: #00B9BF;
}
.tourismP2 .mxfDiv .list li:nth-child(1):hover .layerDiv {
  opacity: 1;
  visibility: visible;
  top: 0.6rem;
}
.tourismP2 .mxfDiv .list li:nth-child(2) {
  top: 3.7rem;
  left: -2.4rem;
}
.tourismP2 .mxfDiv .list li:nth-child(2) .name {
  top: 0;
  right: 0;
}
.tourismP2 .mxfDiv .list li:nth-child(2) .layerDiv {
  top: 0;
  left: 50%;
  margin-left: -3.62rem;
}
.tourismP2 .mxfDiv .list li:nth-child(2):hover .name {
  top: -0.1rem;
  right: 0.3rem;
  padding: 0.1rem 0.3rem;
  border: #00B9BF solid 1px;
  color: #00B9BF;
}
.tourismP2 .mxfDiv .list li:nth-child(2):hover .layerDiv {
  opacity: 1;
  visibility: visible;
  top: 0.6rem;
}
.tourismP2 .mxfDiv .list li:nth-child(3) {
  bottom: -0.3rem;
  left: 50%;
  margin-left: -3.1rem;
}
.tourismP2 .mxfDiv .list li:nth-child(3) .name {
  top: 0;
  right: 0;
}
.tourismP2 .mxfDiv .list li:nth-child(3) .layerDiv {
  bottom: 0;
  left: 50%;
  margin-left: -2.62rem;
}
.tourismP2 .mxfDiv .list li:nth-child(3):hover .name {
  top: 0.1rem;
  right: 0.3rem;
  padding: 0.1rem 0.3rem;
  border: #3286FE solid 1px;
  color: #3286FE;
}
.tourismP2 .mxfDiv .list li:nth-child(3):hover .layerDiv {
  opacity: 1;
  visibility: visible;
  bottom: 0.6rem;
}
.tourismP2 .mxfDiv .list li:nth-child(4) {
  bottom: -0.3rem;
  right: 50%;
  margin-right: -3.1rem;
}
.tourismP2 .mxfDiv .list li:nth-child(4) .name {
  top: 0;
  left: 0;
}
.tourismP2 .mxfDiv .list li:nth-child(4) .layerDiv {
  bottom: 0;
  right: 50%;
  margin-right: -2.62rem;
}
.tourismP2 .mxfDiv .list li:nth-child(4):hover .name {
  top: 0.1rem;
  left: 0.3rem;
  padding: 0.1rem 0.3rem;
  border: #3286FE solid 1px;
  color: #3286FE;
}
.tourismP2 .mxfDiv .list li:nth-child(4):hover .layerDiv {
  opacity: 1;
  visibility: visible;
  bottom: 0.6rem;
}
.tourismP2 .mxfDiv .list li:nth-child(5) {
  top: 3.7rem;
  right: -2.8rem;
}
.tourismP2 .mxfDiv .list li:nth-child(5) .name {
  top: 0;
  left: 0;
}
.tourismP2 .mxfDiv .list li:nth-child(5) .layerDiv {
  top: 0;
  right: 50%;
  margin-right: -3.62rem;
}
.tourismP2 .mxfDiv .list li:nth-child(5):hover .name {
  top: -0.1rem;
  left: 0.3rem;
  padding: 0.1rem 0.3rem;
  border: #33C87D solid 1px;
  color: #33C87D;
}
.tourismP2 .mxfDiv .list li:nth-child(5):hover .layerDiv {
  opacity: 1;
  visibility: visible;
  top: 0.6rem;
}
.tourismP2 .mxfDiv .list li:nth-child(6) {
  top: 1.55rem;
  right: -1.9rem;
}
.tourismP2 .mxfDiv .list li:nth-child(6) .name {
  top: 0;
  left: 0;
}
.tourismP2 .mxfDiv .list li:nth-child(6) .layerDiv {
  top: 0;
  right: 50%;
  margin-right: -3.62rem;
}
.tourismP2 .mxfDiv .list li:nth-child(6):hover .name {
  top: -0.1rem;
  left: 0.3rem;
  padding: 0.1rem 0.3rem;
  border: #33C87D solid 1px;
  color: #33C87D;
}
.tourismP2 .mxfDiv .list li:nth-child(6):hover .layerDiv {
  opacity: 1;
  visibility: visible;
  top: 0.6rem;
}
.tourismP2 .pjDiv .list li {
  margin-bottom: 0.5rem;
}
.tourismP2 .pjDiv .list li:last-child {
  margin-bottom: 0;
}
.tourismP2 .pjDiv .list li .name {
  color: #00B9BF;
  font-size: var(--fs20);
  line-height: 0.64rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.tourismP2 .pjDiv .list li .lie dl {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.tourismP2 .pjDiv .list li .lie dd {
  width: calc((100% - 0.2rem) / 2);
  margin-right: 0.2rem;
  border-radius: 0.24rem;
  background: #f6f6f6;
  overflow: hidden;
}
.tourismP2 .pjDiv .list li .lie dd:nth-child(2n) {
  margin-right: 0;
}
.tourismP2 .pjDiv .list li .lie dd .imgDiv {
  height: 2.8rem;
  overflow: hidden;
}
.tourismP2 .pjDiv .list li .lie dd .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tourismP2 .pjDiv .list li .lie dd .botDiv {
  padding: 0.3rem 0.2rem;
}
.tourismP2 .pjDiv .list li .lie dd .botDiv .cn {
  display: none;
  font-size: var(--fs17);
  line-height: 0.48rem;
  margin-bottom: 0.1rem;
  color: #1E237F;
  font-weight: 600;
}
.tourismP2 .pjDiv .list li .lie dd .botDiv .msg {
  font-size: var(--fs13);
  line-height: 0.42rem;
}
.tourismP2 .pjDiv .list li .lie dd .botDiv .msg b {
  display: block;
  font-size: var(--fs15);
  line-height: 0.48rem;
  color: #1E237F;
}
.tourismP3 {
  position: relative;
  padding: 0.7rem 0;
}
.tourismP3 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.tourismP3 .zi {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.tourismP3 .pjDiv {
  position: relative;
  margin-top: 0.2rem;
  min-height: 6.1rem;
}
.tourismP3 .midImg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  top: 0;
  width: 10.6rem;
  height: 6.2rem;
  margin-left: -5.3rem;
}
.tourismP3 .midImg img {
  max-width: 10.6rem;
}
.tourismP3 .list {
  padding-top: 0.35rem;
}
.tourismP3 .list ul {
  margin-bottom: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  justify-content: space-between;
}
.tourismP3 .list li {
  position: relative;
  width: calc((100% - 7.1rem) / 2);
  margin-right: 7.1rem;
  min-height: 5.2rem;
  padding-bottom: 0.4rem;
}
.tourismP3 .list li:nth-child(2n) {
  margin-right: 0;
}
.tourismP3 .list li .name {
  font-size: var(--fs36);
  line-height: 0.54rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #333;
}
.tourismP3 .list li .msg {
  font-size: var(--fs18);
  line-height: 0.3rem;
  font-weight: 400;
  color: #666;
  /*text-align: justify;*/
}
.tourismP3 .list li:nth-child(even) {
  padding-left: 0;
}
.tourismP3 .list li:nth-child(3),
.tourismP3 .list li:nth-child(4) {
  min-height: 1.2rem;
  padding-bottom: 0;
}
.tourismP3 .arrowDiv {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 48%;
  margin-left: -0.6rem;
  margin-top: -0.6rem;
  width: 1.2rem;
  height: 1.2rem;
  background: #00B9BF;
  border-radius: 50%;
}
.tourismP3 .arrowDiv img {
  width: 0.48rem;
  filter: brightness(0) invert(1);
}
.tourismP4 {
  padding: 0.4rem 0 1.34rem;
  background: url(../img/tourismP4.png) center 60% no-repeat;
  background-size: 100%;
}
.tourismP4 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.tourismP4 .zi {
  font-size: var(--fs48);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.tourismP4 .mxfDiv {
  z-index: 1;
  height: 8.26rem;
  position: relative;
  border-radius: 0.32rem;
}
.tourismP4 .mxfDiv .leftDiv {
  left: 0;
  top: 0;
  width: 65.4%;
  position: absolute;
  height: 8.26rem;
  overflow: hidden;
  border-radius: 0.32rem;
}
.tourismP4 .mxfDiv .leftDiv .colorbg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.32rem;
  background: rgba(9, 191, 197, 0.72);
  backdrop-filter: blur(10px);
  transform: skew(-14.15deg);
  transform-origin: left top;
  /* 从左侧固定 */
}
.tourismP4 .mxfDiv .leftDiv .name {
  padding: 0.6rem 0 0.5rem;
  color: #fff;
  font-size: var(--fs36);
  line-height: 0.54rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  text-align: center;
}
.tourismP4 .mxfDiv .leftDiv .list {
  padding-top: 1.64rem;
  width: 120%;
  transform: skew(14.15deg);
}
.tourismP4 .mxfDiv .leftDiv .list li {
  padding: 0.5rem 1.84rem 0.45rem 2.72rem;
  position: relative;
  color: #fff;
}
.tourismP4 .mxfDiv .leftDiv .list li .ico {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  left: 1.36rem;
  top: 0.68rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.tourismP4 .mxfDiv .leftDiv .list li .ico img {
  width: 0.94rem;
}
.tourismP4 .mxfDiv .leftDiv .list li .cn {
  font-size: var(--fs30);
  line-height: 0.4rem;
  font-weight: 600;
}
.tourismP4 .mxfDiv .leftDiv .list li .msg {
  margin-top: 0.2rem;
  max-height: 0;
  font-size: var(--fs18);
  line-height: 0.3rem;
  overflow: hidden;
  width: 75%;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.tourismP4 .mxfDiv .leftDiv .list li:hover {
  background: #00B9BF;
}
.tourismP4 .mxfDiv .leftDiv .list li:hover .ico {
  opacity: 1;
  visibility: visible;
}
.tourismP4 .mxfDiv .leftDiv .list li:hover .msg {
  max-height: 2rem;
}
.tourismP4 .mxfDiv .rightDiv {
  right: 0;
  bottom: 0;
  width: 47.4%;
  position: absolute;
  height: 7.82rem;
  z-index: 1;
  overflow: hidden;
  border-radius: 0.32rem;
}
.tourismP4 .mxfDiv .rightDiv .colorbg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.32rem;
  background: rgba(242, 242, 242, 0.6);
  backdrop-filter: blur(15px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: skew(-14.15deg);
  transform-origin: right bottom;
  /* 从左侧固定 */
}
.tourismP4 .mxfDiv .rightDiv .name {
  padding: 0.6rem 0 1rem 3.52rem;
  font-size: var(--fs36);
  line-height: 0.54rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  color: #000;
}
.tourismP4 .mxfDiv .rightDiv .list {
  position: relative;
  z-index: 1;
}
.tourismP4 .mxfDiv .rightDiv .list li {
  position: relative;
  padding-left: 3rem;
  padding-right: 0.85rem;
  padding-bottom: 0.6rem;
}
.tourismP4 .mxfDiv .rightDiv .list li:last-child {
  padding-bottom: 0;
}
.tourismP4 .mxfDiv .rightDiv .list li .msg {
  font-size: var(--fs18);
  line-height: 0.3rem;
  min-height: 1.2rem;
  color: #333;
}
.tourismP4 .mxfDiv .rightDiv .list li .cn {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  text-align:center;
  position: absolute;
  font-size: var(--fs24);
  color: #fff;
  font-weight: 600;
  left: 0;
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  border: #b3fffd solid 0.06rem;
  background: #00ddd8;
}
.tourismP4 .mxfDiv .rightDiv .list li:nth-child(1) .cn {
  top: -0.5rem;
  left: 0.5rem;
}
.tourismP4 .mxfDiv .rightDiv .list li:nth-child(2) .cn {
  top: 0.1rem;
  width: 1.2rem;
  height: 1.2rem;
  left: 0.2rem;
  font-size: var(--fs16);
}
.tourismP4 .mxfDiv .rightDiv .list li:nth-child(3) .cn {
  left: 0;
  width: 0.95rem;
  height: 0.95rem;
  font-size: var(--fs14);
}
.tourismP4 .pjDiv .toptop {
  border-radius: 0.2rem 0.2rem 0 0;
  overflow: hidden;
}
.tourismP4 .pjDiv .toptop ul {
  display: flex;
}
.tourismP4 .pjDiv .toptop li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 1.2rem;
  background: #0ebbc1;
  font-size: var(--fs16);
  text-align: center;
  color: #fff;
  width: 55%;
}
.tourismP4 .pjDiv .toptop li:nth-child(2) {
  width: 45%;
  background: #d9d9d9;
  color: #333;
}
.tourismP4 .pjDiv .duibi {
  border-radius: 0 0 0.2rem 0.2rem;
  overflow: hidden;
}
.tourismP4 .pjDiv .duibi li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  background: #f6f6f6;
  position: relative;
  margin-top: 2px;
}
.tourismP4 .pjDiv .duibi li .cn {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  font-size: var(--fs13);
  text-align:center;
  color: #fff;
  font-weight: 600;
  left: 50%;
  margin-left: -0.6rem;
  top: 50%;
  margin-top: -0.9rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  border: #b3fffd solid 0.06rem;
  background: #00ddd8;
}
.tourismP4 .pjDiv .duibi li .good {
  width: 55%;
  padding: 0.3rem 0.2rem;
  color: #fff;
  background: rgba(9, 191, 197, 0.72);
}
.tourismP4 .pjDiv .duibi li .good .name {
  font-size: var(--fs16);
  line-height: 0.48rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.tourismP4 .pjDiv .duibi li .good .msg {
  padding-right: 0.5rem;
  font-size: var(--fs14);
  line-height: 0.42rem;
}
.tourismP4 .pjDiv .duibi li .bad {
  width: 45%;
  font-size: var(--fs14);
  line-height: 0.42rem;
  padding: 0.3rem 0.2rem 0.3rem 0.9rem;
  color: #333;
}
.tourismP4 .moreBtn {
  margin: 0.96rem auto 0;
  display: flex;
  justify-content: center;
}
.tourismP4 .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  min-width: 2rem;
  height: 0.5rem;
  font-size: var(--fs16);
  color: #fff;
  border-radius: 0.45rem;
  background: #00B9BF;
}
@media (max-width: 1004px) {
  .tourismP1 {
    margin-top: -0.8rem;
    padding: 1.2rem 0 1rem;
  }
  .tourismP1 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .tourismP1 .zi {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .tourismP1 .list {
    overflow: hidden;
  }
  .tourismP1 .list ul {
    flex-flow: nowrap;
  }
  .tourismP1 .list li {
    display: block;
    width: auto;
    margin-right: 0;
    min-height: 6rem;
    padding: 0.4rem;
    border: #d4d4d4 solid 1px;
  }
  .tourismP1 .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;
    border: #00B9BF solid 1px;
  }
  .tourismP1 .list li .ico img {
    max-width: 0.68rem;
  }
  .tourismP1 .list li .name {
    margin-top: 0.3rem;
    font-size: var(--fs20);
    line-height: 0.6rem;
  }
  .tourismP1 .list li .msg {
    margin-top: 0.1rem;
    font-size: var(--fs16);
    line-height: 0.42rem;
  }
  .tourismP1 .list li .content {
    margin-top: 0.24rem;
    max-height: 100%;
    font-size: var(--fs14);
    line-height: 0.42rem;
    color: #333;
  }
  .tourismP1 .list li:hover {
    border: #00B9BF solid 1px;
  }
  .tourismP1 .list li:hover .content {
    color: #fff;
    max-height: 100%;
  }
  .tourismP1 .swiper-pagination {
    display: block;
  }
  .tourismP2 {
    padding: 1rem 0 0.8rem;
    background: #f2fcfd;
  }
  .tourismP2 .title {
    position: relative;
    top: 0;
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.65rem;
  }
  .tourismP3 {
    padding: 0.9rem 0;
  }
  .tourismP3 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .tourismP3 .zi {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.65rem;
  }
  .tourismP3 .pjDiv {
    margin-top: 0;
    min-height: 2rem;
  }
  .tourismP3 .midImg {
    display: none;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    margin-left: 0;
  }
  .tourismP3 .midImg img {
    max-width: 100%;
  }
  .tourismP3 .list {
    padding-top: 0;
  }
  .tourismP3 .list li {
    position: relative;
    width: calc((100% - 0.2rem) / 2);
    padding: 0.3rem;
    border: #eee solid 1px;
    border-radius: 0.24rem;
    margin-right: 0.2rem;
    margin-top: 0.3rem;
    min-height: 2rem;
  }
  .tourismP3 .list li .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .tourismP3 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .tourismP3 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .tourismP3 .list li:nth-child(even) {
    padding: 0.3rem;
  }
  .tourismP3 .list li:nth-child(3),
  .tourismP3 .list li:nth-child(4) {
    padding: 0.3rem;
  }
  .tourismP3 .arrowDiv{
	  display: flex;
	  display: -webkit-flex;
	  align-items: center;
	  -webkit-align-items: center;
	  justify-content: center;
	  -webkit-justify-content: center;
  }
  .tourismP4 {
    padding: 0.4rem 0 1rem;
    background: url(../img/tourismP4.png) center 60% no-repeat;
    background-size: 100%;
  }
  .tourismP4 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .tourismP4 .zi {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.65rem;
  }
  .tourismP4 .mxfDiv {
    height: auto;
  }
  .tourismP4 .mxfDiv .leftDiv {
    left: 0;
    width: 100%;
    position: relative;
    height: auto;
    padding-right: 0.3rem;
    padding-bottom: 0.6rem;
    background: rgba(9, 191, 197, 0.72);
    backdrop-filter: blur(0);
  }
  .tourismP4 .mxfDiv .leftDiv .colorbg {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: none;
    backdrop-filter: blur(0);
    transform: skew(0);
    transform-origin: left top;
    /* 从左侧固定 */
  }
  .tourismP4 .mxfDiv .leftDiv .name {
    padding: 0.6rem 0 0.5rem;
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .tourismP4 .mxfDiv .leftDiv .list {
    padding-top: 0;
    width: 100%;
    transform: skew(0);
  }
  .tourismP4 .mxfDiv .leftDiv .list li {
    padding: 0 0 0.3rem 1.56rem;
  }
  .tourismP4 .mxfDiv .leftDiv .list li .ico {
    opacity: 1;
    visibility: visible;
    left: 0.3rem;
    top: 0;
  }
  .tourismP4 .mxfDiv .leftDiv .list li .ico img {
    width: 0.94rem;
  }
  .tourismP4 .mxfDiv .leftDiv .list li .cn {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .tourismP4 .mxfDiv .leftDiv .list li .msg {
    margin-top: 0.2rem;
    max-height: 100%;
    font-size: var(--fs14);
    line-height: 0.46rem;
    width: auto;
  }
  .tourismP4 .mxfDiv .leftDiv .list li:hover {
    background: none;
  }
  .tourismP4 .mxfDiv .leftDiv .list li:hover .msg {
    max-height: 100%;
  }
  .tourismP4 .mxfDiv .rightDiv {
    margin-top: 0.6rem;
    width: 100%;
    position: relative;
    padding: 0 0.3rem 0.7rem;
    height: auto;
    background: rgba(242, 242, 242, 0.6);
    backdrop-filter: blur(15px);
  }
  .tourismP4 .mxfDiv .rightDiv .colorbg {
    display: none;
  }
  .tourismP4 .mxfDiv .rightDiv .name {
    padding: 0.6rem 0 1rem;
    font-size: var(--fs20);
    line-height: 0.64rem;
    text-align: center;
  }
  .tourismP4 .mxfDiv .rightDiv .list {
    position: relative;
    z-index: 1;
  }
  .tourismP4 .mxfDiv .rightDiv .list li {
    position: relative;
    padding-left: 2rem;
    padding-right: 0;
    padding-bottom: 0.5rem;
  }
  .tourismP4 .mxfDiv .rightDiv .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .tourismP4 .mxfDiv .rightDiv .list li .cn {
    width: 1.6rem;
    height: 1.6rem;
    font-size: var(--fs16);
  }
  .tourismP4 .mxfDiv .rightDiv .list li:nth-child(1) .cn {
    top: 0;
    left: 0;
  }
  .tourismP4 .mxfDiv .rightDiv .list li:nth-child(2) .cn {
    top: 0;
    width: 1.6rem;
    height: 1.6rem;
    font-size: var(--fs16);
    left: 0;
  }
  .tourismP4 .mxfDiv .rightDiv .list li:nth-child(3) .cn {
    left: 0;
    width: 1.6rem;
    height: 1.6rem;
    font-size: var(--fs16);
  }
  .tourismP4 .moreBtn {
    margin: 0.75rem auto 0;
  }
  .tourismP4 .moreBtn a {
    padding: 0 0.4rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
}
.hotelP1 {
  padding: 1.68rem 0 1.85rem;
}
.hotelP1 .numlist ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin: 0;
}
.hotelP1 .numlist li .num {
  color: #1E237F;
  font-size: var(--fs42);
}
.hotelP1 .numlist li .num em {
  font-size: var(--fs48);
  font-weight: 600;
  padding-right: 0.1rem;
}
.hotelP1 .numlist li .zi {
  margin-top: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
  font-weight: 300;
}
.hotelP2 {
  padding: 0.5rem 0 0.74rem;
  background: url(../img/hotelP2.png) left center no-repeat;
  background-size: 11.85rem;
}
.hotelP2 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.hotelP2 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.hotelP2 .conDiv {
  width: 6.3rem;
}
.hotelP2 .conDiv .name {
  font-size: var(--fs36);
  line-height: 0.54rem;
  color: #333;
  font-weight: 600;
}
.hotelP2 .conDiv .content {
  margin-top: 0.4rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  /*text-align: justify;*/
}
.hotelP2 .imgDiv {
  order: 1;
  width: 8.66rem;
}
.hotelP2 .imgDiv img {
  width: 100%;
}
.hotelP3 {
  padding: 0.68rem 0 0.5rem;
  background: url(../img/hotelP3.png) center bottom no-repeat;
  background-size: 100%;
}
.hotelP3 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.hotelP3 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.hotelP3 .conDiv {
  width: 6.3rem;
}
.hotelP3 .conDiv .name {
  font-size: var(--fs36);
  line-height: 0.54rem;
  color: #333;
  font-weight: 600;
}
.hotelP3 .conDiv .content {
  margin-top: 0.4rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  /*text-align: justify;*/
}
.hotelP3 .conDiv .content a {
  color: #1E237F;
}
.hotelP3 .imgDiv {
  width: 7.73rem;
}
.hotelP3 .imgDiv img {
  width: 100%;
}
.hotelP4 {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 1.6rem;
  background: url(../img/hotelP4.png) center bottom no-repeat;
  background-size: 100%;
}
.hotelP4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(192deg, rgba(255, 255, 255, 0.8) 34.27%, rgba(255, 255, 255, 0) 64.32%);
  z-index: 1;
}
.hotelP4::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(33deg, rgba(255, 255, 255, 0.8) 7.76%, rgba(255, 255, 255, 0) 48.93%);
  z-index: 1;
}
.hotelP4 .title {
  position: relative;
  z-index: 2;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.hotelP4 .zi {
  position: relative;
  z-index: 2;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 300;
  margin-bottom: 0.1rem;
}
.hotelP4 .lunbo {
  z-index: 2;
  position: relative;
  overflow: hidden;
}
.hotelP4 .lunbo .imgList {
  overflow: hidden;
  padding: 0.4rem 0;
}
.hotelP4 .lunbo .swiper-wrapper {
  pointer-events: none;
}
.hotelP4 .lunbo .swiper-slide {
  pointer-events: auto;
  width: 6rem;
  min-height: 6rem;
  border-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.3rem;
  transition: all 0.45s ease;
}
.hotelP4 .lunbo .swiper-slide .imgDiv {
  height: 2.32rem;
  border-radius: 0.3rem;
  overflow: hidden;
}
.hotelP4 .lunbo .swiper-slide .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotelP4 .lunbo .swiper-slide .name {
  margin: 0.68rem 0 0.1rem;
  text-align: center;
  color: #333;
  font-size: var(--fs36);
  line-height: 0.54rem;
  font-weight: 600;
}
.hotelP4 .lunbo .swiper-slide .msg {
  width: 3.6rem;
  margin: 0 auto;
  font-size: var(--fs18);
  line-height: 0.3rem;
  text-align: center;
}
.hotelP4 .lunbo .swiper-slide .more {
  margin-top: 0.3rem;
  display: none;
}
.hotelP4 .lunbo .swiper-slide .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  min-width: 1.56rem;
  height: 0.5rem;
  border-radius: 0.45rem;
  background: #00B9BF;
  color: #fff;
  font-size: var(--fs16);
}
.hotelP4 .lunbo .swiper-slide .more a em {
  margin-left: 0.1rem;
  width: 0.14rem;
  height: 0.12rem;
  background: url(../img/ico2.png) no-repeat;
  background-size: 0.14rem;
}
.hotelP4 .lunbo .swiper-slide-active {
  box-shadow: 0 0.2rem 0.3rem 0 rgba(0, 0, 0, 0.1);
}
.hotelP4 .lunbo .swiper-slide-active .more {
  display: flex;
  justify-content: center;
}
.hotelP4 .lunbo .swiper-pagination {
  display: none;
  position: relative;
  bottom: 0;
  padding-top: 0.2rem;
}
.hotelP4 .lunbo .swiper-pagination-bullet {
  opacity: 0.5;
  width: 14px;
  height: 14px;
  margin: 0 7px!important;
  background: #fff;
  border: #00B9BF solid 1px;
}
.hotelP4 .lunbo .swiper-pagination-bullet-active {
  opacity: 1;
  background: #00B9BF;
}
.hotelP5 {
  padding: 0.8rem 0 0.94rem;
  position: relative;
  overflow: hidden;
  z-index: 4;
  background: #00B9BF url(../img/hotelP5.jpg) center no-repeat;
  background-size: cover;
  /*border-radius: 0.9rem;*/
}
.hotelP5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hotelP5 .title {
  position: relative;
  z-index: 2;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #fff;
  font-weight: 600;
}
.hotelP5 .zi {
  position: relative;
  z-index: 2;
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #fff;
  font-weight: 300;
  margin: 0.1rem 0 0.5rem;
}
.hotelP5-2::after {
  display: none;
}
.hotelP5-3 {
  margin-top: -0.9rem;
  padding: 2.24rem 0 0.94rem;
  background: #00B9BF url(../img/hotelP5-3.jpg) center no-repeat;
  /*border-radius: 0 0 0.9rem 0.9rem;*/
}
.parlancePic {
  position: relative;
  z-index: 2;
  padding-bottom: 1.55rem;
}
.parlancePic .imgList {
  width: 20.4rem;
  overflow: hidden;
  position: static;
}
.parlancePic .swiper-slide {
  width: auto;
}
.parlancePic .swiper-slide .box {
  border-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(25px);
  width: 6rem;
  height: 4rem;
  padding: 0.4rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.parlancePic .swiper-slide .box .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: #00B9BF solid 1px;
  overflow: hidden;
}
.parlancePic .swiper-slide .box .ico img {
  width: 100%;
}
.parlancePic .swiper-slide .box .content {
  margin-top: 0.15rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  padding-right: 5px;
  height: 1.5rem;
  overflow: auto;
  color: #fff;
  /*text-align: justify;*/
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.parlancePic .swiper-slide .box .content::-webkit-scrollbar {
  width: 3px;
}
.parlancePic .swiper-slide .box .content::-webkit-scrollbar-track {
  background-color: #eee;
}
.parlancePic .swiper-slide .box .content::-webkit-scrollbar-thumb {
  background-color: #00B9BF;
}
.parlancePic .swiper-slide .box .name {
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0.4rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  text-align: right;
  color: #fff;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.parlancePic .swiper-slide .box:hover {
  background: #fff;
}
.parlancePic .swiper-slide .box:hover .content {
  color: #666;
}
.parlancePic .swiper-slide .box:hover .name {
  color: #00B9BF;
}
.parlancePic .pjDiv {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  bottom: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.parlancePic .arrowDiv .se {
  position: relative;
  float: left;
  display: block;
  overflow: hidden;
  width: 0.8rem;
  height: 0.8rem;
  border: #00B9BF solid 2px;
  border-radius: 50%;
}
.parlancePic .arrowDiv .se:hover {
  background: #00B9BF;
}
.parlancePic .arrowDiv .prev {
  margin-right: 0.26rem;
}
.parlancePic .arrowDiv .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.05rem;
  width: 0.1rem;
  height: 0.18rem;
  margin-top: -0.09rem;
  background: url(../img/nimg10_left.png) no-repeat;
  background-size: 0.1rem;
}
.parlancePic .arrowDiv .prev:hover::before {
  background: url(../img/nimg10_lefton.png) no-repeat;
  background-size: 0.1rem;
}
.parlancePic .arrowDiv .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -0.05rem;
  width: 0.1rem;
  height: 0.18rem;
  margin-top: -0.09rem;
  background: url(../img/nimg10_right.png) no-repeat;
  background-size: 0.1rem;
}
.parlancePic .arrowDiv .next:hover::before {
  background: url(../img/nimg10_righton.png) no-repeat;
  background-size: 0.1rem;
}
.hotelP6 {
  margin-top: -0.9rem;
  padding: 1.8rem 0 2rem;
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: #00B9BF;
  border-radius: 0 0 0.9rem 0.9rem;
}
.hotelP6 .title {
  text-align: center;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #fff;
  font-weight: 600;
}
.hotelP6 .zi {
  text-align: center;
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #fff;
  font-weight: 300;
  margin: 0.1rem 0 0.86rem;
}
.hotelP6-2 {
  border-radius: 0;
}
.partnerPic {
  width: 100%;
  padding: 0.1rem 0;
  overflow: hidden;
}
.partnerPic li {
  float: left;
  padding: 0 0.1rem;
}
.partnerPic li .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.88rem;
  height: 0.94rem;
  overflow: hidden;
  border-radius: 0.1rem;
  background: #fff;
  border: solid 2px transparent;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.partnerPic li .limg img {
  max-width: 1.5rem;
  max-height: 0.64rem;
  transition: All 1s ease;
}
.partnerPic li .limg:hover {
  border: #1E237F solid 2px;
}
.partnerPic li .limg:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
@media (max-width: 1600px) {
  .parlancePic .pjDiv {
    margin-right: -8rem;
  }
}
@media (max-width: 1004px) {
  .hotelP1 {
    padding: 1rem 0 1.2rem;
  }
  .hotelP1 .numlist ul {
    flex-flow: wrap;
  }
  .hotelP1 .numlist li {
    width: 50%;
    margin-top: 0.5rem;
  }
  .hotelP1 .numlist li:nth-child(-n+2) {
    margin-top: 0;
  }
  .hotelP1 .numlist li .num {
    font-size: var(--fs20);
  }
  .hotelP1 .numlist li .num em {
    font-size: var(--fs28);
    line-height: 0.72rem;
  }
  .hotelP1 .numlist li .zi {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .hotelP2 {
    padding: 0.2rem 0 0.74rem;
    background: url(../img/hotelP2.png) left bottom no-repeat;
    background-size: 5.85rem;
  }
  .hotelP2 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .hotelP2 .mxfDiv {
    display: block;
  }
  .hotelP2 .conDiv {
    margin-top: 0.6rem;
    width: 100%;
  }
  .hotelP2 .conDiv .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .hotelP2 .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .hotelP2 .imgDiv {
    width: 100%;
  }
  .hotelP3 {
    padding: 0.68rem 0 0.9rem;
  }
  .hotelP3 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .hotelP3 .mxfDiv {
    display: block;
  }
  .hotelP3 .conDiv {
    margin-top: 0.6rem;
    width: auto;
  }
  .hotelP3 .conDiv .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .hotelP3 .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .hotelP3 .imgDiv {
    margin-top: 0.6rem;
    width: 100%;
  }
  .hotelP4 {
    padding: 0.9rem 0 1.2rem;
  }
  .hotelP4 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .hotelP4 .zi {
    font-size: var(--fs24);
    line-height: 0.6rem;
    margin-bottom: 0.5rem;
  }
  .hotelP4 .lunbo {
    overflow: visible;
  }
  .hotelP4 .lunbo .imgList {
    padding: 0 0 0.4rem;
    overflow: hidden;
  }
  .hotelP4 .lunbo .swiper-slide {
    width: 100%;
    min-height: 4rem;
  }
  .hotelP4 .lunbo .swiper-slide .imgDiv {
    height: 2.4rem;
  }
  .hotelP4 .lunbo .swiper-slide .name {
    margin: 0.4rem 0 0.1rem;
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .hotelP4 .lunbo .swiper-slide .msg {
    width: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .hotelP4 .lunbo .swiper-slide .more {
    margin-top: 0.3rem;
    display: flex;
  }
  .hotelP4 .lunbo .swiper-slide .more a {
    min-width: 2.36rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .hotelP4 .lunbo .swiper-slide .more a em {
    width: 0.2rem;
    height: 0.18rem;
    background-size: 0.2rem;
  }
  .hotelP4 .lunbo .swiper-slide-active {
    box-shadow: none;
  }
  .hotelP4 .lunbo .swiper-pagination {
    display: block;
  }
  .hotelP5 {
    border-radius: 0.64rem;
  }
  .hotelP5 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .hotelP5 .zi {
    font-size: var(--fs16);
    line-height: 0.64rem;
    margin: 0.1rem 0 0.65rem;
  }
  .hotelP5-3 {
    margin-top: -0.8rem;
    padding: 1.6rem 0 0.94rem;
    border-radius: 0;
  }
  .parlancePic .imgList {
    width: 100%;
  }
  .parlancePic .swiper-slide {
    width: 100%;
  }
  .parlancePic .swiper-slide .box {
    border-radius: 0.24rem;
    width: 100%;
    height: 6.6rem;
    padding: 0.4rem 0.3rem;
  }
  .parlancePic .swiper-slide .box .ico {
    width: 1.4rem;
    height: 1.4rem;
  }
  .parlancePic .swiper-slide .box .content {
    margin-top: 0.25rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 2.88rem;
  }
  .parlancePic .swiper-slide .box .name {
    left: 0.3rem;
    right: 0.3rem;
    bottom: 0.5rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .parlancePic .pjDiv {
    right: 0;
    margin-right: 0;
  }
  .parlancePic .arrowDiv .se {
    width: 0.96rem;
    height: 0.96rem;
    border: #00B9BF solid 1px;
  }
  .parlancePic .arrowDiv .prev {
    margin-right: 0.3rem;
  }
  .hotelP6 {
    padding: 1.8rem 0 1.2rem;
    border-radius: 0 0 0.64rem 0.64rem;
  }
  .hotelP6 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .hotelP6 .zi {
    font-size: var(--fs17);
    line-height: 0.64rem;
    margin: 0.1rem var(--offset) 0.65rem;
  }
  .hotelP6-2 {
    border-radius: 0;
  }
  .partnerPic li .limg {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 2.16rem;
    height: 1.1rem;
    border-radius: 0.16rem;
  }
  .partnerPic li .limg img {
    max-width: 2rem;
    max-height: 0.9rem;
  }
}
.portalP1 {
  position: relative;
  margin-top: -0.4rem;
  background: url(../img/bg2.png) repeat-x;
  padding: 1.5rem 0 1.2rem;
}
.portalP1 .title {
  position: relative;
  z-index: 1;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
}
.portalP1 .list {
  position: relative;
  z-index: 1;
}
.portalP1 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.portalP1 .list li {
  position: relative;
  width: calc((100% - 0.48rem) / 3);
  margin-right: 0.24rem;
  min-height: 5rem;
  padding: 0.7rem 0.5rem 0.4rem;
  border-radius: 0.3rem;
  background: rgba(249, 249, 251, 0.79);
  box-shadow: 2px 10px 30px 0 rgba(0, 185, 191, 0.1);
  backdrop-filter: blur(15px);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.portalP1 .list li::after {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0.1rem;
  top: 0.2rem;
  width: 3.47rem;
  height: 4.05rem;
  background: url(../img/nimg347Bg.png) no-repeat;
  background-size: 3.47rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.portalP1 .list li:nth-child(3n) {
  margin-right: 0;
}
.portalP1 .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: #00B9BF solid 2px;
}
.portalP1 .list li .ico img {
  max-width: 0.48rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.portalP1 .list li .num {
  margin-top: 1.45rem;
  line-height: 0.76rem;
  color: #333;
  font-weight: 600;
  font-size: 0.64rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.portalP1 .list li .unit {
  margin-top: 0.15rem;
  font-size: var(--fs30);
  line-height: 0.4rem;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.portalP1 .list li:hover {
  background: #00B9BF;
}
.portalP1 .list li:hover::after {
  opacity: 1;
  visibility: visible;
}
.portalP1 .list li:hover .ico {
  border: #fff solid 2px;
}
.portalP1 .list li:hover .ico img {
  filter: brightness(0) invert(1);
}
.portalP1 .list li:hover .num,
.portalP1 .list li:hover .unit {
  color: #fff;
}
.portalP1 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.portalP1 .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #fff;
  border: #ddd solid 1px;
}
.portalP1 .swiper-pagination-bullet-active {
  background: #00B9BF;
  border: #00B9BF solid 1px;
}
.portalP2 {
  padding-bottom: 1.2rem;
}
.portalP2 .title {
  position: relative;
  z-index: 1;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.portalP2 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.portalP2 .imgDiv {
  width: 50%;
  border-radius: 0.3rem;
  overflow: hidden;
}
.portalP2 .imgDiv img {
  width: 100%;
}
.portalP2 .list {
  width: 6.3rem;
}
.portalP2 .list li {
  padding-bottom: 0.7rem;
}
.portalP2 .list li:last-child {
  padding-bottom: 0;
}
.portalP2 .list li .num {
  color: #1E237F;
  font-size: 0.64rem;
  line-height: 0.72rem;
  font-weight: 600;
}
.portalP2 .list li .zi {
  font-size: var(--fs36);
  line-height: 0.72rem;
  color: #333;
}
.portalP3 {
  padding-bottom: 1rem;
  overflow: hidden;
}
.portalP3 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.portalP3 .pjDiv {
  position: relative;
  margin-top: 1rem;
  min-height: 5rem;
}
.portalP3 .midImg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  top: 0;
  width: 5rem;
  height: 5rem;
  margin-left: -2.5rem;
}
.portalP3 .midImg img {
  max-width: 5rem;
}
.portalP3 .lie {
  padding-top: 0.2rem;
}
.portalP3 .lie ul {
  margin-bottom: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  justify-content: space-between;
}
.portalP3 .lie li {
  position: relative;
  width: calc((100% - 5rem) / 2);
  margin-right: 5rem;
  min-height: 3.2rem;
  padding-bottom: 0.4rem;
}
.portalP3 .lie li:nth-child(2n) {
  margin-right: 0;
}
.portalP3 .lie li .name {
  font-size: var(--fs36);
  line-height: 0.54rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #333;
}
.portalP3 .lie li .msg {
  font-size: var(--fs22);
  line-height: 0.3rem;
  font-weight: 400;
}
.portalP3 .lie li:nth-child(even) {
  text-align: right;
}
.portalP3 .lie li:nth-child(3),
.portalP3 .lie li:nth-child(4) {
  min-height: 1.2rem;
  padding-bottom: 0;
}
.portalP4 {
  padding: 1.35rem 0 0.84rem;
  overflow: hidden;
}
.portalP4 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.portalP4 .mxfDiv {
  position: relative;
}
.portalP4 .mxfDiv .bg img {
  width: 100%;
}
.portalP4 .mxfDiv .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3rem;
  margin-left: -1.5rem;
  margin-top: -0.84rem;
}
.portalP4 .mxfDiv .logo img {
  width: 3rem;
}
.portalP4 .mxfDiv .list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: absolute;
  z-index: 1;
}
.portalP4 .mxfDiv .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.04rem;
  height: 1.04rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #83FAF7 29.81%, #EDFFFF 100%);
}
.portalP4 .mxfDiv .list li .ico img {
  max-width: 0.84rem;
}
.portalP4 .mxfDiv .list li .zi {
  display: inline-block;
  padding: 0.22rem 0.5rem;
  font-size: var(--fs16);
  color: #333;
  font-weight: 600;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.08);
}
.portalP4 .mxfDiv .list li:nth-child(1) {
  left: 10%;
  top: 11%;
}
.portalP4 .mxfDiv .list li:nth-child(1) .zi {
	width:3.88rem;
  margin-right: 0.18rem;
}
.portalP4 .mxfDiv .list li:nth-child(1) .ico {
  order: 1;
}
.portalP4 .mxfDiv .list li:nth-child(2) {
  left: 20.5%;
  top: 26%;
}
.portalP4 .mxfDiv .list li:nth-child(2) .zi {
	width:3.0rem;
  margin-right: 0.18rem;
}
.portalP4 .mxfDiv .list li:nth-child(2) .ico {
  order: 1;
}
.portalP4 .mxfDiv .list li:nth-child(3) {
  left: 9.5%;
  top: 50%;
}
.portalP4 .mxfDiv .list li:nth-child(3) .zi {
	padding: 0.22rem 0.35rem;
	width:3.54rem;
  margin-right: 0.18rem;
}
.portalP4 .mxfDiv .list li:nth-child(3) .ico {
  order: 1;
}
.portalP4 .mxfDiv .list li:nth-child(4) {
  right: 14%;
  top: 7%;
}
.portalP4 .mxfDiv .list li:nth-child(4) .zi {
  margin-left: 0.18rem;
  width:3.24rem;
}
.portalP4 .mxfDiv .list li:nth-child(5) {
  right: 10%;
  top: 52%;
}
.portalP4 .mxfDiv .list li:nth-child(5) .zi {
  margin-left: 0.18rem;
  width:3.24rem;
}
.portalP4 .mxfDiv .list li:nth-child(6) {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  right: 17.5%;
  top: 62%;
}
.portalP4 .mxfDiv .list li:nth-child(6) .zi {
	width:3.84rem;
  margin-top: 1.2rem;
  margin-left: -0.58rem;
}
.portalP5 {
  padding-top: 0.3rem;
  min-height: 9.85rem;
  position: relative;
  background: url(../img/portalP5.jpg) center no-repeat;
  background-size: cover;
}
.portalP5 .title {
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 100%;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.portalP5 .midImg {
  text-align: center;
}
.portalP5 .midImg img {
  width: 7.19rem;
}
.portalP5 .list li {
  position: absolute;
  font-size: var(--fs32);
  line-height: 0.64rem;
  color: #1E237F;
  font-weight: 300;
  z-index: 2;
  opacity: 0;
  /* 呼吸动画 */
  animation: breath 3s ease-in-out infinite;
  transform-origin: center center;
}
.portalP5 .list li:nth-child(1) {
  left: 13.8%;
  top: 35.5%;
  animation-delay: 0s;
}
.portalP5 .list li:nth-child(2) {
  left: 12%;
  top: 54%;
  animation-delay: 0.6s;
}
.portalP5 .list li:nth-child(3) {
  right: 20.8%;
  top: 40%;
  animation-delay: 1.2s;
}
.portalP5 .list li:nth-child(4) {
  right: 12.7%;
  top: 61%;
  animation-delay: 1.8s;
}
.portalP6 {
  padding: 0.5rem 0 1.2rem;
  overflow: hidden;
}
.portalP6 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.portalP6 .list {
  margin-top: 0.2rem;
}
.portalP6 .list li {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  padding: 0.24rem 0 0.24rem 1.74rem;
  border-bottom: #D9D9D9 solid 1px;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.portalP6 .list li .name {
  color: #666;
  font-size: var(--fs30);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.portalP6 .list li .ico {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  margin-top: -0.24rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.portalP6 .list li .ico img {
  width: 0.48rem;
}
.portalP6 .list li .msg {
  margin-top: 0.16rem;
  max-height: 0;
  overflow: hidden;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #fff;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.portalP6 .list li .limg {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  right: 1rem;
  bottom: 0;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.portalP6 .list li .limg img {
  width: 2.78rem;
}
.portalP6 .list li:hover {
  border-radius: 0.3rem;
  padding: 0.6rem 0 0.76rem 0.5rem;
  background: #00B9BF;
}
.portalP6 .list li:hover .name {
  font-size: var(--fs36);
  color: #fff;
  line-height: 0.54rem;
}
.portalP6 .list li:hover .ico {
  opacity: 0;
  visibility: hidden;
}
.portalP6 .list li:hover .msg {
  max-height: 2rem;
}
.portalP6 .list li:hover .limg {
  opacity: 1;
  visibility: visible;
  right: 1.8rem;
}
.portalP6 .btnDiv {
  display: flex;
  margin-top: 0.6rem;
  justify-content: center;
}
.portalP6 .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;
  border-radius: 0.45rem;
  padding:0 0.3rem;
  min-width: 1.5rem;
  font-size: var(--fs16);
  height: 0.5rem;
  background: #00B9BF;
  color: #fff;
}
@media (max-width: 1004px) {
  .portalP1 {
    padding: 1.1rem 0 0.9rem;
  }
  .portalP1 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
    margin-bottom: 0.65rem;
  }
  .portalP1 .list {
    overflow: hidden;
  }
  .portalP1 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    min-height: 3.6rem;
    text-align: center;
    padding: 0.6rem 0.2rem 0.4rem;
  }
  .portalP1 .list li::after {
    width: 2.8rem;
    height: 3.27rem;
    background-size: 2.8rem;
  }
  .portalP1 .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .portalP1 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .portalP1 .list li:nth-child(3) {
    width: 100%;
    margin-right: 0;
    margin-top: 0.3rem;
  }
  .portalP1 .list li .ico {
    margin: 0 auto;
    width: 1.2rem;
    height: 1.2rem;
    border: #00B9BF solid 1px;
  }
  .portalP1 .list li .ico img {
    max-width: 0.64rem;
  }
  .portalP1 .list li .num {
    margin-top: 0.35rem;
    line-height: 0.86rem;
    font-size: var(--fs24);
  }
  .portalP1 .list li .unit {
    margin-top: 0.1rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .portalP1 .list li:hover {
    background: #00B9BF;
  }
  .portalP1 .list li:hover .ico {
    border: #fff solid 1px;
  }
  .portalP2 {
    padding: 1rem 0 0.9rem;
  }
  .portalP2 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
    margin-bottom: 0.65rem;
  }
  .portalP2 .imgDiv {
    width: 50%;
  }
  .portalP2 .list {
    width: 45%;
  }
  .portalP2 .list::after {
    content: '';
    display: block;
    clear: both;
  }
  .portalP2 .list li {
    padding-bottom: 0.3rem;
  }
  .portalP2 .list li .num {
    font-size: var(--fs26);
    line-height: 0.86rem;
  }
  .portalP2 .list li .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .portalP3 {
    padding-bottom: 0.5rem;
  }
  .portalP3 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .portalP3 .pjDiv {
    margin-top: 0.65rem;
    min-height: 2rem;
  }
  .portalP3 .midImg {
    display: none;
    position: relative;
    left: 0;
    width: 100%;
    height: auto;
    margin-left: 0;
  }
  .portalP3 .midImg img {
    max-width: 40%;
  }
  .portalP3 .lie {
    padding-top: 0;
  }
  .portalP3 .lie ul {
    display: flex;
    flex-wrap: wrap;
  }
  .portalP3 .lie li {
    border: #eee solid 1px;
    border-radius: 0.2rem;
    padding: 0.3rem 0.2rem;
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.3rem;
    min-height: 1rem;
    transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .portalP3 .lie li:nth-child(2n) {
    margin-right: 0;
  }
  .portalP3 .lie li:nth-child(-n+2) {
    margin-top: 0;
  }
  .portalP3 .lie li .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
    color: #333;
    transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .portalP3 .lie li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
    color: #666;
    transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .portalP3 .lie li:nth-child(even) {
    text-align: left;
  }
  .portalP3 .lie li:nth-child(3),
  .portalP3 .lie li:nth-child(4) {
    padding: 0.3rem 0.2rem;
  }
  .portalP3 .lie li:last-child {
    padding: 0.3rem 0.2rem;
  }
  .portalP3 .lie li:hover {
    border: #00B9BF solid 1px;
    background: #00B9BF;
  }
  .portalP3 .lie li:hover .name,
  .portalP3 .lie li:hover .msg {
    color: #fff;
  }
  .portalP4 {
    padding: 0.7rem var(--offset) 0.9rem;
  }
  .portalP4 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
    margin-bottom: 0.7rem;
  }
  .portalP4 .mxfDiv .bg {
    display: none;
  }
  .portalP4 .mxfDiv .logo {
    display: none;
  }
  .portalP4 .mxfDiv .list li {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    position: relative;
    margin-bottom: 0.2rem;
    justify-content: flex-end;
  }
  .portalP4 .mxfDiv .list li:last-child {
    margin-bottom: 0;
  }
  .portalP4 .mxfDiv .list li:nth-child(2n) {
    justify-content: flex-start;
  }
  .portalP4 .mxfDiv .list li .ico {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
  }
  .portalP4 .mxfDiv .list li .ico img {
    max-width: 0.9rem;
  }
  .portalP4 .mxfDiv .list li .zi {
    padding: 0.2rem 0.4rem;
    font-size: var(--fs17);
	width: 70%;
  }
  .portalP4 .mxfDiv .list li:nth-child(1) {
    left: 0;
    top: 0;
  }
  .portalP4 .mxfDiv .list li:nth-child(1) .zi {
    margin-right: 0.18rem;
	width: 70%;
  }
  .portalP4 .mxfDiv .list li:nth-child(1) .ico {
    order: 1;
  }
  .portalP4 .mxfDiv .list li:nth-child(2) {
    left: 0;
    top: 0;
  }
  .portalP4 .mxfDiv .list li:nth-child(2) .zi {
    margin-right: 0;
    margin-left: 0.18rem;
	width: 70%;
  }
  .portalP4 .mxfDiv .list li:nth-child(2) .ico {
    order: 0;
  }
  .portalP4 .mxfDiv .list li:nth-child(3) {
    left: 0;
    top: 0;
  }
  .portalP4 .mxfDiv .list li:nth-child(3) .zi {
	padding: 0.2rem 0.4rem;
    margin-right: 0.18rem;
	width: 70%;
  }
  .portalP4 .mxfDiv .list li:nth-child(3) .ico {
    order: 1;
  }
  .portalP4 .mxfDiv .list li:nth-child(4) {
    right: 0;
    top: 0;
  }
  .portalP4 .mxfDiv .list li:nth-child(4) .zi {
	width: 70%;
  }
  .portalP4 .mxfDiv .list li:nth-child(5) {
    right: 0;
    top: 0;
  }
  .portalP4 .mxfDiv .list li:nth-child(5) .zi {
    margin-left: 0;
    margin-right: 0.18rem;
	width: 70%;
  }
  .portalP4 .mxfDiv .list li:nth-child(5) .ico {
    order: 1;
  }
  .portalP4 .mxfDiv .list li:nth-child(6) {
    align-items: center;
    -webkit-align-items: center;
    right: 0;
    top: 0;
  }
  .portalP4 .mxfDiv .list li:nth-child(6) .zi {
	  width: 70%;
    margin-top: 0;
    margin-left: 0.18rem;
  }
  .portalP5 {
    padding-top: 0.9rem;
    min-height: auto;
    background-size: 100%;
  }
  .portalP5 .title {
    position: relative;
    top: 0;
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .portalP5 .midImg img {
    width: 60%;
  }
  .portalP5 .list li {
    font-size: var(--fs14);
	width:40%;
	line-height:0.48rem;
  }
  .portalP5 .list li:nth-child(1) {
    left: 1%;
  }
  .portalP5 .list li:nth-child(2) {
    left: 4%;
	width:32%;
  }
  .portalP5 .list li:nth-child(3) {
    right: 2%;
	width:30%;
  }
  .portalP5 .list li:nth-child(4) {
    right: 0;
	width:32%;
  }
  .portalP6 {
    padding: 0.85rem 0 1rem;
  }
  .portalP6 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
    margin-bottom: 0.65rem;
  }
  .portalP6 .list li {
    padding: 0.24rem 0 0.24rem 1.4rem;
  }
  .portalP6 .list li .name {
    font-size: var(--fs18);
    line-height: 0.54rem;
  }
  .portalP6 .list li .ico {
    left: 0.3rem;
    margin-top: -0.4rem;
  }
  .portalP6 .list li .ico img {
    width: 0.8rem;
  }
  .portalP6 .list li .msg {
    margin-top: 0.2rem;
    max-height: 100%;
    font-size: var(--fs15);
    line-height: 0.48rem;
    color: #666;
  }
  .portalP6 .list li .limg {
    display: none;
  }
  .portalP6 .list li:hover {
    border-radius: 0;
    padding: 0.24rem 0 0.24rem 1.4rem;
    background: #fff;
  }
  .portalP6 .list li:hover .name {
    color: #666;
    font-size: var(--fs18);
  }
  .portalP6 .list li:hover .ico {
    opacity: 1;
    visibility: visible;
  }
  .portalP6 .list li:hover .msg {
    max-height: 100%;
  }
  .portalP6 .btnDiv a {
    min-width: 2.4rem;
    font-size: var(--fs14);
    height: 0.82rem;
  }
}
.reportP1 {
  padding: 1.1rem 0;
}
.reportP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.reportP1 .conDiv {
  width: 41.2%;
}
.reportP1 .conDiv .title {
  color: #333;
  font-size: var(--fs52);
  line-height: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.reportP1 .conDiv .content {
  font-size: var(--fs18);
  line-height: 0.34rem;
  /*text-align: justify;*/
}
.reportP1 .videobox {
  width: 7.9rem;
  height: 5rem;
  position: relative;
  border-radius: 0.2rem;
  overflow: hidden;
}
.reportP1 .videobox .imgDiv {
  position: relative;
  height: 5rem;
}
.reportP1 .videobox .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 35, 127, 0.1);
}
.reportP1 .videobox .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reportP1 .videobox video {
  max-width: 100%;
  max-height: 5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  object-fit: cover;
}
.reportP1 .videobox .playbox {
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  margin-left: -0.35rem;
  margin-top: -0.35rem;
  z-index: 1;
}
.reportP1 .videobox .playbox img {
  width: 100%;
}
.reportP1 .videobox.cur {
  background: #000;
}
.reportP1 .videobox.cur .imgDiv,
.reportP1 .videobox.cur .playbox {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.reportP1 .videobox.cur video {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.reportP2 {
  position: relative;
  overflow: hidden;
  padding: 0.8rem 0 1.2rem;
  background: url(../img/hotelP4.png) center bottom no-repeat;
  background-size: 100%;
}
.reportP2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(192deg, rgba(255, 255, 255, 0.8) 34.27%, rgba(255, 255, 255, 0) 64.32%);
  z-index: 1;
}
.reportP2::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(33deg, rgba(255, 255, 255, 0.8) 7.76%, rgba(255, 255, 255, 0) 48.93%);
  z-index: 1;
}
.reportP2 .title {
  position: relative;
  z-index: 2;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.reportP2 .zi {
  position: relative;
  z-index: 2;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 300;
  margin-bottom: 0.1rem;
}
.reportP2 .lunbo {
  z-index: 2;
  position: relative;
  overflow: hidden;
}
.reportP2 .lunbo .imgList {
  overflow: hidden;
  padding: 0.4rem 0;
}
.reportP2 .lunbo .swiper-wrapper {
  pointer-events: none;
}
.reportP2 .lunbo .swiper-slide {
  pointer-events: auto;
  width: 6rem;
  min-height: 5.2rem;
  border-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.3rem;
  z-index: 2;
  transition: all 0.45s ease;
}
.reportP2 .lunbo .swiper-slide .imgDiv {
  height: 2.32rem;
  border-radius: 0.3rem;
  overflow: hidden;
}
.reportP2 .lunbo .swiper-slide .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reportP2 .lunbo .swiper-slide .name {
  overflow: hidden;
  margin: 0.3rem 0 0.1rem;
  text-align: center;
  color: #333;
  font-size: var(--fs18);
  line-height: 0.4rem;
  min-height: 0.8rem;
  font-weight: 400;
}
.reportP2 .lunbo .swiper-slide .name em {
  display: block;
  font-size: var(--fs24);
  margin-bottom: 0.1rem;
}
.reportP2 .lunbo .swiper-slide .msg {
  overflow: hidden;
  margin: 0 auto;
  font-size: var(--fs17);
  line-height: 0.3rem;
  max-height: 0;
  text-align: center;
}
.reportP2 .lunbo .swiper-slide .more {
  margin-top: 0.3rem;
  display: none;
}
.reportP2 .lunbo .swiper-slide .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  padding:0 0.2rem;
  min-width: 1.56rem;
  height: 0.5rem;
  border-radius: 0.45rem;
  background: #00B9BF;
  color: #fff;
  font-size: var(--fs16);
}
.reportP2 .lunbo .swiper-slide .more a em {
  margin-left: 0.1rem;
  width: 0.14rem;
  height: 0.12rem;
  background: url(../img/ico2.png) no-repeat;
  background-size: 0.14rem;
}
.reportP2 .lunbo .swiper-slide-active {
  box-shadow: 0 0.2rem 0.3rem 0 rgba(0, 0, 0, 0.1);
}
.reportP2 .lunbo .swiper-slide-active .baozhe .name {
  font-weight: 600;
  font-size: var(--fs24);
}
.reportP2 .lunbo .swiper-slide-active .baozhe .name em {
  font-size: var(--fs32);
}
.reportP2 .lunbo .swiper-slide-active .baozhe .msg {
  max-height: 1.5rem;
}
.reportP2 .lunbo .swiper-slide-active .baozhe .more {
  display: flex;
  justify-content: center;
}
.reportP2 .lunbo .swiper-pagination {
  position: relative;
  bottom: 0;
  padding-top: 0.2rem;
}
.reportP2 .lunbo .swiper-pagination-bullet {
  opacity: 0.5;
  width: 14px;
  height: 14px;
  margin: 0 7px!important;
  background: #fff;
  border: #00B9BF solid 1px;
}
.reportP2 .lunbo .swiper-pagination-bullet-active {
  opacity: 1;
  background: #00B9BF;
}
.reportP3 {
  padding: 1rem 0 2rem;
}
.reportP3 .title {
  position: relative;
  z-index: 2;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.reportP3 .zjMxf {
  position: relative;
  z-index: 1;
}
.reportP3 .zjMxf ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.reportP3 .zjMxf li {
  margin: 0 0.2rem;
}
.reportP3 .zjMxf li .box {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.reportP3 .zjMxf li .zi {
  font-size: var(--fs18);
  color: #333;
  line-height: 0.6rem;
  font-weight: 600;
  margin-right: 0.2rem;
}
.reportP3 .zjMxf li .select {
  width: 3.6rem;
  position: relative;
}
.reportP3 .zjMxf li .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.2rem;
  font-size: var(--fs18);
  color: #666;
  border-radius: 0.1rem;
  background: #fff;
  border: #D9D9D9 solid 1px;
  overflow: hidden;
}
.reportP3 .zjMxf li .select .caption::after {
  content: "";
  display: block;
  width: 18px;
  height: 11px;
  background: url(../img/selectIco.svg) no-repeat right center;
  background-size: 18px;
  position: absolute;
  right: 0.2rem;
  top: 50%;
  margin-top: -5px;
  z-index: 1;
}
.reportP3 .zjMxf li .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  z-index: 4;
  background: #fff;
  max-height: 2rem;
  overflow-y: auto;
  display: none;
  border: 1px solid #d9d9d9;
  border-radius: 0.1rem;
}
.reportP3 .zjMxf li .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.reportP3 .zjMxf li .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.reportP3 .zjMxf li .select .xlist::-webkit-scrollbar-thumb {
  background-color: #00B9BF;
}
.reportP3 .zjMxf li .select .xlist a {
  display: block;
  font-size: var(--fs18);
  background: #fff;
  color: #666;
  height: 0.5rem;
  line-height: 0.5rem;
  padding: 0 0.2rem;
}
.reportP3 .zjMxf li .select .xlist a:hover {
  color: #00B9BF;
}
.reportP3 .list {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin: 0.75rem 0 2rem;
}
.reportP3 .list a {
  display: block;
  position: relative;
  background: #F4F4F4;
  border-radius: 0.2rem;
  min-height: 3.6rem;
  padding: 0.5rem 0.5rem 1.2rem;
  width: calc((100% - 0.96rem) / 4);
  margin-right: 0.32rem;
  margin-top: 0.4rem;
}
.reportP3 .list a:nth-child(-n+4) {
  margin-top: 0;
}
.reportP3 .list a:nth-child(4n) {
  margin-right: 0;
}
.reportP3 .list a .name {
  font-size: var(--fs24);
  color: #333;
  font-weight: 400;
  line-height: 0.32rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reportP3 .list a .time {
  margin-top: 0.2rem;
  line-height: 0.36rem;
  font-size: var(--fs14);
  color: #999;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reportP3 .list a .icon {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  width: 0.4rem;
  height: 0.4rem;
  background: url(../img/nimg40_1.png) no-repeat;
  background-size: 0.4rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reportP3 .list a:hover {
  background: #00B9BF;
}
.reportP3 .list a:hover .name,
.reportP3 .list a:hover .time {
  color: #fff;
}
.reportP3 .list a:hover .icon {
  filter: brightness(0) invert(1);
}
.reportP3 .list2 {
  margin: 0.75rem 0 1.35rem;
}
.reportP3 .list2 ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin: 0;
}
.reportP3 .list2 li {
  width: calc((100% - 0.96rem) / 3);
  margin-right: 0.48rem;
  margin-top: 0.8rem;
}
.reportP3 .list2 li:nth-child(-n+3) {
  margin-top: 0;
}
.reportP3 .list2 li:nth-child(3n) {
  margin-right: 0;
}
.reportP3 .list2 li .imgDiv {
  border-radius: 0.15rem;
  overflow: hidden;
  height: 3rem;
}
.reportP3 .list2 li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reportP3 .list2 li .time {
  margin-top: 0.3rem;
  line-height: 0.26rem;
  font-size: var(--fs16);
  color: #999;
}
.reportP3 .list2 li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.1rem;
  font-size: var(--fs30);
  color: #333;
  font-weight: 400;
  line-height: 0.4rem;
  min-height: 1.2rem;
}
.reportP3 .list2 li .icon {
  margin-top: 0.35rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: 1px solid rgba(30, 35, 127, 0.5);
  background: url(../img/ico3.png) center no-repeat;
  background-size: 0.14rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reportP3 .list2 li:hover .imgDiv img {
  transform: scale(1.1);
}
.reportP3 .list2 li:hover .icon {
  border: 1px solid #1E237F;
  background: #1E237F url(../img/ico3on.png) center no-repeat;
  background-size: 0.14rem;
}
@media (max-width: 1004px) {
  .reportP1 {
    padding: 1rem 0 0.5rem;
  }
  .reportP1 .mxfDiv {
    display: block;
  }
  .reportP1 .conDiv {
    width: auto;
    margin-bottom: 0.6rem;
  }
  .reportP1 .conDiv .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .reportP1 .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .reportP1 .videobox {
    width: 100%;
    height: 100%;
  }
  .reportP1 .videobox .imgDiv {
    height: 100%;
  }
  .reportP1 .videobox video {
    max-height: 3.5rem;
  }
  .reportP1 .videobox .playbox {
    width: 1rem;
    height: 1rem;
    margin-left: -0.5rem;
    margin-top: -0.5rem;
  }
  .reportP2 {
    background: url(../img/hotelP4.png) center no-repeat;
    background-size: 100%;
    padding: 0.9rem 0;
  }
  .reportP2 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .reportP2 .zi {
    font-size: var(--fs22);
    line-height: 0.6rem;
    margin-bottom: 0.5rem;
  }
  .reportP2 .lunbo {
    overflow: visible;
  }
  .reportP2 .lunbo .imgList {
    padding: 0 0 0.4rem;
    overflow: hidden;
  }
  .reportP2 .lunbo .swiper-slide {
    width: 100%;
    min-height: 4rem;
  }
  .reportP2 .lunbo .swiper-slide .imgDiv {
    height: 2.4rem;
  }
  .reportP2 .lunbo .swiper-slide .name {
    margin: 0.4rem 0 0.1rem;
    font-size: var(--fs18);
    line-height: 0.64rem;
    max-height: 1.28rem;
  }
  .reportP2 .lunbo .swiper-slide .name em {
    font-size: var(--fs24);
  }
  .reportP2 .lunbo .swiper-slide .msg {
    width: auto;
    font-size: var(--fs12);
    line-height: 0.42rem;
    max-height: 2.52rem;
  }
  .reportP2 .lunbo .swiper-slide .more {
    margin-top: 0.3rem;
    display: flex;
  }
  .reportP2 .lunbo .swiper-slide .more a {
    min-width: 2.36rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .reportP2 .lunbo .swiper-slide .more a em {
    width: 0.2rem;
    height: 0.18rem;
    background-size: 0.2rem;
  }
  .reportP2 .lunbo .swiper-slide-active {
    box-shadow: none;
  }
  .reportP2 .lunbo .swiper-slide-active .baozhe .name {
    font-size: var(--fs14);
  }
  .reportP2 .lunbo .swiper-slide-active .baozhe .name em {
    font-size: var(--fs24);
  }
  .reportP2 .lunbo .swiper-slide-active .baozhe .msg {
    max-height: 2.52rem;
  }
  .reportP3 {
    padding: 0.9rem 0 1.2rem;
  }
  .reportP3 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
    margin-bottom: 0.6rem;
  }
  .reportP3 .zjMxf ul {
    display: block;
  }
  .reportP3 .zjMxf li {
    margin: 0 0 0.35rem;
  }
  .reportP3 .zjMxf li .box {
    display: block;
  }
  .reportP3 .zjMxf li .zi {
    font-size: var(--fs15);
    line-height: 0.64rem;
    margin-right: 0;
    margin-bottom: 0.15rem;
  }
  .reportP3 .zjMxf li .select {
    width: 100%;
  }
  .reportP3 .zjMxf li .select .caption {
    padding-left: 0.3rem;
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs14);
  }
  .reportP3 .zjMxf li .select .caption::after {
    width: 14px;
    height: 8px;
    background-size: 14px;
    margin-top: -4px;
  }
  .reportP3 .zjMxf li .select .xlist {
    max-height: 3.44rem;
  }
  .reportP3 .zjMxf li .select .xlist a {
    font-size: var(--fs14);
    height: 0.86rem;
    line-height: 0.86rem;
    padding: 0 0.3rem;
  }
  .reportP3 .list {
    margin: 0.6rem 0 0.8rem;
  }
  .reportP3 .list a {
    padding: 0.4rem 0.3rem 1.2rem;
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.3rem;
  }
  .reportP3 .list a:nth-child(-n+2) {
    margin-top: 0;
  }
  .reportP3 .list a:nth-child(3),
  .reportP3 .list a:nth-child(4) {
    margin-top: 0.3rem;
  }
  .reportP3 .list a:nth-child(4n) {
    margin-right: 0.2rem;
  }
  .reportP3 .list a:nth-child(2n) {
    margin-right: 0;
  }
  .reportP3 .list a .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .reportP3 .list a .icon {
    left: 0.3rem;
    bottom: 0.4rem;
  }
  .reportP3 .list2 {
    margin: 0.6rem 0 0.8rem;
  }
  .reportP3 .list2 li {
    width: auto;
    margin-right: 0;
    margin-top: 0.6rem;
  }
  .reportP3 .list2 li:nth-child(1) {
    margin-top: 0;
  }
  .reportP3 .list2 li:nth-child(2),
  .reportP3 .list2 li:nth-child(3) {
    margin-top: 0.4rem;
  }
  .reportP3 .list2 li .imgDiv {
    border-radius: 0.2rem;
    height: 4rem;
  }
  .reportP3 .list2 li .time {
    line-height: 0.42rem;
    font-size: var(--fs15);
  }
  .reportP3 .list2 li .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
    min-height: 1.44rem;
  }
  .reportP3 .list2 li .icon {
    margin-top: 0.2rem;
    width: 0.9rem;
    height: 0.9rem;
    background-size: 0.2rem;
  }
  .reportP3 .list2 li:hover .icon {
    background-size: 0.2rem;
  }
}
.newsP1 {
  padding: 1rem 0 0.8rem;
}
.newsP1 .toptop {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.newsP1 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  font-weight: 600;
}
.newsP1 .select {
  width: 1.44rem;
  position: relative;
}
.newsP1 .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.5rem;
  line-height: 0.5rem;
  padding-left: 0.3rem;
  font-size: var(--fs16);
  color: #999;
  background: #f4f4f4;
  border-radius: 0.48rem;
}
.newsP1 .select .caption::after {
  content: "";
  display: block;
  width: 12px;
  height: 10px;
  background: url(../img/selectIco2.png) no-repeat right center;
  background-size: contain;
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -5px;
  z-index: 1;
  transition: All 0.5s ease;
}
.newsP1 .select .on::after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.newsP1 .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  z-index: 4;
  background: #fff;
  max-height: 2rem;
  overflow-y: auto;
  display: none;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
.newsP1 .select .xlist::-webkit-scrollbar {
  height: 3px;
}
.newsP1 .select .xlist::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}
.newsP1 .select .xlist::-webkit-scrollbar-thumb {
  background-color: #00B9BF;
}
.newsP1 .select .xlist a {
  display: block;
  font-size: var(--fs16);
  background: #fff;
  color: #999;
  height: 0.4rem;
  line-height: 0.4rem;
  padding: 0 0.3rem;
  border-bottom: 1px solid #dadada;
}
.newsP1 .select .xlist a:last-child {
  border-bottom: none;
}
.newsP1 .select .xlist a:hover {
  color: #00B9BF;
}
.newsP1 .form {
  margin-left: 0.3rem;
  width: 3.52rem;
  height: 0.5rem;
  background: #f4f4f4;
  position: relative;
  border-radius: 0.48rem;
  overflow: hidden;
}
.newsP1 .form .input1 {
  width: 100%;
  padding-left: 0.25rem;
  font-size: var(--fs16);
  color: #999;
  height: 0.5rem;
  background: #f4f4f4;
  line-height: 0.5rem;
  font-family: 'Poppins-R';
}
.newsP1 .form .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.newsP1 .form .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.newsP1 .form .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.newsP1 .form .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.newsP1 .form .btn1 {
  position: absolute;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #00B9BF url(../img/search.svg) center no-repeat;
  background-size: 0.24rem;
  z-index: 1;
  cursor: pointer;
}
.newsP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.newsP1 .detail {
  width: calc((100% - 0.5rem) / 2);
  margin-right: 0.5rem;
}
.newsP1 .detail a {
  display: block;
  border-radius: 0.2rem;
  background: #FFF;
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.newsP1 .detail a .imgDiv {
  position: relative;
  height: 4.7rem;
  overflow: hidden;
}
.newsP1 .detail a .imgDiv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.newsP1 .detail a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.newsP1 .detail a .botDiv {
  height: 1.7rem;
  padding: 0.35rem 0.5rem 0;
}
.newsP1 .detail a .time {
  font-size: var(--fs16);
  color: #999;
  line-height: 0.26rem;
  margin-bottom: 0.1rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.newsP1 .detail a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs24);
  line-height: 0.32rem;
  min-height: 0.64rem;
  color: #333;
  font-weight: 600;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.newsP1 .detail a:hover {
  background: #00B9BF;
}
.newsP1 .detail a:hover .imgDiv::after {
  opacity: 1;
}
.newsP1 .detail a:hover .imgDiv img {
  transform: scale(1.1);
}
.newsP1 .detail a:hover .time,
.newsP1 .detail a:hover .name {
  color: #fff;
}
.newsP1 .list {
  width: calc((100% - 0.5rem) / 2);
  margin-right: 0;
}
.newsP1 .list ul {
  margin: 0;
}
.newsP1 .list li {
  margin-bottom: 0.5rem;
}
.newsP1 .list li:last-child {
  margin-bottom: 0;
}
.newsP1 .list li a {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  padding: 0 3.54rem 0 0.3rem;
  height: 1.8rem;
  background: #F4F4F4;
  border-radius: 0.15rem;
  overflow: hidden;
}
.newsP1 .list li a .imgDiv {
  position: absolute;
  right: 0;
  top: 0;
  width: 2.84rem;
  height: 1.8rem;
  overflow: hidden;
}
.newsP1 .list li a .imgDiv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.newsP1 .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.newsP1 .list li a .time {
  font-size: var(--fs16);
  color: #999;
  line-height: 0.26rem;
  margin-bottom: 0.1rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.newsP1 .list li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #333;
  font-weight: 600;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.newsP1 .list li a:hover {
  background: #00B9BF;
}
.newsP1 .list li a:hover .imgDiv::after {
  opacity: 1;
}
.newsP1 .list li a:hover .imgDiv img {
  transform: scale(1.1);
}
.newsP1 .list li a:hover .time,
.newsP1 .list li a:hover .name {
  color: #fff;
}
.newsP2 {
  padding: 1.2rem 0 1.86rem;
  background: #f9f9f9;
}
.newsP2 .list {
  margin-bottom: 1.2rem;
}
.newsP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin: 0;
}
.newsP2 .list li {
  width: calc((100% - 0.5rem) / 2);
  margin-top: 0.5rem;
  margin-right: 0.5rem;
}
.newsP2 .list li:nth-child(-n+2) {
  margin-top: 0;
}
.newsP2 .list li:nth-child(2n) {
  margin-right: 0;
}
.newsP2 .list li a {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  padding: 0 3.54rem 0 0.3rem;
  height: 1.8rem;
  background: #fff;
  border-radius: 0.15rem;
  overflow: hidden;
}
.newsP2 .list li a .imgDiv {
  position: absolute;
  right: 0;
  top: 0;
  width: 2.84rem;
  height: 1.8rem;
  overflow: hidden;
}
.newsP2 .list li a .imgDiv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.newsP2 .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.newsP2 .list li a .time {
  font-size: var(--fs16);
  color: #999;
  line-height: 0.26rem;
  margin-bottom: 0.1rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.newsP2 .list li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #333;
  font-weight: 600;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.newsP2 .list li a:hover {
  box-shadow: 0 4px 0.2rem 0 rgba(0, 0, 0, 0.1);
}
.newsP2 .list li a:hover .imgDiv::after {
  opacity: 1;
}
.newsP2 .list li a:hover .imgDiv img {
  transform: scale(1.1);
}
.newsP2 .list li a:hover .name {
  color: #00B9BF;
}
@media (max-width: 1004px) {
  .newsP1 {
    padding: 1rem 0 0.8rem;
  }
  .newsP1 .toptop {
    display: block;
    margin-bottom: 0.7rem;
  }
  .newsP1 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.4rem;
  }
  .newsP1 .select {
    width: 100%;
    float: none;
  }
  .newsP1 .select .caption {
    height: 0.96rem;
    padding-left: 0.3rem;
    line-height: 0.96rem;
    font-size: var(--fs14);
  }
  .newsP1 .select .caption::after {
    width: 12px;
    height: 8px;
    background-size: 12px;
    right: 0.3rem;
    margin-top: -4px;
  }
  .newsP1 .select .xlist {
    max-height: 4.8rem;
  }
  .newsP1 .select .xlist a {
    padding: 0 0.3rem;
    font-size: var(--fs14);
    height: 0.96rem;
    line-height: 0.96rem;
  }
  .newsP1 .form {
    float: none;
    margin-top: 0.25rem;
    margin-left: 0;
    width: 100%;
    height: 0.96rem;
  }
  .newsP1 .form .input1 {
    font-size: var(--fs14);
    height: 0.94rem;
    line-height: 0.94rem;
    padding-left: 0.3rem;
  }
  .newsP1 .form .btn1 {
    width: 0.96rem;
    height: 0.96rem;
    background-size: 0.42rem;
  }
  .newsP1 .mxfDiv {
    display: block;
  }
  .newsP1 .detail {
    width: 100%;
    margin-right: 0;
  }
  .newsP1 .detail a .imgDiv {
    height: auto;
  }
  .newsP1 .detail a .imgDiv img {
    height: auto;
  }
  .newsP1 .detail a .botDiv {
    height: auto;
    padding: 0.3rem 0.35rem;
  }
  .newsP1 .detail a .time {
    font-size: var(--fs15);
    line-height: 0.42rem;
  }
  .newsP1 .detail a .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
    min-height: 0.96rem;
  }
  .newsP1 .list {
    margin-top: 0.3rem;
    width: 100%;
    margin-right: 0;
  }
  .newsP1 .list li {
    margin-bottom: 0.3rem;
  }
  .newsP1 .list li a {
    padding: 0 3.24rem 0 0.3rem;
  }
  .newsP1 .list li a .time {
    font-size: var(--fs14);
    line-height: 0.32rem;
  }
  .newsP1 .list li a .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .newsP2 {
    padding: 0.9rem 0 1.2rem;
  }
  .newsP2 .list {
    margin-bottom: 0.8rem;
  }
  .newsP2 .list li {
    width: 100%;
    margin-top: 0.3rem;
    margin-right: 0;
  }
  .newsP2 .list li:nth-child(1) {
    margin-top: 0;
  }
  .newsP2 .list li:nth-child(2) {
    margin-top: 0.3rem;
  }
  .newsP2 .list li a {
    padding: 0 3.24rem 0 0.3rem;
  }
  .newsP2 .list li a .time {
    font-size: var(--fs14);
    line-height: 0.32rem;
  }
  .newsP2 .list li a .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
}
.newsBox {
  padding: 0.72rem 0 1.86rem;
}
.newsBox .pageNow {
  margin-bottom: 0.42rem;
}
.newsBox .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.newsBox .w366 {
  position: sticky;
  top: 1.2rem;
  width: 3.66rem;
}
.newShow {
  width: 10.4rem;
}
.newShow .name {
  margin-bottom: 0.2rem;
  font-size: var(--fs36);
  color: #333;
  font-weight: 600;
  line-height: 0.52rem;
}
.newShow .time {
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.newShow .time li {
  float: left;
  padding-left: 0.28rem;
  margin-right: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #999;
  position: relative;
}
.newShow .time li img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
}
.newShow .content {
  font-size: var(--fs16);
  line-height: 24px;
  color: #666;
}
.newShow .content em {
  color: #1E237F;
}
.newShow .content b {
  color: #1E237F;
  display: block;
  font-size: var(--fs24);
  line-height: 0.3rem;
}
.newShow .imgDiv {
  text-align: center;
}
.newShow .imgDiv img {
  max-width: 100%;
}
.newShow .share {
  display: none;
  margin-top: 0.6rem;
  position: relative;
  padding-left: 0.85rem;
}
.newShow .share em {
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--fs18);
  color: #333;
  line-height: 0.44rem;
  font-family: 'Barlow-B';
}
.newShow .share ul {
  display: flex;
}
.newShow .share li {
  margin-right: 0.3rem;
}
.newShow .share li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  border: #d3d3d3 solid 1px;
}
.newShow .share li a img {
  width: 0.2rem;
}
.newShow .share li a:hover {
  border: #00B9BF solid 1px;
  background: #00B9BF;
}
.newShow .share li a:hover img {
  filter: brightness(0) invert(1);
}
.pageDown {
  padding-top: 0.6rem;
}
.pageDown li a {
  display: block;
  position: relative;
  font-size: var(--fs18);
  padding: 0.25rem 0 0.25rem 1.1rem;
  line-height: 0.24rem;
  border-bottom: #d9d9d9 solid 1px;
}
.pageDown li em {
  position: absolute;
  left: 0;
  top: 0.25rem;
  display: block;
  color: #333;
  font-family: 'Barlow-B';
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.pageDown li p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.32rem;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.pageDown li a:hover {
  border-bottom: #00B9BF solid 1px;
}
.pageDown li a:hover em {
  color: #00B9BF;
}
.pageDown li a:hover p {
  color: #00B9BF;
}
.sideNews .detail a .imgDiv {
  overflow: hidden;
  border-radius: 0.12rem;
}
.sideNews .detail a .imgDiv img {
  width: 100%;
  transition: All 1s ease;
}
.sideNews .detail a .time {
  margin: 0.2rem 0;
  font-size: var(--fs16);
  color: #666;
  line-height: 0.24rem;
}
.sideNews .detail a .name {
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #333;
  font-weight: 600;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.sideNews .detail a .more {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.26rem;
  color: #00B9BF;
}
.sideNews .detail a:hover .name {
  color: #00B9BF;
}
.sideNews .detail a:hover .imgDiv img {
  transform: scale(1.1);
}
.sideNews .title {
  font-size: var(--fs18);
  line-height: 0.42rem;
  color: #333;
}
.sideNews .list {
  margin-top: 0.42rem;
  border-top: #ebebeb solid 1px;
}
.sideNews .list ul {
  margin-bottom: 0;
}
.sideNews .list li {
  font-size: var(--fs16);
  border-bottom: #ebebeb solid 1px;
}
.sideNews .list li a {
  display: block;
  padding: 0.24rem 0;
  color: #333;
  line-height: 0.24rem;
}
.sideNews .list li a:hover {
  color: #00B9BF;
}
.sideNews .backBtn {
  margin-top: 0.3rem;
}
.sideNews .backBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: var(--fs16);
  width: 1.4rem;
  height: 0.5rem;
  border-radius: 0.48rem;
  background: #00B9BF;
  color: #fff;
}
.sideNews .backBtn a em {
  margin-left: 0.1rem;
  width: 0.24rem;
  height: 0.18rem;
  background: url(../img/nimg24_2.png) no-repeat;
  background-size: 0.24rem;
}
@media (max-width: 1004px) {
  .newsBox {
    padding: 0.7rem 0 0.9rem;
  }
  .newsBox .w366 {
    position: relative;
    top: 0;
    width: 100%;
  }
  .newShow {
    float: none;
    width: auto;
  }
  .newShow .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .newShow .time {
    margin: 0.25rem 0 0.5rem;
  }
  .newShow .time li {
    padding-left: 0.36rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .newShow .time li img {
    margin-top: -0.14rem;
    width: 0.3rem;
  }
  .newShow .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .newShow .content b {
    font-size: var(--fs18);
    line-height: 0.6rem;
  }
  .newShow .share {
    padding-left: 0.9rem;
  }
  .newShow .share em {
    font-size: var(--fs14);
    line-height: 0.74rem;
  }
  .newShow .share li {
    margin-right: 0.15rem;
  }
  .newShow .share li a {
    width: 0.74rem;
    height: 0.74rem;
  }
  .newShow .share li a img {
    width: 0.32rem;
  }
  .pageDown li a {
    padding: 0.25rem 0 0.25rem 1.3rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .pageDown li p {
    height: 0.42rem;
  }
  .sideNews {
    padding-top: 0.6rem;
  }
  .sideNews .detail {
    display: none;
  }
  .sideNews .list {
    margin-top: 0.35rem;
  }
  .sideNews .list ul {
    margin-bottom: 0;
  }
  .sideNews .list li {
    font-size: var(--fs14);
  }
  .sideNews .list li a {
    line-height: 0.42rem;
  }
  .sideNews .backBtn {
    margin-top: 0.45rem;
  }
  .sideNews .backBtn a {
    font-size: var(--fs15);
    width: 2.4rem;
    height: 0.82rem;
  }
}
.marketP1 {
  padding-top: 0.6rem;
}
.marketP1 .mxfDiv {
  position: relative;
}
.marketP1 .mxfDiv .imgDiv {
  position: absolute;
  right: 0;
  top: 0;
}
.marketP1 .mxfDiv .imgDiv img {
  width: 8rem;
}
.marketP1 .mxfDiv .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 6rem;
}
.marketP1 .mxfDiv .conDiv .name {
	width:60%;
  font-size: var(--fs32);
  line-height: 0.48rem;
  color: #333;
  font-weight: 600;
}
.marketP1 .mxfDiv .conDiv .content {
  color: #333;
  font-size: var(--fs18);
  line-height: 0.34rem;
  width: 6.54rem;
  margin: 0.4rem 0;
}
.marketP1 .mxfDiv .btnGroup {
  display: flex;
}
.marketP1 .mxfDiv .btnGroup a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs24);
  margin-right: 0.5rem;
  min-width: 2rem;
  padding: 0 0.3rem;
  height: 0.65rem;
  border-radius: 0.45rem;
  border: #00B9BF solid 1px;
}
.marketP1 .mxfDiv .btnGroup a:hover {
  background: #00B9BF;
  color: #fff;
}
.marketP1 .mxfDiv .btnGroup .aNow {
  background: #00B9BF;
  color: #fff;
}
.marketP2 {
  position: relative;
  padding: 1.34rem 0 1.2rem;
  overflow: hidden;
}
.marketP2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 11.85rem;
  height: 100%;
  background: url(../img/marketP2_l.png) left center no-repeat;
  background-size: 100%;
}
.marketP2::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 11.85rem;
  height: 100%;
  background: url(../img/marketP2_r.png) right center no-repeat;
  background-size: 100%;
}
.marketP2 .mxfDiv {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0.3rem;
  margin-bottom: 0.75rem;
}
.marketP2 .mxfDiv .imgDiv img,
.marketP2 .mxfDiv .imgDiv video {
  display: block;
  width: 100%;
}
.marketP2 .layer {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0 0.3rem;
  height: 100%;
  z-index: 1;
}
.marketP2 .title {
  position: relative;
  z-index: 1;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #fff;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.marketP2 .zi {
  position: relative;
  z-index: 1;
  font-size: var(--fs30);
  line-height: 0.4rem;
  text-align: center;
  font-weight: 400;
  color: #fff;
}
.marketP2 .list {
  position: relative;
  z-index: 1;
}
.marketP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.marketP2 .list li {
  position: relative;
  width: calc((100% - 0.96rem) / 4);
  margin-right: 0.32rem;
  min-height: 4.5rem;
  padding: 0.6rem 0.45rem 0.4rem;
  border-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.marketP2 .list li:nth-child(4n) {
  margin-right: 0;
}
.marketP2 .list li .ico {
  height: 1.6rem;
}
.marketP2 .list li .ico img {
  width: 1.26rem;
}
.marketP2 .list li .name {
  line-height: 0.42rem;
  color: #333;
  font-weight: 600;
  font-size: var(--fs26);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.marketP2 .list li .name em {
  display: block;
}
.marketP2 .list li .msg {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  font-weight: 400;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.marketP2 .list li:hover {
  background: #00B9BF;
}
.marketP2 .list li:hover .name,
.marketP2 .list li:hover .msg {
  color: #fff;
}
.marketP2 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.marketP2 .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #fff;
  border: #ddd solid 1px;
}
.marketP2 .swiper-pagination-bullet-active {
  background: #00B9BF;
  border: #00B9BF solid 1px;
}
.marketP3 {
  padding: 1rem 0 1.1rem;
}
.marketP3 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.marketP3 .zi {
  font-size: var(--fs30);
  line-height: 0.4rem;
  text-align: center;
  font-weight: 400;
  margin: 0.1rem 0 1.1rem;
}
.marketP3 .list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 0.8rem;
}
.marketP3 .list li:last-child {
  margin-bottom: 0;
}
.marketP3 .list li .imgDiv {
  width: 7.5rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.marketP3 .list li .imgDiv img {
  width: 100%;
}
.marketP3 .list li .conDiv {
  width: 5.9rem;
}
.marketP3 .list li .conDiv .name {
  font-size: var(--fs36);
  line-height: 0.52rem;
  color: #333;
  font-weight: 600;
}
.marketP3 .list li .conDiv .content {
  margin-top: 0.2rem;
  font-weight: 400;
  font-size: var(--fs18);
  line-height: 0.34rem;
  /*text-align: justify;*/
}
.marketP3 .list li .conDiv .more {
  margin-top: 0.35rem;
  display: flex;
}
.marketP3 .list li .conDiv .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  min-width: 1.35rem;
  height: 0.45rem;
  border-radius: 0.45rem;
  padding: 0 0.3rem;
  font-size: var(--fs14);
  color: #fff;
  background: #00B9BF;
}
.marketP3 .list li:nth-child(2n) .imgDiv {
  order: 1;
}
.marketP4 {
  padding: 0.8rem 0 0.94rem;
  position: relative;
  overflow: hidden;
  z-index: 4;
  background: #00B9BF url(../img/hotelP5.jpg) center no-repeat;
  background-size: cover;
  border-radius: 0.9rem;
}
.marketP4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.marketP4 .title {
  position: relative;
  z-index: 2;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #fff;
  font-weight: 600;
}
.marketP4 .zi {
  position: relative;
  z-index: 2;
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #fff;
  font-weight: 300;
  margin: 0.1rem 0 0.5rem;
}
.reputationPic {
  position: relative;
  z-index: 2;
  padding-bottom: 1.55rem;
}
.reputationPic .imgList {
  width: 20.4rem;
  overflow: hidden;
  position: static;
}
.reputationPic .swiper-slide {
  width: auto;
}
.reputationPic .swiper-slide .box {
  border-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(25px);
  width: 6rem;
  height: 5.64rem;
  padding: 0.4rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reputationPic .swiper-slide .box .toptop {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.reputationPic .swiper-slide .box .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: #00B9BF solid 1px;
  overflow: hidden;
}
.reputationPic .swiper-slide .box .ico img {
  width: 100%;
}
.reputationPic .swiper-slide .box .limg {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 1rem;
}
.reputationPic .swiper-slide .box .limg img {
  max-height: 0.7rem;
}
.reputationPic .swiper-slide .box .content {
  margin-top: 0.15rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 2.4rem;
  padding-right: 5px;
  overflow: auto;
  color: #fff;
  /*text-align: justify;*/
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reputationPic .swiper-slide .box .content::-webkit-scrollbar {
  width: 3px;
}
.reputationPic .swiper-slide .box .content::-webkit-scrollbar-track {
  background-color: #eee;
}
.reputationPic .swiper-slide .box .content::-webkit-scrollbar-thumb {
  background-color: #00B9BF;
}
.reputationPic .swiper-slide .box .name {
  position: absolute;
  right: 0.4rem;
  bottom: 0.4rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  text-align: right;
  color: #fff;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reputationPic .swiper-slide .box:hover {
  background: #fff;
}
.reputationPic .swiper-slide .box:hover .content {
  color: #666;
}
.reputationPic .swiper-slide .box:hover .name {
  color: #00B9BF;
}
.reputationPic .pjDiv {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  bottom: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.reputationPic .arrowDiv .se {
  position: relative;
  float: left;
  display: block;
  overflow: hidden;
  width: 0.8rem;
  height: 0.8rem;
  border: #00B9BF solid 2px;
  border-radius: 50%;
}
.reputationPic .arrowDiv .se:hover {
  background: #00B9BF;
}
.reputationPic .arrowDiv .prev {
  margin-right: 0.26rem;
}
.reputationPic .arrowDiv .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.05rem;
  width: 0.1rem;
  height: 0.18rem;
  margin-top: -0.09rem;
  background: url(../img/nimg10_left.png) no-repeat;
  background-size: 0.1rem;
}
.reputationPic .arrowDiv .prev:hover::before {
  background: url(../img/nimg10_lefton.png) no-repeat;
  background-size: 0.1rem;
}
.reputationPic .arrowDiv .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -0.05rem;
  width: 0.1rem;
  height: 0.18rem;
  margin-top: -0.09rem;
  background: url(../img/nimg10_right.png) no-repeat;
  background-size: 0.1rem;
}
.reputationPic .arrowDiv .next:hover::before {
  background: url(../img/nimg10_righton.png) no-repeat;
  background-size: 0.1rem;
}
@media (max-width: 1004px) {
  .marketP1 {
    padding-top: 0.9rem;
  }
  .marketP1 .mxfDiv .imgDiv {
    margin-top: 0.5rem;
    position: relative;
  }
  .marketP1 .mxfDiv .imgDiv img {
    width: 100%;
  }
  .marketP1 .mxfDiv .conDiv {
    display: block;
    min-height: 2rem;
  }
  .marketP1 .mxfDiv .conDiv .name {
	  width:auto;
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .marketP1 .mxfDiv .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    width: auto;
    margin: 0.4rem 0 0.55rem;
  }
  .marketP1 .mxfDiv .btnGroup a {
    font-size: var(--fs15);
    margin-right: 0.35rem;
    padding: 0 0.2rem;
    height: 0.82rem;
	text-align: center;
    line-height: 0.36rem;
  }
  .marketP2 {
    padding: 1rem 0 1.1rem;
  }
  .marketP2::before {
    width: 50%;
  }
  .marketP2::after {
    width: 50%;
  }
  .marketP2 .mxfDiv {
    margin-bottom: 0.6rem;
  }
  .marketP2 .mxfDiv .imgDiv {
    height: 5rem;
  }
  .marketP2 .mxfDiv .imgDiv img,
  .marketP2 .mxfDiv .imgDiv video {
    height: 100%;
    object-fit: cover;
  }
  .marketP2 .title {
    font-size: var(--fs20);
    line-height: 0.72rem;
  }
  .marketP2 .zi {
    font-size: var(--fs16);
    line-height: 0.64rem;
  }
  .marketP2 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.3rem;
    min-height: 4.5rem;
    padding: 0.6rem 0.45rem 0.4rem;
  }
  .marketP2 .list li:nth-child(4n) {
    margin-right: 0.2rem;
  }
  .marketP2 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .marketP2 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .marketP2 .list li .ico {
    height: 1.56rem;
  }
  .marketP2 .list li .ico img {
    width: 1.4rem;
  }
  .marketP2 .list li .name {
    line-height: 0.52rem;
    font-size: var(--fs17);
  }
  .marketP2 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .marketP2 .swiper-pagination {
    display: block;
  }
  .marketP3 {
    padding: 0.2rem 0 1.1rem;
  }
  .marketP3 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .marketP3 .zi {
    font-size: var(--fs16);
    line-height: 0.64rem;
    margin: 0.1rem 0 0.6rem;
  }
  .marketP3 .list li {
    display: block;
    margin-bottom: 0.5rem;
  }
  .marketP3 .list li .imgDiv {
    width: 100%;
  }
  .marketP3 .list li .conDiv {
    margin-top: 0.3rem;
    width: auto;
  }
  .marketP3 .list li .conDiv .name {
    font-size: var(--fs17);
    line-height: 0.64rem;
  }
  .marketP3 .list li .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .marketP3 .list li .conDiv .more a {
    height: 0.82rem;
    padding: 0 0.5rem;
  }
  .marketP4 {
    border-radius: 0.64rem;
  }
  .marketP4 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .marketP4 .zi {
    font-size: var(--fs16);
    line-height: 0.64rem;
    margin: 0.1rem 0 0.65rem;
  }
  .reputationPic .imgList {
    width: 100%;
  }
  .reputationPic .swiper-slide {
    width: 100%;
  }
  .reputationPic .swiper-slide .box {
    border-radius: 0.24rem;
    width: 100%;
    height: 8rem;
    padding: 0.4rem 0.3rem;
  }
  .reputationPic .swiper-slide .box .ico {
    width: 1.4rem;
    height: 1.4rem;
  }
  .reputationPic .swiper-slide .box .limg {
    height: 1.4rem;
  }
  .reputationPic .swiper-slide .box .content {
    margin-top: 0.25rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 3.84rem;
  }
  .reputationPic .swiper-slide .box .name {
    right: 0.3rem;
    bottom: 0.5rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .reputationPic .pjDiv {
    right: 0;
    margin-right: 0;
  }
  .reputationPic .arrowDiv .se {
    width: 0.96rem;
    height: 0.96rem;
    border: #00B9BF solid 1px;
  }
  .reputationPic .arrowDiv .prev {
    margin-right: 0.3rem;
  }
}
.collectionP0 {
  padding: 1.68rem 0 1.4rem;
}
.collectionP0 .numlist ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin: 0;
}
.collectionP0 .numlist li .num {
  color: #1E237F;
  font-size: var(--fs24);
}
.collectionP0 .numlist li .num .numUp {
  font-size: var(--fs84);
  font-weight: 600;
  padding-right: 0.1rem;
}
.collectionP0 .numlist li .num em {
  font-size: var(--fs84);
}
.collectionP0 .numlist li .zi {
  margin-top: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
  font-weight: 300;
}
.collectionP0 .btnDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.9rem;
}
.collectionP0 .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: 1.8rem;
  height: 0.6rem;
  border-radius: 0.45rem;
  background: #00B9BF;
  color: #fff;
  font-size: var(--fs18);
}
.collectionP1 {
  position: relative;
  padding: 1.35rem 0 1.5rem;
  background: linear-gradient(90deg, #F4F4F4 0%, #FFF 100%);
}
.collectionP1::after {
  content: '';
  position: absolute;
  right: 7%;
  bottom: 0.8rem;
  width: 6.72rem;
  height: 3.65rem;
  background: url(../img/quan.png) center top repeat-y;
  opacity: 0.5;
}
.collectionP1 .mxfDiv {
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.collectionP1 .conDiv {
  width: 6.3rem;
}
.collectionP1 .conDiv .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.collectionP1 .conDiv .title em {
  display: block;
  color: #00B9BF;
}
.collectionP1 .conDiv .msg {
  font-size: var(--fs30);
  line-height: 0.4rem;
  color: #333;
  /*text-align: justify;*/
}
.collectionP1 .conDiv .content {
  margin-top: 0.4rem;
  font-size: var(--fs18);
  line-height: 0.34rem;
  /*text-align: justify;*/
}
.collectionP1 .rightDiv {
  width: 7.2rem;
  position: relative;
}
.collectionP1 .rightDiv .imgDiv {
  width: 5.8rem;
}
.collectionP1 .rightDiv .imgDiv img {
  width: 100%;
}
.collectionP1 .rightDiv .round {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  opacity: 0.7;
  background: linear-gradient(0deg, #3286FE 0%, #00CFD7 67.31%);
  z-index: 1;
}
.collectionP2 {
  padding: 1.1rem 0;
}
.collectionP2 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.collectionP2 .zi {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #000;
  text-align: center;
  font-weight: 300;
  margin-bottom: 0.3rem;
}
.collectionP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.collectionP2 .list li {
  position: relative;
  width: calc((100% - 0.38rem) / 2);
  border-radius: 0.3rem;
  margin-top: 0.38rem;
  margin-right: 0.38rem;
  overflow: hidden;
}
.collectionP2 .list li:nth-child(-n+2) {
  margin-top: 0;
}
.collectionP2 .list li:nth-child(2n) {
  margin-right: 0;
}
.collectionP2 .list li .imgDiv {
  position: relative;
  height: 4.2rem;
}
.collectionP2 .list li .imgDiv::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background: rgba(30, 35, 127, 0.8);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.collectionP2 .list li .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0) 100%);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.collectionP2 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collectionP2 .list li .layer {
  position: absolute;
  left: 0;
  bottom: 0.4rem;
  z-index: 1;
  width: 100%;
  padding: 0 0.4rem;
  color: #fff;
}
.collectionP2 .list li .layer .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.2);
}
.collectionP2 .list li .layer .ico img {
  max-width: 0.4rem;
}
.collectionP2 .list li .layer .name {
  margin-top: 0.2rem;
  margin-bottom: 5px;
  font-size: var(--fs36);
  font-weight: 600;
  line-height: 0.52rem;
}
.collectionP2 .list li .layer .msg {
  font-size: var(--fs18);
  line-height: 0.34rem;
  font-weight: 400;
}
.collectionP2 .list li:hover .imgDiv::before {
  opacity: 1;
  visibility: visible;
}
.collectionP2 .list li:hover .imgDiv::after {
  opacity: 0;
  visibility: hidden;
}
.collectionP3 {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 1.1rem 0 1.2rem;
  background: url(../img/collectionP3.jpg) center top no-repeat;
  background-size: cover;
}
.collectionP3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.5) 100%);
  z-index: 1;
}
.collectionP3 .title {
  position: relative;
  z-index: 2;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.collectionP3 .lunbo {
  z-index: 2;
  position: relative;
  overflow: hidden;
}
.collectionP3 .lunbo .imgList {
  overflow: hidden;
  padding: 0.4rem 0;
}
.collectionP3 .lunbo .swiper-slide {
  width: 6rem;
  min-height: 6rem;
  border-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.3rem;
  transition: all 0.45s ease;
}
.collectionP3 .lunbo .swiper-slide .imgDiv {
  height: 2.32rem;
  border-radius: 0.3rem;
  overflow: hidden;
}
.collectionP3 .lunbo .swiper-slide .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collectionP3 .lunbo .swiper-slide .name {
  margin: 0.7rem 0 0.1rem;
  text-align: center;
  color: #333;
  font-size: var(--fs24);
  line-height: 0.54rem;
  font-weight: 600;
}
.collectionP3 .lunbo .swiper-slide .msg {
  width: 4.2rem;
  margin: 0 auto;
  font-size: var(--fs18);
  line-height: 0.3rem;
  text-align: center;
}
.collectionP3 .lunbo .swiper-slide-active {
  box-shadow: 0 0.2rem 0.3rem 0 rgba(0, 0, 0, 0.1);
}
.collectionP3 .lunbo .swiper-slide-active .name {
  font-size: var(--fs36);
}
.collectionP3 .lunbo .swiper-slide-active .msg {
  font-size: var(--fs30);
  line-height: 0.4rem;
}
.collectionP3 .swiper-pagination {
  position: relative;
  bottom: 0;
  padding-top: 0.6rem;
}
.collectionP3 .swiper-pagination-bullet {
  opacity: 0.5;
  width: 14px;
  height: 14px;
  margin: 0 7px!important;
  background: #fff;
  border: #00B9BF solid 1px;
}
.collectionP3 .swiper-pagination-bullet-active {
  opacity: 1;
  background: #00B9BF;
}
.collectionP4 {
  display: none;
  margin-top: -0.9rem;
  padding: 1.9rem 0 3rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.collectionP4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 1.52rem);
  background: #051023;
}
.collectionP4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.52rem;
  background-image: linear-gradient(180deg, #051023 0%, #050e1f 100%);
}
.collectionP4 .title {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
@media (max-width: 1004px) {
  .collectionP0 {
    padding: 1.1rem 0 1rem;
  }
  .collectionP0 .numlist ul {
    flex-flow: wrap;
  }
  .collectionP0 .numlist li {
    width: 50%;
    text-align: center;
    margin-top: 0.5rem;
  }
  .collectionP0 .numlist li:nth-child(-n+2) {
    margin-top: 0;
  }
  .collectionP0 .numlist li .num {
    font-size: var(--fs16);
  }
  .collectionP0 .numlist li .num .numUp {
    font-size: var(--fs32);
    line-height: 0.72rem;
  }
  .collectionP0 .numlist li .num em {
    font-size: var(--fs32);
  }
  .collectionP0 .numlist li .zi {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .collectionP0 .btnDiv {
    margin-top: 0.65rem;
  }
  .collectionP0 .btnDiv a {
    width: 2.4rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .collectionP1 {
    padding: 1rem 0 0;
  }
  .collectionP1::after {
    display: none;
  }
  .collectionP1 .mxfDiv {
    display: block;
  }
  .collectionP1 .conDiv {
    width: auto;
  }
  .collectionP1 .conDiv .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .collectionP1 .conDiv .msg {
    font-size: var(--fs20);
    line-height: 0.6rem;
  }
  .collectionP1 .conDiv .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .collectionP1 .rightDiv {
    margin-top: 0.6rem;
    width: auto;
    padding-right: 1.4rem;
  }
  .collectionP1 .rightDiv .imgDiv {
    width: 100%;
  }
  .collectionP2 {
    padding: 0.9rem 0;
  }
  .collectionP2 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .collectionP2 .zi {
    font-size: var(--fs17);
    line-height: 0.64rem;
    margin-bottom: 0.5rem;
  }
  .collectionP2 .list li {
    width: 100%;
    margin-top: 0.3rem;
    margin-right: 0;
  }
  .collectionP2 .list li:nth-child(1) {
    margin-top: 0;
  }
  .collectionP2 .list li:nth-child(2) {
    margin-top: 0.3rem;
  }
  .collectionP2 .list li .imgDiv {
    height: 4rem;
  }
  .collectionP2 .list li .layer {
    bottom: 0.3rem;
    padding: 0 0.3rem;
  }
  .collectionP2 .list li .layer .ico {
    width: 0.9rem;
    height: 0.9rem;
  }
  .collectionP2 .list li .layer .ico img {
    max-width: 0.54rem;
  }
  .collectionP2 .list li .layer .name {
    font-size: var(--fs20);
    line-height: 0.72rem;
  }
  .collectionP2 .list li .layer .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .collectionP3 {
    padding: 1.1rem 0 1.2rem;
    border-radius: 0 0 0.64rem 0.64rem;
  }
  .collectionP3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.5) 100%);
    z-index: 1;
  }
  .collectionP3::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(33deg, rgba(255, 255, 255, 0.8) 7.76%, rgba(255, 255, 255, 0) 48.93%);
    z-index: 1;
  }
  .collectionP3 .title {
    margin-bottom: 0.6rem;
    font-size: var(--fs22);
    line-height: 0.72rem;
  }
  .collectionP3 .lunbo {
    overflow: visible;
  }
  .collectionP3 .lunbo .imgList {
    padding: 0 0 0.4rem;
    overflow: hidden;
  }
  .collectionP3 .lunbo .swiper-slide {
    width: 100%;
    min-height: 4rem;
  }
  .collectionP3 .lunbo .swiper-slide .imgDiv {
    height: 2.4rem;
  }
  .collectionP3 .lunbo .swiper-slide .name {
    margin: 0.4rem 0 0.1rem;
    font-size: var(--fs18);
    line-height: 0.64rem;
    max-height: 1.28rem;
  }
  .collectionP3 .lunbo .swiper-slide .name em {
    font-size: var(--fs24);
  }
  .collectionP3 .lunbo .swiper-slide .msg {
    width: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
    max-height: 0.96rem;
  }
  .collectionP3 .lunbo .swiper-slide .more {
    margin-top: 0.3rem;
    display: flex;
  }
  .collectionP3 .lunbo .swiper-slide .more a {
    min-width: 2.36rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .collectionP3 .lunbo .swiper-slide .more a em {
    width: 0.2rem;
    height: 0.18rem;
    background-size: 0.2rem;
  }
  .collectionP3 .lunbo .swiper-slide-active {
    box-shadow: none;
  }
  .collectionP3 .lunbo .swiper-slide-active .baozhe .name {
    font-size: var(--fs18);
  }
  .collectionP3 .lunbo .swiper-slide-active .baozhe .name em {
    font-size: var(--fs24);
  }
  .collectionP3 .lunbo .swiper-slide-active .baozhe .msg {
    max-height: 0.96rem;
  }
  .collectionP3 .swiper-pagination {
    padding-top: 0.2rem;
  }
  .collectionP4 {
    margin-top: -0.8rem;
    padding: 1.6rem 0 1.5rem;
  }
  .collectionP4 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.65rem;
  }
}
.exhibitionP1 {
  padding: 1.1rem 0 1.7rem;
}
.exhibitionP1 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.exhibitionP1 .numlist ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin: 0;
}
.exhibitionP1 .numlist li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: #00B9BF solid 1px;
  margin-bottom: 0.4rem;
}
.exhibitionP1 .numlist li .ico img {
  width: 0.48rem;
}
.exhibitionP1 .numlist li .num {
  color: #1E237F;
  font-size: var(--fs18);
}
.exhibitionP1 .numlist li .num em {
  font-family: 'Barlow-B';
  font-size: 1.2rem;
  font-weight: 600;
  padding-right: 0.1rem;
}
.exhibitionP1 .numlist li .zi {
  margin-top: 0.2rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #333;
  font-weight: 600;
}
.exhibitionP2 {
  padding: 1.42rem 0;
}
.exhibitionP2 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.exhibitionP2 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.exhibitionP2 .detail {
  width: 45.6%;
}
.exhibitionP2 .detail a {
  display: block;
  border-radius: 0.3rem;
  overflow: hidden;
}
.exhibitionP2 .detail a .imgDiv {
  position: relative;
  height: 4.26rem;
  overflow: hidden;
}
.exhibitionP2 .detail a .imgDiv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 60%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
.exhibitionP2 .detail a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.exhibitionP2 .detail a .botDiv {
  background: #f4f4f4;
  padding: 0.4rem 0.4rem 0;
  height: 2.7rem;
}
.exhibitionP2 .detail a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs36);
  line-height: 0.52rem;
  color: #333;
  font-weight: 600;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.exhibitionP2 .detail a .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.2rem;
  font-size: var(--fs16);
  color: #fff;
  width: 2rem;
  height: 0.68rem;
  border-radius: 0.45rem;
  background: #00B9BF;
}
.exhibitionP2 .detail a:hover .imgDiv::after {
  transform: translateX(100%);
}
.exhibitionP2 .detail a:hover .imgDiv img {
  transform: scale(1.1);
}
.exhibitionP2 .detail a:hover .name {
  color: #00B9BF;
}
.exhibitionP2 .list {
  width: 49.5%;
}
.exhibitionP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.exhibitionP2 .list li {
  width: calc((100% - 0.76rem) / 2);
  margin-top: 0.8rem;
  margin-right: 0.38rem;
  overflow: hidden;
}
.exhibitionP2 .list li:nth-child(-n+2) {
  margin-top: 0;
}
.exhibitionP2 .list li:nth-child(2n) {
  margin-right: 0;
}
.exhibitionP2 .list li .imgDiv {
  position: relative;
  height: 2.18rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.exhibitionP2 .list li .imgDiv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 60%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
.exhibitionP2 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.exhibitionP2 .list li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.2rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #333;
  font-weight: 600;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.exhibitionP2 .list li:hover .imgDiv::after {
  transform: translateX(100%);
}
.exhibitionP2 .list li:hover .imgDiv img {
  transform: scale(1.1);
}
.exhibitionP2 .list li:hover .name {
  color: #00B9BF;
}
.exhibitionP3 {
  position: relative;
  z-index: 5;
  padding: 1rem 0 1.5rem;
  background: #F4F4F4;
  border-radius: 0 0 0.9rem 0.9rem;
}
.exhibitionP3 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.86rem;
}
.exhibitionP3 .fengcai {
  position: relative;
}
.exhibitionP3 .list {
  overflow: hidden;
}
.exhibitionP3 .list li .imgDiv {
  position: relative;
  border-radius: 0.3rem;
  overflow: hidden;
}
.exhibitionP3 .list li .imgDiv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 60%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
.exhibitionP3 .list li .imgDiv img {
  width: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.exhibitionP3 .list li .name {
  margin-top: 0.3rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #333;
  font-weight: 600;
}
.exhibitionP3 .list li .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.3rem;
  font-size: var(--fs16);
  color: #666;
  width: 1.36rem;
  height: 0.45rem;
  border-radius: 0.45rem;
  border: #00B9BF solid 1px;
  background: #fff;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.exhibitionP3 .list li:hover .imgDiv::after {
  transform: translateX(100%);
}
.exhibitionP3 .list li:hover .imgDiv img {
  transform: scale(1.1);
}
.exhibitionP3 .list li:hover .more {
  background: #00B9BF;
  color: #fff;
}
.exhibitionP3 .se {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 0.6rem;
  height: 0.6rem;
  top: 50%;
  margin-top: -0.3rem;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.exhibitionP3 .se:hover {
  background: #00B9BF;
}
.exhibitionP3 .prev {
  left: 50%;
  margin-left: -8.9rem;
  background: #fff url(../img/nimg10_left.png) center no-repeat;
  background-size: 0.08rem;
}
.exhibitionP3 .prev:hover {
  background: #00B9BF url(../img/nimg10_lefton.png) center no-repeat;
  background-size: 0.08rem;
}
.exhibitionP3 .next {
  right: 50%;
  margin-right: -8.9rem;
  background: #fff url(../img/nimg10_right.png) center no-repeat;
  background-size: 0.08rem;
}
.exhibitionP3 .next:hover {
  background: #00B9BF url(../img/nimg10_righton.png) center no-repeat;
  background-size: 0.08rem;
}
@media (max-width: 1004px) {
  .exhibitionP1 {
    padding: 0.9rem 0 1.2rem;
  }
  .exhibitionP1 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.65rem;
  }
  .exhibitionP1 .numlist ul {
    flex-flow: wrap;
  }
  .exhibitionP1 .numlist li {
    width: 33.33%;
    text-align: center;
    margin-top: 0.5rem;
  }
  .exhibitionP1 .numlist li:nth-child(-n+3) {
    margin-top: 0;
  }
  .exhibitionP1 .numlist li .ico {
    margin: 0 auto;
    width: 1.2rem;
    height: 1.2rem;
    margin-bottom: 0.2rem;
  }
  .exhibitionP1 .numlist li .ico img {
    width: 0.6rem;
  }
  .exhibitionP1 .numlist li .num {
    font-size: var(--fs14);
  }
  .exhibitionP1 .numlist li .num em {
    font-size: var(--fs22);
    line-height: 0.72rem;
  }
  .exhibitionP1 .numlist li .zi {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .exhibitionP2 {
    padding: 0.2rem 0 1.2rem;
  }
  .exhibitionP2 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.65rem;
  }
  .exhibitionP2 .mxfDiv {
    display: block;
  }
  .exhibitionP2 .detail {
    width: auto;
    margin-bottom: 0.6rem;
  }
  .exhibitionP2 .detail a .imgDiv {
    height: 3.8rem;
  }
  .exhibitionP2 .detail a .botDiv {
    padding: 0.4rem 0.3rem;
    height: auto;
  }
  .exhibitionP2 .detail a .name {
    font-size: var(--fs17);
    line-height: 0.64rem;
  }
  .exhibitionP2 .detail a .more {
    font-size: var(--fs14);
    width: 2.4rem;
    height: 0.82rem;
  }
  .exhibitionP2 .list {
    width: auto;
  }
  .exhibitionP2 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .exhibitionP2 .list li .imgDiv {
    height: 2rem;
  }
  .exhibitionP2 .list li .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .exhibitionP3 {
    padding: 1rem 0 1.2rem;
    border-radius: 0 0 0.64rem 0.64rem;
  }
  .exhibitionP3 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.65rem;
  }
  .exhibitionP3 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-top: 0.4rem;
  }
  .exhibitionP3 .list li .imgDiv {
    border-radius: 0.2rem;
  }
  .exhibitionP3 .list li .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .exhibitionP3 .list li .more {
    display: none;
  }
  .exhibitionP3 .se {
    width: 0.86rem;
    height: 0.86rem;
    top: 30%;
    margin-top: 0;
  }
  .exhibitionP3 .prev {
    left: 0.3rem;
    margin-left: 0;
    background-size: 10px;
  }
  .exhibitionP3 .prev:hover {
    background-size: 10px;
  }
  .exhibitionP3 .next {
    right: 0.3rem;
    margin-right: 0;
    background-size: 10px;
  }
  .exhibitionP3 .next:hover {
    background-size: 10px;
  }
}
.inviteP1 {
  padding: 1.1rem 0 1.5rem;
}
.inviteP1 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.inviteP1 .bigImg {
  width: 100%;
  border-radius: 0.3rem;
  overflow: hidden;
}
.inviteP1 .bigImg img {
  width: 100%;
}
.inviteP1 .videobox {
  width: 100%;
  position: relative;
  border-radius: 0.3rem;
  overflow: hidden;
}
.inviteP1 .videobox .imgDiv img {
  width: 100%;
}
.inviteP1 .videobox .playbox {
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  margin-left: -0.35rem;
  margin-top: -0.35rem;
  z-index: 1;
}
.inviteP1 .videobox .playbox img {
  width: 100%;
}
.inviteP1 .videobox .videoDiv {
  display: none;
}
.inviteP1 .content {
  font-size: var(--fs18);
  line-height: 0.34rem;
  color: #333;
  margin: 0.65rem 0 0.4rem;
  /*text-align: justify;*/
}
.inviteP1 .btnDiv {
  display: flex;
}
.inviteP1 .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;
  min-width: 1.5rem;
  height: 0.5rem;
  background: #00B9BF;
  color: #fff;
  font-size: var(--fs16);
  font-weight: 400;
  border-radius: 0.45rem;
}
.inviteP1 .numlist {
  display: none;
  padding-top: 0.7rem;
}
.inviteP1 .numlist ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin: 0;
}
.inviteP1 .numlist li .num {
  color: #1E237F;
}
.inviteP1 .numlist li .num em {
  font-family: 'Barlow-B';
  font-size: 0.84rem;
  font-weight: 600;
  padding-right: 0.1rem;
}
.inviteP1 .numlist li .zi {
  margin-top: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #333;
  font-weight: 600;
}
.inviteP2 {
  padding: 1.1rem 0 2.34rem;
  background: url(../img/inviteP2.jpg) center bottom no-repeat;
  background-size: cover;
}
.inviteP2 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.inviteP2 .title {
  font-size: var(--fs46);
  line-height: 0.72rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
}
.inviteP2 .leftDiv {
  width: 6.6rem;
}
.inviteP2 .leftDiv ul {
  margin-bottom: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.inviteP2 .leftDiv li {
  width: calc((100% - 0.6rem) / 2);
  margin-right: 0.6rem;
  margin-top: 0.44rem;
}
.inviteP2 .leftDiv li:nth-child(2n) {
  margin-right: 0;
}
.inviteP2 .leftDiv li:nth-child(-n+2) {
  margin-top: 0;
}
.inviteP2 .leftDiv li .baozhe {
  width: 100%;
  padding-top: 0.66rem;
  height: 3rem;
  background: #fff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.inviteP2 .leftDiv li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 auto;
  width: 0.86rem;
  height: 0.86rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.28rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.inviteP2 .leftDiv li .ico img {
  width: 0.44rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.inviteP2 .leftDiv li .name {
  margin-top: 0.25rem;
  text-align: center;
  font-size: var(--fs24);
  line-height: 0.4rem;
  color: #333;
  font-weight: 400;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.inviteP2 .leftDiv li:nth-child(1) .baozhe {
  border-radius: 50% 50% 0 50%;
}
.inviteP2 .leftDiv li:nth-child(2) .baozhe {
  border-radius: 50% 50% 50% 0;
}
.inviteP2 .leftDiv li:nth-child(3) .baozhe {
  border-radius: 50% 0 50% 50%;
}
.inviteP2 .leftDiv li:nth-child(4) .baozhe {
  border-radius: 0 50% 50% 50%;
}
.inviteP2 .leftDiv li:hover .baozhe {
  background: #00B9BF;
}
.inviteP2 .leftDiv li:hover .ico img {
  filter: brightness(0) invert(1);
}
.inviteP2 .leftDiv li:hover .name {
  color: #fff;
}
.inviteP2 .rightDiv {
  width: 35.4%;
}
.inviteP2 .rightDiv .echart {
  display: none;
}
.inviteP2 .rightDiv .list {
  margin-top: 0.36rem;
}
.inviteP2 .rightDiv .list ul {
  margin-bottom: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.inviteP2 .rightDiv .list li {
  width: 100%;
  margin-top: 0.32rem;
  padding: 0.25rem 0.16rem 0;
  height: 1rem;
  color: #fff;
  border-radius: 0.14rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.inviteP2 .rightDiv .list li:nth-child(1) {
  margin-top: 0;
}
.inviteP2 .rightDiv .list li .pj {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.inviteP2 .rightDiv .list li .name {
  font-size: var(--fs18);
  line-height: 0.34rem;
}
.inviteP2 .rightDiv .list li .num {
  font-size: var(--fs24);
  line-height: 0.34rem;
  font-family: 'Mont-B';
}
.inviteP2 .rightDiv .list li .line {
  position: relative;
  margin-top: 4px;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.16rem;
}
.inviteP2 .rightDiv .list li .line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  background: #fff;
  border-radius: 0.16rem;
  z-index: 1;
}
.inviteP2 .rightDiv .list li:nth-child(1) {
  background: #07DCD6;
}
.inviteP2 .rightDiv .list li:nth-child(1) .line::after {
  width: 39%;
}
.inviteP2 .rightDiv .list li:nth-child(2) {
  background: #1F4A9D;
}
.inviteP2 .rightDiv .list li:nth-child(2) .line::after {
  width: 29%;
}
.inviteP2 .rightDiv .list li:nth-child(3) {
  background: #8BA1CC;
}
.inviteP2 .rightDiv .list li:nth-child(3) .line::after {
  width: 14%;
}
.inviteP2 .rightDiv .list li:nth-child(4) {
  background: #E7C83C;
}
.inviteP2 .rightDiv .list li:nth-child(4) .line::after {
  width: 6%;
}
.inviteP2 .rightDiv .list li:nth-child(5) {
  background: #00B9BF;
}
.inviteP2 .rightDiv .list li:nth-child(5) .line::after {
  width: 12%;
}
#sexrate {
  width: 100%;
  height: 4rem;
}
.inviteP3 {
  position: relative;
  z-index: 5;
  padding: 1rem 0 2rem;
  background: url(../img/inviteP3.jpg) center no-repeat;
  background-size: cover;
  border-radius: 0 0 0.9rem 0.9rem;
  overflow: hidden;
}
.inviteP3::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(0, 185, 191, 0.5) 100%);
}
.inviteP3 .title {
  position: relative;
  z-index: 1;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #fff;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.inviteP3 .list {
  position: relative;
  z-index: 1;
}
.inviteP3 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.inviteP3 .list li {
  position: relative;
  width: calc((100% - 0.96rem) / 4);
  margin-right: 0.32rem;
  height: auto;
  min-height: 4.6rem;
  padding: 0.6rem 0.45rem 0.4rem;
  border-radius: 0.3rem;
  background: #fff;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.inviteP3 .list li:nth-child(4n) {
  margin-right: 0;
}
.inviteP3 .list li .ico {
  height: 1.6rem;
}
.inviteP3 .list li .ico img {
  width: 1.26rem;
}
.inviteP3 .list li .name {
  line-height: 0.52rem;
  color: #333;
  font-weight: 600;
  font-size: var(--fs30);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.inviteP3 .list li .msg {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  font-weight: 400;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.inviteP3 .list li:hover {
  background: #00B9BF;
}
.inviteP3 .list li:hover .name,
.inviteP3 .list li:hover .msg {
  color: #fff;
}
.inviteP3 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.inviteP3 .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #fff;
  border: #ddd solid 1px;
}
.inviteP3 .swiper-pagination-bullet-active {
  background: #1E237F;
  border: #1E237F solid 1px;
}
@media (max-width: 1004px) {
  .inviteP1 {
    padding: 1.1rem 0 1rem;
  }
  .inviteP1 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.65rem;
  }
  .inviteP1 .mxfDiv {
    display: block;
  }
  .inviteP1 .bigImg {
    width: 100%;
  }
  .inviteP1 .videobox {
    width: 100%;
  }
  .inviteP1 .videobox .imgDiv {
    height: 4rem;
  }
  .inviteP1 .videobox .imgDiv img {
    height: 100%;
    object-fit: cover;
  }
  .inviteP1 .videobox .playbox {
    width: 1rem;
    height: 1rem;
    margin-left: -0.5rem;
    margin-top: -0.5rem;
  }
  .inviteP1 .videobox .videoDiv {
    display: none;
  }
  .inviteP1 .conDiv {
    width: auto;
  }
  .inviteP1 .content {
    font-size: var(--fs15);
    line-height: 0.56rem;
    margin: 0.65rem 0 0.4rem;
    width: auto;
  }
  .inviteP1 .btnDiv a {
    min-width: 2.4rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .inviteP1 .numlist ul {
    flex-flow: wrap;
  }
  .inviteP1 .numlist li {
    width: 50%;
    margin-top: 0.5rem;
  }
  .inviteP1 .numlist li:nth-child(-n+2) {
    margin-top: 0;
  }
  .inviteP1 .numlist li .num {
    font-size: var(--fs14);
  }
  .inviteP1 .numlist li .num em {
    font-size: var(--fs32);
    line-height: 0.72rem;
  }
  .inviteP1 .numlist li .zi {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .inviteP2 {
    padding: 1rem 0 1.2rem;
    background-size: 100%;
  }
  .inviteP2 .mxfDiv {
    display: block;
  }
  .inviteP2 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.65rem;
  }
  .inviteP2 .leftDiv {
    width: auto;
  }
  .inviteP2 .leftDiv li {
    width: calc((100% - 0.45rem) / 2);
    margin-right: 0.45rem;
  }
  .inviteP2 .leftDiv li .baozhe {
    padding-top: 0.56rem;
    height: 3rem;
  }
  .inviteP2 .leftDiv li .ico {
    width: 1rem;
    height: 1rem;
  }
  .inviteP2 .leftDiv li .ico img {
    width: 0.6rem;
  }
  .inviteP2 .leftDiv li .name {
    margin-top: 0.2rem;
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .inviteP2 .rightDiv {
    margin-top: 0.8rem;
    width: 100%;
  }
  .inviteP2 .rightDiv .title {
    padding-left: 0;
  }
  .inviteP2 .rightDiv .list {
    margin-top: 0.5rem;
  }
  .inviteP2 .rightDiv .list li {
    padding: 0.2rem;
    height: auto;
  }
  .inviteP2 .rightDiv .list li .name {
    font-size: var(--fs15);
    line-height: 0.42rem;
  }
  .inviteP2 .rightDiv .list li .num {
    font-size: var(--fs18);
    line-height: 0.42rem;
  }
  .inviteP2 .rightDiv .list li .line {
    height: 3px;
  }
  .inviteP2 .rightDiv .list li .line::after {
    height: 3px;
  }
  #sexrate {
    width: 100%;
    height: 5rem;
  }
  .inviteP3 {
    padding: 0.9rem 0 1.2rem;
    border-radius: 0 0 0.64rem 0.64rem;
  }
  .inviteP3 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.65rem;
  }
  .inviteP3 .list ul {
    flex-flow: nowrap;
  }
  .inviteP3 .list li {
    width: 100%;
    margin: 0;
    min-height: 4.8rem;
    padding: 0.6rem 0.45rem 0.4rem;
  }
  .inviteP3 .list li .ico {
    height: 1.56rem;
  }
  .inviteP3 .list li .ico img {
    width: 1.4rem;
  }
  .inviteP3 .list li .name {
    line-height: 0.52rem;
    font-size: var(--fs17);
  }
  .inviteP3 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .inviteP3 .swiper-pagination {
    display: block;
  }
}
.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: 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 */
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.videoModal-box.on {
  opacity: 1;
  visibility: visible;
}
.videoLayer {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.videoLayer .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 100vh;
}
.videoLayer .mxfDiv video {
  max-width: 100%;
  max-height: 100vh;
}
.videoLayer .mxfDiv iframe {
  width: 10rem;
  height: 5.6rem;
}
.videoLayer .close {
  position: absolute;
  display: block;
  right: 20px;
  top: 20px;
  width: 48px;
  z-index: 2;
  height: 48px;
  border-radius: 50%;
  background: #00B9BF url(../img/close.svg) center no-repeat;
  background-size: 28px;
  opacity: 1;
  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);
  opacity: 1;
}
@media (max-width: 1004px) {
  .videoLayer .close {
    right: 0.3rem;
    top: 1.3rem;
    width: 0.8rem;
    height: 0.8rem;
    background-size: 0.36rem;
  }
  .videoLayer .mxfDiv iframe {
    width: 100%;
    height: 4rem;
  }
}
.interbankP1 {
  padding: 1.05rem 0 1.4rem;
  background: linear-gradient(135deg, #ECFEFF 0%, #EFF6FF 50%, #FAF5FF 100%);
}
.interbankP1 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.interbankP1 .msg {
  font-size: var(--fs30);
  line-height: 0.4rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0.7rem;
}
.interbankP1 .imgDiv {
  text-align: center;
}
.interbankP1 .imgDiv img {
  max-width: 100%;
}
.interbankP2 {
  padding-top: 2.2rem;
}
.interbankP2 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.interbankP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.interbankP2 .list li {
  position: relative;
  width: calc((100% - 0.38rem) / 2);
  border-radius: 0.3rem;
  margin-top: 0.38rem;
  margin-right: 0.38rem;
  overflow: hidden;
}
.interbankP2 .list li:nth-child(-n+2) {
  margin-top: 0;
}
.interbankP2 .list li:nth-child(2n) {
  margin-right: 0;
}
.interbankP2 .list li .imgDiv {
  position: relative;
  height: 4.2rem;
}
.interbankP2 .list li .imgDiv::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background: rgba(30, 35, 127, 0.8);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.interbankP2 .list li .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0) 100%);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.interbankP2 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interbankP2 .list li .layer {
  position: absolute;
  left: 0;
  bottom: 0.4rem;
  z-index: 1;
  width: 100%;
  padding: 0 0.4rem;
  color: #fff;
}
.interbankP2 .list li .layer .ico img {
  width: 0.58rem;
}
.interbankP2 .list li .layer .name {
  margin-top: 0.2rem;
  margin-bottom: 5px;
  font-size: var(--fs36);
  font-weight: 600;
  line-height: 0.52rem;
}
.interbankP2 .list li .layer .msg {
  font-size: var(--fs18);
  line-height: 0.34rem;
  font-weight: 400;
}
.interbankP2 .list li:hover .imgDiv::before {
  opacity: 1;
  visibility: visible;
}
.interbankP2 .list li:hover .imgDiv::after {
  opacity: 0;
  visibility: hidden;
}
.interbankP3 {
  padding-top: 1.2rem;
}
.interbankP3 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
}
.interbankP3 .list li {
  position: relative;
}
.interbankP3 .list li .wrap {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  min-height: 8.46rem;
  padding: 0.9rem 0;
}
.interbankP3 .list li .imgDiv {
  position: relative;
  z-index: 1;
  width: 8.23rem;
  border-radius: 0.3rem;
  overflow: hidden;
}
.interbankP3 .list li .imgDiv img {
  width: 100%;
}
.interbankP3 .list li .conDiv {
  width: calc(100% - 8.73rem);
}
.interbankP3 .list li .conDiv .limg {
  margin-bottom: 0.4rem;
}
.interbankP3 .list li .conDiv .limg img {
  width: 2.01rem;
}
.interbankP3 .list li .conDiv .name {
  color: #1E237F;
  font-size: var(--fs42);
  line-height: 0.64rem;
  font-weight: 300;
}
.interbankP3 .list li .conDiv .name em {
  display: block;
  font-size: var(--fs56);
  font-weight: 600;
}
.interbankP3 .list li .conDiv .name span {
  display: block;
  font-size: var(--fs56);
  font-weight: 600;
}
.interbankP3 .list li .conDiv .msg {
  margin-top: 0.4rem;
  font-size: var(--fs18);
  line-height: 0.34rem;
  width: 6.2rem;
  /*text-align: justify;*/
}
.interbankP3 .list li .conDiv .more {
  margin-top: 0.5rem;
}
.interbankP3 .list li .conDiv .more 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: 1.8rem;
  height: 0.6rem;
  border-radius: 0.45rem;
  background: #00B9BF;
  color: #fff;
  font-size: var(--fs18);
}
.interbankP3 .list li .conDiv .rimg {
  margin-top: 0.6rem;
}
.interbankP3 .list li .conDiv .rimg img {
  width: 100%;
}
.interbankP3 .list li:nth-child(1) {
  background: #f4f4f4;
  border-radius: 0.9rem 0.9rem 0 0;
}
.interbankP3 .list li:nth-child(1) .imgDiv {
  order: 1;
}
.interbankP3 .list li:nth-child(2) {
  background: #00B9BF;
  border-radius: 0 0 0.9rem 0.9rem;
}
.interbankP3 .list li:nth-child(2)::after {
  content: '';
  position: absolute;
  right: 0.2rem;
  top: 0;
  width: 4.47rem;
  height: 5.22rem;
  background: url(../img/nimg447Bg.svg) no-repeat;
  background-size: 4.47rem;
}
.interbankP3 .list li:nth-child(2) .conDiv {
  width: calc(100% - 8.95rem);
}
.interbankP3 .list li:nth-child(2) .name,
.interbankP3 .list li:nth-child(2) .msg {
  color: #fff;
}
.interbankP4 {
  padding: 1.26rem 0 1.2rem;
  overflow: hidden;
}
.interbankP4 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.interbankP4 .pjDiv {
  position: relative;
  margin-top: 0.6rem;
  padding: 0 0.68rem;
  min-height: 8.4rem;
}
.interbankP4 .midImg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -2.34rem;
  width: 7.97rem;
  height: 4.67rem;
  margin-left: -3.98rem;
}
.interbankP4 .midImg img {
  max-width: 7.97rem;
}
.interbankP4 .lie ul {
  margin-bottom: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  justify-content: space-between;
}
.interbankP4 .lie li {
  position: relative;
  width: calc((100% - 4rem) / 2);
  margin-right: 4rem;
  min-height: 3.3rem;
  padding-bottom: 0.6rem;
}
.interbankP4 .lie li:nth-child(2n) {
  margin-right: 0;
}
.interbankP4 .lie li .limg img {
  width: 1.8rem;
}
.interbankP4 .lie li .name {
  font-size: var(--fs36);
  line-height: 0.54rem;
  font-weight: 600;
  margin: 0.1rem 0 0.2rem;
  color: #333;
}
.interbankP4 .lie li .msg {
  font-size: var(--fs18);
  line-height: 0.34rem;
  font-weight: 400;
}
.interbankP4 .lie li:nth-child(even) {
  width: calc((100% - 4rem) / 2);
  text-align: right;
}
.interbankP4 .lie li:nth-child(3),
.interbankP4 .lie li:nth-child(4) {
  min-height: 1.2rem;
  padding-bottom: 0;
}
.interbankP5 {
  padding: 1.1rem 0 1.4rem;
  background: url(../img/interbankP5.jpg) center no-repeat;
  background-size: cover;
}
.interbankP5 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.interbankP5 .mxfDiv {
  margin-top: 1.1rem;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.interbankP5 .txt {
  font-size: var(--fs36);
  line-height: 0.52rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.4rem;
  white-space: normal;
}
.interbankP5 .leftDiv,
.interbankP5 .midDiv,
.interbankP5 .rightDiv {
  width: calc((100% - 0.76rem) / 3);
  margin-right: 0.38rem;
}
.interbankP5 .rightDiv {
  margin-right: 0;
}
.interbankP5 .leftDiv ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin: 0;
}
.interbankP5 .leftDiv li {
  width: calc((100% - 0.4rem) / 3);
  margin-right: 0.2rem;
  margin-top: 0.3rem;
}
.interbankP5 .leftDiv li:nth-child(3n) {
  margin-right: 0;
}
.interbankP5 .leftDiv li:nth-child(-n+3) {
  margin-top: 0;
}
.interbankP5 .leftDiv li a {
  display: block;
  text-align: center;
  padding: 0.26rem 0.05rem 0;
  height: 1.2rem;
  border-radius: 0.12rem;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
}
.interbankP5 .leftDiv li a .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 0.3rem;
}
.interbankP5 .leftDiv li a .ico img {
  max-width: 0.5rem;
  max-height: 0.3rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.interbankP5 .leftDiv li a .name {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.34rem;
  color: #666;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.interbankP5 .leftDiv li a:hover {
  border: #00B9BF solid 1px;
  background: #00B9BF;
}
.interbankP5 .leftDiv li a:hover .ico img {
  filter: brightness(0) invert(1);
}
.interbankP5 .leftDiv li a:hover .name {
  color: #fff;
}
.interbankP5 .midDiv {
  text-align: center;
}
.interbankP5 .midDiv .pjDiv {
  min-height: 2.7rem;
  padding: 0.45rem 0.5rem 0;
  border-radius: 0.3rem;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
}
.interbankP5 .midDiv .pjDiv .ico img {
  width: 0.58rem;
}
.interbankP5 .midDiv .pjDiv .zi {
  margin: 0.1rem 0;
  font-size: var(--fs24);
  line-height: 0.32rem;
}
.interbankP5 .midDiv .pjDiv .num {
  font-size: var(--fs52);
  line-height: 0.72rem;
  color: #1E237F;
  font-weight: 600;
}
.interbankP5 .rightDiv {
  text-align: center;
}
.interbankP5 .rightDiv .pjDiv {
  min-height: 2.7rem;
  padding: 0.45rem 0.5rem 0;
  border-radius: 0.3rem;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
}
.interbankP5 .rightDiv .pjDiv .ico img {
  width: 0.58rem;
}
.interbankP5 .rightDiv .pjDiv .zi {
  margin: 0.1rem 0;
  font-size: var(--fs24);
  line-height: 0.32rem;
}
.interbankP5 .rightDiv .pjDiv .num {
  font-size: var(--fs52);
  line-height: 0.72rem;
  color: #1E237F;
  font-weight: 600;
}
.interbankP6 {
  padding: 1.1rem 0 1.5rem;
}
.interbankP6 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.interbankP6 .list ul {
  margin-bottom: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.interbankP6 .list li {
  width: calc((100% - 0.96rem) / 4);
  margin-right: 0.32rem;
  margin-top: 0.4rem;
}
.interbankP6 .list li:nth-child(4n) {
  margin-right: 0;
}
.interbankP6 .list li:nth-child(-n+4) {
  margin-top: 0;
}
.interbankP6 .list li .imgDiv {
  border-radius: 10px;
  overflow: hidden;
}
.interbankP6 .list li .imgDiv img {
  width: 100%;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.interbankP6 .list li .name {
  margin-top: 0.3rem;
  color: #333;
  font-size: var(--fs20);
  line-height: 0.36rem;
}
.interbankP6 .list li:hover .imgDiv img {
  transform: scale(1.1);
}
@media (max-width: 1004px) {
  .interbankP1 {
    padding: 0.9rem 0 1rem;
  }
  .interbankP1 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .interbankP1 .msg {
    font-size: var(--fs15);
    line-height: 0.64rem;
    text-align: left;
    margin-bottom: 0.6rem;
  }
  .interbankP2 {
    padding-top: 1.2rem;
  }
  .interbankP2 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
    margin-bottom: 0.65rem;
  }
  .interbankP2 .list li {
    width: 100%;
    margin-top: 0.3rem;
    margin-right: 0;
  }
  .interbankP2 .list li:nth-child(1) {
    margin-top: 0;
  }
  .interbankP2 .list li:nth-child(2) {
    margin-top: 0.3rem;
  }
  .interbankP2 .list li .imgDiv {
    height: 4rem;
  }
  .interbankP2 .list li .imgDiv::before{
  	background: rgba(30, 35, 127, 0.9);
  }
  .interbankP2 .list li .layer {
    bottom: 0.3rem;
    padding: 0 0.3rem;
  }
  .interbankP2 .list li .layer .ico img {
    max-width: 0.54rem;
  }
  .interbankP2 .list li .layer .name {
    font-size: var(--fs20);
    line-height: 0.42rem;
  }
  .interbankP2 .list li .layer .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .interbankP3 {
    padding-top: 1.1rem;
  }
  .interbankP3 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
    margin-bottom: 0.65rem;
  }
  .interbankP3 .list li {
    position: relative;
  }
  .interbankP3 .list li .wrap {
    display: block;
    min-height: 2rem;
    padding: 0.8rem var(--offset);
  }
  .interbankP3 .list li .imgDiv {
    width: 100%;
  }
  .interbankP3 .list li .conDiv {
    margin-top: 0.6rem;
    width: auto;
  }
  .interbankP3 .list li .conDiv .limg img {
    width: 2.6rem;
  }
  .interbankP3 .list li .conDiv .name {
    font-size: var(--fs20);
  }
  .interbankP3 .list li .conDiv .name em {
    font-size: var(--fs24);
  }
  .interbankP3 .list li .conDiv .name span {
    font-size: var(--fs24);
  }
  .interbankP3 .list li .conDiv .msg {
    margin-top: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    width: auto;
  }
  .interbankP3 .list li .conDiv .more a {
    width: 2.4rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .interbankP3 .list li .conDiv .rimg {
    margin-top: 0.6rem;
  }
  .interbankP3 .list li:nth-child(1) {
    border-radius: 0.64rem 0.64rem 0 0;
  }
  .interbankP3 .list li:nth-child(2) {
    border-radius: 0 0 0.64rem 0.64rem;
  }
  .interbankP3 .list li:nth-child(2) .conDiv {
    width: auto;
  }
  .interbankP4 {
    padding: 0.9rem 0 1.2rem;
  }
  .interbankP4 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .interbankP4 .pjDiv {
    padding: 0;
    min-height: 2rem;
  }
  .interbankP4 .midImg {
    display: none;
    position: relative;
    left: 0;
    top: 0;
    margin-top: 0;
    width: 100%;
    height: auto;
    margin-left: 0;
  }
  .interbankP4 .midImg img {
    max-width: 100%;
  }
  .interbankP4 .lie li {
    width: auto;
    padding: 0.3rem;
    margin-right: 0;
    min-height: 1rem;
    border: #eee solid 1px;
    border-radius: 0.2rem;
    margin-top: 0.3rem;
  }
  .interbankP4 .lie li:first-child {
    margin-top: 0;
  }
  .interbankP4 .lie li .limg img {
    width: 2rem;
  }
  .interbankP4 .lie li .name {
    font-size: var(--fs20);
    line-height: 0.68rem;
    margin: 0.2rem 0;
  }
  .interbankP4 .lie li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .interbankP4 .lie li:nth-child(even) {
    width: 100%;
    text-align: left;
  }
  .interbankP4 .lie li:nth-child(3),
  .interbankP4 .lie li:nth-child(4) {
    min-height: 1rem;
    padding: 0.3rem;
  }
  .interbankP4 .lie li:last-child {
    padding: 0.3rem;
  }
  .interbankP5 {
    padding: 0.9rem 0 1rem;
  }
  .interbankP5 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .interbankP5 .mxfDiv {
    margin-top: 0.7rem;
  }
  .interbankP5 .txt {
    font-size: var(--fs18);
    line-height: 0.48rem;
    margin-bottom: 0.4rem;
  }
  .interbankP5 .leftDiv {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.6rem;
  }
  .interbankP5 .midDiv,
  .interbankP5 .rightDiv {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.6rem;
  }
  .interbankP5 .rightDiv {
    margin-bottom: 0;
    margin-right: 0;
  }
  .interbankP5 .leftDiv li a {
    padding: 0.35rem 0.15rem 0.3rem;
    height: auto;
    border-radius: 0.2rem;
  }
  .interbankP5 .leftDiv li a .ico {
    height: 0.48rem;
  }
  .interbankP5 .leftDiv li a .ico img {
    max-width: 0.72rem;
    max-height: 0.48rem;
  }
  .interbankP5 .leftDiv li a .name {
    font-size: var(--fs12);
    line-height: 0.42rem;
  }
  .interbankP5 .midDiv .pjDiv {
    padding: 0.4rem 0.2rem 0.3rem;
  }
  .interbankP5 .midDiv .pjDiv .ico img {
    width: 0.64rem;
  }
  .interbankP5 .midDiv .pjDiv .zi {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .interbankP5 .midDiv .pjDiv .num {
    font-size: var(--fs26);
  }
  .interbankP5 .rightDiv {
    text-align: center;
  }
  .interbankP5 .rightDiv .pjDiv {
    padding: 0.4rem 0.2rem 0.3rem;
  }
  .interbankP5 .rightDiv .pjDiv .ico img {
    width: 0.64rem;
  }
  .interbankP5 .rightDiv .pjDiv .zi {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .interbankP5 .rightDiv .pjDiv .num {
    font-size: var(--fs26);
  }
  .interbankP6 {
    padding: 0.9rem 0 1.2rem;
  }
  .interbankP6 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .interbankP6 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .interbankP6 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .interbankP6 .list li:nth-child(3),
  .interbankP6 .list li:nth-child(4) {
    margin-top: 0.4rem;
  }
  .interbankP6 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .interbankP6 .list li .imgDiv {
    border-radius: 0.2rem;
  }
  .interbankP6 .list li .name {
    font-size: var(--fs15);
    line-height: 0.56rem;
  }
}
.aboutP1 {
  padding: 1.1rem 0 0.8rem;
}
.aboutP1 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.aboutP1 .msg {
  font-size: var(--fs30);
  line-height: 0.4rem;
  color: #333;
  text-align: center;
  font-weight: 400;
  margin-bottom: 1.35rem;
}
.aboutP1 .content {
  width: 10.8rem;
  font-size: var(--fs30);
  line-height: 0.4rem;
  color: #333;
  text-align: center;
  font-weight: 400;
  margin: 0 auto 1rem;
}
.aboutP1 .ss {
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutP1 .ss img {
  margin: 0 1px;
  height: 1.18rem;
}
.aboutP2 {
  overflow: hidden;
  padding: 1.1rem 0;
  background: url(../img/aboutP2.jpg) center bottom no-repeat;
  background-size: 100%;
}
.aboutP2 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.86rem;
}
.aboutP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.aboutP2 .list li {
  width: calc((100% - 1.24rem) / 3);
  margin-right: 0.62rem;
  min-height: 5.5rem;
  padding: 0.9rem 0.7rem 0.5rem;
  border-radius: 0.3rem;
  background: #fff;
  border: 1px solid #E1EFF5;
  text-align: center;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP2 .list li:nth-child(3n) {
  margin-right: 0;
}
.aboutP2 .list li .ico img {
  width: 1.2rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP2 .list li .name {
  margin-top: 0.65rem;
  font-size: var(--fs36);
  line-height: 0.54rem;
  font-weight: 600;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP2 .list li .msg {
  margin-top: 0.15rem;
  font-size: var(--fs16);
  color: #666;
  line-height: 0.34rem;
  font-weight: 400;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP2 .list li:hover {
  background: #00B9BF;
  border: 1px solid #00B9BF;
  box-shadow: 0 10px 30px 0 rgba(0, 185, 191, 0.4);
}
.aboutP2 .list li:hover .ico img {
  filter: brightness(0) invert(1);
}
.aboutP2 .list li:hover .name,
.aboutP2 .list li:hover .msg {
  color: #fff;
}
.aboutP2 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.aboutP2 .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #fff;
  border: #ddd solid 1px;
}
.aboutP2 .swiper-pagination-bullet-active {
  background: #00B9BF;
  border: #00B9BF solid 1px;
}
.aboutP3 {
  padding: 2.1rem 0;
}
.aboutP3 .wrap {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.aboutP3 .imgDiv {
  order: 1;
  width: 8rem;
  overflow: hidden;
  border-radius: 0.3rem;
}
.aboutP3 .imgDiv img {
  width: 100%;
}
.aboutP3 .conDiv {
  width: calc(100% - 8.56rem);
}
.aboutP3 .conDiv .name {
  font-size: var(--fs52);
  line-height: 0.72rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.aboutP3 .conDiv .content {
  font-size: var(--fs18);
  line-height: 0.34rem;
  font-weight: 400;
 /* text-align: justify;*/
}
.aboutP4 {
  padding: 1.4rem 0 1.5rem;
  background: url(../img/aboutP4.jpg) center no-repeat;
  background-size: cover;
  /* 年份导航样式 */
  /* 内容区域样式 */
}
.aboutP4 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.95rem;
}
.aboutP4 .swiper-container {
  position: relative;
  width: 100%;
}
.aboutP4 .years-swiper {
  margin-top: 0.35rem;
  width: 100%;
  position: relative;
  overflow: visible;
}
.aboutP4 .years-swiper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.11rem;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
}
.aboutP4 .years-swiper .wrap {
  overflow: hidden;
}
.aboutP4 .years-swiper .se {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.aboutP4 .years-swiper .se:hover {
  background: #00B9BF;
}
.aboutP4 .years-swiper .prev {
  top: -0.18rem;
  left: 50%;
  margin-left: -8.6rem;
  background: #fff url(../img/nimg10_left.png) center no-repeat;
  background-size: 0.08rem;
}
.aboutP4 .years-swiper .prev:hover {
  background: #00B9BF url(../img/nimg10_lefton.png) center no-repeat;
  background-size: 0.08rem;
}
.aboutP4 .years-swiper .next {
  top: -0.18rem;
  right: 50%;
  margin-right: -8.6rem;
  background: #fff url(../img/nimg10_right.png) center no-repeat;
  background-size: 0.08rem;
}
.aboutP4 .years-swiper .next:hover {
  background: #00B9BF url(../img/nimg10_righton.png) center no-repeat;
  background-size: 0.08rem;
}
.aboutP4 .year-slide {
  cursor: pointer;
  text-align: center;
}
.aboutP4 .year-slide .ico {
  position: absolute;
  left: 50%;
  margin-left: -0.12rem;
  top: 0;
  width: 0.24rem;
  height: 0.24rem;
  background: transparent;
  border-radius: 50%;
}
.aboutP4 .year-slide .ico::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.05rem;
  margin-top: -0.05rem;
  width: 0.1rem;
  height: 0.1rem;
  background: #B7C0D0;
  border-radius: 50%;
}
.aboutP4 .year-slide .year {
  font-family: barlow-r;
  margin-top: 0.4rem;
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #666;
  transition: all 0.3s ease;
}
.aboutP4 .year-slide.active .ico {
  background: #EBF3FE;
}
.aboutP4 .year-slide.active .ico::after {
  background: #00B9BF;
}
.aboutP4 .year-slide.active .year {
  color: #00B9BF;
}
.aboutP4 .content-swiper {
  width: 100%;
  min-height: 3.5rem;
  overflow: hidden;
}
.aboutP4 .content-slide {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  height: auto;
  width: 50%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.aboutP4 .content-slide .content-title {
  font-size: 0.64rem;
  line-height: 0.76rem;
  color: #666;
}
.aboutP4 .content-slide .content-text {
  display: none;
  width: 100%;
  margin: 0.6rem auto 0;
  line-height: 0.36rem;
  font-size: var(--fs30);
  color: #333;
}
.aboutP4 .content-slide.swiper-slide-active .content-title {
  color: #00B9BF;
  font-size: 1.2rem;
  line-height: 1.44rem;
}
.aboutP4 .content-slide.swiper-slide-active .content-text {
  display: block;
}
.historyPic {
  position: relative;
  z-index: 1;
}
.historyPic .wrap {
  position: relative;
}
.historyPic .box-container {
  margin-top: 0.35rem;
  position: relative;
  width: 100%;
}
.historyPic .box-container:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.11rem;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
}
.historyPic .year-swiper {
  overflow: hidden;
}
.historyPic .swiper-slide {
  cursor: pointer;
  position: relative;
  text-align: center;
}
.historyPic .swiper-slide .ico {
  position: absolute;
  left: 50%;
  margin-left: -0.12rem;
  top: 0;
  width: 0.24rem;
  height: 0.24rem;
  background: transparent;
  border-radius: 50%;
}
.historyPic .swiper-slide .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.05rem;
  margin-top: -0.05rem;
  width: 0.1rem;
  height: 0.1rem;
  background: #B7C0D0;
  border-radius: 50%;
}
.historyPic .swiper-slide .year {
  font-family: barlow-r;
  margin-top: 0.4rem;
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #666;
}
.historyPic .swiper-slide-active .year {
  color: #00B9BF;
}
.historyPic .swiper-slide-active .ico {
  background: #EBF3FE;
}
.historyPic .swiper-slide-active .ico:after {
  background: #00B9BF;
}
.historyPic .rq1 {
  position: absolute;
  top: 50%;
  margin-top: -0.38rem;
  z-index: 1;
  z-index: 2;
}
.historyPic .rq_lef {
  left: 0;
}
.historyPic .rq_rig {
  right: 0;
}
.historyPic .rq1 .year {
  font-family: 'barlow-R';
  font-size: 0.64rem;
  color: #666;
  line-height: 0.76rem;
}
.historyPic .detail-box .item {
  display: none;
  min-height: 3.6rem;
  position: relative;
  overflow: hidden;
}
.historyPic .detail-box .item.on {
  display: block;
  animation: fadeOfOpacity 0.5s linear;
}
.historyPic .detail-box .year {
  font-family: 'barlow-B';
  font-size: 1.2rem;
  line-height: 1.44rem;
  color: #00B9BF;
  text-align: center;
  animation: am_top 0.6s ease-in-out 0.2s backwards;
}
.historyPic .detail-box .desc {
  margin: 0.6rem auto 0;
  text-align: center;
  width: 9rem;
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #333;
  overflow: auto;
  animation: am_top 0.6s ease-in-out 0.2s backwards;
}
.historyPic .detail-box .desc::-webkit-scrollbar {
  width: 2px;
}
.historyPic .detail-box .desc::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.4);
}
.historyPic .detail-box .desc::-webkit-scrollbar-thumb {
  background: #00B9BF;
}
.historyPic .se {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.historyPic .se:hover {
  background: #00B9BF;
}
.historyPic .prev {
  top: -0.18rem;
  left: 50%;
  margin-left: -8.6rem;
  background: #fff url(../img/nimg10_left.png) center no-repeat;
  background-size: 0.08rem;
}
.historyPic .prev:hover {
  background: #00B9BF url(../img/nimg10_lefton.png) center no-repeat;
  background-size: 0.08rem;
}
.historyPic .next {
  top: -0.18rem;
  right: 50%;
  margin-right: -8.6rem;
  background: #fff url(../img/nimg10_right.png) center no-repeat;
  background-size: 0.08rem;
}
.historyPic .next:hover {
  background: #00B9BF url(../img/nimg10_righton.png) center no-repeat;
  background-size: 0.08rem;
}
.aboutP5 {
  padding: 1.05rem 0 1.7rem;
  background: linear-gradient(to top right, #F2F6FF, #fff);
}
.aboutP5 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.aboutP5 .mapDiv {
  position: relative;
}
.aboutP5 .mapDiv .bg img {
  width: 100%;
}
.aboutP5 .mapDiv .limg {
  display: none;
  position: absolute;
  right: 2rem;
  top: 2.06rem;
  width: 10.32rem;
}
.aboutP5 .mapDiv .limg img {
  width: 100%;
}
.aboutP5 .mapDiv .zi {
  position: absolute;
  left: 0;
  bottom: 0.3rem;
  width: 100%;
  font-size: var(--fs18);
  line-height: 0.34rem;
  font-weight: 400;
  padding: 0 2.4rem;
  z-index: 1;
  text-align: center;
}
.aboutP5 .mapDiv .zi span {
  padding: 0 8px;
  white-space: nowrap;
}
@media (max-width: 1004px) {
  .aboutP1 {
    padding: 0.9rem 0 0.8rem;
  }
  .aboutP1 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .aboutP1 .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
    margin-bottom: 0.75rem;
  }
  .aboutP1 .content {
    width: auto;
    font-size: var(--fs15);
    line-height: 0.48rem;
    margin: 0 auto 0.7rem;
  }
  .aboutP1 .ss img {
    height: 0.6rem;
  }
  .aboutP2 {
    padding: 0.9rem 0;
  }
  .aboutP2 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
    margin-bottom: 0.65rem;
  }
  .aboutP2 .list {
    overflow: hidden;
  }
  .aboutP2 .list ul {
    flex-flow: nowrap;
  }
  .aboutP2 .list li {
    width: auto;
    margin-right: 0;
    min-height: 4.8rem;
    padding: 0.7rem 0.35rem 0.5rem;
  }
  .aboutP2 .list li .name {
    margin-top: 0.4rem;
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .aboutP2 .list li .msg {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP2 .list li:hover {
    box-shadow: none;
  }
  .aboutP2 .swiper-pagination {
    display: block;
  }
  .aboutP3 {
    padding: 1.2rem 0;
  }
  .aboutP3 .wrap {
    display: block;
  }
  .aboutP3 .imgDiv {
    width: 100%;
  }
  .aboutP3 .conDiv {
    width: auto;
    margin-top: 0.65rem;
  }
  .aboutP3 .conDiv .name {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .aboutP3 .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP4 {
    padding: 1rem 0 1.1rem;
    background: #fbfcff url(../img/aboutP4.jpg) center bottom no-repeat;
    background-size: 100%;
    /* 年份导航样式 */
    /* 内容区域样式 */
  }
  .aboutP4 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
    margin-bottom: 0.65rem;
  }
  .aboutP4 .swiper-container {
    position: relative;
    width: 100%;
  }
  .aboutP4 .years-swiper {
    margin-top: 0.3rem;
  }
  .aboutP4 .years-swiper::before {
    top: 0.12rem;
  }
  .aboutP4 .years-swiper .wrap {
    overflow: hidden;
  }
  .aboutP4 .years-swiper .se {
    display: none;
  }
  .aboutP4 .years-swiper .prev {
    top: -0.18rem;
    left: 50%;
    margin-left: -8.6rem;
    background: #fff url(../img/nimg10_left.png) center no-repeat;
    background-size: 0.08rem;
  }
  .aboutP4 .years-swiper .prev:hover {
    background: #00B9BF url(../img/nimg10_lefton.png) center no-repeat;
    background-size: 0.08rem;
  }
  .aboutP4 .years-swiper .next {
    top: -0.18rem;
    right: 50%;
    margin-right: -8.6rem;
    background: #fff url(../img/nimg10_right.png) center no-repeat;
    background-size: 0.08rem;
  }
  .aboutP4 .years-swiper .next:hover {
    background: #00B9BF url(../img/nimg10_righton.png) center no-repeat;
    background-size: 0.08rem;
  }
  .aboutP4 .year-slide {
    cursor: pointer;
    text-align: center;
  }
  .aboutP4 .year-slide .ico {
    margin-left: -0.15rem;
    top: 0;
    width: 0.3rem;
    height: 0.3rem;
  }
  .aboutP4 .year-slide .ico::after {
    margin-left: -0.09rem;
    margin-top: -0.09rem;
    width: 0.18rem;
    height: 0.18rem;
  }
  .aboutP4 .year-slide .year {
    margin-top: 0.35rem;
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .aboutP4 .content-swiper {
    min-height: 2.5rem;
  }
  .aboutP4 .content-swiper .wrap {
    overflow: hidden;
  }
  .aboutP4 .content-slide {
    display: block;
    width: 100%;
  }
  .aboutP4 .content-slide .content-title {
    font-size: var(--fs36);
    line-height: 0.64rem;
  }
  .aboutP4 .content-slide .content-text {
    display: block;
    width: 90%;
    margin: 0.45rem auto 0;
    line-height: 0.48rem;
    font-size: var(--fs15);
  }
  .aboutP4 .content-slide.swiper-slide-active .content-title {
    font-size: var(--fs36);
    line-height: 0.64rem;
  }
  .historyPic .box-container {
    margin-top: 0.3rem;
  }
  .historyPic .box-container:before {
    top: 0.12rem;
  }
  .historyPic .swiper-slide .ico {
    margin-left: -0.15rem;
    top: 0;
    width: 0.3rem;
    height: 0.3rem;
  }
  .historyPic .swiper-slide .ico:after {
    margin-left: -0.09rem;
    margin-top: -0.09rem;
    width: 0.18rem;
    height: 0.18rem;
  }
  .historyPic .swiper-slide .year {
    margin-top: 0.35rem;
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .historyPic .rq1 {
    display: none;
  }
  .historyPic .detail-box .item {
    min-height: 2.5rem;
  }
  .historyPic .detail-box .year {
    font-size: var(--fs36);
    line-height: 0.64rem;
  }
  .historyPic .detail-box .desc {
    margin: 0.45rem auto 0;
    width: 100%;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .historyPic .se {
    display: none;
  }
  .aboutP5 {
    padding: 0.9rem 0 1.2rem;
  }
  .aboutP5 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .aboutP5 .mapDiv {
    position: relative;
  }
  .aboutP5 .mapDiv .bg img {
    width: 100%;
  }
  .aboutP5 .mapDiv .limg {
    display: none;
    right: 15.6%;
    top: 15.5%;
    width: 64.5%;
  }
  .aboutP5 .mapDiv .zi {
    position: relative;
    margin-top: 0.6rem;
    bottom: 0;
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0;
	overflow-wrap: break-word;
  }
  .aboutP5 .mapDiv .zi span {
    padding: 0 5px;
  }
}
.artificialP1 {
  position: relative;
  overflow: hidden;
  margin-top: -0.8rem;
  padding: 1.9rem 0 1.2rem;
  background: #00B9BF;
  border-radius: 0 0 0.9rem 0.9rem;
}
.artificialP1 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.artificialP1 .zi {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #fff;
  text-align: center;
  font-weight: 300;
  margin-bottom: 0.6rem;
}
.artificialP1 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.artificialP1 .list li {
  width: calc((100% - 0.64rem) / 3);
  margin-right: 0.32rem;
  min-height: 6rem;
  border-radius: 0.3rem;
  background: #fff;
  overflow: hidden;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.artificialP1 .list li:nth-child(3n) {
  margin-right: 0;
}
.artificialP1 .list li .imgDiv {
  height: 2.4rem;
  border-radius: 0.3rem;
  overflow: hidden;
}
.artificialP1 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.artificialP1 .list li .botDiv {
  background: #fff;
  padding: 0.3rem 0.35rem 0;
  height: 3.6rem;
}
.artificialP1 .list li .botDiv .name {
  font-size: var(--fs28);
  line-height: 0.42rem;
  color: #333;
  font-weight: 600;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.artificialP1 .list li .botDiv .msg {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  color: #666;
  line-height: 0.26rem;
  font-weight: 400;
  /*text-align: justify;*/
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.artificialP1 .list li:hover .imgDiv img {
  transform: scale(1.1);
}
.artificialP1 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.artificialP1 .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #fff;
  border: #fff solid 1px;
}
.artificialP1 .swiper-pagination-bullet-active {
  background: #1E237F;
  border: #1E237F solid 1px;
}
.artificialP2 {
  padding: 1rem 0 1.8rem;
}
.artificialP2 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.artificialP2 .zi {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.artificialP2 .mxfDiv {
  position: relative;
  min-height: 6.3rem;
  background: url(../img/nimg600Bg.png) center no-repeat;
  background-size: 6rem;
}
.artificialP2 .mxfDiv::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3.82rem;
  height: 3.82rem;
  margin-left: -1.91rem;
  margin-top: -1.91rem;
  background: url(../img/nimg382Bg.png) center no-repeat;
  background-size: 100%;
  animation: spin 3s linear infinite;
}
.artificialP2 .mxfDiv::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3.32rem;
  height: 3.32rem;
  margin-left: -1.61rem;
  margin-top: -1.61rem;
  background: url(../img/nimg332Bg.png) center no-repeat;
  background-size: 100%;
  animation: spinaaa 10s linear infinite;
}
.artificialP2 .mxfDiv .icon {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.74rem;
  height: 2.74rem;
  margin-left: -1.37rem;
  margin-top: -1.37rem;
  background: #00B9BF;
  border-radius: 50%;
}
.artificialP2 .mxfDiv .icon img {
  width: 0.92rem;
}
.artificialP2 .mxfDiv .list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: absolute;
  z-index: 1;
  min-height: 1.5rem;
}
.artificialP2 .mxfDiv .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #fff;
  border: #00B9BF solid 1px;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.artificialP2 .mxfDiv .list li .ico img {
  max-width: 0.48rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.artificialP2 .mxfDiv .list li .conDiv {
  width: 4.2rem;
  padding-right: 0.3rem;
}
.artificialP2 .mxfDiv .list li .conDiv .name {
  font-size: var(--fs30);
  line-height: 0.52rem;
  font-weight: 600;
  color: #333;
}
.artificialP2 .mxfDiv .list li .conDiv .msg {
  margin-top: 0.05rem;
  color: #333;
  font-size: var(--fs20);
  line-height: 0.32rem;
  font-weight: 600;
}
.artificialP2 .mxfDiv .list li .conDiv .content {
  margin-top: 0.05rem;
  max-height: 0;
  font-size: var(--fs14);
  line-height: 0.2rem;
  overflow: hidden;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.artificialP2 .mxfDiv .list li:nth-child(1) {
  left: 6%;
  top: 0;
}
.artificialP2 .mxfDiv .list li:nth-child(1) .ico {
  order: 1;
}
.artificialP2 .mxfDiv .list li:nth-child(1) .conDiv {
  text-align: right;
}
.artificialP2 .mxfDiv .list li:nth-child(2) {
  left: 0;
  top: 50%;
  margin-top: -0.75rem;
}
.artificialP2 .mxfDiv .list li:nth-child(2) .ico {
  order: 1;
}
.artificialP2 .mxfDiv .list li:nth-child(2) .conDiv {
  text-align: right;
}
.artificialP2 .mxfDiv .list li:nth-child(3) {
  left: 6%;
  bottom: 0;
}
.artificialP2 .mxfDiv .list li:nth-child(3) .ico {
  order: 1;
}
.artificialP2 .mxfDiv .list li:nth-child(3) .conDiv {
  text-align: right;
}
.artificialP2 .mxfDiv .list li:nth-child(4) {
  right: 6%;
  top: 0;
}
.artificialP2 .mxfDiv .list li:nth-child(4) .conDiv {
  padding-right: 0;
  padding-left: 0.3rem;
}
.artificialP2 .mxfDiv .list li:nth-child(5) {
  right: 6%;
  bottom: 0;
}
.artificialP2 .mxfDiv .list li:nth-child(5) .conDiv {
  padding-right: 0;
  padding-left: 0.3rem;
}
.artificialP2 .mxfDiv .list li:hover .ico {
  background: #00B9BF;
  box-shadow: 0 17px 20px rgba(0, 185, 191, 0.2);
}
.artificialP2 .mxfDiv .list li:hover .ico img {
  filter: brightness(0) invert(1);
}
.artificialP2 .mxfDiv .list li:hover .conDiv .content {
  max-height: 2rem;
}
.artificialP3 {
  padding: 0.8rem 0 1.4rem;
  background: url(../img/artificialP3.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.artificialP3 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.artificialP3 .zi {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 300;
  margin-bottom: 0.54rem;
}
.artificialP3 .lunbo{
  position:relative;	
}
.artificialP3 .lunbo .imgList {
  width: 100%;
  overflow: hidden;
}
.artificialP3 .lunbo .imgList .swiper-slide {
  width: auto;
}
.artificialP3 .lunbo .imgList .swiper-slide .box {
  padding: 0.4rem 0.65rem 0;
  width: 4.5rem;
  height: 5rem;
  background: #fff;
  border-radius: 0.3rem;
  text-align: center;
}
.artificialP3 .lunbo .imgList .swiper-slide .limg img {
  width: 2.3rem;
}
.artificialP3 .lunbo .imgList .swiper-slide .name {
  margin-top: 0.5rem;
  font-size: var(--fs30);
  line-height: 0.42rem;
  color: #000;
  font-weight: 500;
}
.artificialP3 .lunbo .imgList .swiper-slide .msg {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.34rem;
  min-height: 0.68rem;
  font-weight: 400;
}
.artificialP3 .lunbo .imgList .swiper-slide .ico {
  margin: 0.25rem auto 0;
  width: 0.45rem;
  height: 0.45rem;
  background: #00B9BF url(../img/nimg10_righton.png) center no-repeat;
  background-size: 8px;
  border-radius: 50%;
}
.artificialP3 .lunbo .se {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 0.6rem;
  height: 0.6rem;
  top: 50%;
  margin-top: -0.3rem;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.artificialP3 .lunbo .se:hover {
  background: #00B9BF;
}
.artificialP3 .lunbo .prev {
  left: 0.3rem;
  background: #fff url(../img/nimg10_left.png) center no-repeat;
  background-size: 0.08rem;
}
.artificialP3 .lunbo .prev:hover {
  background: #00B9BF url(../img/nimg10_lefton.png) center no-repeat;
  background-size: 0.08rem;
}
.artificialP3 .lunbo .next {
  right: 0.3rem;
  background: #fff url(../img/nimg10_right.png) center no-repeat;
  background-size: 0.08rem;
}
.artificialP3 .lunbo .next:hover {
  background: #00B9BF url(../img/nimg10_righton.png) center no-repeat;
  background-size: 0.08rem;
}
@media (max-width: 1004px) {
  .artificialP1 {
    margin-top: -0.7rem;
    padding: 1.5rem 0 1.2rem;
    border-radius: 0 0 0.64rem 0.64rem;
  }
  .artificialP1 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .artificialP1 .zi {
    font-size: var(--fs17);
    line-height: 0.64rem;
  }
  .artificialP1 .list {
    overflow: hidden;
  }
  .artificialP1 .list ul {
    flex-flow: nowrap;
  }
  .artificialP1 .list li {
    width: 100%;
    margin-right: 0;
    min-height: 6.4rem;
  }
  .artificialP1 .list li .imgDiv {
    height: 3.8rem;
  }
  .artificialP1 .list li .botDiv {
    padding: 0.3rem 0.3rem 0;
    height: 5.2rem;
  }
  .artificialP1 .list li .botDiv .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .artificialP1 .list li .botDiv .msg {
    margin-top: 0.1rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .artificialP1 .swiper-pagination {
    display: block;
  }
  .artificialP2 {
    padding: 0.9rem 0 1.2rem;
  }
  .artificialP2 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .artificialP2 .zi {
    font-size: var(--fs17);
    line-height: 0.64rem;
    margin-bottom: 0.65rem;
  }
  .artificialP2 .mxfDiv {
    min-height: 2rem;
    background: none;
  }
  .artificialP2 .mxfDiv::before,
  .artificialP2 .mxfDiv::after {
    display: none;
  }
  .artificialP2 .mxfDiv .icon {
    display: none;
  }
  .artificialP2 .mxfDiv .list li {
    display: block;
    padding-left: 2.1rem;
    margin-bottom: 0.4rem;
    position: relative;
  }
  .artificialP2 .mxfDiv .list li:last-child {
    margin-bottom: 0;
  }
  .artificialP2 .mxfDiv .list li .ico {
    position: absolute;
    left: 0;
    top: 0;
    width: 1.6rem;
    height: 1.6rem;
  }
  .artificialP2 .mxfDiv .list li .ico img {
    max-width: 0.64rem;
  }
  .artificialP2 .mxfDiv .list li .conDiv {
    width: auto;
    padding-right: 0;
  }
  .artificialP2 .mxfDiv .list li .conDiv .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .artificialP2 .mxfDiv .list li .conDiv .msg {
    margin-top: 0.1rem;
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .artificialP2 .mxfDiv .list li .conDiv .content {
    margin-top: 0.1rem;
    max-height: 100%;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .artificialP2 .mxfDiv .list li:nth-child(1) {
    left: 0;
  }
  .artificialP2 .mxfDiv .list li:nth-child(1) .ico {
    order: 0;
  }
  .artificialP2 .mxfDiv .list li:nth-child(1) .conDiv {
    text-align: left;
  }
  .artificialP2 .mxfDiv .list li:nth-child(2) {
    left: 0;
    top: 0;
    margin-top: 0;
  }
  .artificialP2 .mxfDiv .list li:nth-child(2) .ico {
    order: 0;
  }
  .artificialP2 .mxfDiv .list li:nth-child(2) .conDiv {
    text-align: left;
  }
  .artificialP2 .mxfDiv .list li:nth-child(3) {
    left: 0;
  }
  .artificialP2 .mxfDiv .list li:nth-child(3) .ico {
    order: 0;
  }
  .artificialP2 .mxfDiv .list li:nth-child(3) .conDiv {
    text-align: left;
  }
  .artificialP2 .mxfDiv .list li:nth-child(4) {
    right: 0;
  }
  .artificialP2 .mxfDiv .list li:nth-child(4) .conDiv {
    padding-left: 0;
  }
  .artificialP2 .mxfDiv .list li:nth-child(5) {
    right: 0;
  }
  .artificialP2 .mxfDiv .list li:nth-child(5) .conDiv {
    padding-left: 0;
  }
  .artificialP2 .mxfDiv .list li:hover .conDiv .content {
    max-height: 100%;
  }
  .artificialP3 {
    padding: 0.9rem 0 1.1rem;
  }
  .artificialP3 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .artificialP3 .zi {
    font-size: var(--fs17);
    line-height: 0.64rem;
    margin-bottom: 0.65rem;
  }
  .artificialP3 .lunbo {
    padding-left: 0.3rem;
  }
  .artificialP3 .lunbo .imgList {
    width: 100%;
    overflow: hidden;
  }
  .artificialP3 .lunbo .imgList .swiper-slide {
    width: auto;
  }
  .artificialP3 .lunbo .imgList .swiper-slide .box {
    padding: 0.4rem 0.3rem 0;
    width: 4.9rem;
    height: 6rem;
  }
  .artificialP3 .lunbo .imgList .swiper-slide .limg img {
    width: 2.6rem;
  }
  .artificialP3 .lunbo .imgList .swiper-slide .name {
    margin-top: 0.3rem;
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .artificialP3 .lunbo .imgList .swiper-slide .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
    min-height: 1.44rem;
  }
  .artificialP3 .lunbo .imgList .swiper-slide .ico {
    display: none;
  }
  .artificialP3 .lunbo .se {
    width: 0.86rem;
    height: 0.86rem;
    margin-top: -0.43rem;
  }
  .artificialP3 .lunbo .prev {
    background-size: 0.12rem;
  }
  .artificialP3 .lunbo .prev:hover {
    background-size: 0.12rem;
  }
  .artificialP3 .lunbo .next {
    right: 0.3rem;
    background-size: 0.12rem;
  }
  .artificialP3 .lunbo .next:hover {
    background-size: 0.12rem;
  }
}
.salesDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 3.76rem;
  position: relative;
  z-index: 2;
  text-align: center;
}
.salesDiv .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: center no-repeat;
  background-size: cover;
}
.salesDiv .bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.salesDiv .title {
  position: relative;
  z-index: 1;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #fff;
  font-weight: 600;
}
.salesDiv .msg {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: var(--fs30);
  line-height: 0.36rem;
  padding-top: 0.1rem;
  font-weight: 300;
}
.salesDiv .btnDiv {
  position: relative;
  z-index: 1;
  margin: 0.38rem auto 0;
}
.salesDiv .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: 1.8rem;
  height: 0.6rem;
  border-radius: 0.45rem;
  background: #00B9BF;
  font-size: var(--fs18);
  color: #fff;
}
@media (max-width: 1004px) {
  .salesDiv {
    padding: 0 var(--offset);
    height: 4.8rem;
  }
  .salesDiv .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .salesDiv .msg {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .salesDiv .btnDiv {
    margin: 0.3rem auto 0;
  }
  .salesDiv .btnDiv a {
    width: 2.4rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
}
.redbook {
  padding: 1.6rem 0 1.4rem;
}
.redbook .list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-top: 0.8rem;
}
.redbook .list li:first-child {
  margin-top: 0;
}
.redbook .list li .imgDiv {
  width: 7.5rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.redbook .list li .imgDiv img {
  width: 100%;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.redbook .list li .conDiv {
  width: 6.6rem;
  padding-right: 0.6rem;
}
.redbook .list li .name {
  font-size: var(--fs40);
  line-height: 0.54rem;
  color: #333;
  font-weight: bold;
}
.redbook .list li .msg {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.34rem;
  /*text-align: justify;*/
}
.redbook .list li:nth-child(even) .imgDiv {
  order: 1;
}
.redbook .list li:nth-child(even) .conDiv {
  padding-right: 0;
  padding-left: 0.6rem;
}
.redbook .list li:hover .imgDiv img {
  transform: scale(1.1);
}
.redbook .backBtn {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 1.4rem;
}
.redbook .backBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  min-width: 1.6rem;
  padding: 0 0.2rem;
  height: 0.5rem;
  border-radius: 0.45rem;
  background: #00B9BF;
  color: #fff;
  font-size: var(--fs16);
}
@media (max-width: 1004px) {
  .redbook {
    padding: 1.1rem 0 1rem;
  }
  .redbook .list li {
    display: block;
    margin-top: 0.65rem;
  }
  .redbook .list li .imgDiv {
    width: auto;
    border-radius: 0.24rem;
  }
  .redbook .list li .conDiv {
    width: auto;
    margin-top: 0.6rem;
    padding-right: 0;
  }
  .redbook .list li .name {
    font-size: var(--fs20);
    line-height: 0.72rem;
  }
  .redbook .list li .msg {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .redbook .list li:nth-child(even) .conDiv {
    padding-left: 0;
  }
  .redbook .backBtn {
    margin-top: 0.8rem;
  }
  .redbook .backBtn a {
    padding: 0 0.4rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
}
.joinP1 {
  padding: 1.05rem 0 1.4rem;
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: #00B9BF;
  border-radius: 0 0 0.9rem 0.9rem;
}
.joinP1 .title {
  text-align: center;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.76rem;
}
.joinP1 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.joinP1 .list li {
  width: calc((100% - 0.9rem) / 3);
  margin-right: 0.45rem;
  min-height: 5.28rem;
  padding: 0.6rem 0.4rem 0.5rem;
  border-radius: 0.2rem;
  background: #fff;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.joinP1 .list li:nth-child(3n) {
  margin-right: 0;
}
.joinP1 .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-bottom: 0.5rem;
  width: 0.8rem;
  height: 0.8rem;
}
.joinP1 .list li .ico img {
  max-width: 100%;
  max-height: 100%;
}
.joinP1 .list li .name {
  font-size: var(--fs40);
  line-height: 0.54rem;
  font-weight: 600;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.joinP1 .list li .zi {
  margin: 0.2rem 0;
  font-size: var(--fs18);
  line-height: 0.3rem;
  font-weight: 400;
  color: #00B9BF;
}
.joinP1 .list li .msg {
  font-size: var(--fs18);
  color: #666;
  line-height: 0.3rem;
  font-weight: 400;
}
.joinP1 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.joinP1 .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #fff;
  border: #1E237F solid 1px;
}
.joinP1 .swiper-pagination-bullet-active {
  background: #1E237F;
}
@media (max-width: 1004px) {
  .joinP1 {
    padding: 0.9rem 0;
  }
  .joinP1 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.6rem;
  }
  .joinP1 .list {
    overflow: hidden;
  }
  .joinP1 .list ul {
    flex-flow: nowrap;
  }
  .joinP1 .list li {
    width: auto;
    margin-right: 0;
    min-height: 5.6rem;
    padding: 0.55rem 0.35rem 0.5rem;
  }
  .joinP1 .list li .ico {
    margin-bottom: 0.35rem;
  }
  .joinP1 .list li .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .joinP1 .list li .zi {
    margin: 0.15rem 0;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .joinP1 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .joinP1 .swiper-pagination {
    display: block;
  }
}
.merchant {
  position: relative;
  padding: 1.6rem 0 0;
  background: url(../img/merchant.png) center top no-repeat;
  background-size: 100%;
}
.merchant .title {
  position: relative;
  z-index: 1;
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.merchant .list {
  position: relative;
  z-index: 1;
}
.merchant .list ul {
  margin: 0;
}
.merchant .list li {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-top: 0.8rem;
}
.merchant .list li:first-child {
  margin-top: 0;
}
.merchant .list li .pjDiv {
  order: 1;
  position: relative;
  padding: 0 0.2rem 0.2rem 0;
}
.merchant .list li .pjDiv::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 0.2rem);
  height: calc(100% - 0.2rem);
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(0, 185, 191, 0.2) 0%, #00B9BF 100%);
}
.merchant .list li .imgDiv {
  position: relative;
  z-index: 1;
  width: 7.3rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.merchant .list li .imgDiv img {
  width: 100%;
}
.merchant .list li .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  width: 48.8%;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0 0.6rem;
}
.merchant .list li .conDiv .ico img {
  width: 0.8rem;
}
.merchant .list li .conDiv .name {
  margin: 0.3rem 0;
  font-size: var(--fs40);
  line-height: 0.54rem;
  color: #333;
  font-weight: 600;
}
.merchant .list li .conDiv .content {
  font-size: var(--fs18);
  line-height: 0.34rem;
}
.merchant .list li:nth-child(even) .pjDiv {
  order: 0;
  padding: 0 0 0.2rem 0.2rem;
}
.merchant .list li:nth-child(even) .pjDiv::after {
  left: 0;
  right: auto;
  background: linear-gradient(270deg, rgba(0, 185, 191, 0.2) 0%, #00B9BF 100%);
}
.merchant2 {
  padding: 1.6rem 0 2.2rem;
  background: url(../img/merchant2.png) center bottom no-repeat;
  background-size: 100%;
}
.merchant2::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1004px) {
  .merchant {
    padding: 1rem 0 0;
    background: url(../img/merchant.png) center top no-repeat;
    background-size: 100%;
  }
  .merchant .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
    margin-bottom: 0.65rem;
  }
  .merchant .list li {
    display: block;
    margin-top: 0.6rem;
  }
  .merchant .list li .pjDiv {
    order: 1;
    position: relative;
    padding: 0 0.2rem 0.2rem 0;
  }
  .merchant .list li .pjDiv::after {
    border-radius: 0.2rem;
  }
  .merchant .list li .imgDiv {
    width: 100%;
  }
  .merchant .list li .conDiv {
    margin-top: 0.2rem;
    background: rgba(246, 246, 246, 0.5);
    display: block;
    width: 100%;
    border-radius: 0.2rem;
    padding: 0.6rem 0.4rem;
  }
  .merchant .list li .conDiv .ico img {
    width: 1rem;
  }
  .merchant .list li .conDiv .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .merchant .list li .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .merchant2 {
    padding: 1rem 0 1.2rem;
  }
}
.destinationP1 {
  position: relative;
  padding: 1.6rem 0 2rem;
  background: url(../img/merchant.png) center top no-repeat;
  background-size: 100%;
}
.destinationP1 .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.destinationP1 .zi {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.destinationP1 .content {
  width: 10.7rem;
  margin: 0 auto 0.6rem;
  text-align: center;
  font-size: var(--fs18);
  color: #333;
  line-height: 0.3rem;
  font-weight: 400;
}
.destinationP1 .list ul {
  display: flex;
  flex-wrap: wrap;
}
.destinationP1 .list li {
  width: calc((100% - 0.66rem) / 4);
  margin-right: 0.22rem;
  padding: 0.4rem 0.4rem 0;
  text-align: center;
  cursor: pointer;
  min-height: 4.25rem;
  background: #fff;
  border-radius: 0.2rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.destinationP1 .list li:nth-child(4n) {
  margin-right: 0;
}
.destinationP1 .list li .imgDiv img {
  width: 2.2rem;
}
.destinationP1 .list li .name {
  margin-top: 0.2rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
  font-weight: 600;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.destinationP1 .list li:hover {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.destinationP1 .list li:hover .name {
  color: #00B9BF;
}
.destinationP2 {
  background: linear-gradient(180deg, rgba(195, 253, 255, 0) 0%, #E8F2F8 86.56%);
  padding-bottom: 1rem;
}
.destinationP2 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.destinationP2 .mxfDiv .conDiv {
  width: 50%;
}
.destinationP2 .mxfDiv .conDiv .title {
  font-size: var(--fs52);
  line-height: 0.9rem;
  color: #333;
  font-weight: 600;
}
.destinationP2 .mxfDiv .conDiv .zi {
  font-size: var(--fs36);
  line-height: 0.52rem;
  color: #333;
  font-weight: 300;
  margin-top: 0.6rem;
}
.destinationP2 .mxfDiv .rightImg {
  width: 6.2rem;
}
.destinationP2 .mxfDiv .rightImg img {
  width: 100%;
}
.destinationP2 .list {
  margin-top: 0.6rem;
}
.destinationP2 .list ul {
  display: flex;
  flex-wrap: wrap;
}
.destinationP2 .list li {
  width: calc((100% - 0.36rem) / 2);
  margin-right: 0.36rem;
  margin-top: 0.4rem;
  position: relative;
  border-radius: 0.2rem;
  overflow: hidden;
}
.destinationP2 .list li:nth-child(2n) {
  margin-right: 0;
}
.destinationP2 .list li:nth-child(-n+2) {
  margin-top: 0;
}
.destinationP2 .list li .imgDiv {
  position: relative;
  border-radius: 0.2rem;
  overflow: hidden;
}
.destinationP2 .list li .imgDiv img {
  width: 100%;
}
.destinationP2 .list li .layer {
  position: absolute;
  left: 0;
  bottom: 0.6rem;
  width: 100%;
  padding: 0 0.6rem;
  color: #fff;
  z-index: 1;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.destinationP2 .list li .layer .num {
  font-size: var(--fs40);
  line-height: 0.54rem;
  font-weight: 600;
}
.destinationP2 .list li .layer .name {
  margin-top: 0.1rem;
  font-size: var(--fs32);
  line-height: 0.48rem;
  font-weight: 600;
}
.destinationP2 .list li .hideDiv {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0.5rem 0.5rem 0;
  border: #00B9BF solid 1px;
  background: #fff;
  border-radius: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.destinationP2 .list li .hideDiv .num {
  font-size: var(--fs40);
  line-height: 0.54rem;
  font-weight: 600;
  color: #00B9BF;
}
.destinationP2 .list li .hideDiv .name {
  margin-top: 0.1rem;
  font-size: var(--fs40);
  line-height: 0.54rem;
  font-weight: 600;
  color: #333;
}
.destinationP2 .list li .hideDiv .content {
  margin-top: 0.2rem;
  font-size: var(--fs14);
  line-height: 0.24rem;
  /*text-align: justify;*/
}
.destinationP2 .list li .hideDiv .label {
  margin-top: 0.2rem;
}
.destinationP2 .list li .hideDiv .label dl {
  display: flex;
  flex-wrap: wrap;
}
.destinationP2 .list li .hideDiv .label dd {
  display: flex;
}
.destinationP2 .list li .hideDiv .label dd em,
.destinationP2 .list li .hideDiv .label dd a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
  min-width: 1.4rem;
  min-height: 0.44rem;
  padding: 0.1rem;
  border-radius: 0.1rem;
  border: #00B9BF solid 1px;
  font-size: var(--fs15);
  color: #00B9BF;
  font-weight: 600;
  margin: 0 0.1rem 0.1rem 0;
}
.destinationP2 .list li .hideDiv .label dd a:hover {
  background: #00B9BF;
  color: #fff;
}
.destinationP2 .list li .hideDiv .btnDiv {
  margin-top: 0.2rem;
  display: flex;
}
.destinationP2 .list li .hideDiv .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;
  min-width: 1.5rem;
  height: 0.5rem;
  background: #00B9BF;
  color: #fff;
  font-size: var(--fs16);
  font-weight: 400;
  border-radius: 0.45rem;
}
.destinationP2 .list li:hover .layer {
  opacity: 0;
  visibility: hidden;
}
.destinationP2 .list li:hover .hideDiv {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1004px) {
  .destinationP1 {
    padding: 1rem 0 1.2rem;
  }
  .destinationP1 .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .destinationP1 .zi {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .destinationP1 .content {
    width: auto;
    font-size: var(--fs15);
    line-height: 0.52rem;
    text-align: left;
  }
  .destinationP1 .list ul {
    display: flex;
    flex-wrap: wrap;
  }
  .destinationP1 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.3rem;
    padding: 0.4rem 0;
    border: #eee solid 1px;
  }
  .destinationP1 .list li:nth-child(4n) {
    margin-right: 0.2rem;
  }
  .destinationP1 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .destinationP1 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .destinationP1 .list li .imgDiv img {
    width: 2.6rem;
  }
  .destinationP1 .list li .name {
    font-size: var(--fs16);
    line-height: 0.5rem;
  }
  .destinationP2 .mxfDiv {
    display: block;
  }
  .destinationP2 .mxfDiv .conDiv {
    width: 100%;
    text-align: center;
  }
  .destinationP2 .mxfDiv .conDiv .title {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .destinationP2 .mxfDiv .conDiv .zi {
    font-size: var(--fs20);
    line-height: 0.52rem;
    margin-top: 0.4rem;
  }
  .destinationP2 .mxfDiv .rightImg {
    display: none;
    margin-top: 0.7rem;
    width: auto;
  }
  .destinationP2 .list {
    margin-top: 0.75rem;
  }
  .destinationP2 .list ul {
    display: block;
  }
  .destinationP2 .list li {
    width: 100%;
    margin-right: 0;
  }
  .destinationP2 .list li:nth-child(1) {
    margin-top: 0;
  }
  .destinationP2 .list li:nth-child(2) {
    margin-top: 0.4rem;
  }
  .destinationP2 .list li .imgDiv {
    border-radius: 0.2rem 0.2rem 0 0;
  }
  .destinationP2 .list li .layer {
    bottom: 0.3rem;
    padding: 0 0.3rem;
  }
  .destinationP2 .list li .layer .num {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .destinationP2 .list li .layer .name {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .destinationP2 .list li .hideDiv {
    border-radius: 0 0 0.2rem 0.2rem;
    position: relative;
    padding: 0.6rem 0.3rem;
    opacity: 1;
    visibility: visible;
  }
  .destinationP2 .list li .hideDiv .num,
  .destinationP2 .list li .hideDiv .name {
    display: none;
  }
  .destinationP2 .list li .hideDiv .content {
    margin-top: 0;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .destinationP2 .list li .hideDiv .label dd em,
  .destinationP2 .list li .hideDiv .label dd a {
    min-width: 1.5rem;
    padding: 0.1rem 0.2rem;
    font-size: var(--fs14);
  }
  .destinationP2 .list li .hideDiv .btnDiv a {
    min-width: 2.4rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .destinationP2 .list li:hover .layer {
    opacity: 1;
    visibility: visible;
  }
}
.pageCon {
  padding: 0.9rem 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;
  }
}
