.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: 50%;
  margin-left: -7.68rem;
  top: 18%;
  z-index: 2;
  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 .onebox .cn {
  margin: 0;
  font-size: var(--fs60);
  line-height: 0.72rem;
  color: #fff;
  font-weight: 400;
}
.ind-banner .onebox .en {
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #fff;
  font-family: "Poppins-L";
}
.ind-banner .onebox .time {
  margin: 0.25rem 0 0.5rem;
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #fff;
  font-family: "Poppins-L";
}
.ind-banner .onebox .btnGroup li {
  float: left;
  margin-right: 0.2rem;
  font-size: var(--fs16);
}
.ind-banner .onebox .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.5rem;
  height: 0.5rem;
  border: #fff solid 2px;
  color: #fff;
}
.ind-banner .onebox .btnGroup li a:hover {
  background: #fff;
  color: #333;
}
.ind-banner .twobox {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 30%;
  z-index: 2;
  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 .twobox .cn {
  margin: 0;
  font-size: var(--fs60);
  line-height: 0.72rem;
  color: #fff;
  font-weight: 400;
}
.ind-banner .twobox .zi {
  margin-top: 0.15rem;
  font-size: var(--fs30);
  line-height: 0.48rem;
  color: #fff;
  font-family: "Poppins-L";
}
.ind-banner .twobox .time {
  margin: 0 0 0.9rem;
  padding-left: 0.3rem;
  background: url(../img/nimg22_4.png) left center no-repeat;
  background-size: 0.22rem;
  font-size: var(--fs18);
  line-height: 0.4rem;
  color: #fff;
  font-family: "Poppins-L";
}
.ind-banner .twobox .btnGroup2 li {
  float: left;
  margin-right: 0.2rem;
  font-size: var(--fs16);
}
.ind-banner .twobox .btnGroup2 li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.75rem;
  height: 0.56rem;
  border: #fff solid 1px;
  color: #fff;
}
.ind-banner .twobox .btnGroup2 li a em {
  display: block;
  margin-left: 7px;
  width: 9px;
  height: 9px;
  background: url(../img/ico2.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;
}
.ind-banner .twobox .btnGroup2 li a:hover {
  background: #fff;
  color: #25408e;
}
.ind-banner .twobox .btnGroup2 li a:hover em {
  background: url(../img/ico2on.png) no-repeat;
}
.ind-banner .swiper-slide-active .onebox,
.ind-banner .swiper-slide-active .twobox {
  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.6rem;
  z-index: 2;
}
.ind-banner .swiper-pagination-bullet {
  position: relative;
  width: 12px;
  height: 12px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 50%;
  margin: 0 8px!important;
  overflow: hidden;
}
.ind-banner .swiper-pagination-bullet-active {
  background: #fff;
}
@media (max-width: 1600px) {
  .ind-banner .onebox,
  .ind-banner .twobox {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .ind-banner .swiper-slide .img {
    height: 5rem;
  }
  .ind-banner .swiper-slide .img img {
    height: 100%;
    object-fit: cover;
  }
  .ind-banner .onebox {
    top: 20%;
    left: 0.3rem;
    right: 0.3rem;
    margin-left: 0;
  }
  .ind-banner .onebox .cn {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .ind-banner .onebox .en {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .ind-banner .onebox .time {
    margin: 0.15rem 0 0.3rem;
    font-size: var(--fs14);
  }
  .ind-banner .onebox .btnGroup li {
    font-size: var(--fs14);
  }
  .ind-banner .onebox .btnGroup li a {
    width: 1.96rem;
    height: 0.66rem;
    border: #fff solid 1px;
  }
  .ind-banner .twobox {
    left: 0.3rem;
    margin-left: 0;
    right: 0.3rem;
    top: 20%;
  }
  .ind-banner .twobox .cn {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .ind-banner .twobox .zi {
    margin-top: 0.15rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .ind-banner .twobox .time {
    margin: 0 0 0.3rem;
    padding-left: 0.36rem;
    background-size: 0.28rem;
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .ind-banner .twobox .btnGroup2 li {
    font-size: var(--fs14);
  }
  .ind-banner .twobox .btnGroup2 li a {
    width: 2rem;
    height: 0.7rem;
  }
  .ind-banner .swiper-pagination {
    bottom: 0.3rem;
  }
  .ind-banner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 0.1rem !important;
  }
}
.indTxt .cn {
  margin: 0;
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.48rem;
  color: #000;
  letter-spacing: 5px;
}
.indexP1 {
  padding: 0.65rem 0 0.95rem;
  background: #f5f5f5;
}
.indexP1 .toptop {
  position: relative;
}
.indexP1 .toptop .time {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-family: 'Poppins-L';
  font-size: var(--fs30);
  line-height: 0.3rem;
  color: #333;
}
.indexP1 .tab2 {
  margin-top: 0.55rem;
  position: relative;
  border: #cdd0d9 solid 1px;
}
.indexP1 .tab2 li {
  font-family: 'Poppins-L';
  float: left;
  width: 10%;
  line-height: 0.24rem;
  font-size: var(--fs18);
  text-align: center;
}
.indexP1 .tab2 li .box {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 0.74rem;
  background: #e8eaf0;
  color: #333;
  border-right: #cdd0d9 solid 1px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP1 .tab2 li:last-child .box {
  border-right: none;
}
.indexP1 .tab2 .liNow .box {
  color: #fff;
  background: #25408e;
}
.indexP1 .conDiv {
  padding: 0.35rem 0.5rem;
  background: #fff;
  border: #c9ccd5 solid 1px;
  border-top: none;
  animation: am_top 0.8s ease-out 0.1s backwards;
  -webkit-animation: am_top 0.8s ease-out 0.1s backwards;
}
.indexP1 .conDiv .time {
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #25408e;
  margin-bottom: 0.1rem;
  font-family: 'Poppins-L';
  font-weight: bold;
}
.indexP1 .conDiv .list {
  overflow: hidden;
}
.indexP1 .conDiv .list li {
  font-family: 'Poppins-L';
  float: left;
  font-size: var(--fs16);
  line-height: 0.32rem;
  color: #333;
  width: 33.33%;
  padding-right: 0.5rem;
}
.indexP2 {
  padding: 0.7rem 0 1.9rem;
  overflow: hidden;
}
.indexP2 .toptop {
  position: relative;
  margin-bottom: 0.7rem;
}
.indexP2 .more {
  position: absolute;
  right: 0;
  top: 0;
}
.indexP2 .more a {
  position: relative;
  display: block;
  padding-right: 0.68rem;
  color: #25408e;
  font-size: var(--fs18);
  line-height: 0.48rem;
}
.indexP2 .more 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;
}
.indexP2 .more a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #25408e url(../img/nimg15_right.png) center no-repeat;
}
.indexP2 .more a:hover span {
  background-size: 100% 1px;
  background-position: 0 100%;
}
.indShow {
  position: relative;
}
.indShow .list {
  overflow: hidden;
}
.indShow .list .imgDiv {
  height: 6.58rem;
  position: relative;
}
.indShow .list .imgDiv::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 6.15rem;
  height: 100%;
  background: url(../img/bg1.png) left top repeat-y;
}
.indShow .list .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;
}
.indShow .list .layer {
  position: absolute;
  right: 0.35rem;
  top: 2.5rem;
  z-index: 1;
}
.indShow .list .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #fff;
}
.indShow .list .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.05rem;
  color: #fff;
  font-size: var(--fs16);
  line-height: 0.3rem;
  max-height: 0.9rem;
  font-family: 'Poppins-L';
}
.indShow .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indShow .arrowDiv {
  position: absolute;
  right: 0.35rem;
  bottom: 1.6rem;
  z-index: 2;
}
.indShow .arrowDiv .se {
  position: relative;
  display: block;
  float: left;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: #fff solid 2px;
}
.indShow .arrowDiv .prev {
  margin-right: 0.2rem;
  background: url(../img/nimg15_left.png) center no-repeat;
}
.indShow .arrowDiv .prev:hover {
  background: #fff url(../img/nimg15_lefton.png) center no-repeat;
}
.indShow .arrowDiv .next {
  background: url(../img/nimg15_right.png) center no-repeat;
}
.indShow .arrowDiv .next:hover {
  background: #fff url(../img/nimg15_righton.png) center no-repeat;
}
.indProgram {
  position: relative;
  margin-top: 30px;
}
.indProgram::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: 7.68rem;
  width: 25%;
  height: 100%;
  background: #fff;
  z-index: 3;
}
.indProgram .box .imgDiv {
  height: 2.62rem;
  overflow: hidden;
}
.indProgram .box .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;
}
.indProgram .box .name {
  font-size: var(--fs26);
  line-height: 0.32rem;
  color: #333;
  margin: 0.35rem 0;
}
.indProgram .box .name 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/dot2.jpg) no-repeat;
  background-size: 0 0.01rem;
  background-position: 100% 100%;
  transition: background-size 0.7s ease;
}
.indProgram .box .msg {
  color: #333;
  font-size: var(--fs16);
  line-height: 0.2rem;
  height: 0.4rem;
  overflow: hidden;
  font-family: 'Poppins-L';
}
.indProgram .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indProgram .box:hover .name span {
  background-size: 100% 1px;
  background-position: 0 100%;
}
.indexP3 {
  padding-top: 1.1rem;
  height: 4.7rem;
  background: url(../img/indexP3.jpg) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}
