.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;
  width: 33.33%;
  padding-right: 0.5rem;
}
.indexP1 .conDiv .list li a {
  display: block;
  color: #333;
}
.indexP1 .conDiv .list li a:hover {
  color: #25408e;
}
.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 .imgDiv video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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: 0.7rem;
  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(--fs46);
  line-height: 0.64rem;
  font-family: 'Poppins-L';
}
.indexP3 .zi {
  margin-top: 0.15rem;
  color: #fff;
  font-size: var(--fs26);
  line-height: 0.42rem;
  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;
  min-width: 1.5rem;
  padding: 0 0.2rem;
  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.25rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs16);
  line-height: 0.24rem;
  width: 1.9rem;
}
.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;
}
.indexP4 .more {
  margin-top: 0.6rem;
  float: right;
}
.indexP4 .more a {
  position: relative;
  display: block;
  padding-right: 0.68rem;
  color: #25408e;
  font-size: var(--fs18);
  line-height: 0.48rem;
}
.indexP4 .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;
}
.indexP4 .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;
}
.indexP4 .more a:hover span {
  background-size: 100% 1px;
  background-position: 0 100%;
}
.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.5rem;
  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;
}
.indexP5 .mxfDiv .name {
  width: 9.6rem;
  font-size: var(--fs40);
  color: #fff;
  line-height: 0.64rem;
  font-weight: 100;
  font-family: 'Poppins-M';
}
.indexP5 .mxfDiv .name strong {
  font-weight: 400;
  font-size: var(--fs48);
  display: block;
}
.indexP5 .mxfDiv .zi {
  margin: 0.2rem 0 0.4rem;
  width:7.0rem;
  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 ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.indexP8 .list li {
  padding: 0 0.9rem;
}
.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;
}
.indexP8-2 {
  border-top: #25408e solid 1px;
  padding: 1rem 0 1.3rem;
}
.indexP9 {
  background: #25408e;
  height: 0.95rem;
  overflow: hidden;
}
.indexP9 .list {
  padding: 0 0.8rem;
}
.indexP9 .list ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.indexP9 .list li {
  margin: 0 0.4rem;
}
.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: 2px;
  }
  .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(--fs13);
  }
  .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 .indTxt .cn{ 
  	font-size:var(--fs18);
  }
  .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 {
    min-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;
	width:auto;
  }
  .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;
  }
  .indexP4 .more {
    margin-top: 0.5rem;
  }
  .indexP4 .more a {
    padding-right: 0.75rem;
    font-size: var(--fs14);
    line-height: 0.6rem;
  }
  .indexP4 .more a::after {
    width: 0.6rem;
    height: 0.6rem;
    background-size: 12px;
  }
  .indexP5 {
    padding: 0.8rem 0 1rem;
  }
  .indexP5 .indTxt {
    padding-bottom: 0.6rem;
  }
  .indexP5 .mxfDiv .bg {
    height: 5.6rem;
  }
  .indexP5 .mxfDiv .layer {
    left: 0.3rem;
    width: 80%;
  }
  .indexP5 .mxfDiv .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
	width:auto;
  }
  .indexP5 .mxfDiv .name strong {
    font-size: var(--fs20);
  }
  .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;
	width:auto;
    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 ul {
    display: block;
  }
  .indexP8 .list li {
    float: left;
    padding: 0;
    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 ul {
    display: block;
  }
  .indexP9 .list li {
    float: left;
    margin: 0;
    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;
  }
}
.program {
  padding: 1rem 0 1.5rem;
}
.program .pageTitle {
  margin: 0 0 0.5rem;
}
.program .list2 {
  padding: 0.7rem 0 1.3rem;
}
.program .list2 ul {
  margin-right: -0.36rem;
}
.program .list2 li {
  float: left;
  width: 50%;
  margin-bottom: 1rem;
}
.program .list2 li .box {
  margin-right: 0.36rem;
}
.program .list2 li .imgDiv {
  overflow: hidden;
  height: 4.22rem;
}
.program .list2 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;
}
.program .list2 li .time {
  margin-top: 0.35rem;
  line-height: 0.4rem;
  color: #25408e;
  font-size: var(--fs24);
}
.program .list2 li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 0.56rem;
  color: #333;
  font-size: var(--fs26);
  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;
}
.program .list2 li .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 1.2rem;
  color: #333;
}
.program .list2 li .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.3rem;
  width: 1.5rem;
  height: 0.5rem;
  background: #25408e;
  color: #fff;
  font-size: var(--fs16);
}
.program .list2 li .more em {
  margin-left: 0.12rem;
  width: 0.15rem;
  height: 0.13rem;
  background: url(../img/nimg15_right.png) no-repeat;
  background-size: 0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.program .list2 li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.program .list2 li .box:hover .name {
  color: #25408e;
}
.program .list2 li .box:hover .more em {
  margin-left: 0.2rem;
}
@media (max-width: 1004px) {
  .program {
    padding: 0.8rem 0 1rem;
  }
  .program .pageTitle {
    margin: 0 0 0.6rem;
  }
  .program .list2 {
    padding: 0.6rem 0 0.2rem;
  }
  .program .list2 ul {
    margin-right: 0;
  }
  .program .list2 li {
    float: none;
    width: auto;
    margin-bottom: 0.6rem;
  }
  .program .list2 li .box {
    margin-right: 0;
  }
  .program .list2 li .imgDiv {
    height: auto;
  }
  .program .list2 li .imgDiv img {
    height: auto;
  }
  .program .list2 li .time {
    margin-top: 0.25rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .program .list2 li .name {
    line-height: 0.64rem;
    font-size: var(--fs16);
  }
  .program .list2 li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 1.92rem;
  }
  .program .list2 li .more {
    width: 2.4rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .program .list2 li .more em {
    width: 12px;
    height: 10px;
    background-size: 12px;
  }
}
.artist {
  padding: 1rem 0 2rem;
  overflow: hidden;
}
.artist .toptop {
  position: relative;
  margin-bottom: 0.75rem;
}
.artist .toptop .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.artist .toptop .pageTitle {
  position: relative;
  z-index: 1;
}
.artist .toptop .zi {
  position: relative;
  z-index: 1;
  padding-left: 0.4rem;
  font-size: var(--fs18);
}
.artist .links {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 0.25rem;
}
.artist .links li {
  font-size: var(--fs18);
  display: inline-block;
  margin: 0 0.3rem;
}
.artist .links li a {
  position: relative;
  display: block;
  height: 0.28rem;
  color: #333;
  line-height: 0.2rem;
}
.artist .links li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #25408e;
}
.artist .links li a:hover {
  color: #25408e;
}
.artist .links li .on {
  font-weight: bold;
  color: #333;
}
.artist .links li .on::after {
  left: 0;
  width: 100%;
}
.artist .list {
  padding-bottom: 0.6rem;
}
.artist .list ul {
  margin-right: -1.66rem;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-wrap: wrap;
}
.artist .list li {
  width: 33.33%;
  margin-bottom: 1.1rem;
}
.artist .list li .box {
  margin-right: 1.66rem;
}
.artist .list li .img {
  height: 4.9rem;
  overflow: hidden;
}
.artist .list li .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;
}
.artist .list li .zi {
  margin: 0.2rem 0;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.18rem;
}
.artist .list li .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;
}
.artist .list li .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  max-height: 0.6rem;
  color: #999;
}
.artist .list li a:hover .img img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.artist .list li a:hover .name {
  color: #25408e;
}
@media (max-width: 1004px) {
  .artist {
    padding: 0.8rem 0 1rem;
  }
  .artist .toptop {
    display: block;
    margin-bottom: 0.75rem;
  }
  .artist .toptop .zi {
    padding-left: 0.3rem;
    font-size: var(--fs15);
  }
  .artist .links {
    position: relative;
    margin-top: 0.6rem;
    top: 0;
  }
  .artist .links li {
    font-size: var(--fs16);
  }
  .artist .links li a {
    height: 0.45rem;
    line-height: 0.3rem;
  }
  .artist .links li a::after {
    height: 2px;
  }
  .artist .list {
    padding-bottom: 0.3rem;
  }
  .artist .list ul {
    margin-right: -0.2rem;
  }
  .artist .list li {
    width: 50%;
    margin-bottom: 0.5rem;
  }
  .artist .list li .box {
    margin-right: 0.2rem;
  }
  .artist .list li .img {
    height: 3.6rem;
  }
  .artist .list li .zi {
    font-size: var(--fs14);
    line-height: 0.32rem;
  }
  .artist .list li .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
    max-height: 0.96rem;
  }
  .artist .list li .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;
  }
}
.rehearsal {
  padding: 1rem 0 1.5rem;
}
.rehearsal .pageTitle {
  margin: 0 0 0.5rem;
}
.rehearsal .list {
  padding-bottom: 0.8rem;
}
.rehearsal .list ul {
  margin-right: -0.45rem;
}
.rehearsal .list li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.45rem;
}
.rehearsal .list li .box {
  margin-right: 0.45rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.rehearsal .list li .imgDiv {
  height: 2.72rem;
  overflow: hidden;
}
.rehearsal .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;
}
.rehearsal .list li .botDiv {
  background: #f2f3f4;
  height: 1.88rem;
  padding: 0.25rem 0.3rem 0;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.rehearsal .list li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 0.3rem;
  font-size: var(--fs22);
  color: #000;
  font-weight: bold;
  height: 0.6rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.rehearsal .list li .time {
  position: relative;
  margin-top: 0.35rem;
  font-size: var(--fs16);
  color: #666;
  font-family: "Poppins-L";
}
.rehearsal .list li .time::after {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.07rem;
  width: 0.15rem;
  height: 0.13rem;
  background: url(../img/nimg15_righton.png) no-repeat;
  background-size: 0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.rehearsal .list li .box:hover {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.rehearsal .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.rehearsal .list li .box:hover .botDiv {
  background: #fff;
}
.rehearsal .list li .box:hover .name {
  color: #25408e;
}
.rehearsal .list li .box:hover .time::after {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1004px) {
  .rehearsal {
    padding: 0.8rem 0 1rem;
  }
  .rehearsal .pageTitle {
    margin: 0 0 0.65rem;
  }
  .rehearsal .list {
    padding-bottom: 0.5rem;
  }
  .rehearsal .list ul {
    margin-right: 0;
  }
  .rehearsal .list li {
    width: auto;
    margin-bottom: 0.3rem;
  }
  .rehearsal .list li .box {
    margin-right: 0;
  }
  .rehearsal .list li .imgDiv {
    height: 4.2rem;
  }
  .rehearsal .list li .botDiv {
    height: 2.46rem;
    padding: 0.45rem 0.3rem 0;
  }
  .rehearsal .list li .name {
    line-height: 0.52rem;
    font-size: var(--fs17);
    height: 1.04rem;
  }
  .rehearsal .list li .time {
    margin-top: 0.2rem;
    font-size: var(--fs14);
  }
  .rehearsal .list li .time::after {
    width: 12px;
    height: 10px;
    margin-top: -5px;
    background-size: 12px;
  }
}
.ticketingP1 {
  padding: 0.7rem 0 0.95rem;
}
.ticketingP1 .pageTitle {
  margin-bottom: 0.45rem;
}
.ticketingP1 .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #000;
  text-align: center;
  margin-bottom: 0.15rem;
}
.ticketingP1 .zi {
  font-size: var(--fs16);
  line-height: 0.32rem;
  text-align: center;
  color: #000;
}
.ticketingP1 .time {
  text-align: center;
}
.ticketingP1 .time em {
  display: inline-block;
  padding: 0 0.5rem;
  color: #fff;
  line-height: 0.5rem;
  background: #25408e;
  font-size: var(--fs24);
}
.ticketingP1 .msg {
  margin-top: 0.2rem;
  text-align: center;
  color: #000;
  font-size: var(--fs30);
  line-height: 0.48rem;
}
.ticketingP2 {
  background: #f5f5f5;
  padding: 0.5rem 0 1.1rem;
}
.ticketingP2 .txtDiv {
  text-align: center;
  margin-bottom: 0.15rem;
}
.ticketingP2 .txtDiv .num {
  font-size: var(--fs72);
  line-height: 0.8rem;
  color: #25408e;
  font-family: "Din-B";
}
.ticketingP2 .txtDiv .name {
  font-size: var(--fs36);
  line-height: 0.4rem;
  color: #000;
  font-weight: bold;
}
.ticketingP2 .time {
  text-align: center;
  color: #25408e;
  font-size: var(--fs30);
  margin: 0.25rem 0 0.1rem;
  font-family: "Poppins-M";
  font-weight: bold;
}
.ticketingP2 .zi {
  font-size: var(--fs18);
  text-align: center;
  line-height: 0.3rem;
  margin-bottom: 0.2rem;
}
.ticketingP2 .table table {
  border-top: #cbced7 solid 1px;
  border-left: #cbced7 solid 1px;
}
.ticketingP2 .table table th {
  background: #e8eaf0;
  border-bottom: #cbced7 solid 1px;
  border-right: #cbced7 solid 1px;
  height: 0.75rem;
  color: #25408e;
  font-size: var(--fs24);
}
.ticketingP2 .table table th:nth-child(1) {
  width: 20%;
}
.ticketingP2 .table table td {
  padding: 0.5rem 0.3rem;
  background: #fff;
  border-bottom: #cbced7 solid 1px;
  border-right: #cbced7 solid 1px;
}
.ticketingP2 .table table td .msg {
  text-align: center;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #25408e;
}
.ticketingP2 .table table td .price {
  padding-top: 0.25rem;
  text-align: center;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #25408e;
}
.ticketingP2 .table table td .price em {
  font-size: var(--fs30);
  font-family: "Poppins-M";
}
.ticketingP2 .table table td .price span {
  display: block;
  font-size: var(--fs14);
}
.ticketingP2 .table table td .content {
  color: #333;
  font-size: var(--fs16);
  line-height: 0.3rem;
  padding: 0 0.8rem;
}
.ticketingP2 .tips {
  font-size: var(--fs15);
  padding-top: 0.5rem;
  text-align: center;
}
.ticketingP2 .tel {
  margin-top: 0.35rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #25408e;
  font-family: "Poppins-M";
}
.ticketingP2-2 {
  padding: 0.5rem 0;
}
.ticketingP3 {
  padding: 0.7rem 0 0.8rem;
}
.ticketingP3 .title {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.ticketingP3 .msg {
  font-size: var(--fs16);
  line-height: 0.36rem;
  padding-bottom: 0.4rem;
}
.ticketingP3 .list::after {
  content: '';
  display: block;
  clear: both;
}
.ticketingP3 .list ul {
  margin-right: -0.15rem;
}
.ticketingP3 .list li {
  float: left;
  width: 33.33%;
}
.ticketingP3 .list li .box {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
  margin-right: 0.15rem;
  border: #c9ccd5 solid 1px;
  height: 2.9rem;
  background: #fff;
}
.ticketingP3 .list li .name {
  font-size: var(--fs16);
  line-height: 0.28rem;
  color: #000;
  margin-bottom: 0.3rem;
  text-align: center;
}
.ticketingP3 .list li .ewm img {
  width: 1.6rem;
}
.ticketingP3 .list li .links {
  text-align: center;
}
.ticketingP3 .list li .links a {
  font-size: var(--fs16);
  color: #25408e;
  text-decoration: underline;
}
.ticketingP3-2 {
  background: #f5f5f5;
  padding: 0.2rem 0 0.3rem;
}
.ticketingP3-2 .list li {
  width: 25%;
}
.ticketingP4 {
  padding: 0.45rem 0 1.4rem;
}
.ticketingP4 .title {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.ticketingP4 .mxfDiv {
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 6.58rem;
  padding-right: 5.76rem;
  background: #f5f5f5;
}
.ticketingP4 .mxfDiv .imgDiv {
  position: absolute;
  right: 0;
  top: 0;
  width: 5.76rem;
  height: 6.58rem;
}
.ticketingP4 .mxfDiv .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ticketingP4 .mxfDiv .conDiv {
  padding: 0 0.5rem;
}
.ticketingP4 .mxfDiv .content {
  font-size: var(--fs16);
  color: #333;
  line-height: 0.26rem;
}
.ticketingP4 .mxfDiv .content em {
  color: #25408e;
}
.ticketingP4-2 {
  background: #f5f5f5;
}
.ticketingP4-2 .mxfDiv {
  background: #fff;
}
@media (max-width: 1004px) {
  .ticketingP1 {
    padding: 0.8rem 0 1rem;
  }
  .ticketingP1 .pageTitle {
    margin-bottom: 0.5rem;
  }
  .ticketingP1 .name {
    font-size: var(--fs18);
    line-height: 0.52rem;
    margin-bottom: 0.2rem;
  }
  .ticketingP1 .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding-bottom: 0.1rem;
  }
  .ticketingP1 .time em {
    padding: 0 0.2rem;
    line-height: 0.86rem;
    font-size: var(--fs18);
  }
  .ticketingP1 .msg {
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .ticketingP2 {
    padding: 0.8rem 0 1rem;
  }
  .ticketingP2 .txtDiv {
    margin-bottom: 0.3rem;
  }
  .ticketingP2 .txtDiv .num {
    font-size: var(--fs48);
    line-height: 0.96rem;
  }
  .ticketingP2 .txtDiv .name {
    font-size: var(--fs24);
    line-height: 0.52rem;
  }
  .ticketingP2 .time {
    font-size: var(--fs18);
    margin: 0.35rem 0 0.2rem;
  }
  .ticketingP2 .zi {
    font-size: var(--fs15);
    line-height: 0.52rem;
    margin-bottom: 0.3rem;
  }
  .ticketingP2 .longDiv {
    overflow: auto;
  }
  .ticketingP2 .table {
    width: 12rem;
  }
  .ticketingP2 .table table th {
    height: 1rem;
    font-size: var(--fs16);
  }
  .ticketingP2 .table table th:nth-child(1) {
    width: 25%;
  }
  .ticketingP2 .table table td {
    padding: 0.3rem 0.2rem;
  }
  .ticketingP2 .table table td .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .ticketingP2 .table table td .price {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .ticketingP2 .table table td .price em {
    font-size: var(--fs20);
  }
  .ticketingP2 .table table td .price span {
    font-size: var(--fs13);
  }
  .ticketingP2 .table table td .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0 0.3rem;
  }
  .ticketingP2 .tel {
    margin-top: 0.45rem;
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .ticketingP2-2 {
    padding: 0.5rem 0;
  }
  .ticketingP3 {
    padding: 0.8rem 0 0.4rem;
  }
  .ticketingP3 .title {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .ticketingP3 .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .ticketingP3 .list ul {
    margin-right: -0.2rem;
  }
  .ticketingP3 .list li {
    width: 50%;
    margin-bottom: 0.2rem;
  }
  .ticketingP3 .list li .box {
    margin-right: 0.2rem;
    height: 4rem;
  }
  .ticketingP3 .list li .name {
    font-size: var(--fs14);
    padding: 0 0.2rem;
    line-height: 0.48rem;
  }
  .ticketingP3 .list li .ewm img {
    width: 2rem;
  }
  .ticketingP3 .list li .links a {
    font-size: var(--fs14);
  }
  .ticketingP3-2 .list li {
    width: 50%;
  }
  .ticketingP4 {
    padding: 0.45rem 0 1rem;
  }
  .ticketingP4 .title {
    font-size: var(--fs20);
    line-height: 0.64rem;
    margin-bottom: 0.65rem;
  }
  .ticketingP4 .mxfDiv {
    display: block;
    height: auto;
    padding-right: 0;
  }
  .ticketingP4 .mxfDiv .imgDiv {
    position: relative;
    width: auto;
    height: auto;
  }
  .ticketingP4 .mxfDiv .imgDiv img {
    height: auto;
  }
  .ticketingP4 .mxfDiv .conDiv {
    padding: 0.7rem 0.3rem;
  }
  .ticketingP4 .mxfDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
}
.discount {
  padding: 0.8rem 0 0;
}
.discount .mxfDiv {
  margin-bottom: 1.5rem;
}
.discount .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.discount .conDiv {
  width: 8.2rem;
}
.discount .pageTitle {
  margin-bottom: 0.9rem;
}
.discount .list li {
  margin-bottom: 0.35rem;
}
.discount .list li .wen {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #25408e;
  margin-bottom: 0.25rem;
}
.discount .list li .msg {
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #333;
}
.discount .imgDiv {
  width: 5.76rem;
}
.discount .imgDiv img {
  width: 100%;
}
@media (max-width: 1004px) {
  .discount {
    padding: 0.8rem 0 0;
  }
  .discount .mxfDiv {
    margin-bottom: 0.9rem;
  }
  .discount .conDiv {
    float: none;
    width: auto;
  }
  .discount .pageTitle {
    margin-bottom: 0.5rem;
  }
  .discount .list li .wen {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .discount .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .discount .imgDiv {
    float: none;
    width: auto;
  }
}
.venueP1 {
  padding: 0.8rem 0 1.1rem;
}
.venueP1 .list {
  margin-top: 1.2rem;
}
.venueP1 .list li {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 0.9rem;
}
.venueP1 .list li:last-child {
  margin-bottom: 0;
}
.venueP1 .list li .imgDiv {
  width: 50%;
}
.venueP1 .list li .imgDiv img {
  width: 100%;
}
.venueP1 .list li .conDiv {
  width: 6.72rem;
}
.venueP1 .list li:nth-child(odd) .imgDiv {
  order: 1;
}
.venueP1 .list li .name {
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #25408e;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.venueP1 .list li .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
  text-align: justify;
  padding-right:8px;
  overflow:auto;
  height:4.5rem;
}
.venueP1 .list li .content::-webkit-scrollbar {
  width: 3px;
}
.venueP1 .list li .content::-webkit-scrollbar-track {
  background-color: #e1e1e1;
}
.venueP1 .list li .content::-webkit-scrollbar-thumb {
  background-color: #25408e;
}
.venueP2 {
  padding: 1.2rem 0;
  background: url(../img/venueP2.jpg) center no-repeat;
  background-size: cover;
}
.venueP2 .pageTitle {
  color: #fff;
  margin-bottom: 0.75rem;
}
.venueP2 .list::after {
  content: '';
  display: block;
  clear: both;
}
.venueP2 .list ul {
  margin-right: -0.2rem;
}
.venueP2 .list li {
  float: left;
  width: 50%;
}
.venueP2 .list li .box {
  margin-right: 0.2rem;
  background: #fff;
  height: 3.5rem;
  padding: 0.5rem 0.45rem 0;
}
.venueP2 .list li .name {
  color: #25408e;
  font-size: var(--fs30);
  line-height: 0.42rem;
  font-weight: bold;
}
.venueP2 .list li .lie {
  margin-top: 0.2rem;
  padding-left: 0.2rem;
}
.venueP2 .list li .lie dd {
  font-size: var(--fs16);
  line-height: 0.4rem;
  color: #333;
  position: relative;
  padding-left: 0.32rem;
}
.venueP2 .list li .lie dd img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.11rem;
  width: 0.22rem;
}
.venueP3 {
  padding: 1.2rem 0;
}
.venueP3 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.venueP3 .imgDiv {
  order: 1;
  width: 50%;
}
.venueP3 .imgDiv img {
  width: 100%;
}
.venueP3 .conDiv {
  width: 6.72rem;
}
.venueP3 .pageTitle {
  margin-bottom: 1rem;
}
.venueP3 .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
  text-align: justify;
}
.venueP4 {
  padding: 1.2rem 0 2rem;
  background: #f5f5f5;
}
.venueP4 .content {
  margin-top: 0.5rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
  text-align: justify;
}
.venueP5 {
  padding: 1.2rem 0 1.9rem;
}
.venueP5 .list {
  padding-top: 1.3rem;
}
.venueP5 .list li {
  position: relative;
  padding-bottom: 10px;
}
.venueP5 .list li .msgDiv {
  padding: 0 0.5rem 0 0.3rem;
  height: 0.8rem;
  position: relative;
  background: #f6f7f9;
  cursor: pointer;
}
.venueP5 .list li .ico {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  width: 35px;
  height: 35px;
  margin-top: -17px;
  border-radius: 50%;
  box-sizing: border-box;
  background: #fff;
  border: #eee solid 1px;
}
.venueP5 .list li .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -1px;
  width: 12px;
  height: 2px;
  background: #25408e;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.venueP5 .list li .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1px;
  margin-top: -6px;
  width: 2px;
  height: 12px;
  background: #25408e;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.venueP5 .list li .name {
  position: relative;
  color: #333;
  height: 0.8rem;
  line-height: 0.8rem;
  padding-left: 0.5rem;
  padding-right: 1rem;
  overflow: hidden;
  font-size: var(--fs18);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.venueP5 .list li .wen {
  position: absolute;
  color: #25408e;
  font-size: var(--fs16);
  display: block;
  text-transform: uppercase;
  left: 0;
  top: 50%;
  margin-top: -12px;
  width: 26px;
  height: 26px;
  line-height: 25px;
  text-align: center;
  border: #cdcdcd solid 1px;
  background: #fff;
  border-radius: 50%;
  font-family: 'Mont-R';
}
.venueP5 .list li .box {
  display: none;
}
.venueP5 .list li .msgDiv.aNow .name {
  color: #25408e;
}
.venueP5 .list li .msgDiv.aNow .ico {
  background: #25408e;
  border: #25408e solid 1px;
}
.venueP5 .list li .msgDiv.aNow .ico:before {
  background: #fff;
}
.venueP5 .list li .msgDiv.aNow .ico:after {
  background: #fff;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.venueP5 .list li .mxfDiv {
  position: relative;
  padding: 0.3rem 2.1rem 0.3rem 0.8rem;
}
.venueP5 .list li .zi {
  position: absolute;
  background: #25408e;
  text-transform: uppercase;
  left: 0.3rem;
  top: 0.38rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-size: var(--fs16);
  color: #fff;
  font-family: 'Mont-R';
}
.venueP5 .list li .content {
  line-height: 0.3rem;
  font-size: var(--fs16);
  text-align: justify;
}
@media (max-width: 1004px) {
  .venueP1 {
    padding: 0.9rem 0 1rem;
  }
  .venueP1 .list {
    margin-top: 0.6rem;
  }
  .venueP1 .list li {
    display: block;
    margin-bottom: 0.75rem;
  }
  .venueP1 .list li:last-child {
    margin-bottom: 0;
  }
  .venueP1 .list li .imgDiv {
    width: auto;
  }
  .venueP1 .list li .conDiv {
    width: auto;
    margin-top: 0.5rem;
  }
  .venueP1 .list li .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
    margin-bottom: 0.35rem;
  }
  .venueP1 .list li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
	height:auto;
	padding-right:0;
  }
  .venueP2 {
    padding: 0.9rem 0;
  }
  .venueP2 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .venueP2 .list ul {
    margin-right: 0;
  }
  .venueP2 .list li {
    float: none;
    width: auto;
    margin-bottom: 0.3rem;
  }
  .venueP2 .list li .box {
    margin-right: 0;
    height: auto;
    padding: 0.6rem 0.3rem;
  }
  .venueP2 .list li .name {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .venueP2 .list li .lie {
    margin-top: 0.3rem;
    padding-left: 0;
  }
  .venueP2 .list li .lie dd {
    font-size: var(--fs14);
    line-height: 0.56rem;
    padding-left: 0.46rem;
  }
  .venueP2 .list li .lie dd img {
    top: 0.1rem;
    margin-top: 0;
    width: 0.32rem;
  }
  .venueP3 {
    padding: 0.9rem 0;
  }
  .venueP3 .mxfDiv {
    display: block;
  }
  .venueP3 .imgDiv {
    width: auto;
  }
  .venueP3 .conDiv {
    margin-top: 0.7rem;
    width: auto;
  }
  .venueP3 .pageTitle {
    margin-bottom: 0.5rem;
  }
  .venueP3 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .venueP4 {
    padding: 0.9rem 0 1rem;
  }
  .venueP4 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .venueP5 {
    padding: 0.9rem 0 1rem;
  }
  .venueP5 .list {
    padding-top: 0.6rem;
  }
  .venueP5 .list li {
    padding-bottom: 0.25rem;
  }
  .venueP5 .list li .msgDiv {
    padding: 0.25rem 0.5rem 0.25rem 0.3rem;
    height: auto;
  }
  .venueP5 .list li .ico {
    right: 0.4rem;
    width: 0.7rem;
    height: 0.7rem;
    margin-top: -0.35rem;
  }
  .venueP5 .list li .ico:before {
    margin-left: -5px;
    width: 10px;
    height: 1px;
  }
  .venueP5 .list li .ico:after {
    margin-top: -5px;
    width: 1px;
    height: 10px;
  }
  .venueP5 .list li .name {
    height: auto;
    line-height: 0.6rem;
    padding-left: 0.8rem;
    padding-right: 1rem;
    font-size: var(--fs14);
  }
  .venueP5 .list li .wen {
    top: 0;
    margin-top: 0;
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs13);
  }
  .venueP5 .list li .mxfDiv {
    padding: 0.5rem 0.3rem 0.5rem 1.1rem;
  }
  .venueP5 .list li .zi {
    left: 0.3rem;
    top: 0.45rem;
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs13);
  }
  .venueP5 .list li .content {
    line-height: 0.48rem;
    font-size: var(--fs13);
  }
}
.team {
  padding: 1.3rem 0 2.8rem;
}
.team .list li {
  position: relative;
  margin-bottom: 1.9rem;
}
.team .list li::after {
  content: '';
  display: block;
  clear: both;
}
.team .list li .imgDiv {
  width: 50%;
}
.team .list li .imgDiv img {
  width: 100%;
}
.team .list li .conDiv {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  top: 0;
  width: 6.7rem;
}
.team .list li .content {
  padding-right:8px;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
  text-align: justify;
  margin-top: 0.4rem;
  height:4.2rem;
  overflow:auto;
}
.team .list li .content::-webkit-scrollbar {
  width: 3px;
}
.team .list li .content::-webkit-scrollbar-track {
  background-color: #e1e1e1;
}
.team .list li .content::-webkit-scrollbar-thumb {
  background-color: #25408e;
}
.team .list li:nth-child(odd) .imgDiv {
  float: right;
}
.team .list li:nth-child(odd) .conDiv {
  right: auto;
  margin-right: 0;
  left: 50%;
  margin-left: -7.68rem;
}
.team .list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  .team {
    padding: 1.3rem 0 2rem;
  }
  .team .list li {
    margin-bottom: 1rem;
  }
  .team .list li .conDiv {
    margin-right: -8rem;
    width: 6.8rem;
  }
  .team .list li:nth-child(odd) .conDiv {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .team {
    padding: 0.8rem 0.3rem 1rem;
  }
  .team .list li {
    margin-bottom: 0.8rem;
  }
  .team .list li .imgDiv {
    width: auto;
  }
  .team .list li .conDiv {
    margin-top: 0.6rem;
    position: relative;
    right: 0;
    margin-right: 0;
    width: auto;
  }
  .team .list li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-top: 0.35rem;
	height:auto;
	padding-right:0;
  }
  .team .list li:nth-child(odd) .imgDiv {
    float: none;
  }
  .team .list li:nth-child(odd) .conDiv {
    left: auto;
    margin-left: 0;
  }
}
.news {
  position: relative;
  padding-bottom: 1.4rem;
}
.news .pageNow {
  position: relative;
  right: 0;
  margin-right: 0;
  margin-bottom: 0.7rem;
}
.news .mxfDiv {
  margin-top: 0.5rem;
}
.news .mxfDiv a {
  display: block;
  padding: 0 1.2rem 0 8.4rem;
  height: 4.32rem;
  background: #f2f3f4;
  position: relative;
  overflow: hidden;
}
.news .mxfDiv .imgDiv {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 4.32rem;
  overflow: hidden;
}
.news .mxfDiv .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 .mxfDiv .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 4.32rem;
}
.news .mxfDiv .time {
  padding-top: 0.9rem;
  font-size: var(--fs16);
  line-height: 0.18rem;
  color: #666;
  font-family: "Poppins-M";
}
.news .mxfDiv .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: var(--fs30);
  line-height: 0.42rem;
  overflow: hidden;
  height: 0.84rem;
  color: #000;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.news .mxfDiv .content {
  margin-top: 0.2rem;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #666;
  font-size: var(--fs16);
  line-height: 0.24rem;
  height: 0.48rem;
  overflow: hidden;
}
.news .mxfDiv .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.25rem;
  width: 1.5rem;
  height: 0.5rem;
  background: #25408e;
  color: #fff;
  font-size: var(--fs16);
}
.news .mxfDiv .more em {
  margin-left: 12px;
  display: block;
  width: 0.15rem;
  height: 0.13rem;
  background: url(../img/nimg15_right.png) no-repeat;
  background-size: 0.15rem;
}
.news .mxfDiv a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.news .mxfDiv a:hover .name {
  color: #25408e;
}
.news .layerDiv {
  margin: 0.75rem 0 0.9rem;
  position: relative;
  z-index: 1;
}
.news .layerDiv::after {
  content: '';
  display: block;
  clear: both;
}
.news .form {
  width: 3.3rem;
  height: 0.6rem;
  background: #f1f3f5;
}
.news .form .input1 {
  width: 100%;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.6rem;
  font-size: var(--fs16);
  background: url(../img/nimg22_3on.png) 0.2rem center no-repeat;
  background-size: 0.22rem;
}
.news .selectYear {
  width: 3.3rem;
  position: relative;
  margin-right: 0.3rem;
  z-index: 1;
}
.news .selectYear .caption {
  position: relative;
  cursor: pointer;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.3rem;
  font-size: var(--fs16);
  background: #f1f3f5;
  font-family: 'Mont-M';
}
.news .selectYear .caption::after {
  content: "";
  width: 45px;
  height: 9px;
  background: url(../img/selectIco.png) no-repeat right center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -3px;
}
.news .selectYear .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  background: #f1f3f5;
  max-height: 2.4rem;
  overflow-y: auto;
  display: none;
}
.news .selectYear .xlist::-webkit-scrollbar {
  width: 4px;
}
.news .selectYear .xlist::-webkit-scrollbar-track {
  background-color: #e1e1e1;
}
.news .selectYear .xlist::-webkit-scrollbar-thumb {
  background-color: #25408e;
}
.news .selectYear .xlist a {
  display: block;
  font-size: var(--fs16);
  height: 0.6rem;
  line-height: 0.6rem;
  padding: 0 0.3rem;
  font-family: 'Mont-M';
}
.news .selectYear .xlist a:hover {
  color: #25408e;
}
.news .btnDiv {
  margin-left: 0.3rem;
}
.news .btnDiv a {
  overflow: hidden;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  width: 1.8rem;
  height: 0.6rem;
  border: #25408e solid 1px;
  color: #25408e;
  font-size: var(--fs20);
}
.news .btnDiv a:hover {
  background: #25408e;
  color: #fff;
}
.news .list {
  padding-bottom: 0.8rem;
}
.news .list ul {
  margin-right: -0.45rem;
}
.news .list li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.45rem;
}
.news .list li .box {
  margin-right: 0.45rem;
  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 .imgDiv {
  height: 2.72rem;
  overflow: hidden;
}
.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 .botDiv {
  background: #f2f3f4;
  height: 1.88rem;
  padding: 0.25rem 0.3rem 0;
  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 .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 0.3rem;
  font-size: var(--fs22);
  color: #000;
  font-weight: bold;
  height: 0.6rem;
  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 .time {
  position: relative;
  margin-top: 0.35rem;
  font-size: var(--fs16);
  color: #666;
  font-family: "Poppins-L";
}
.news .list li .time::after {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.07rem;
  width: 0.15rem;
  height: 0.13rem;
  background: url(../img/nimg15_righton.png) no-repeat;
  background-size: 0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.news .list li .box:hover {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.news .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.news .list li .box:hover .botDiv {
  background: #fff;
}
.news .list li .box:hover .name {
  color: #25408e;
}
.news .list li .box:hover .time::after {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1004px) {
  .news {
    padding: 0.8rem 0 1rem;
  }
  .news .mxfDiv a {
    padding: 0;
    height: auto;
  }
  .news .mxfDiv .imgDiv {
    position: relative;
    width: 100%;
    height: auto;
  }
  .news .mxfDiv .imgDiv img {
    height: auto;
  }
  .news .mxfDiv .conDiv {
    display: block;
    height: auto;
    padding: 0.5rem 0.4rem;
  }
  .news .mxfDiv .time {
    padding-top: 0.5rem;
    font-size: var(--fs14);
    line-height: 0.32rem;
  }
  .news .mxfDiv .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .news .mxfDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .news .mxfDiv .more {
    margin-top: 0.35rem;
    width: 2.42rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .news .mxfDiv .more em {
    margin-left: 12px;
    width: 12px;
    height: 10px;
    background-size: 12px;
  }
  .news .layerDiv {
    margin: 0.45rem 0 0.6rem;
  }
  .news .form {
    float: none;
    width: 100%;
    height: 1rem;
    margin-right: 0;
    margin-top: 0.3rem;
  }
  .news .form .input1 {
    height: 1rem;
    line-height: 1rem;
    padding-left: 0.8rem;
    font-size: var(--fs14);
    background: url(../img/nimg22_3on.png) 0.3rem center no-repeat;
    background-size: 0.3rem;
  }
  .news .selectYear {
    float: none;
    width: 100%;
  }
  .news .selectYear .caption {
    height: 1rem;
    line-height: 1rem;
    padding-left: 0.3rem;
    font-size: var(--fs14);
  }
  .news .selectYear .xlist {
    max-height: 3.6rem;
  }
  .news .selectYear .xlist a {
    font-size: var(--fs14);
    height: 0.9rem;
    line-height: 0.9rem;
    padding: 0 0.3rem;
  }
  .news .btnDiv {
    float: none;
    margin-top: 0.3rem;
    margin-left: 0;
  }
  .news .btnDiv a {
    width: 2rem;
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs14);
  }
  .news .list {
    padding-bottom: 0.5rem;
  }
  .news .list ul {
    margin-right: 0;
  }
  .news .list li {
    width: auto;
    margin-bottom: 0.3rem;
  }
  .news .list li .box {
    margin-right: 0;
  }
  .news .list li .imgDiv {
    height: 4.2rem;
  }
  .news .list li .botDiv {
    height: 2.46rem;
    padding: 0.45rem 0.3rem 0;
  }
  .news .list li .name {
    line-height: 0.52rem;
    font-size: var(--fs17);
    height: 1.04rem;
  }
  .news .list li .time {
    margin-top: 0.2rem;
    font-size: var(--fs14);
  }
  .news .list li .time::after {
    width: 12px;
    height: 10px;
    margin-top: -5px;
    background-size: 12px;
  }
}
.newsTop {
  background: url(../img/newsTop.jpg) center no-repeat;
  background-size: cover;
  padding-bottom: 1rem;
}
.newsTop .wrap {
  position: relative;
}
.newsTop .pageNow {
  position: relative;
  right: 0;
  margin-right: 0;
  line-height: 0.72rem;
}
.newsTop .name {
  font-size: var(--fs40);
  line-height: 0.48rem;
  color: #000;
  padding: 0.3rem 0;
  width: 60%;
  font-weight: bold;
}
.newsTop .msgList {
  overflow: hidden;
}
.newsTop .msgList li {
  float: left;
  margin-right: 0.3rem;
  font-size: var(--fs16);
  font-family: 'Poppins-L';
}
.newsTop .back {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  z-index: 1;
  top: 1rem;
  display: block;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  border: #ced2d9 solid 2px;
  background: url(../img/nimg14_2.png) center no-repeat;
  background-size: 0.14rem;
}
.newsTop .back:hover {
  border: #25408e solid 2px;
  background: #25408e url(../img/nimg14_2on.png) center no-repeat;
  background-size: 0.14rem;
}
.newsTop .btnDiv {
  margin-top: 0.3rem;
}
.newsTop .btnDiv a {
  display: inline-block;
  padding: 0 0.35rem;
  height: 0.45rem;
  line-height: 0.43rem;
  color: #25408e;
  font-size: var(--fs16);
  border-radius: 4px;
  border: #25408e solid 1px;
}
.newsTop .btnDiv a:hover {
  background: #25408e;
  color: #fff;
}
.newsBot {
  padding: 0.7rem 0 1.4rem;
  overflow: hidden;
}
.newsBot .leftDiv {
  width: 10.4rem;
}
.newsBot .content {
  font-size: var(--fs16);
  color: #333;
  line-height: 0.32rem;
  text-align: justify;
}
.newsBot .imgDiv {
  text-align: center;
}
.newsBot .imgDiv img {
  max-width: 100%;
}
.pageDown {
  padding-top: 0.7rem;
}
.pageDown li {
  margin-bottom: 20px;
}
.pageDown li:last-child {
  margin-bottom: 0;
}
.pageDown li a {
  display: block;
  position: relative;
  font-size: var(--fs16);
  padding: 0.2rem 0.4rem 0;
  height: 1.06rem;
  line-height: 0.32rem;
  border: #e1e1e1 solid 1px;
  border-top: none;
}
.pageDown li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #5f5f5f;
}
.pageDown li em {
  display: block;
  color: #000;
}
.pageDown li p {
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.32rem;
  overflow: hidden;
  color: #666;
}
.pageDown li a:hover::before {
  background: #25408e;
}
.sideNews {
  width: 3.72rem;
}
.sideNews .title {
  font-size: var(--fs36);
  line-height: 0.4rem;
  font-weight: 400;
  margin: 0 0 0.35rem;
  color: #000;
}
.sideNews .list ul {
  margin: 0;
}
.sideNews .list li {
  margin-bottom: 0.55rem;
}
.sideNews .list li .imgDiv {
  overflow: hidden;
}
.sideNews .list li .imgDiv img {
  width: 100%;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.sideNews .list li .botDiv {
  padding: 0.2rem 0.25rem 0;
  height: 1.3rem;
  background: #f2f3f4;
}
.sideNews .list li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs18);
  line-height: 0.24rem;
  height: 0.48rem;
  color: #000;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.sideNews .list li .time {
  margin-top: 0.15rem;
  font-size: var(--fs16);
  line-height: 0.18rem;
  color: #666;
  font-family: "Poppins-M";
}
.sideNews .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.sideNews .list li:hover .name {
  color: #25408e;
}
@media (max-width: 1600px) {
  .newsTop .back {
    margin-right: -8rem;
  }
  .newsBot .leftDiv {
    width: 11rem;
  }
}
@media (max-width: 1004px) {
  .newsTop {
    padding: 0 0 0.8rem;
  }
  .newsTop .pageNow {
    display: none;
  }
  .newsTop .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
    padding: 0.5rem 0 0.3rem;
    width: auto;
  }
  .newsTop .msgList li {
    font-size: var(--fs14);
  }
  .newsTop .back {
    display: none;
  }
  .newsTop .btnDiv a {
    height: 0.76rem;
    padding: 0 0.45rem;
    line-height: 0.74rem;
    font-size: var(--fs14);
  }
  .newsBot {
    padding: 0.7rem 0 1rem;
  }
  .newsBot .leftDiv {
    width: auto;
    float: none;
  }
  .newsBot .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .pageDown li {
    margin-bottom: 0.3rem;
  }
  .pageDown li a {
    font-size: var(--fs14);
    padding: 0.2rem 0.3rem;
    height: auto;
    line-height: 0.52rem;
  }
  .pageDown li p {
    height: 0.52rem;
  }
  .sideNews {
    display: none;
  }
}
.sponsor {
  padding: 1.2rem 0;
}
.sponsor .pageTitle {
  text-align: center;
  margin-bottom: 0.5rem;
}
.sponsor .tab2 {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
  margin-bottom: 0.6rem;
}
.sponsor .tab2 .baozhe {
  display: inline-block;
  padding: 3px;
  background: #eeeeee;
  border-radius: 0.48rem;
}
.sponsor .tab2 ul {
  font-size: 0;
}
.sponsor .tab2 li {
  display: inline-block;
  font-size: var(--fs18);
}
.sponsor .tab2 li .box {
  padding: 0 0.28rem;
  height: 0.48rem;
  line-height: 0.48rem;
  border-radius: 0.48rem;
  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;
}
.sponsor .tab2 .liNow .box {
  background: #25408e;
  color: #fff;
}
.sponsor .tabContent2 {
  animation: am_top 0.8s ease-out 0.1s backwards;
  -webkit-animation: am_top 0.8s ease-out 0.1s backwards;
}
.sponsor .title {
  background: #25408e;
  height: 0.66rem;
  line-height: 0.66rem;
  color: #fff;
  padding-left: 0.3rem;
  font-size: var(--fs24);
  font-weight: bold;
}
.sponsor .table table tr th {
  background: #eeeff2;
  height: 0.65rem;
  color: #000;
  text-align: left;
  padding: 0 0.3rem;
  font-size: var(--fs18);
}
.sponsor .table table tr th:nth-child(1) {
  width: 19%;
}
.sponsor .table table tr th:nth-child(2) {
  width: 13%;
}
.sponsor .table table tr td {
  padding: 0.15rem 0.3rem;
  background: #fff;
  border-bottom: #eeeff2 solid 1px;
  border-right: #eeeff2 solid 1px;
}
.sponsor .table table tr td .msg {
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #000;
  font-weight: bold;
}
.sponsor .table table tr td .gou {
  text-align: center;
}
.sponsor .table table tr td .content {
  color: #333;
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.sponsor .table table tr td .content em {
  font-size: var(--fs18);
  color: #25408e;
  display: block;
}
.sponsor .table table tr td:last-child {
  border-right: none;
}
.sponsor .table2 table tr th {
  background: #eeeff2;
  height: 0.65rem;
  color: #000;
  text-align: left;
  padding: 0 0.3rem;
  font-size: var(--fs18);
}
.sponsor .table2 table tr th:nth-child(1) {
  width: 40%;
}
.sponsor .table2 table tr th:nth-child(2) {
  width: 60%;
}
.sponsor .table2 table tr td {
  padding: 0.15rem 0.3rem;
  background: #fff;
  border-bottom: #eeeff2 solid 1px;
  border-right: #eeeff2 solid 1px;
}
.sponsor .table2 table tr td .msg {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #000;
}
.sponsor .table2 table tr td .msg strong {
  display: block;
}
.sponsor .table2 table tr td .content {
  color: #333;
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.sponsor .table2 table tr td .content em {
  font-size: var(--fs18);
  color: #25408e;
  display: block;
}
.sponsor .table2 table tr td:last-child {
  border-right: none;
}
.sponsor .tips {
  font-size: var(--fs15);
  padding-top: 0.5rem;
  text-align: center;
}
.sponsor .wen {
  font-size: var(--fs24);
  padding-top: 0.5rem;
  color: #25408e;
  line-height: 0.36rem;
  font-weight: bold;
}
.sponsor .name {
  margin-top: 0.8rem;
  color: #000;
  font-size: var(--fs36);
  line-height: 0.4rem;
  font-weight: bold;
  font-family: "Poppins-M";
}
.sponsor .zi {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
}
.sponsor .btnDiv {
  margin-top: 0.3rem;
}
.sponsor .btnDiv a {
  display: inline-block;
  padding: 0 0.18rem;
  border: #25408e solid 2px;
  height: 0.56rem;
  line-height: 0.52rem;
  font-size: var(--fs18);
  color: #25408e;
}
.sponsor .btnDiv a em {
  display: inline-block;
  margin-left: 12px;
  width: 0.16rem;
  height: 0.15rem;
  background: url(../img/nimg16_1.png) no-repeat;
  background-size: 0.16rem;
}
.sponsor .btnDiv a:hover {
  background: #25408e;
  color: #fff;
}
.sponsor .btnDiv a:hover em {
  background: url(../img/nimg16_1on.png) no-repeat;
  background-size: 0.16rem;
}
@media (max-width: 1004px) {
  .sponsor {
    padding: 0.9rem 0;
  }
  .sponsor .pageTitle {
    margin-bottom: 0.65rem;
  }
  .sponsor .tab2 {
    display: block;
    margin-bottom: 0.4rem;
  }
  .sponsor .tab2 .baozhe {
    display: block;
    padding: 0;
    background: none;
    overflow: hidden;
  }
  .sponsor .tab2 ul {
    margin-right: -0.2rem;
  }
  .sponsor .tab2 li {
    display: block;
    float: left;
    width: 50%;
    font-size: var(--fs14);
    margin-bottom: 0.2rem;
  }
  .sponsor .tab2 li .box {
    margin-right: 0.2rem;
    background: #eee;
    padding: 0;
    height: 0.88rem;
    line-height: 0.88rem;
  }
  .sponsor .other li {
    width: 33.33%;
  }
  .sponsor .title {
    height: 1rem;
    line-height: 1rem;
    font-size: var(--fs18);
  }
  .sponsor .longDiv {
    overflow: auto;
  }
  .sponsor .table {
    width: 14rem;
  }
  .sponsor .table table tr th {
    height: 0.9rem;
    font-size: var(--fs16);
  }
  .sponsor .table table tr th:nth-child(2) {
    width: 15%;
  }
  .sponsor .table table tr td .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .sponsor .table table tr td .content {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .sponsor .table table tr td .content em {
    font-size: var(--fs15);
  }
  .sponsor .table2 {
    width: 8rem;
  }
  .sponsor .table2 table tr th {
    height: 0.9rem;
    font-size: var(--fs16);
  }
  .sponsor .table2 table tr td .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .sponsor .table2 table tr td .content {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .sponsor .table2 table tr td .content em {
    font-size: var(--fs15);
  }
  .sponsor .tips {
    font-size: var(--fs15);
    padding-top: 0.5rem;
    text-align: center;
  }
  .sponsor .wen {
    font-size: var(--fs18);
    line-height: 0.62rem;
  }
  .sponsor .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .sponsor .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .sponsor .btnDiv {
    margin-top: 0.4rem;
  }
  .sponsor .btnDiv a {
    padding: 0 0.22rem;
    border: #25408e solid 1px;
    height: 0.86rem;
    line-height: 0.84rem;
    font-size: var(--fs14);
  }
  .sponsor .btnDiv a em {
    margin-left: 0.2rem;
    width: 12px;
    height: 11px;
    background-size: 12px;
  }
  .sponsor .btnDiv a:hover em {
    background-size: 12px;
  }
}
.story {
  padding: 1.2rem 0 1.9rem;
}
.story .name {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #25408e;
  font-weight: bold;
  margin: 0 0 0.3rem;
  font-family: "Poppins-M";
}
.story .content {
  width: 75%;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.3rem;
  margin-bottom: 2rem;
}
.story .part1 {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.story .part1 .conDiv {
  width: 5.6rem;
}
.story .part1 .conDiv .title {
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  font-weight: bold;
  margin: 0 0 0.4rem;
}
.story .part1 .conDiv .msg {
  color: #333;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: justify;
  height:5.4rem;
  overflow:auto;
  padding-right:8px;
}
.story .part1 .conDiv .msg::-webkit-scrollbar {
  width: 3px;
}
.story .part1 .conDiv .msg::-webkit-scrollbar-track {
  background-color: #e1e1e1;
}
.story .part1 .conDiv .msg::-webkit-scrollbar-thumb {
  background-color: #25408e;
}
.story .part1 .imgDiv {
  order: 1;
  width: 8.92rem;
}
.story .part1 .imgDiv img {
  width: 100%;
}
.story .part2 {
  margin-top: -0.9rem;
  margin-bottom: 1.9rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.story .part2 .conDiv {
  width: 8.92rem;
  padding-right: 2.8rem;
}
.story .part2 .conDiv .title {
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  font-weight: bold;
  margin: 0 0 0.7rem;
}
.story .part2 .conDiv .msg {
  color: #333;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: justify;
}
.story .part2 .imgDiv {
  width: 5rem;
}
.story .part2 .imgDiv img {
  width: 100%;
}
.story .part3 {
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.story .part3::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.96rem;
  height: 0.96rem;
  background: url(../img/logo.png) no-repeat;
  background-size: 0.96rem;
  display: none;
}
.story .part3 .conDiv {
  width: 8.92rem;
  padding-right: 2.8rem;
}
.story .part3 .conDiv .title {
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  font-weight: bold;
  margin: 0 0 0.7rem;
}
.story .part3 .conDiv .msg {
  color: #333;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: justify;
}
.story .part3 .imgDiv {
  width: 5rem;
}
.story .part3 .imgDiv img {
  width: 100%;
}
@media (max-width: 1004px) {
  .story {
    padding: 0.9rem 0 1rem;
  }
  .story .name {
    font-size: var(--fs22);
    margin: 0 0 0.4rem;
  }
  .story .content {
    width: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-bottom: 1rem;
  }
  .story .part1 {
    display: block;
  }
  .story .part1 .conDiv {
    width: auto;
  }
  .story .part1 .conDiv .title {
    font-size: var(--fs18);
    line-height: 0.64rem;
    margin: 0 0 0.3rem;
  }
  .story .part1 .conDiv .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
	height:auto;
	padding-right:0;
  }
  .story .part1 .imgDiv {
    margin-bottom: 0.6rem;
    width: auto;
  }
  .story .part2 {
    margin-top: 0.8rem;
    margin-bottom: 1rem;
    display: block;
  }
  .story .part2 .conDiv {
    width: auto;
    padding-right: 0;
    margin-top: 0.5rem;
  }
  .story .part2 .conDiv .title {
    font-size: var(--fs18);
    line-height: 0.64rem;
    margin: 0 0 0.3rem;
  }
  .story .part2 .conDiv .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .story .part2 .imgDiv {
    width: auto;
  }
  .story .part3 {
    margin-top: 0.8rem;
    padding-bottom: 1.1rem;
    display: block;
  }
  .story .part3 .conDiv {
    width: auto;
    padding-right: 0;
    margin-top: 0.5rem;
  }
  .story .part3 .conDiv .title {
    font-size: var(--fs18);
    line-height: 0.64rem;
    margin: 0 0 0.3rem;
  }
  .story .part3 .conDiv .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .story .part3 .imgDiv {
    width: auto;
  }
}
.artistShow {
  padding: 1rem 0 1.2rem;
}
.artistShow .pageTitle {
  margin-bottom: 0.75rem;
}
.artistShow .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 1rem;
}
.artistShow .imgDiv {
  width: 5.72rem;
}
.artistShow .imgDiv img {
  width: 100%;
}
.artistShow .conDiv {
  width: 8.5rem;
  padding-right: 0.5rem;
}
.artistShow .name {
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #333;
  font-weight: bold;
  margin: 0 0 0.1rem;
}
.artistShow .wen {
  font-size: var(--fs30);
  line-height: 0.42rem;
}
.artistShow .content {
  margin-top: 0.35rem;
  line-height: 0.32rem;
  font-size: var(--fs15);
  text-align:justify;
}
.artistShow .title {
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #333;
  font-weight: bold;
  padding-bottom: 0.25rem;
  border-bottom: #25408e solid 1px;
}
.artistShow .backBtn {
  margin: 1.6rem auto 0;
  width: 1.5rem;
}
.artistShow .backBtn a {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 0.5rem;
  background: #25408e;
  color: #fff;
  font-size: var(--fs16);
  line-height: 0.5rem;
  text-align: center;
}
@media (max-width: 1004px) {
  .artistShow {
    padding: 0.8rem 0 1rem;
  }
  .artistShow .pageTitle {
    margin-bottom: 0.65rem;
  }
  .artistShow .mxfDiv {
    display: block;
    margin-bottom: 0.7rem;
  }
  .artistShow .imgDiv {
    width: 65%;
    margin: 0 auto;
  }
  .artistShow .imgDiv img {
    width: 100%;
  }
  .artistShow .conDiv {
    width: auto;
    padding-top: 0.65rem;
    padding-right: 0;
  }
  .artistShow .name {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .artistShow .wen {
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .artistShow .content {
    margin-top: 0.4rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .artistShow .title {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .artistShow .backBtn {
    margin: 0.9rem auto 0;
    width: 2.3rem;
  }
  .artistShow .backBtn a {
    height: 0.84rem;
    font-size: var(--fs14);
    line-height: 0.84rem;
  }
}
.course {
  padding: 1rem 0;
}
.course .pageTitle {
  margin-bottom: 0.9rem;
}
.course .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: relative;
  padding-bottom: 0.7rem;
}
.course .mxfDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #25408e;
  transition: All 0.8s ease;
  -webkit-transition: All 0.8s ease;
  -moz-transition: All 0.8s ease;
  -o-transition: All 0.8s ease;
}
.course .on::after {
  width: 100%;
}
.course .conDiv {
  width: 6.95rem;
}
.course .title {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #25408e;
  margin: 0 0 0.4rem;
  font-weight: bold;
}
.course .content {
  font-size: var(--fs24);
  line-height: 0.48rem;
  color: #333;
  text-align: justify;
}
.course .rightImg {
  width: 50%;
}
.course .rightImg img {
  width: 100%;
}
.course .pjDiv {
  padding: 0.8rem 0 0.5rem;
}
.course .list ul {
  margin-right: -0.36rem;
}
.course .list ul li {
  float: left;
  width: 50%;
  margin-bottom: 0.3rem;
}
.course .list ul li .box {
  margin-right: 0.36rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.course .list ul li .imgDiv {
  height: 4.12rem;
  overflow: hidden;
}
.course .list ul 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;
}
.course .list ul li .botDiv {
  background: #f9f9f9;
  padding: 0.5rem 0.6rem 0;
  height: 2.88rem;
  position: relative;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.course .list ul li .time {
  font-family: "Poppins-M";
  font-size: var(--fs48);
  line-height: 0.56rem;
  color: #333;
}
.course .list ul li .name {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
  margin: 0.1rem 0 0.15rem;
}
.course .list ul li .zi {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #25408e;
}
.course .list ul li .more {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  right: 0.6rem;
  bottom: 0.5rem;
  font-size: var(--fs16);
  color: #25408e;
  padding-right: 0.26rem;
  background: url(../img/nimg15_righton.png) right center no-repeat;
  background-size: 0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.course .list ul li .box:hover {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
}
.course .list ul li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.course .list ul li .box:hover .botDiv {
  background: #fff;
}
.course .list ul li .box:hover .more {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1004px) {
  .course {
    padding: 0.9rem 0;
  }
  .course .pageTitle {
    margin-bottom: 0.7rem;
  }
  .course .mxfDiv {
    display: block;
    padding-bottom: 0.75rem;
  }
  .course .conDiv {
    width: auto;
  }
  .course .title {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .course .content {
    font-size: var(--fs15);
    line-height: 0.56rem;
  }
  .course .rightImg {
    margin-top: 0.7rem;
    width: auto;
  }
  .course .pjDiv {
    padding: 0.8rem 0 0.5rem;
  }
  .course .list ul {
    margin-right: 0;
  }
  .course .list ul li {
    float: none;
    width: auto;
    margin-bottom: 0.4rem;
  }
  .course .list ul li .box {
    margin-right: 0;
  }
  .course .list ul li .imgDiv {
    height: 4.2rem;
  }
  .course .list ul li .botDiv {
    padding: 0.5rem 0.4rem 1rem;
    height: auto;
  }
  .course .list ul li .time {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .course .list ul li .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
    margin: 0.1rem 0 0.2rem;
  }
  .course .list ul li .zi {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .course .list ul li .more {
    right: 0.4rem;
    bottom: 0.4rem;
    font-size: var(--fs14);
    padding-right: 0.4rem;
    background-size: 12px;
  }
}
.courseshow {
  padding: 1rem 0 1.2rem;
}
.courseshow .pageTitle {
  margin-bottom: 0.7rem;
}
.courseshow .mainBox {
  background: #f7f7f7;
  padding: 0.8rem 0 1.2rem;
}
.courseshow .name {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #333;
  text-align: center;
  font-weight: bold;
  padding: 0 0.8rem;
  margin: 0 0 0.1rem;
  font-family: "Poppins-M";
}
.courseshow .wen {
  font-size: var(--fs48);
  line-height: 0.64rem;
  text-align: center;
  color: #25408e;
  margin-bottom: 0.4rem;
}
.courseshow .bigImg img {
  width: 100%;
}
.courseshow .content {
  padding: 0.9rem 1.75rem 0;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.3rem;
  text-align: center;
}
.courseshow .imgDiv {
  text-align: center;
}
.courseshow .imgDiv img {
  max-width: 100%;
}
.courseshow .backBtn {
  margin: 1rem auto 0;
  width: 1.5rem;
}
.courseshow .backBtn a {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 0.5rem;
  background: #25408e;
  color: #fff;
  font-size: var(--fs16);
  line-height: 0.5rem;
  text-align: center;
}
@media (max-width: 1004px) {
  .courseshow {
    padding: 0.9rem 0 1rem;
  }
  .courseshow .pageTitle {
    margin-bottom: 0.6rem;
  }
  .courseshow .mainBox {
    padding: 0.6rem 0 0.9rem;
  }
  .courseshow .name {
    font-size: var(--fs20);
    padding: 0 0.3rem;
    margin: 0 0 0.2rem;
  }
  .courseshow .wen {
    font-size: var(--fs20);
  }
  .courseshow .content {
    padding: 0.7rem 0.3rem 0;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .courseshow .backBtn {
    margin: 0.75rem auto 0;
    width: 2.3rem;
  }
  .courseshow .backBtn a {
    height: 0.84rem;
    font-size: var(--fs14);
    line-height: 0.84rem;
  }
}
.tuition {
  padding: 1rem 0 1.2rem;
}
.tuition .pageTitle {
  margin-bottom: 0.3rem;
}
.tuition .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.tuition .conDiv {
  padding-left: 1.3rem;
  width: 50%;
}
.tuition .conDiv .msg {
  padding-top: 0.9rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
}
.tuition .conDiv .msg em {
  display: block;
  color: #25408e;
}
.tuition .conDiv .zi {
  margin-top: 0.25rem;
  color: #333;
  font-size: var(--fs30);
  font-weight: bold;
}
.tuition .imgDiv {
  order: 1;
  width: 50%;
}
.tuition .imgDiv img {
  width: 100%;
}
@media (max-width: 1004px) {
  .tuition {
    padding: 0.8rem 0 1rem;
  }
  .tuition .pageTitle {
    margin-bottom: 0.65rem;
  }
  .tuition .mxfDiv {
    display: block;
  }
  .tuition .conDiv {
    padding-left: 0;
    margin-top: 0.6rem;
    width: auto;
  }
  .tuition .conDiv .msg {
    padding-top: 0;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .tuition .conDiv .zi {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .tuition .imgDiv {
    width: 100%;
  }
}
.processNav {
  width: 2.5rem;
  position: sticky;
  top: 1.5rem;
}
.processNav li {
  font-size: var(--fs18);
}
.processNav li a {
  position: relative;
  display: block;
  padding-left: 0.24rem;
  padding-bottom: 0.45rem;
  line-height: 0.24rem;
  color: #666;
}
.processNav li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 0.09rem;
  height: 0.09rem;
  border-radius: 50%;
  border: #25408e 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;
}
.processNav li a::after {
  content: '';
  position: absolute;
  left: 0.05rem;
  top: 0.2rem;
  width: 1px;
  height: calc(100% - 0.2rem);
  background: #e0e0e0;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.processNav li .aNow {
  color: #333;
}
.processNav li .aNow::before {
  background: #25408e;
}
.processNav li .aNow::after {
  background: #25408e;
}
.process {
  padding: 1rem 0 1.2rem;
}
.process .pageTitle {
  margin-bottom: 0.75rem;
}
.process .rightDiv {
  width: 12.1rem;
}
.process .txtDiv {
  padding-bottom: 0.3rem;
}
.process .txtDiv .num {
  color: #25408e;
  font-size: var(--fs72);
  line-height: 0.72rem;
  font-family: 'Din-B';
}
.process .txtDiv .name {
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #333;
  font-weight: bold;
}
.process .content {
  font-size: var(--fs18);
  width: 9.5rem;
  line-height: 0.3rem;
  font-family: "Poppins-L";
}
.process .content span {
  font-weight: bold;
  color: #25408e;
}
.process .content b {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #25408e;
  display: block;
}
.process .content a {
  font-size: var(--fs16);
  color: #25408e;
}
.process .content a:hover {
  text-decoration: underline;
}
.process .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.process .leftDiv {
  width: 5.5rem;
}
.process .leftDiv .content {
  width: auto;
}
.process .imgDiv {
  width: 5.76rem;
}
.process .imgDiv img {
  width: 100%;
}
.processDiv {
  position: relative;
  padding-bottom: 0.8rem;
}
.processDiv:last-child {
  padding-bottom: 0;
}
@media (max-width: 1004px) {
  .process {
    padding: 0.9rem 0 1rem;
  }
  .process .pageTitle {
    margin-bottom: 0.75rem;
  }
  .process .rightDiv {
    width: auto;
    float: none;
  }
  .process .txtDiv {
    padding-bottom: 0.4rem;
  }
  .process .txtDiv .num {
    font-size: var(--fs40);
    line-height: 0.86rem;
  }
  .process .txtDiv .name {
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .process .content {
    font-size: var(--fs14);
    width: auto;
    line-height: 0.48rem;
  }
  .process .content b {
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .process .content a {
    font-size: var(--fs14);
  }
  .process .mxfDiv {
    display: block;
  }
  .process .leftDiv {
    width: auto;
  }
  .process .imgDiv {
    margin-top: 0.6rem;
    width: auto;
  }
}
.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;
  }
}
