.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
  }
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.coverbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/*banner*/
.ind-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ind-banner .swiper-slide {
  position: relative;
}
.ind-banner .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
}
.ind-banner .onebox {
  position: absolute;
  left: 0;
  width: 100%;
  top: 38%;
  z-index: 2;
  text-align: center;
}
.ind-banner .onebox .cn {
  margin: 0;
  font-size: 0.78rem;
  line-height: 0.88rem;
  letter-spacing: 8px;
  text-indent: 8px;
  color: #fff;
  font-family: "FZQINGKBYSJW-R";
}
.ind-banner .onebox .zi {
  margin-top: 0.3rem;
  color: #fff;
  font-size: var(--fs24);
  line-height: 0.36rem;
}
.ind-banner .onebox .zi em {
  letter-spacing: 0.3rem;
  text-indent: 0.3rem;
  padding: 0 0.25rem;
  display: inline-block;
}
.ind-banner .onebox {
  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 .swiper-slide-active .onebox {
  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 {
  width: 100%;
  left: 0;
  margin-left: 0;
  bottom: 0.35rem;
  z-index: 2;
}
.ind-banner .swiper-pagination-bullet {
  position: relative;
  width: 33px;
  height: 4px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 4px;
  margin: 0 3px!important;
  overflow: hidden;
}
.ind-banner .swiper-pagination-bullet-active {
  background: #fff;
}
@media (max-width: 1004px) {
  .ind-banner .onebox {
    top: 40%;
  }
  .ind-banner .onebox .cn {
    margin: 0;
    font-size: var(--fs24);
    line-height: 0.48rem;
    letter-spacing: 3px;
    text-indent: 3px;
  }
  .ind-banner .onebox .zi {
    margin-top: 0.2rem;
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .ind-banner .onebox .zi em {
    letter-spacing: 0.1rem;
    text-indent: 0.1rem;
    padding: 0 0.1rem;
  }
  .ind-banner .swiper-pagination {
    bottom: 0.3rem;
  }
  .ind-banner .swiper-pagination-bullet {
    width: 28px;
    height: 3px;
  }
}
.indTxt {
  font-size: var(--fs36);
  line-height: 0.36rem;
  color: #000;
  font-weight: bold;
}
.indTxt em {
  font-weight: normal;
  font-family: "Poppins-L";
  color: #999;
  padding-left: 10px;
  font-size: var(--fs16);
}
.indMore {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.indMore a {
  color: #009288;
  font-size: var(--fs16);
  font-weight: bold;
  display: inline-block;
  padding-right: 0.25rem;
  line-height: 0.36rem;
  background: url(../img/ico2.png) right center no-repeat;
  background-size: 0.15rem;
}
.indMore a span {
  height: 1px;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  overflow: hidden;
  background: url(../img/dot.jpg) no-repeat;
  background-size: 0 0.01rem;
  background-position: 100% 100%;
  transition: background-size 0.7s ease;
}
.indMore a:hover span {
  background-size: 100% 1px;
  background-position: 0 100%;
}
.indexP1 {
  padding: 1rem 0;
  background: #f5f5f5;
}
.indexP1 .toptop {
  position: relative;
  margin-bottom: 0.55rem;
}
.indexP1 .links {
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  width: 100%;
}
.indexP1 .links ul {
  font-size: 0;
}
.indexP1 .links ul li {
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 0.13rem;
  font-size: var(--fs16);
  color: #000;
  line-height: 0.36rem;
  font-weight: bold;
}
.indexP1 .links ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #009288;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP1 .links ul .on {
  color: #009288;
}
.indexP1 .links ul .on::after {
  width: 100%;
  left: 0;
}
.indexP1 .lunbo {
  display: none;
  position: relative;
}
.indexP1 .lunbo .imgList {
  overflow: hidden;
}
.indexP1 .lunbo .box {
  height: 3.85rem;
  border-radius: 0.12rem;
  overflow: hidden;
}
.indexP1 .lunbo .box a {
  display: block;
  padding-top: 0.45rem;
  width: 100%;
  height: 100%;
  position: relative;
}
.indexP1 .lunbo .box .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2.6rem;
  height: 3rem;
  margin: 0 auto;
}
.indexP1 .lunbo .box .imgDiv img {
  max-width: 2.6rem;
  max-height: 3rem;
}
.indexP1 .lunbo .box .layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0.8rem 0.38rem 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
  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;
}
.indexP1 .lunbo .box .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs18);
  color: #333;
  max-height: 0.64rem;
  line-height: 0.32rem;
  font-weight: bold;
}
.indexP1 .lunbo .box .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.15rem;
  color: #333;
  font-size: var(--fs16);
  line-height: 0.28rem;
  height: 0.84rem;
}
.indexP1 .lunbo .box .author {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.35rem;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.32rem;
}
.indexP1 .lunbo .box .ico {
  position: absolute;
  left: 0.38rem;
  bottom: 0.4rem;
  width: 20px;
  height: 14px;
  background: url(../img/ico5.png) no-repeat;
}
.indexP1 .lunbo .box:hover .layer {
  opacity: 1;
  visibility: visible;
}
.indexP1 .se {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  width: 11px;
  height: 19px;
}
.indexP1 .prev {
  left: 50%;
  margin-left: -7rem;
  background: url(../img/nimg11_left.png) no-repeat;
}
.indexP1 .prev:hover {
  background: url(../img/nimg11_lefton.png) no-repeat;
}
.indexP1 .next {
  right: 50%;
  margin-right: -7rem;
  background: url(../img/nimg11_right.png) no-repeat;
}
.indexP1 .next:hover {
  background: url(../img/nimg11_righton.png) no-repeat;
}
.indexP2 {
  padding: 1rem 0;
  overflow: hidden;
}
.indexP2 .toptop {
  position: relative;
  margin-bottom: 0.55rem;
}
.indexP2 .indTxt {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.indexP2 .tab2 {
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  width: 100%;
}
.indexP2 .tab2 ul {
  font-size: 0;
}
.indexP2 .tab2 ul li {
  position: relative;
  display: inline-block;
  margin: 0 0.13rem;
  font-size: var(--fs16);
  color: #000;
  line-height: 0.36rem;
  font-weight: bold;
}
.indexP2 .tab2 ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #009288;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP2 .tab2 ul .liNow {
  color: #009288;
}
.indexP2 .tab2 ul .liNow::after {
  width: 100%;
  left: 0;
}
.indexP2 .list {
  animation: am_top 0.8s ease-out 0.1s backwards;
  -webkit-animation: am_top 0.8s ease-out 0.1s backwards;
}
.indexP2 .list ul {
  margin-right: -0.38rem;
}
.indexP2 .list li {
  float: left;
  width: 33.33%;
}
.indexP2 .list li .box {
  margin-right: 0.38rem;
}
.indexP2 .list li .box a {
  display: block;
  border-radius: 0.1rem;
  position: relative;
  overflow: hidden;
}
.indexP2 .list li .imgDiv {
  height: 5rem;
  position: relative;
}
.indexP2 .list li .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 250px;
  background: url(../img/bg2.png) repeat-x;
}
.indexP2 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexP2 .list li .layer {
  position: absolute;
  left: 0;
  bottom: 0.24rem;
  z-index: 1;
  padding: 0 0.4rem;
}
.indexP2 .list li .time {
  line-height: 0.3rem;
  color: #fff;
  margin-bottom: 0.1rem;
  font-size: var(--fs16);
  padding-left: 0.32rem;
  background: url(../img/nimg20_1.png) left center no-repeat;
  background-size: 0.2rem;
}
.indexP2 .list li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs16);
  line-height: 0.28rem;
  height: 0.56rem;
  color: #fff;
}
.indexP3 {
  padding: 1rem 0;
  background: #f5f5f5;
}
.indexP3 .toptop {
  position: relative;
}
.indexP3 .content {
  margin: 0.35rem 0 0.5rem;
  font-size: var(--fs18);
  line-height: 0.28rem;
  color: #000;
  width: 66.66%;
}
.indexP3 .content p {
  text-indent: 2em;
}
.indexP3 .mxfDiv {
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
}
.indexP3 .mxfDiv .botLayer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.indexP3 .mxfDiv .botLayer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.indexP3 .mxfDiv .botLayer li {
  float: left;
  width: 25%;
  padding: 0.4rem 0;
  text-align: center;
  position: relative;
  color: #fff;
  font-size: var(--fs16);
}
.indexP3 .mxfDiv .botLayer li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
.indexP3 .mxfDiv .botLayer li .pj {
  height: 0.65rem;
}
.indexP3 .mxfDiv .botLayer li .name {
  font-size: var(--fs48);
  line-height: 0.48rem;
}
.indexP3 .mxfDiv .botLayer li .num {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.indexP3 .mxfDiv .botLayer li .num .numUp {
  font-size: var(--fs60);
  line-height: 0.56rem;
  padding-right: 0.1rem;
}
.indexP3 .mxfDiv .botLayer li .num p {
  position: relative;
  height: 0.5rem;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.indexP3 .mxfDiv .botLayer li .num span {
  position: absolute;
  font-size: var(--fs30);
  line-height: 0.26rem;
  left: 0;
  top: 0;
}
.indexP3 .mxfDiv .botLayer li .wen {
  line-height: 0.28rem;
  padding: 0 0.3rem;
}
.indexP3 .imglunbo {
  overflow: hidden;
}
.indexP3 .imglunbo .imgDiv img {
  width: 100%;
}
.indexP4 {
  padding: 1rem 0;
  overflow: hidden;
}
.indexP4 .toptop {
  position: relative;
  margin-bottom: 0.6rem;
}
.indexP4 .leftDiv {
  width: 4.2rem;
  font-size: var(--fs18);
  line-height: 0.28rem;
  color: #000;
}
.indexP4 .leftDiv p {
  text-indent: 2em;
}
.indexP4 .rightImg {
  width: 7.65rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.indexP4 .rightImg img {
  width: 100%;
}
.indexP4 .rightImg .swiper-pagination-bullet-active {
  background: #009288;
}
.indexP5 {
  padding: 1rem 0;
  background: #f5f5f5;
  overflow: hidden;
}
.indexP5 .toptop {
  position: relative;
  margin-bottom: 0.5rem;
}
.indexP5 .leftDiv {
  width: 4.6rem;
  font-size: var(--fs18);
  line-height: 0.28rem;
  color: #000;
}
.indexP5 .leftDiv p {
  text-indent: 2em;
}
.indexP5 .leftDiv .videoDiv {
  margin-top: 0.35rem;
}
.indexP5 .leftDiv .videoDiv video {
  width: 100%;
}
.indexP5 .list {
  margin-top: 0.35rem;
}
.indexP5 .list li {
  font-size: var(--fs16);
  border-bottom: #ccc solid 1px;
}
.indexP5 .list li a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  height: 0.64rem;
  line-height: 0.64rem;
  position: relative;
  padding-left: 1.5rem;
  color: #333;
}
.indexP5 .list li a:hover {
  color: #009288;
}
.indexP5 .list li em {
  position: absolute;
  left: 0;
  top: 0;
  color: #009288;
}
.indexP5 .rightDiv {
  width: 7.25rem;
}
.indexP5 .rightDiv ul {
  margin-right: -0.1rem;
}
.indexP5 .rightDiv li {
  float: left;
  width: 50%;
  margin-bottom: 0.1rem;
}
.indexP5 .rightDiv li .box {
  margin-right: 0.1rem;
  position: relative;
  overflow: hidden;
}
.indexP5 .rightDiv li .box .imgDiv img {
  width: 100%;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.indexP5 .rightDiv li .box .name {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  top: 50%;
  margin-top: -0.15rem;
  line-height: 0.3rem;
  font-size: var(--fs18);
  color: #fff;
}
.indexP5 .rightDiv li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
@media (max-width: 1004px) {
  .indTxt {
    font-size: var(--fs22);
    line-height: 0.48rem;
  }
  .indTxt em {
    font-size: var(--fs14);
  }
  .indMore a {
    font-size: var(--fs15);
    padding-right: 0.32rem;
    line-height: 0.48rem;
    background-size: 0.2rem;
  }
  .indexP1 {
    padding: 0.9rem 0;
  }
  .indexP1 .toptop {
    margin-bottom: 0.45rem;
  }
  .indexP1 .links {
    position: relative;
    margin-top: 0.5rem;
  }
  .indexP1 .links ul li {
    margin: 0 0.15rem;
    line-height: 0.48rem;
  }
  .indexP1 .lunbo .box {
    height: 3.85rem;
    border-radius: 0.2rem;
  }
  .indexP1 .lunbo .box a {
    padding-top: 0.3rem;
  }
  .indexP1 .lunbo .box .imgDiv {
    width: 2.4rem;
    height: 2.8rem;
  }
  .indexP1 .lunbo .box .imgDiv img {
    max-width: 2.4rem;
    max-height: 2.8rem;
  }
  .indexP1 .lunbo .box .layer {
    padding: 0.6rem 0.2rem 0;
  }
  .indexP1 .lunbo .box .name {
    font-size: var(--fs15);
    max-height: 0.84rem;
    line-height: 0.42rem;
  }
  .indexP1 .lunbo .box .msg {
    display: none;
  }
  .indexP1 .lunbo .box .author {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    margin-top: 0.2rem;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .indexP1 .lunbo .box .ico {
    position: absolute;
    left: 0.3rem;
    width: 16px;
    height: 11px;
    background-size: 16px;
  }
  .indexP1 .se {
    display: none;
  }
  .indexP2 {
    padding: 0.9rem 0;
  }
  .indexP2 .toptop {
    margin-bottom: 0.25rem;
  }
  .indexP2 .tab2 {
    position: relative;
    margin-top: 0.5rem;
  }
  .indexP2 .tab2 ul li {
    margin: 0 0.15rem 0.15rem;
    line-height: 0.48rem;
  }
  .indexP2 .list ul {
    margin-right: -0.2rem;
  }
  .indexP2 .list li {
    width: 50%;
  }
  .indexP2 .list li:last-child {
    display: none;
  }
  .indexP2 .list li .box {
    margin-right: 0.2rem;
  }
  .indexP2 .list li .box a {
    border-radius: 0.16rem;
  }
  .indexP2 .list li .imgDiv {
    height: 3.6rem;
  }
  .indexP2 .list li .layer {
    bottom: 0.2rem;
    padding: 0 0.2rem;
  }
  .indexP2 .list li .time {
    line-height: 0.36rem;
    font-size: var(--fs12);
    padding-left: 0.36rem;
    background-size: 0.24rem;
  }
  .indexP2 .list li .name {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP3 {
    padding: 0.9rem 0;
  }
  .indexP3 .content {
    margin: 0.45rem 0 0.5rem;
    width: auto;
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .indexP3 .mxfDiv {
    border-radius: 0.16rem;
  }
  .indexP3 .mxfDiv .botLayer {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
  }
  .indexP3 .mxfDiv .botLayer::before {
    display: none;
  }
  .indexP3 .mxfDiv .botLayer ul {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-wrap: wrap;
  }
  .indexP3 .mxfDiv .botLayer li {
    float: none;
    width: 50%;
    padding: 0.3rem 0;
    font-size: var(--fs12);
  }
  .indexP3 .mxfDiv .botLayer li::after {
    display: none;
  }
  .indexP3 .mxfDiv .botLayer li .pj {
    height: 0.65rem;
  }
  .indexP3 .mxfDiv .botLayer li .name {
    font-size: var(--fs28);
    line-height: 0.56rem;
  }
  .indexP3 .mxfDiv .botLayer li .num .numUp {
    font-size: var(--fs28);
    line-height: 0.56rem;
  }
  .indexP3 .mxfDiv .botLayer li .num span {
    font-size: var(--fs18);
  }
  .indexP3 .mxfDiv .botLayer li .wen {
    line-height: 0.42rem;
    padding: 0 0.1rem;
  }
  .indexP4 {
    padding: 0.9rem 0;
  }
  .indexP4 .leftDiv {
    float: none;
    width: auto;
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .indexP4 .rightImg {
    margin-top: 0.6rem;
    float: none;
    width: auto;
    border-radius: 0.16rem;
  }
  .indexP5 {
    padding: 0.9rem 0;
  }
  .indexP5 .leftDiv {
    width: auto;
    float: none;
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .indexP5 .list {
    margin-top: 0.45rem;
  }
  .indexP5 .list li {
    font-size: var(--fs14);
  }
  .indexP5 .list li a {
    height: 0.9rem;
    line-height: 0.9rem;
    padding-left: 1.5rem;
  }
  .indexP5 .rightDiv {
    float: none;
    width: auto;
    margin-top: 0.6rem;
  }
  .indexP5 .rightDiv ul {
    margin-right: -0.2rem;
  }
  .indexP5 .rightDiv li {
    margin-bottom: 0.2rem;
  }
  .indexP5 .rightDiv li .box {
    margin-right: 0.2rem;
  }
  .indexP5 .rightDiv li .box .name {
    font-size: var(--fs16);
  }
}
.leftNav {
  width: 2.08rem;
  position: sticky;
  top: 0;
  float: left;
}
.leftNav li {
  font-size: var(--fs18);
  margin-bottom: 0.2rem;
}
.leftNav li a {
  display: block;
  color: #000;
  font-weight: bold;
}
.leftNav li .aNow,
.leftNav li .aNow1 {
  color: #009288;
}
.leftNav .on {
  color: #009288;
}
.leftNav dl {
  padding: 0.2rem 0;
  display: none;
}
.leftNav dl dd {
  margin-bottom: 0.2rem;
}
.leftNav dl dd a {
  display: block;
  color: #000;
  font-size: var(--fs14);
  font-weight: 400;
}
.leftNav dl dd a:hover {
  color: #009288;
}
.leftNav dl dd .on {
  color: #009288;
}
.about .title {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #333;
  font-weight: bold;
  margin: 0 0 0.36rem;
}
.about .content {
  color: #000;
  font-size: var(--fs16);
  line-height: 0.28rem;
  padding-bottom: 0.3rem;
}
.about .content p {
  text-indent: 2em;
  margin-bottom: 0.25rem;
}
.about .numList {
  margin-bottom: 0.6rem;
}
.about .numList ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.about .numList li {
  text-align: center;
  position: relative;
  color: #000;
  font-size: var(--fs16);
}
.about .numList li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #c5c5c5;
}
.about .numList li:last-child::after {
  display: none;
}
.about .numList li .pj {
  height: 0.65rem;
}
.about .numList li .name {
  font-size: var(--fs48);
  line-height: 0.48rem;
}
.about .numList li .num {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.about .numList li .num .numUp {
  font-size: var(--fs60);
  line-height: 0.56rem;
  padding-right: 0.1rem;
}
.about .numList li .num p {
  position: relative;
  height: 0.5rem;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.about .numList li .num span {
  position: absolute;
  font-size: var(--fs30);
  line-height: 0.26rem;
  left: 0;
  top: 0;
}
.about .numList li .wen {
  line-height: 0.28rem;
  padding: 0 0.3rem;
  color: #666;
}
.about .numList li:nth-child(1) {
  width: 23%;
}
.about .numList li:nth-child(1) .pj {
  padding: 0 0.3rem 0 0;
}
.about .numList li:nth-child(1) .wen {
  padding: 0 0.3rem 0 0;
}
.about .numList li:nth-child(2) {
  width: 23%;
}
.about .numList li:nth-child(3) {
  width: 31%;
}
.about .numList li:nth-child(4) {
  width: 23%;
}
.about .numList li:nth-child(4) .pj {
  padding: 0 0 0 0.3rem;
}
.about .numList li:nth-child(4) .wen {
  padding: 0 0 0 0.3rem;
}
.about .imgDiv {
  border-radius: 0.1rem;
  overflow: hidden;
}
.about .imgDiv img {
  width: 100%;
}
@media (max-width: 1004px) {
  .about .title {
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .about .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .about .numList ul {
    flex-wrap: wrap;
  }
  .about .numList li {
    width: 50%;
    padding: 0.3rem 0;
    font-size: var(--fs12);
  }
  .about .numList li::after {
    display: none;
  }
  .about .numList li .pj {
    height: 0.65rem;
  }
  .about .numList li .name {
    font-size: var(--fs28);
    line-height: 0.56rem;
  }
  .about .numList li .num .numUp {
    font-size: var(--fs28);
    line-height: 0.56rem;
  }
  .about .numList li .num span {
    font-size: var(--fs18);
  }
  .about .numList li .wen {
    line-height: 0.42rem;
    padding: 0 0.1rem;
  }
  .about .numList li:nth-child(1) {
    width: 50%;
  }
  .about .numList li:nth-child(1) .pj {
    padding: 0;
  }
  .about .numList li:nth-child(1) .wen {
    padding: 0;
  }
  .about .numList li:nth-child(2) {
    width: 50%;
  }
  .about .numList li:nth-child(3) {
    width: 50%;
  }
  .about .numList li:nth-child(4) {
    width: 50%;
  }
  .about .numList li:nth-child(4) .pj {
    padding: 0;
  }
  .about .numList li:nth-child(4) .wen {
    padding: 0;
  }
  .about .imgDiv {
    border-radius: 0.16rem;
  }
}
.footprint {
  background: #fff;
  border-radius: 0.12rem;
  padding: 0.75rem 0.85rem 0.9rem;
}
.footprint .title {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #333;
  font-weight: bold;
  margin: 0 0 0.25rem;
}
.footprint .content {
  color: #000;
  font-size: var(--fs16);
  line-height: 0.28rem;
}
.footprint .content p {
  text-indent: 2em;
}
.footprint .content strong {
  display: block;
}
.footprint .content em {
  display: block;
  text-align: center;
  color: #595757;
}
.footprint .imgDiv {
  text-align: center;
}
.footprint .imgDiv img {
  max-width: 100%;
}
@media (max-width: 1004px) {
  .footprint {
    border-radius: 0.2rem;
    padding: 0.75rem 0.3rem 0.9rem;
  }
  .footprint .title {
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .footprint .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
}
.contact .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.contact .leftDiv {
  width: 5.3rem;
}
.contact .name {
  color: #333;
  font-size: var(--fs36);
  line-height: 0.48rem;
  font-weight: bold;
  margin: 0 0 0.5rem;
}
.contact .msgList li {
  position: relative;
  padding-left: 0.7rem;
  font-size: var(--fs16);
  padding-bottom: 0.5rem;
}
.contact .msgList li:last-child {
  padding-bottom: 0;
}
.contact .msgList li .ico {
  position: absolute;
  left: 0;
  top: 0;
}
.contact .msgList li .ico img {
  width: 0.46rem;
}
.contact .msgList li .zi {
  margin-bottom: 0.18rem;
}
.contact .msgList li .msg {
  color: #333;
  line-height: 0.28rem;
}
.contact .rightDiv {
  margin-right: -1.4rem;
  position: relative;
  width: 5.8rem;
}
.contact .rightDiv .bg img {
  width: 100%;
}
.contact .rightDiv .layer {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: absolute;
  left: 0.6rem;
  top: 0.66rem;
  width: 3.1rem;
}
.contact .rightDiv .layer .ewm img {
  width: 1.67rem;
}
.contact .rightDiv .layer .zi {
  font-size: var(--fs16);
  color: #009288;
  line-height: 0.3rem;
}
@media (max-width: 1004px) {
  .contact .mxfDiv {
    display: block;
  }
  .contact .leftDiv {
    width: auto;
  }
  .contact .name {
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .contact .msgList li {
    padding-left: 0.86rem;
    font-size: var(--fs14);
    padding-bottom: 0.5rem;
  }
  .contact .msgList li .ico img {
    width: 0.64rem;
  }
  .contact .msgList li .zi {
    margin-bottom: 0.25rem;
  }
  .contact .msgList li .msg {
    line-height: 0.56rem;
  }
  .contact .rightDiv {
    margin-top: 0.7rem;
    margin-right: 0;
    width: auto;
  }
  .contact .rightDiv .layer {
    left: 0.45rem;
    top: 0.56rem;
    width: 4rem;
  }
  .contact .rightDiv .layer .ewm img {
    width: 2rem;
  }
  .contact .rightDiv .layer .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
}
.boat .mxfDiv {
  margin-bottom: 1rem;
}
.boat .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.boat .list {
  width: 5.9rem;
}
.boat .list li {
  font-size: var(--fs16);
  border-bottom: #ccc solid 1px;
}
.boat .list li a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  color: #333;
  height: 0.66rem;
  line-height: 0.66rem;
}
.boat .list li a:hover {
  color: #009288;
}
.boat .rightImg {
  order: 1;
  width: 4.15rem;
  overflow: hidden;
  border-radius: 0.12rem;
}
.boat .rightImg img {
  width: 100%;
}
@media (max-width: 1004px) {
  .boat .mxfDiv {
    margin-bottom: 0.75rem;
  }
  .boat .list {
    width: auto;
    float: none;
  }
  .boat .list li {
    font-size: var(--fs14);
  }
  .boat .list li a {
    height: 0.84rem;
    line-height: 0.84rem;
  }
  .boat .rightImg {
    float: none;
    margin-bottom: 0.7rem;
    width: auto;
    border-radius: 0.2rem;
  }
}
.history .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.history .list {
  width: 5.8rem;
  position: relative;
  padding-top: 48px;
  padding-bottom: 60px;
}
.history .list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: #f5f5f5 url(../img/nimg24_1.png) no-repeat;
  z-index: 1;
}
.history .list::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  background: #c4e1df;
  width: 1px;
  height: 100%;
}
.history .list li {
  position: relative;
  z-index: 1;
  padding: 0 0 0.55rem 1.45rem;
  line-height: 0.28rem;
  color: #333;
  font-size: var(--fs16);
}
.history .list li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 0.05rem;
  width: 14px;
  height: 14px;
  border: #009288 solid 1px;
  background: #fff;
  border-radius: 50%;
}
.history .list li .year {
  color: #009288;
  position: absolute;
  left: 0.55rem;
  top: 0;
  font-size: var(--fs20);
}
.history .list li .msg {
  text-align: justify;
}
.history .rightImg {
  order: 1;
  width: 4.15rem;
  overflow: hidden;
  border-radius: 0.12rem;
}
.history .rightImg img {
  width: 100%;
}
@media (max-width: 1004px) {
  .history .list {
    width: auto;
    float: none;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
  .history .list li {
    padding: 0 0 0.55rem 1.6rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .history .list li::before {
    left: 4px;
    top: 0.06rem;
    width: 12px;
    height: 12px;
  }
  .history .list li .year {
    left: 0.6rem;
    font-size: var(--fs18);
  }
  .history .rightImg {
    float: none;
    margin-bottom: 0.7rem;
    width: auto;
    border-radius: 0.2rem;
  }
}
.notice .list {
  padding-bottom: 0.85rem;
}
.notice .list li a {
  display: block;
  position: relative;
  border-radius: 0.1rem;
  padding: 0 2.5rem;
  height: 1.12rem;
  font-size: var(--fs16);
}
.notice .list li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
}
.notice .list li a .time {
  position: absolute;
  left: 0.65rem;
  top: 0;
  line-height: 1.12rem;
  color: #999;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.notice .list li a .more {
  position: absolute;
  right: 0.5rem;
  top: 0;
  line-height: 1.12rem;
  padding-right: 18px;
  color: #9f9f9f;
  background: url(../img/ico4.png) right center no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.notice .list li a .name {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  color: #333;
  line-height: 0.28rem;
  height: 1.12rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.notice .list li a:hover {
  background: #fff;
}
.notice .list li a:hover::after {
  display: none;
}
.notice .list li a:hover .time,
.notice .list li a:hover .name,
.notice .list li a:hover .more {
  color: #009288;
}
.notice .list li a:hover .more {
  background: url(../img/ico4on.png) right center no-repeat;
}
@media (max-width: 1004px) {
  .notice .list {
    padding-bottom: 0.75rem;
  }
  .notice .list li a {
    border-radius: 0;
    padding: 0.2rem 0.3rem;
    height: auto;
    font-size: var(--fs14);
  }
  .notice .list li a .time {
    position: relative;
    left: 0;
    line-height: 0.52rem;
  }
  .notice .list li a .more {
    display: inline-block;
    position: relative;
    right: 0;
    line-height: 0.52rem;
    padding-right: 15px;
  }
  .notice .list li a .name {
    margin: 5px 0;
    display: block;
    line-height: 0.52rem;
    height: auto;
  }
}
.newsPic .imgList {
  overflow: hidden;
}
.newsPic li a {
  display: block;
  padding-left: 5.42rem;
  height: 3.24rem;
  position: relative;
}
.newsPic .newsImg {
  position: absolute;
  left: 0;
  top: 0;
  width: 4.92rem;
  height: 3.24rem;
  overflow: hidden;
  border-radius: 0.1rem;
}
.newsPic .newsImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.newsPic .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 3.24rem;
}
.newsPic .time {
  margin-bottom: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  padding-left: 0.25rem;
  background: url(../img/nimg20_2on.png) left center no-repeat;
  background-size: 0.2rem;
  color: #009288;
}
.newsPic .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0.1rem 0 0.25rem;
  font-size: var(--fs18);
  line-height: 0.32rem;
  color: #000;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsPic .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  color: #999;
  font-size: var(--fs16);
  line-height: 0.28rem;
  height: 1.12rem;
  text-align: justify;
}
.newsPic .more {
  margin-top: 0.35rem;
  line-height: 0.46rem;
  font-size: var(--fs16);
  color: #009288;
}
.newsPic .more p {
  display: inline-block;
  padding-right: 15px;
  background: url(../img/ico4on.png) right center no-repeat;
}
.newsPic li a:hover .newsImg img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.newsPic li a:hover .name {
  color: #009288;
}
.newsPic .swiper-pagination {
  padding-top: 0.35rem;
  position: relative;
  width: 100%;
  bottom: 0;
}
.newsPic .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #a5abb6;
  opacity: 1;
  margin: 0 10px!important;
}
.newsPic .swiper-pagination-bullet-active {
  background: #009288;
}
.news .list {
  padding: 0.6rem 0 0.3rem;
}
.news .list li {
  margin-bottom: 0.6rem;
}
.news .list li a {
  position: relative;
  display: block;
  height: 2.24rem;
  padding: 0.3rem 0 0 3.95rem;
}
.news .list li .imgDiv {
  position: absolute;
  left: 0;
  top: 0;
  width: 3.4rem;
  height: 2.24rem;
  overflow: hidden;
  border-radius: 0.1rem;
}
.news .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.news .list li .time {
  margin-bottom: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
  padding-left: 0.25rem;
  background: url(../img/nimg20_2.png) left center no-repeat;
  background-size: 0.2rem;
  color: #999;
}
.news .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 6px;
  font-size: var(--fs18);
  color: #000;
  font-weight: bold;
  line-height: 0.32rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.news .list li .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.2rem;
  font-size: var(--fs16);
  color: #999;
  line-height: 0.28rem;
  height: 0.84rem;
}
.news .list li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.news .list li a:hover .name {
  color: #009288;
}
.news .list2 li a {
  height: 4.24rem;
}
.news .list2 li .imgDiv {
  width: 3.4rem;
  height: 4.24rem;
}
@media (max-width: 1004px) {
  .newsPic li a {
    padding-left: 0;
    height: auto;
  }
  .newsPic .newsImg {
    position: relative;
    width: 100%;
    height: 4.2rem;
    border-radius: 0.2rem;
  }
  .newsPic .conDiv {
    margin-top: 0.65rem;
    display: block;
    height: auto;
  }
  .newsPic .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
    padding-left: 0.4rem;
    background-size: 0.3rem;
  }
  .newsPic .name {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .newsPic .content {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .newsPic .more {
    display: none;
  }
  .news .list {
    padding: 0.6rem 0 0.45rem;
  }
  .news .list li {
    margin-bottom: 0.3rem;
  }
  .news .list li a {
    height: 1.6rem;
    padding: 0 0 0 2.7rem;
  }
  .news .list li .imgDiv {
    width: 2.4rem;
    height: 1.6rem;
    border-radius: 0.2rem;
  }
  .news .list li .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
    padding-left: 0.4rem;
    background-size: 0.3rem;
  }
  .news .list li .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    margin-top: 0.1rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .news .list li .content {
    display: none;
  }
  .news .list2 li a {
    height: 2.98rem;
  }
  .news .list2 li .imgDiv {
    width: 2.4rem;
    height: 2.98rem;
  }
}
.newsBox {
  background: #f5f5f5 url(../img/nimg1920_3.jpg) center top no-repeat;
  background-size: 100%;
  padding-top: 1.85rem;
  padding-bottom: 1.2rem;
}
.newsBox .conBox {
  background: #fff;
  border-radius: 0.12rem;
  padding: 0 0.88rem 0.85rem;
}
.newsBox .pageNow {
  text-align: right;
  margin-bottom: 0;
}
.newsBox .toptop {
  padding-bottom: 0.3rem;
  border-bottom: #ccc solid 1px;
}
.newsBox .name {
  color: #000;
  font-weight: bold;
  font-size: var(--fs24);
  line-height: 0.42rem;
  margin-bottom: 0.15rem;
}
.newsBox .time {
  padding-left: 0.25rem;
  background: url(../img/nimg20_2on.png) left center no-repeat;
  background-size: 0.2rem;
  color: #009288;
  font-size: var(--fs16);
  line-height: 0.32rem;
}
.newsBox .content {
  padding: 0.5rem 0 0.6rem;
  color: #000;
  font-size: var(--fs16);
  line-height: 0.28rem;
}
.newsBox .content p {
  text-indent: 2em;
}
.newsBox .content strong {
  display: block;
}
.newsBox .content em {
  display: block;
  text-align: center;
  color: #595757;
}
.newsBox .imgDiv {
  text-align: center;
}
.newsBox .imgDiv img {
  max-width: 100%;
}
.pageDown {
  border-top: #e0e0e0 solid 1px;
  padding-top: 0.7rem;
  text-align: center;
}
.pageDown ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.pageDown li .box {
  margin: 0 3px;
}
.pageDown li .box a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2.06rem;
  height: 0.56rem;
  border-radius: 0.12rem;
  border: #bfbfbf solid 1px;
  font-size: var(--fs14);
  color: #262626;
}
.pageDown li .box a:hover {
  border: #009288 solid 1px;
  background: #009288;
  color: #fff;
}
.pageDown li .box .prev em {
  width: 8px;
  height: 12px;
  margin-right: 0.3rem;
  background: url(../img/prev.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.pageDown li .box .prev:hover em {
  background: url(../img/prevon.png) no-repeat;
}
.pageDown li .box .next em {
  width: 8px;
  height: 12px;
  margin-left: 0.3rem;
  background: url(../img/next.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.pageDown li .box .next:hover em {
  background: url(../img/nexton.png) no-repeat;
}
.pageDown li .box .back em {
  width: 18px;
  height: 18px;
  margin-right: 0.18rem;
  background: url(../img/nimg18_1.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.pageDown li .box .back:hover em {
  background: url(../img/nimg18_1on.png) no-repeat;
}
@media (max-width: 1004px) {
  .newsBox {
    background-size: 200%;
    padding-top: 1.5rem;
    padding-bottom: 0.9rem;
  }
  .newsBox .conBox {
    border-radius: 0.2rem;
    padding: 0.65rem 0.3rem 0.85rem;
  }
  .newsBox .toptop {
    padding-bottom: 0.4rem;
  }
  .newsBox .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
    margin-bottom: 0.2rem;
  }
  .newsBox .time {
    padding-left: 0.4rem;
    background-size: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .newsBox .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .pageDown li .box {
    margin: 0 2px;
  }
  .pageDown li .box a {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 1.86rem;
    height: 0.76rem;
    border-radius: 0.16rem;
  }
  .pageDown li .box .prev em {
    width: 6px;
    height: 9px;
    margin-right: 0.2rem;
    background-size: 6px;
  }
  .pageDown li .box .prev:hover em {
    background-size: 6px;
  }
  .pageDown li .box .next em {
    width: 6px;
    height: 9px;
    margin-left: 0.2rem;
    background-size: 6px;
  }
  .pageDown li .box .next:hover em {
    background-size: 6px;
  }
  .pageDown li .box .back em {
    width: 12px;
    height: 12px;
    margin-right: 0.15rem;
    background-size: 12px;
  }
  .pageDown li .box .back:hover em {
    background-size: 12px;
  }
}
.product .list {
  padding-bottom: 0.3rem;
}
.product .list ul {
  margin-right: -0.42rem;
}
.product .list ul li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.52rem;
}
.product .list ul li .box {
  margin-right: 0.42rem;
  background: #fff;
  border-radius: 0.12rem;
  height: 4.3rem;
  padding: 0.45rem 0.3rem 0;
}
.product .list ul li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 auto;
  width: 2.6rem;
  height: 3rem;
  overflow: hidden;
}
.product .list ul li .imgDiv img {
  max-width: 2.6rem;
  max-height: 3rem;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.product .list ul li .name {
  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: #595757;
  height: 0.48rem;
  line-height: 0.24rem;
  text-align: center;
}
.product .list ul li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.product .list ul li .box:hover .name {
  color: #009288;
}
@media (max-width: 1004px) {
  .product .list {
    padding-bottom: 0.35rem;
  }
  .product .list ul {
    margin-right: -0.2rem;
  }
  .product .list ul li {
    width: 50%;
    margin-bottom: 0.4rem;
  }
  .product .list ul li .box {
    margin-right: 0.2rem;
    border-radius: 0.2rem;
    height: 4.3rem;
    padding: 0.3rem 0.2rem 0;
  }
  .product .list ul li .imgDiv {
    width: 2.4rem;
    height: 2.8rem;
  }
  .product .list ul li .imgDiv img {
    max-width: 2.4rem;
    max-height: 2.8rem;
  }
  .product .list ul li .name {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    margin-top: 0.1rem;
    font-size: var(--fs14);
    height: 0.84rem;
    line-height: 0.42rem;
  }
}
.garden .list {
  overflow: hidden;
}
.garden .list ul {
  margin-right: -0.66rem;
}
.garden .list .wall-column {
  display: block;
  position: relative;
  width: 50%;
  float: left;
}
.garden .list .article {
  display: block;
  padding-bottom: 0.84rem;
}
.garden .list .article .box {
  margin-right: 0.66rem;
  border-radius: 0.12rem;
  overflow: hidden;
}
.garden .list .article .imgDiv {
  overflow: hidden;
}
.garden .list .article .imgDiv img {
  width: 100%;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.garden .list .article .botDiv {
  background: #fff;
  padding: 0.4rem 0.5rem 0.6rem;
}
.garden .list .article .time {
  line-height: 0.32rem;
  color: #999;
  margin-bottom: 0.12rem;
  font-size: var(--fs16);
  padding-left: 0.32rem;
  background: url(../img/nimg20_2.png) left center no-repeat;
  background-size: 0.2rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.garden .list .article .name {
  font-size: var(--fs16);
  line-height: 0.28rem;
  color: #333;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.garden .list .article .box:hover .imgDiv {
  overflow: hidden;
}
.garden .list .article .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.garden .list .article .box:hover .time {
  color: #009288;
  background: url(../img/nimg20_2on.png) left center no-repeat;
  background-size: 0.2rem;
}
.garden .list .article .box:hover .name {
  color: #009288;
}
.pageBtn {
  width: 2.08rem;
  margin: 0 auto;
}
.pageBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 0.64rem;
  background: #009288;
  border-radius: 0.12rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-size: var(--fs16);
}
.pageBtn a em {
  display: block;
  margin-left: 0.15rem;
  width: 0.23rem;
  height: 0.23rem;
  background: url(../img/loading.png) no-repeat;
  background-size: 0.23rem;
}
@media (max-width: 1004px) {
  .garden .list {
    padding-bottom: 0.35rem;
  }
  .garden .list ul {
    margin-right: -0.2rem;
  }
  .garden .list .wall-column {
    display: block;
    position: relative;
    width: 50%;
    float: left;
  }
  .garden .list .article {
    display: block;
    padding-bottom: 0.4rem;
  }
  .garden .list .article .box {
    margin-right: 0.2rem;
    border-radius: 0.2rem;
  }
  .garden .list .article .botDiv {
    padding: 0.3rem 0.2rem 0.4rem;
  }
  .garden .list .article .time {
    line-height: 0.48rem;
    font-size: var(--fs13);
    padding-left: 0.4rem;
    background-size: 0.3rem;
  }
  .garden .list .article .name {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .garden .list .article .box:hover .time {
    background-size: 0.3rem;
  }
  .pageBtn {
    width: 3rem;
  }
  .pageBtn a {
    height: 0.84rem;
    border-radius: 0.2rem;
    font-size: var(--fs14);
  }
  .pageBtn a em {
    width: 0.32rem;
    height: 0.32rem;
    background-size: 0.32rem;
  }
}
.institute .name {
  font-size: var(--fs42);
  color: #000;
  font-weight: bold;
  line-height: 0.56rem;
}
.institute .content {
  padding: 0.3rem 0 0.6rem;
  color: #000;
  font-size: var(--fs16);
  line-height: 0.28rem;
}
.institute .content p {
  text-indent: 2em;
}
.institute .imgDiv {
  text-align: center;
}
.institute .imgDiv img {
  max-width: 100%;
}
.institute .btnDiv a {
  display: inline-block;
  padding: 0 0.2rem;
  height: 0.48rem;
  line-height: 0.46rem;
  border: #009288 solid 1px;
  font-size: var(--fs16);
  color: #009288;
}
.institute .btnDiv a:hover {
  background: #009288;
  color: #fff;
}
@media (max-width: 1004px) {
  .institute .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .institute .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .institute .btnDiv a {
    padding: 0 0.3rem;
    height: 0.88rem;
    line-height: 0.86rem;
    font-size: var(--fs15);
  }
}
.job .list {
  padding-bottom: 0.6rem;
}
.job .list li {
  margin-bottom: 0.2rem;
  cursor: pointer;
}
.job .list li .topDiv {
  padding: 0.4rem 0.5rem;
  background: #fff;
  position: relative;
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
}
.job .list li .line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25px;
  background: #fff;
  display: none;
  z-index: 1;
}
.job .list li .name {
  position: relative;
}
.job .list li .name em {
  display: block;
  position: relative;
  height: 0.5rem;
  font-size: var(--fs22);
  line-height: 0.22rem;
  color: #2a2a2a;
}
.job .list li .name em:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 3px;
  background: #009288;
}
.job .list li .msgList {
  padding-bottom: 0.35rem;
  overflow: hidden;
}
.job .list li .msgList dd {
  float: left;
  padding-right: 0.55rem;
  line-height: 0.3rem;
  font-size: var(--fs16);
  color: #666;
}
.job .list li .hideBox {
  display: none;
  background: #fff;
  padding: 0.1rem 0.45rem 1.1rem;
  position: relative;
  color: #666;
  box-shadow: 0px 0px 0.3rem 0px rgba(0, 0, 0, 0.1);
}
.job .list li .ico {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: -0.3rem;
  border-radius: 50%;
  background: #009288;
  border: transparent solid 3px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.job .list li .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -1px;
  width: 12px;
  height: 2px;
  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;
}
.job .list li .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1px;
  margin-top: -6px;
  width: 2px;
  height: 12px;
  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;
}
.job .list li .txt {
  font-size: var(--fs16);
  line-height: 0.32rem;
}
.job .list li .msg {
  font-size: var(--fs16);
  line-height: 0.32rem;
  padding-bottom: 0.4rem;
}
.job .list li .beforeDiv {
  font-size: var(--fs16);
  line-height: 0.32rem;
  padding-top: 0.25rem;
}
.job .list li .tips {
  font-size: var(--fs18);
  line-height: 0.32rem;
  color: #009288;
}
.job .list li .liNow:before {
  width: 100%;
}
.job .list li .liNow .line {
  display: block;
}
.job .list li .liNow .beforeDiv {
  display: none;
}
.job .list li .liNow .ico {
  background: #fff;
  border: #009288 solid 3px;
}
.job .list li .liNow .ico:before {
  background: #009288;
}
.job .list li .liNow .ico:after {
  background: #009288;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
@media (max-width: 1004px) {
  .job .list li .topDiv {
    padding: 0.5rem 0.36rem;
  }
  .job .list li .line {
    height: 15px;
  }
  .job .list li .name {
    padding-right: 0.7rem;
  }
  .job .list li .name:before {
    width: 0.36rem;
    height: 0.44rem;
    background-size: 0.36rem;
  }
  .job .list li .name em {
    height: auto;
    padding-bottom: 0.25rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .job .list li .name em:after {
    width: 0.3rem;
    height: 2px;
  }
  .job .list li .msgList {
    padding-bottom: 0.3rem;
  }
  .job .list li .msgList dd {
    padding-right: 0.5rem;
    line-height: 0.46rem;
    font-size: var(--fs13);
  }
  .job .list li .hideBox {
    padding: 0.1rem 0.4rem 0.9rem;
  }
  .job .list li .ico {
    right: 0.4rem;
    width: 0.7rem;
    height: 0.7rem;
    margin-top: -0.35rem;
  }
  .job .list li .txt {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .job .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .job .list li .beforeDiv {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0.25rem 0.8rem 0 0;
  }
  .job .list li .tips {
    font-size: var(--fs17);
  }
  .job .list li .liNow .ico {
    border: #009288 solid 2px;
  }
}
.videoBox .list {
  padding-bottom: 0.2rem;
}
.videoBox .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.videoBox .list li {
  width: calc((100% - 1.35rem) / 4);
  margin-right: 0.45rem;
  margin-bottom: 0.4rem;
  position: relative;
}
.videoBox .list li:nth-child(4n) {
  margin-right: 0;
}
.videoBox .list li .box {
  cursor: pointer;
}
.videoBox .list li .imgDiv {
  height: 3.2rem;
  position: relative;
}
.videoBox .list li .imgDiv::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.videoBox .list li .imgDiv::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  width: 42px;
  height: 42px;
  background: url(../img/play.png) no-repeat;
}
.videoBox .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.videoBox .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.15rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #000;
  text-align: center;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.videoBox .list li .videoDiv {
  display: none;
}
.videoBox .list li:nth-child(-n+3)::after {
  display: none;
}
.videoBox .list li:hover .name {
  color: #009288;
}
@media (max-width: 1004px) {
  .videoBox .list {
    padding-bottom: 0.3rem;
  }
  .videoBox .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.4rem;
  }
  .videoBox .list li .imgDiv {
    height: 4rem;
  }
  .videoBox .list li .imgDiv::after {
    margin-left: -0.45rem;
    margin-top: -0.45rem;
    width: 0.9rem;
    height: 0.9rem;
    background-size: 0.9rem;
  }
  .videoBox .list li .name {
    margin-top: 0.2rem;
    white-space: normal;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .videoBox .list li:nth-child(4n) {
    margin-right: 0.2rem;
  }
  .videoBox .list li:nth-child(2n) {
    margin-right: 0;
  }
}
.video-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.video-box.on {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.shipinLayer {
  width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  position: relative;
}
.shipinLayer .close {
  position: absolute;
  display: block;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  z-index: 1;
  background: url(../img/close3.png) center no-repeat;
}
.shipinLayer .baozhe {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 5.6rem;
  background: #000;
}
.shipinLayer iframe {
  width: 100%;
  height: 5.6rem;
}
.shipinLayer video {
  max-width: 100%;
  max-height: 5.6rem;
}
@media (max-width: 1004px) {
  .shipinLayer {
    width: 94%;
    padding: 1rem 0.3rem 0.5rem;
  }
  .shipinLayer .close {
    right: 0.3rem;
    top: 0.2rem;
    width: 0.6rem;
    height: 0.6rem;
    background-size: 0.42rem;
  }
  .shipinLayer .baozhe {
    height: 4rem;
  }
  .shipinLayer iframe {
    height: 4rem;
  }
  .shipinLayer video {
    max-height: 4rem;
  }
}
.pageCon {
  padding: 1.2rem 0;
  border-bottom: #eee solid 1px;
}
.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;
  }
}