.indexP3 .conDiv {
  width: 11rem;
}
.indexP3 .name {
  color: #fff;
  font-size: var(--fs60);
  line-height: 0.72rem;
  font-family: 'Poppins-L';
}
.indexP3 .zi {
  margin-top: 0.15rem;
  color: #fff;
  font-size: var(--fs36);
  line-height: 0.48rem;
  font-family: 'Poppins-L';
}
.indexP3 .btnGroup {
  margin-top: 0.5rem;
}
.indexP3 .btnGroup li {
  float: left;
  margin-right: 0.2rem;
  font-size: var(--fs16);
}
.indexP3 .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.5rem;
  height: 0.52rem;
  border: #fff solid 2px;
  color: #fff;
}
.indexP3 .btnGroup li a:hover {
  background: #fff;
  color: #333;
}
.indexP3 .ewmDiv {
  padding-right: 0.45rem;
}
.indexP3 .ewmDiv .limg {
  width: 1.9rem;
  margin: 0 auto;
}
.indexP3 .ewmDiv .limg img {
  width: 100%;
}
.indexP3 .ewmDiv p {
  margin-top: 0.5rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs18);
  line-height: 0.2rem;
}
.indexP4 {
  background: #e4e4e4;
  padding: 1.2rem 0;
  overflow: hidden;
}
.indexP4 .mxfDiv {
  position: relative;
}
.indexP4 .indTxt {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.indexP4 .links {
  position: absolute;
  left: 50%;
  margin-left: -1.1rem;
  top: 0;
  width: 2.2rem;
  z-index: 1;
  text-align: center;
}
.indexP4 .links ul {
  font-size: 0;
}
.indexP4 .links li {
  display: inline-block;
  margin: 0 0.1rem;
  font-size: var(--fs18);
}
.indexP4 .links li .box {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  color: #222;
  width: 0.9rem;
  height: 0.48rem;
  border-radius: 0.48rem;
}
.indexP4 .links .on .box {
  background: #25408e;
  color: #fff;
}
.indexP4 .lunbo {
  padding-top: 1.45rem;
  display: none;
  position: relative;
}
.indexP4 .lunbo::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: 7.68rem;
  width: 25%;
  height: 100%;
  background: #e4e4e4;
  z-index: 3;
}
.indexP4 .lunbo .img {
  height: 4.9rem;
  overflow: hidden;
}
.indexP4 .lunbo .img 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;
}
.indexP4 .lunbo .zi {
  margin: 0.2rem 0;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.18rem;
}
.indexP4 .lunbo .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: 'Poppins-M';
  font-size: var(--fs26);
  line-height: 0.36rem;
  max-height: 0.72rem;
  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;
}
.indexP4 .lunbo .msg {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #999;
}
.indexP4 .lunbo a:hover .img img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indexP4 .lunbo a:hover .name {
  color: #25408e;
}
.indexP4 .arrowDiv {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}
.indexP4 .arrowDiv .se {
  position: relative;
  display: block;
  float: left;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: #cdcdcd solid 2px;
}
.indexP4 .arrowDiv .se:hover {
  border: #25408e solid 2px;
}
.indexP4 .arrowDiv .prev {
  margin-right: 0.2rem;
  background: url(../img/nimg15_left2.png) center no-repeat;
}
.indexP4 .arrowDiv .prev:hover {
  background: url(../img/nimg15_lefton.png) center no-repeat;
}
.indexP4 .arrowDiv .next {
  background: url(../img/nimg15_right2.png) center no-repeat;
}
.indexP4 .arrowDiv .next:hover {
  background: url(../img/nimg15_righton.png) center no-repeat;
}
.indexP5 {
  padding: 0.7rem 0 1.4rem;
}
.indexP5 .indTxt {
  padding-bottom: 0.7rem;
}
.indexP5 .mxfDiv {
  position: relative;
}
.indexP5 .mxfDiv .bg {
  height: 6.58rem;
}
.indexP5 .mxfDiv .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexP5 .mxfDiv .layer {
  position: absolute;
  left: 1.94rem;
  top: 0;
  height: 100%;
  z-index: 1;
  width: 5.35rem;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.indexP5 .mxfDiv .name {
  font-size: var(--fs60);
  color: #fff;
  line-height: 0.76rem;
  font-weight: 100;
  font-family: 'Poppins-M';
}
.indexP5 .mxfDiv .name strong {
  font-weight: 400;
  font-size: var(--fs72);
  display: block;
}
.indexP5 .mxfDiv .zi {
  margin: 0.3rem 0 0.6rem;
  color: #fff;
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.indexP5 .mxfDiv .btnGroup li {
  float: left;
  margin-right: 0.2rem;
  font-size: var(--fs16);
}
.indexP5 .mxfDiv .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.52rem;
  height: 0.52rem;
  border: #fff solid 2px;
  color: #fff;
}
.indexP5 .mxfDiv .btnGroup li a:hover {
  background: #fff;
  color: #333;
}
.indexP6 {
  position: relative;
  padding-bottom: 1.4rem;
  overflow: hidden;
}
.indexP6::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: 7.68rem;
  width: 25%;
  height: 100%;
  background: #fff;
  z-index: 3;
}
.indexP6 .toptop {
  position: relative;
  margin-bottom: 0.7rem;
}
.indexP6 .more {
  position: absolute;
  right: 0;
  top: 0;
}
.indexP6 .more a {
  position: relative;
  display: block;
  padding-right: 0.68rem;
  color: #25408e;
  font-size: var(--fs18);
  line-height: 0.48rem;
}
.indexP6 .more 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;
}
.indexP6 .more a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #25408e url(../img/nimg15_right.png) center no-repeat;
}
.indexP6 .more a:hover span {
  background-size: 100% 1px;
  background-position: 0 100%;
}
.indNews {
  position: relative;
}
.indNews li .box {
  position: relative;
  border-top: #000 solid 1px;
  padding-top: 0.5rem;
}
.indNews li .time {
  font-size: var(--fs18);
  height: 0.3rem;
  line-height: 0.2rem;
  color: #333;
  font-family: 'Poppins-M';
}
.indNews li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  padding-right: 0.6rem;
  line-height: 0.36rem;
  font-size: var(--fs24);
  color: #333;
  height: 1.08rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indNews li .name 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;
}
.indNews li .zi {
  margin-top: 0.45rem;
  font-size: var(--fs16);
  color: #25408e;
}
.indNews li .zi em {
  padding-right: 24px;
  background: url(../img/nimg15_righton.png) right center no-repeat;
}
.indNews li .box:hover .name {
  color: #25408e;
}
.indNews li .box:hover .name span {
  background-size: 100% 1px;
  background-position: 0 100%;
}
.indexP7 {
  height: 7.52rem;
  background: center no-repeat;
  background-size: cover;
}
.indexP7 .wrap {
  height: 7.52rem;
  position: relative;
}
.indexP7 .layer {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 1;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.indexP7 .indTxt .cn {
  color: #fff;
}
.indexP7 .name {
  margin-top: 0.6rem;
  color: #fff;
  font-size: var(--fs36);
  line-height: 0.48rem;
}
.indexP7 .zi {
  color: #fff;
  font-size: var(--fs30);
  line-height: 0.46rem;
  font-weight: 100;
}
.indexP7 .btnDiv {
  margin-top: 0.85rem;
}
.indexP7 .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.52rem;
  height: 0.52rem;
  font-size: var(--fs16);
  border: #fff solid 2px;
  color: #fff;
}
.indexP7 .btnDiv a:hover {
  background: #fff;
  color: #333;
}
.indexP8 {
  padding: 0.9rem 0;
}
.indexP8 .list li {
  float: left;
  width: 20%;
}
.indexP8 .list li .ico {
  margin: 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: #e3e7f1 solid 2px;
  position: relative;
}
.indexP8 .list li .ico img {
  width: 0.82rem;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.41rem;
  margin-top: -0.41rem;
}
.indexP8 .list li .name {
  margin: 0.1rem 0;
  line-height: 0.36rem;
  text-align: center;
  font-size: var(--fs24);
  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;
}
.indexP8 .list li .zi {
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.18rem;
  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;
}
.indexP8 .list li .zi em {
  display: inline-block;
  padding-right: 25px;
  background: url(../img/nimg15_righton.png) right center no-repeat;
}
.indexP8 .list li:hover .name,
.indexP8 .list li:hover .zi {
  color: #25408e;
}
.indexP9 {
  background: #25408e;
  height: 0.95rem;
  overflow: hidden;
}
.indexP9 .list {
  padding: 0 0.8rem;
}
.indexP9 .list li {
  float: left;
  width: 20%;
}
.indexP9 .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2rem;
  margin: 0 auto;
  height: 0.95rem;
}
.indexP9 .list li .imgDiv img {
  max-width: 2rem;
  max-height: 0.8rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP9 .list li .imgDiv:hover img {
  opacity: 0.8;
}
@media (max-width: 1600px) {
  .indProgram::after {
    margin-right: 8rem;
  }
  .indexP4 .lunbo::after {
    margin-right: 8rem;
  }
  .indexP6::after {
    margin-right: 8rem;
  }
}
@media (max-width: 1004px) {
  .indTxt .cn {
    font-size: var(--fs22);
    line-height: 0.6rem;
    letter-spacing: 3px;
  }
  .indexP1 {
    padding: 0.8rem 0 0.95rem;
  }
  .indexP1 .toptop .time {
    right: 0;
    width: auto;
    text-align: right;
    font-size: var(--fs15);
    line-height: 0.6rem;
  }
  .indexP1 .tab2 li {
    width: 20%;
    line-height: 0.36rem;
    font-size: var(--fs14);
  }
  .indexP1 .tab2 li .box {
    height: 0.9rem;
  }
  .indexP1 .tab2 li:nth-child(5) .box,
  .indexP1 .tab2 li:last-child .box {
    border-right: none;
  }
  .indexP1 .conDiv {
    padding: 0.45rem 0.3rem;
  }
  .indexP1 .conDiv .time {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .indexP1 .conDiv .list li {
    float: none;
    font-size: var(--fs14);
    line-height: 0.48rem;
    width: auto;
    padding-right: 0;
    padding-bottom: 0.4rem;
  }
  .indexP1 .conDiv .list li:last-child {
    padding-bottom: 0;
  }
  .indexP2 {
    padding: 0.8rem 0 1rem;
  }
  .indexP2 .toptop {
    margin-bottom: 0.6rem;
  }
  .indexP2 .more a {
    padding-right: 0.75rem;
    font-size: var(--fs14);
    line-height: 0.6rem;
  }
  .indexP2 .more a::after {
    width: 0.6rem;
    height: 0.6rem;
    background-size: 12px;
  }
  .indShow .list .imgDiv {
    height: 4.2rem;
  }
  .indShow .list .imgDiv::after {
    width: 70%;
  }
  .indShow .list .layer {
    right: 0.3rem;
    top: 15%;
  }
  .indShow .list .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .indShow .list .msg {
    margin-top: 0.1rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    max-height: 1.44rem;
  }
  .indShow .arrowDiv {
    right: 0.3rem;
    bottom: 0.3rem;
  }
  .indShow .arrowDiv .se {
    width: 0.82rem;
    height: 0.82rem;
    border: #fff solid 1px;
  }
  .indShow .arrowDiv .prev {
    background-size: 12px;
  }
  .indShow .arrowDiv .prev:hover {
    background-size: 12px;
  }
  .indShow .arrowDiv .next {
    background-size: 12px;
  }
  .indShow .arrowDiv .next:hover {
    background-size: 12px;
  }
  .indProgram {
    margin-top: 0.3rem;
  }
  .indProgram::after {
    display: none;
  }
  .indProgram .list {
    overflow: hidden;
  }
  .indProgram .box .imgDiv {
    height: 2.1rem;
  }
  .indProgram .box .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs15);
    line-height: 0.48rem;
    height: 0.96rem;
    margin: 0.2rem 0;
  }
  .indProgram .box .msg {
    font-size: var(--fs13);
    line-height: 0.42rem;
    height: 0.84rem;
  }
  .indexP3 {
    padding: 0.8rem 0;
    height: auto;
    background-attachment: inherit;
  }
  .indexP3 .mxfDiv {
    display: block;
    height: auto;
  }
  .indexP3 .conDiv {
    width: auto;
    float: none;
  }
  .indexP3 .name {
    font-size: var(--fs17);
    line-height: 0.6rem;
  }
  .indexP3 .zi {
    margin-top: 0.2rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .indexP3 .btnGroup {
    margin-top: 0.3rem;
    overflow: hidden;
  }
  .indexP3 .btnGroup li {
    font-size: var(--fs14);
  }
  .indexP3 .btnGroup li a {
    width: 2rem;
    height: 0.72rem;
    border: #fff solid 1px;
  }
  .indexP3 .ewmDiv {
    float: none;
    padding-top: 0.6rem;
    padding-right: 0;
  }
  .indexP3 .ewmDiv .limg {
    width: 2.1rem;
  }
  .indexP3 .ewmDiv p {
    margin-top: 0.3rem;
    font-size: var(--fs13);
    line-height: 0.4rem;
  }
  .indexP4 {
    padding: 0.9rem 0;
  }
  .indexP4 .indTxt {
    left: 0;
    top: 0;
    z-index: 2;
  }
  .indexP4 .links {
    padding-top: 0.9rem;
    position: relative;
    left: 0;
    margin-left: 0;
    width: auto;
  }
  .indexP4 .links li {
    float: left;
    display: block;
    margin: 0 0.2rem 0 0;
    font-size: var(--fs14);
  }
  .indexP4 .links li .box {
    width: 1.5rem;
    height: 0.78rem;
  }
  .indexP4 .lunbo {
    padding-top: 1.2rem;
    display: none;
    position: relative;
  }
  .indexP4 .lunbo::after {
    display: none;
  }
  .indexP4 .lunbo .imgList {
    overflow: hidden;
  }
  .indexP4 .lunbo .img {
    height: 3.6rem;
  }
  .indexP4 .lunbo .zi {
    font-size: var(--fs14);
    line-height: 0.32rem;
  }
  .indexP4 .lunbo .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
    max-height: 0.96rem;
  }
  .indexP4 .lunbo .msg {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs13);
    line-height: 0.48rem;
    max-height: 0.96rem;
  }
  .indexP4 .arrowDiv .se {
    width: 0.82rem;
    height: 0.82rem;
    border: #cdcdcd solid 1px;
  }
  .indexP4 .arrowDiv .se:hover {
    border: #25408e solid 1px;
  }
  .indexP4 .arrowDiv .prev {
    background-size: 12px;
  }
  .indexP4 .arrowDiv .prev:hover {
    background-size: 12px;
  }
  .indexP4 .arrowDiv .next {
    background-size: 12px;
  }
  .indexP4 .arrowDiv .next:hover {
    background-size: 12px;
  }
  .indexP5 {
    padding: 0.8rem 0 1rem;
  }
  .indexP5 .indTxt {
    padding-bottom: 0.6rem;
  }
  .indexP5 .mxfDiv .bg {
    height: 5.2rem;
  }
  .indexP5 .mxfDiv .layer {
    left: 0.3rem;
    width: 80%;
  }
  .indexP5 .mxfDiv .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .indexP5 .mxfDiv .name strong {
    font-size: var(--fs24);
  }
  .indexP5 .mxfDiv .zi {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin: 0.2rem 0 0.3rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 1.44rem;
  }
  .indexP5 .mxfDiv .btnGroup li {
    font-size: var(--fs14);
  }
  .indexP5 .mxfDiv .btnGroup li a {
    width: 2rem;
    height: 0.72rem;
    border: #fff solid 1px;
  }
  .indexP6 {
    padding-bottom: 1rem;
  }
  .indexP6::after {
    display: none;
  }
  .indexP6 .more a {
    padding-right: 0.75rem;
    font-size: var(--fs14);
    line-height: 0.6rem;
  }
  .indexP6 .more a::after {
    width: 0.6rem;
    height: 0.6rem;
    background: #25408e url(../img/nimg15_right.png) center no-repeat;
    background-size: 12px;
  }
  .indNews .list {
    overflow: hidden;
  }
  .indNews li .box {
    position: relative;
    border-top: #000 solid 1px;
    padding-top: 0.5rem;
  }
  .indNews li .time {
    font-size: var(--fs14);
    height: 0.45rem;
    line-height: 0.28rem;
  }
  .indNews li .name {
    padding-right: 0;
    line-height: 0.48rem;
    font-size: var(--fs17);
    height: 1.44rem;
  }
  .indNews li .zi {
    margin-top: 0.3rem;
    font-size: var(--fs14);
  }
  .indNews li .zi em {
    padding-right: 20px;
    background-size: 12px;
  }
  .indexP7 {
    padding: 0 0.3rem;
    height: 6rem;
  }
  .indexP7 .wrap {
    height: 6rem;
  }
  .indexP7 .name {
    margin-top: 0.4rem;
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .indexP7 .zi {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .indexP7 .btnDiv {
    margin-top: 0.5rem;
  }
  .indexP7 .btnDiv a {
    font-size: var(--fs14);
    width: 2.1rem;
    height: 0.82rem;
    border: #fff solid 1px;
  }
  .indexP8 {
    padding: 0.9rem 0 0.4rem;
  }
  .indexP8 .list li {
    width: 33.33%;
    margin-bottom: 0.5rem;
  }
  .indexP8 .list li .ico {
    width: 1.4rem;
    height: 1.4rem;
    border: #e3e7f1 solid 1px;
  }
  .indexP8 .list li .ico img {
    width: 1rem;
    margin-left: -0.5rem;
    margin-top: -0.5rem;
  }
  .indexP8 .list li .name {
    margin: 0.15rem 0;
    line-height: 0.56rem;
    font-size: var(--fs17);
  }
  .indexP8 .list li .zi {
    font-size: var(--fs14);
    line-height: 0.3rem;
  }
  .indexP8 .list li .zi em {
    padding-right: 20px;
    background-size: 12px;
  }
  .indexP8 .list li:nth-child(4),
  .indexP8 .list li:nth-child(5) {
    width: 50%;
  }
  .indexP9 {
    padding: 0.3rem 0;
    height: auto;
  }
  .indexP9 .list {
    padding: 0;
  }
  .indexP9 .list li {
    width: 33.33%;
  }
  .indexP9 .list li .imgDiv {
    width: 1.6rem;
    height: 0.8rem;
  }
  .indexP9 .list li .imgDiv img {
    max-width: 1.6rem;
    max-height: 0.6rem;
  }
}
.pageCon {
  padding: 1.2rem 0;
}
.pageCon .title {
  text-align: center;
  font-size: var(--fs48);
  color: #333;
  font-weight: bold;
  line-height: 0.48rem;
  margin-bottom: 0.45rem;
}
.pageCon .content {
  font-size: var(--fs18);
  line-height: 0.36rem;
}
@media (max-width: 1004px) {
  .pageCon {
    padding: 1rem 0;
  }
  .pageCon .title {
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .pageCon .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
}
