img {
  display: inline-block;
  padding: 0;
  border: none;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}

/* banner */

.banner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 9;
}

.banner::after{
  position: absolute;
  content: "";
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  background: url(/images/bannerbg.png) no-repeat bottom center;
  background-size: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.7;
}



.banner .swiper-container {
  overflow: hidden;
  margin: 0 auto;

}

.banner .swiper-slide {
  height: 100%;
  overflow: hidden;
  position: relative;
}


.banner .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
}

.banner .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 1s linear 2s;
  transform: scale(1, 1);
  object-fit: cover;
}

.banner .swiper-slide-active img,
.banner .swiper-slide-duplicate-active img {
  transition: 6s linear;
  transform: scale(1.05, 1.05);
}


.banner .video-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.banner video{
  display: block;
  pointer-events: none; /* 防止视频干扰滑动手势 */
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.banner .banner_button{
  position: absolute;
  right: 8%;
  bottom: 0.75rem;
  width: 0.92rem;
  height: 0.38rem;
}


.banner .swiper-banner-next {
  position: absolute;
  width: 0.26rem;
  height: 0.38rem;
  background: url(/images/bannerright.png) no-repeat  center;
  background-size: 100%;
  right: 0%;
  top: 0%;
  z-index: 5;
  cursor: pointer;

}

.banner .swiper-banner-prev {
  position: absolute;
  width: 0.26rem;
  height: 0.38rem;
  background: url(/images/bannerleft.png) no-repeat  center;
  background-size: 100%;
  left: 0%;
  top: 0%;
  z-index: 5;
  cursor: pointer;
}


.banner .swiper-pagination{
  width: auto;
  margin: 0;
  position: absolute;
  bottom: 0.5rem;
  left: 15.5%;
  height: 0.93rem;
  align-items: center;
  display: flex;
}

.banner .swiper-pagination .swiper-pagination-bullet{
  position: relative;
  margin: 0 0.28rem 0 0;
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 1);
  border-radius: 0%;
  opacity: 1;
  background: none;
  width: auto;
  line-height: 0.93rem;
  height: 0.93rem;
  display: inline-block;
  text-align: center;
  padding-left: 0.12rem;

}

.banner .swiper-pagination .swiper-pagination-bullet::after{
  position: absolute;
  left: 0rem;
  top: 0%;
  content: "0";
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 1);

}


.banner .swiper-pagination .swiper-pagination-bullet-active{
  background: url(/images/bannerico.png) no-repeat  center;
  background-size: 100%;
  font-size: 0.42rem;
  font-family: "Impact";
  padding-left: 0.2rem;
  width: 0.82rem;
  margin-right: 1.1rem;
}

.banner .swiper-pagination .swiper-pagination-bullet-active::after{
  font-size: 0.42rem;
  font-family: "Impact";
  left: 0.17rem;
}




.swiper-button-prev::after, .swiper-container-rtl .swiper-button-next::after {
  content: 'prev';
  display: none;

}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
  display: none;
}



  
.banner .headerht{
  position: absolute;
  left: 0;
  bottom: 0.5rem;
  width: 100%;


}

.banner .headerht span{
  width: 0.91rem;
  height: 0.91rem;
  position: relative;
  z-index: 5;
  display: block;
  margin: 0 auto;
  background: url(/images/mouse.png) no-repeat  center;
  background-size: 100%;
  animation: ht 1s infinite;
    -moz-animation: ht 1s infinite;
    /* Firefox */

    -webkit-animation: ht 1s infinite;
    /* Safari and Chrome */

    -o-animation: ht 1s infinite;
    /* Opera */

    cursor: pointer;
}

@keyframes ht {
  0% {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
 }
  50% {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
 }
  100% {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
 }
 }
  @-moz-keyframes ht {
  0% {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
 }
  50% {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
 }
  100% {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
 }
 }
  @-webkit-keyframes ht {
  0% {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
 }
  50% {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
 }
  100% {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
 }
 }
  @-o-keyframes ht {
  0% {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
 }
  50% {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
 }
  100% {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
 }
 }
 


 @media(max-width: 1024px){

  .banner .headerht{
    display: none;
  }

  .banner .banner_button {
    bottom: 0.4rem;

}


.banner .swiper-pagination{
  bottom: 0.15rem;
  left: 8%;
  height: 0.93rem;
}

.banner .swiper-pagination .swiper-pagination-bullet{

  font-size: 0.28rem;
  padding-left: 0.2rem;

}

.banner .swiper-pagination .swiper-pagination-bullet::after{
  font-size: 0.28rem;

}


.banner .swiper-pagination .swiper-pagination-bullet-active{
  font-size: 0.36rem;
  padding-left: 0.2rem;
  margin-right: 0.28rem;
}

.banner .swiper-pagination .swiper-pagination-bullet-active::after{
  font-size: 0.36rem;
  left: 0.2rem;
}


}




/* title */

.titlecon{
  align-items: center;
  display: flex;
  justify-content:space-between;
  flex-wrap: wrap;
}

.titlecon .title{

}

.titlecon .title span{
  display: block;
  font-size: 0.16rem;
  color: rgba(189, 188, 186, 1);
  text-transform: uppercase;
  font-family: 'Times New Roman', Times, serif;
  position: relative;
  padding-left: 0.45rem;
}

.titlecon .title span::after{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 0.3rem;
  height: 1px;
  background: rgba(156, 11, 20, 1);
}

.titlecon .title h3{
  align-items: center;
  display: flex;
  font-size: 0.46rem;
  font-weight: bold;
  line-height: 0.42rem;
  color: rgba(51, 51, 51, 1);
  margin-top: 0.15rem;
}

.titlecon .title h3 i {
  width: 0.11rem;
  height: 0.13rem;
  display: inline-block;
  background: url(/images/title.png) no-repeat  center ;
  background-size: 100%;
  margin: 0 0.2rem;

}

.titlemore{
  width: 1.53rem;
  height: 0.51rem;
  line-height: 0.51rem;
  border-radius: 100px;
  border: 1px solid rgba(156, 11, 20, 0.5);
  text-align: center;
}

.titlemore a{
  display: inline-block;
  font-size: 0.18rem;
  color: rgba(155, 13, 20, 1);
  background: url(/images/more.png) no-repeat right center ;
  background-size: 0.1rem 0.16rem;
  padding-right: 0.23rem;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}



/* news */


.newsbg{
  margin: 0 auto;
  width: 100%;
  background: url(/images/newsbg.jpg) no-repeat  center ;
  background-size: cover;
  padding-bottom: 1.05rem;
}

.newsbg .news{
  margin: 0 auto;
  padding-top: 0.9rem;
  
}


.newsbg .news .titlecon .title{
  margin: 0 auto;
}

.newsbg .news .titlecon .title span{
  margin-left: 0.07rem;
}

.newsbg .news .newsbox{
  margin: 0.5rem auto 0 auto;
  display: flex;
  justify-content:space-between;
  flex-wrap: wrap;
} 

.newsbg .news .newsbox .news_l{
  width: 65.5%;
  position: relative;

}

.newsbg .news .newsbox .news_l .pic{
  width: 100%;
  height: 5.56rem;
  position: relative;
  overflow: hidden;
}

.newsbg .news .newsbox .news_l .pic img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.newsbg .news .newsbox .news_l .txt{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.newsbg .news .newsbox .news_l .txt .time{
  position: absolute;
  top: 0.28rem;
  left: 0.28rem;
  width: 1rem;
  height: 1rem;
  background: rgba(156, 11, 20, 1);
  text-align: center;
}

.newsbg .news .newsbox .news_l .txt .time span{
  display: block;
  font-size: 0.48rem;
  font-weight: 600;
  line-height: 0.42rem;
  color: rgba(255, 255, 255, 1);
  margin: 0.1rem auto 0.06rem auto;
}


.newsbg .news .newsbox .news_l .txt .time i{
  display: block;
  font-size: 0.14rem;
  color: rgba(255, 255, 255, 1);
}

.newsbg .news .newsbox .news_l .txt h5{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.newsbg .news .newsbox .news_l .txt h5 a{
  position: absolute;
  left: 4%;
  bottom: 0.35rem;
  width: 92%;
  font-size: 0.24rem;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}



.newsbg .news .newsbox .news_r{
  width: 32.5%;
  height: 5.56rem;
  background: rgba(255, 255, 255, 1);
  border-top: 1px solid rgba(156, 11, 20, 1);
} 

.newsbg .news .newsbox .news_r ul{
  width: 85%;
  margin: 0 auto;
  padding-top: 0.07rem;
}

.newsbg .news .newsbox .news_r ul li{
  width: 100%;
  height: 1.08rem;
  border-bottom: 1px solid rgba(236, 236, 239, 1);
  position: relative;
  z-index: 5;
}

.newsbg .news .newsbox .news_r ul li:last-child{
  border-bottom: none;
}

.newsbg .news .newsbox .news_r ul li a{
  display: block;
  padding-top: 0.23rem;
}

.newsbg .news .newsbox .news_r ul li h5{
  font-size: 0.18rem;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
  line-height: 0.32rem;
  height: 0.64rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.newsbg .news .newsbox .news_r ul li span{
  font-size: 0.14rem;
  color: rgba(129, 138, 153, 1);
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  
}

.newsbg .news .newsbox .news_r ul li::after{
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0px;
  height: 1px;
  background: rgba(156, 11, 20, 1);
  content: "";
  z-index: -1;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}


.newsbg .news .newsbottom{
  margin: 0.25rem auto 0 auto;

}

.newsbg .news .newsbottom ul{
  display: flex;
  justify-content:left;
  flex-wrap: wrap;
}

.newsbg .news .newsbottom ul li{
  width: 32.5%;
  margin-right: 1.2%;
  background: rgba(255, 255, 255, 1);
}

.newsbg .news .newsbottom ul li:last-child{
  margin-right: 0;
}

.newsbg .news .newsbottom ul li a{
  display: block;
}

.newsbg .news .newsbottom ul li .pic{
  width: 100%;
  padding-top: 56%;
  overflow: hidden;
  position: relative;

}

.newsbg .news .newsbottom ul li .pic img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.newsbg .news .newsbottom ul li .txt{
  height: 1.39rem;
  padding: 0.26rem 0.25rem 0 0.3rem;
  
}

.newsbg .news .newsbottom ul li .txt h5{

  vertical-align: top;
  font-size: 0.18rem;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
  line-height: 0.28rem;
  height: 0.56rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;

}

.newsbg .news .newsbottom ul li .txt span{
  display: block;
  font-size: 0.14rem;
  color: rgba(159, 0, 0, 1);
  margin-top: 0.1rem;
}



.newsbg .news .newsmore{
  margin: 0.53rem auto 0 auto;
  width: 2.15rem;
  height: 0.51rem;
  line-height: 0.51rem;
  border-radius: 100px;
  border: 1px solid rgba(156, 11, 20, 0.5);
  text-align: center;
}

.newsbg .news .newsmore a{
  display: inline-block;
  font-size: 0.18rem;
  color: rgba(156, 11, 20, 1);
  background: url(/images/more.png) no-repeat right center ;
  background-size: 0.1rem 0.16rem;
  padding-right: 0.23rem;
}




/* media */


.mediabg{
  margin: 0 auto;
  width: 100%;
  background: url(/images/mediabg.jpg) no-repeat top center ;
  background-size: cover;
  padding-bottom: 0.7rem;
}

.mediabg .media{
  margin: 0 auto;
  padding-top: 0.55rem;
  
}


.mediabg .media .mediabox{
  margin: 0.9rem auto 0 auto;

}

.mediabg .media .mediabox ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mediabg .media .mediabox ul li{
  width: 48.8%;
  height: 1.3rem;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 4px 30px  rgba(0, 0, 0, 0.1);
  margin-bottom: 0.3rem;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.mediabg .media .mediabox ul li a{
  display: block;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}

.mediabg .media .mediabox ul li .pic {
  width: 1.67rem;
  height: 0.71rem;
  background: rgba(255, 255, 255, 1);

  margin-left: 0.25rem;
  position: relative;
}

.mediabg .media .mediabox ul li .pic img{
  position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit:contain;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.mediabg .media .mediabox ul li .txt {
  margin-left: 0.3rem;
  width: calc((100% - 2.8rem));
}

.mediabg .media .mediabox ul li .txt h5{
  font-size: 0.18rem;
  color: rgba(51, 51, 51, 1);
  line-height: 0.28rem;
  height: 0.56rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}



/* Academic */

.Academic{
  margin: 0.7rem auto 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


.Academic .Academic_l{
  width: 63.8%;

}

.Academic .Academic_l .Academicbox{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.53rem;
  width: 100%;
  height: 3.3rem;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 4px 30px  rgba(0, 0, 0, 0.1);
}

.Academic .Academic_l .Academicbox .txt{
  width: calc((100% - 5rem));
  padding: 0 0.4rem;

}


.Academic .Academic_l .Academicbox .txt a{
  display: block;
  
}

.Academic .Academic_l .Academicbox .txt span{
  display: block;
  font-size: 0.14rem;
  color: rgba(155, 150, 150, 1);
  padding-top: 0.25rem;
}

.Academic .Academic_l .Academicbox .txt span i{
  font-size: 0.42rem;
  color: rgba(159, 0, 0, 1);
  font-weight: bold;
  margin-right: 0.05rem;
}

.Academic .Academic_l .Academicbox .txt h5{
  font-size: 0.2rem;
  font-family: "PingFangSC-Bold";
  line-height: 0.32rem;
  height: 0.64rem;
  color: rgba(34, 34, 34, 1);
  overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    margin-top: 0.1rem;
}

.Academic .Academic_l .Academicbox .txt p{
  font-size: 0.14rem;
  color: rgba(131, 131, 131, 1);
  font-family: "PingFangSC-Light";
  line-height: 0.24rem;
  height: 0.72rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  margin: 0.15rem 0 0.25rem 0;
}

.Academic .Academic_l .Academicbox .txt em{
  display: inline-block;
  font-size: 0.18rem;
  color: rgba(155, 13, 20, 1);
  background: url(/images/more1.png) no-repeat right center;
  background-size: 0.3rem 0.07rem;
  padding-right: 0.42rem;
}

.Academic .Academic_l .Academicbox .pic{
  position: relative;
  width: 5rem;
  height: 3.3rem;
  overflow: hidden;
}

.Academic .Academic_l .Academicbox .pic img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;

}

.Academic .Academic_l .Academiclist{
  margin: 0.3rem auto 0 auto;

}

.Academic .Academic_l .Academiclist ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.Academic .Academic_l .Academiclist ul li{
  width: 48.2%;
  height: 1.44rem;
  background: rgba(255, 255, 255, 1);
  margin-bottom: 0.3rem;
  padding: 0 0.3rem;
  position: relative;
  z-index: 5;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.Academic .Academic_l .Academiclist ul li a{
  display: block;
}

.Academic .Academic_l .Academiclist ul li span{
  display: block;
  font-size: 0.14rem;
  color: rgba(159, 0, 0, 1);
  margin: 0.27rem 0 0.15rem 0;
}

.Academic .Academic_l .Academiclist ul li h5{
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: rgba(51, 51, 51, 1);
  font-family: "PingFangSC-Bold";
  font-weight: normal;
  height: 0.56rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.Academic .Academic_l .Academiclist ul li::after{
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0px;
  height: 3px;
  background: rgba(155, 13, 20, 1);
  content: "";
  z-index: -1;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}



.Academic .trailer{
  width: 31.9%;
  
}

.Academic .trailer .trailerbox{
  margin-top: 0.53rem;
}

.Academic .trailer .trailerbox ul li{
  margin-bottom: 0.4rem;
  width: 100%;
  height: 2rem;
  background: rgba(255, 255, 255, 1);
  padding: 0.25rem 0.35rem 0 0.35rem;
  position: relative;
  z-index: 5;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}


.Academic .trailer .trailerbox ul li a{
  display: block;
}

.Academic .trailer .trailerbox ul li .trailer_t{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0.06rem;
}

.Academic .trailer .trailerbox ul li .trailer_t span{
  display: block;
  border-radius: 3px;
  border: 1px solid rgba(156, 11, 20, 0.8);
  padding: 1px 0.1rem 1px 0.1rem;
  font-size: 0.16rem;
  color: rgba(156, 11, 20, 1);
  line-height: 0.24rem;
  height: 0.28rem;
  margin-top: 0.07rem;
}

.Academic .trailer .trailerbox ul li .trailer_t h5{
  font-size: 0.18rem;
  font-weight: normal;
  font-family: "PingFangSC-Bold";
  color: rgba(51, 51, 51, 1);
  line-height: 0.32rem;
  height: 0.64rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: calc((100% - 0.65rem));
}

.Academic .trailer .trailerbox ul li p{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.Academic .trailer .trailerbox ul li p img{
  display: block;
  width: 0.2rem;
  height: 0.2rem;


}

.Academic .trailer .trailerbox ul li p i{
  font-size: 0.14rem;
  line-height: 0.34rem;
  color: rgba(131, 131, 131, 1);
  font-family: "PingFangSC-Light";
  width: calc((100% - 0.3rem));
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.Academic .trailer .trailerbox ul li .more{
  position: absolute;
  right: 0.16rem;
  bottom: 0.23rem;
  background: url(/images/more2.png) no-repeat  center;
  background-size: 100%;
  width: 0.14rem;
  height: 0.14rem;
}

.Academic .trailer .trailerbox ul li::after{
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0px;
  height: 3px;
  background: rgba(155, 13, 20, 1);
  content: "";
  z-index: -1;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}



/* dynamics */

.dynamicsbg{
  margin: 0 auto;
}

.dynamicsbg .dynamics{
  padding-top: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.dynamicsbg .dynamics .dynamics_l{
  width: 58%;

}

.dynamicsbg .dynamics .dynamics_l .dynamicsbox{
  margin-top: 0.5rem;


}

.dynamicsbg .dynamics .dynamics_l .dynamicsbox ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.dynamicsbg .dynamics .dynamics_l .dynamicsbox ul li{
  width: 48%;
  position: relative;
}

.dynamicsbg .dynamics .dynamics_l .dynamicsbox ul li a{
  display: block;
}

.dynamicsbg .dynamics .dynamics_l .dynamicsbox ul li .pic{
  position: relative;
  width: 100%;
  height: 3.1rem;
  overflow: hidden;

}

.dynamicsbg .dynamics .dynamics_l .dynamicsbox ul li .pic img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.dynamicsbg .dynamics .dynamics_l .dynamicsbox ul li .txt{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.8rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 0.25rem 0.25rem 0 0.25rem;

}

.dynamicsbg .dynamics .dynamics_l .dynamicsbox ul li .txt h5{
  line-height: 0.55rem;
  text-align: center;
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.dynamicsbg .dynamics .dynamics_l .dynamicslist{
  margin: 0.05rem auto 0 auto;

}

.dynamicsbg .dynamics .dynamics_l .dynamicslist ul li{
  height: 0.8rem;
  line-height: 0.8rem;
  border-bottom: 1px dashed rgba(170, 184, 181, 1);
  position: relative;
  z-index: 5;

}

.dynamicsbg .dynamics .dynamics_l .dynamicslist ul li:last-child{
  border-bottom: 1px dashed rgba(255, 255, 255, 1);
}

.dynamicsbg .dynamics .dynamics_l .dynamicslist ul li a{
  display: block;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.dynamicsbg .dynamics .dynamics_l .dynamicslist ul li h5{
  background: url(/images/time1.png) no-repeat left center;
  background-size: 0.3rem 0.3rem;
  padding-left: 0.45rem;
  font-size: 0.18rem;
  color: rgba(51, 51, 51, 1);
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 80%;
}

.dynamicsbg .dynamics .dynamics_l .dynamicslist ul li span{
  display: block;
  font-size: 0.14rem;
  color: rgba(159, 0, 0, 1);
}

.dynamicsbg .dynamics .dynamics_l .dynamicslist ul li::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0px;
  height: 1px;
  background: rgba(155, 13, 20, 1);
  content: "";
  z-index: -1;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}





.dynamicsbg .dynamics .campus{
  width: 36.5%;
}

.dynamicsbg .dynamics .campus .campusbox{
  margin-top: 0.5rem;
  position: relative;
}


.dynamicsbg .dynamics .campus .campusbox a{
  display: block;
}

.dynamicsbg .dynamics .campus .campusbox .pic{
  position: relative;
  width: 100%;
  height: 3.1rem;
  overflow: hidden;

}

.dynamicsbg .dynamics .campus .campusbox .pic img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.dynamicsbg .dynamics .campus .campusbox .txt{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.8rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 0.25rem 0.25rem 0 0.25rem;

}

.dynamicsbg .dynamics .campus .campusbox .txt h5{
  line-height: 0.55rem;
  text-align: center;
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.dynamicsbg .dynamics .campus .dynamicslist{
  margin: 0.05rem auto 0 auto;

}

.dynamicsbg .dynamics .campus .dynamicslist ul li{
  height: 0.8rem;
  line-height: 0.8rem;
  border-bottom: 1px dashed rgba(170, 184, 181, 1);
  position: relative;
  z-index: 5;

}

.dynamicsbg .dynamics .campus .dynamicslist ul li:last-child{
  border-bottom: 1px dashed rgba(255, 255, 255, 1);
}

.dynamicsbg .dynamics .campus .dynamicslist ul li a{
  display: block;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.dynamicsbg .dynamics .campus .dynamicslist ul li h5{
  background: url(/images/time2.png) no-repeat left center;
  background-size: 0.22rem 0.22rem;
  padding-left: 0.32rem;
  font-size: 0.18rem;
  color: rgba(51, 51, 51, 1);
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 80%;
}

.dynamicsbg .dynamics .campus .dynamicslist ul li span{
  display: block;
  font-size: 0.14rem;
  color: rgba(159, 0, 0, 1);
}

.dynamicsbg .dynamics .campus .dynamicslist ul li::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0px;
  height: 1px;
  background: rgba(155, 13, 20, 1);
  content: "";
  z-index: -1;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}



/* fc */

.fc{
  margin: 0.8rem auto 0 auto;
}

.fc ul{
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
}

.fc ul li{
  position: relative;
  width: 32.3%;
  margin-right: 1.5%;
}

.fc ul li:nth-child(1){
  background: rgba(156, 11, 20, 1);

}

.fc ul li:nth-child(2){
  background: rgba(17, 148, 196, 1);
}

.fc ul li:last-child{
  background: rgba(211, 175, 134, 1);
  margin-right: 0;
}

.fc ul li .pic{
  position: relative;
  width: 100%;
  padding-top: 125%;

}

.fc ul li .pic img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 0.08;

}

.fc ul li .txt{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 0.55rem;
}

.fc ul li .txt .fc_t{
  position: relative;
  line-height: 0.42rem;
  padding-top: 0.75rem;

}

.fc ul li .txt .fc_t::after{
  position: absolute;
  left: 0.1rem;
  top: 0;
  content: "";
  width: 1px;
  height: 0.35rem;
  background: #fff;
}

.fc ul li .txt .fc_t a{
  display: block;
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.fc ul li .txt .fc_t h5{
  font-size: 0.24rem;
  color: rgba(255, 255, 255, 1);
  font-family: "PingFangSC-Bold";
}

.fc ul li .txt .fc_t h5 img{
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.25rem;

}

.fc ul li .txt .fc_t em{
  display: block;
  background: url(/images/more4.png) no-repeat  center;
  background-size: 100%;
  width: 0.2rem;
  height: 0.17rem;

}

.fc ul li .txt dl{
  margin-top: 0.5rem;

}


.fc ul li .txt dl dt{
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.15rem;
  margin-bottom: 0.2rem;

}

.fc ul li .txt dl dt:last-child{
  border-bottom: none;
}

.fc ul li .txt dl dt a{
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: "PingFangSC-Light";
  font-weight: normal;
  height: 0.56rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}




/* special */


.specialbg{
  width: 100%;
  margin: 0.5rem auto 0.9rem auto;
}

.specialbg .special{
  margin: 0 auto;
}


.specialbg .special .specialbox{
  position: relative;
  margin: 0.45rem auto 0 auto;
}

.specialbg .special .specialbox .swiper-slide{
  position: relative;
}


.specialbg .special .specialbox .swiper-slide .pic{
  position: relative;
  width: 100%;
  padding-top: 43%;
  overflow: hidden;
}


.specialbg .special .specialbox .swiper-slide .pic img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}


/* schllolife */

.schllolifebg{
  margin: 0.8rem auto 0 auto ;
  width: 100%;
  background: url(/images/campuslifebg.jpg) no-repeat top center ;
  background-size: 100%;
}

.schllolifebg .schllolife{
  margin: 0 auto;
  position: relative;
  height: 9.5rem;
}

.schllolifebg .schllolife .titlecon{
  position: absolute;
  right: 0.25rem;
  top: 0.8rem;
  width: 40%;
}

.schllolifebg .schllolife .schllolifebox{
  position: relative;


}

.schllolifebg .schllolife .schllolifebox ul li{
  position: relative;

}

.schllolifebg .schllolife .schllolifebox ul li .pic{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;

}

.schllolifebg .schllolife .schllolifebox ul li .pic img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.schllolifebg .schllolife .schllolifebox ul li .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  opacity: 0.8;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(21, 68, 129, 0) 80%);
}

.schllolifebg .schllolife .schllolifebox ul li .txt a{
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: absolute;
  bottom: 0.35rem;
  left: 0.35rem;
  width: 90%;
}

.schllolifebg .schllolife .schllolifebox ul li:nth-child(1){
  position: absolute;
  left: -1.56rem;
  top: 0;
  width: 10.25rem;
  height: 5.9rem;

}

.schllolifebg .schllolife .schllolifebox ul li:nth-child(1) .videoBtn{
  position: absolute;
  left: 21.5%;
  bottom: -0.1rem;
  z-index: 10;
}


.schllolifebg .schllolife .schllolifebox ul li:nth-child(1) .videoBtn h5{
  width: 0.85rem;
  height: 1.63rem;
  text-align: center;
    line-height: 0.85rem;
  background: rgba(211, 175, 134, 1);
  font-size: 0.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -ms-writing-mode: tb-rl;
  writing-mode: tb-rl;
  transform: rotate(0deg);
  transform-origin: bottom left;
  white-space: nowrap;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.schllolifebg .schllolife .schllolifebox ul li:nth-child(1) .videoBtn .ico{
  width: 0.85rem;
  height: 1rem;
  background: rgba(156, 11, 20, 1);
  position: relative;
  z-index: 5;
  padding-top: 0.3rem;
}

.schllolifebg .schllolife .schllolifebox ul li:nth-child(1) .videoBtn .ico::after{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: rgba(156, 11, 20, 1);
}

.schllolifebg .schllolife .schllolifebox ul li:nth-child(1) .videoBtn .ico img{
  width: 0.31rem;
  height: 0.31rem;
  display: block;
  margin: 0 auto;
  position: relative;


}


.schllolifebg .schllolife .schllolifebox ul li:nth-child(2){
  position: absolute;
  left: 0;
  top: 5rem;
  width: 54.3%;
  height: 4.5rem;

}

.schllolifebg .schllolife .schllolifebox ul li:nth-child(3){
  position: absolute;
  right: 0;
  top: 2.13rem;
  width: 44.6%;
  height: 3.58rem;
}

.schllolifebg .schllolife .schllolifebox ul li:nth-child(4){
  position: absolute;
  right: 0;
  top: 5.92rem;
  width: 44.6%;
  height: 3.58rem;
}

.schllolifebg .schllolife .schllolifebox ul li:hover .pic img{
  transform: scale(1.1);
}


/* Converged */


.Convergedbg{
  margin: 0.5rem auto 0 auto;
}

.Convergedbg .Converged{
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.Convergedbg .Converged .Converged_l{
  margin-top: 0.05rem;
  width: 3.42rem;
  height: 3.84rem;
  background: url(/images/videolist.png) center no-repeat;
  background-size: 100% 100%;
}

.Convergedbg .Converged .Converged_l .Converged_t{
  margin: 0 auto;
  text-align: center;
  font-size: 0.36rem;
  font-weight: 600;
  color: rgba(156, 11, 20, 1);
  padding-top: 0.68rem;
}

.Convergedbg .Converged .Converged_l .ewm{
  margin: 0.4rem auto 0 auto;
  width: 68%;
}

.Convergedbg .Converged .Converged_l .ewm ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.Convergedbg .Converged .Converged_l .ewm ul li{
  position: relative;
  width: 0.48rem;
  height: 0.48rem;
}

.Convergedbg .Converged .Converged_l .ewm ul li .ewmico{
  width: 0.48rem;
  height: 0.48rem;

}

.Convergedbg .Converged .Converged_l .ewm ul li .ewmico img{
  width: 100%;
  height: 100%;
}


.Convergedbg .Converged .Converged_l .ewm ul li .ewmimg{
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: 0%;
  transform:  translateX(-50%) translateY(108%);
  transition: all 0.5s ease 0s;
  box-shadow: rgba(1, 1, 1, 0.08) 0px 2px 9.5px 0.5px;
  width: 1rem;
  height: 1rem;
  background: rgb(255, 255, 255);
  border-radius: 8px;
  padding: 0.05rem;
  visibility: hidden;
  z-index: 9;
}

.Convergedbg .Converged .Converged_l .ewm ul li .ewmimg img{
  width: 100%;
  height: 100%;
}



.Convergedbg .Converged .Converged_l .ewm ul li:hover .ewmimg {
  opacity: 1;
  transform:  translateX(-50%) translateY(103%);
  visibility: visible;
}


.Convergedbg .Converged .Converged_l .more{
  width: 1.53rem;
  height: 0.51rem;
  line-height: 0.51rem;
  border-radius: 100px;
  border: 1px solid rgba(198, 201, 203, 1);
  text-align: center;
  margin: 0.45rem auto 0 auto;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.Convergedbg .Converged .Converged_l .more a{
  font-size: 0.18rem;
  color: rgba(155, 13, 20, 1);
  background: url(/images/more.png) no-repeat right center;
  background-size: 0.1rem 0.16rem;
  padding-right: 0.3rem;
}




.Convergedbg .Converged .Converged_r{
  width: calc((100% - 3.7rem));
}

.Convergedbg .Converged .Converged_r ul{
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
}

.Convergedbg .Converged .Converged_r ul li{
  width: 31%;
  margin-left: 2.3%;
  height: 4.1rem;
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(156, 11, 20, 1);
  box-shadow: 0px 4px 30px  rgba(0, 0, 0, 0.1);
}

.Convergedbg .Converged .Converged_r ul li a{
  display: block;
  width: 84%;
  margin: 0 auto;
  padding-top: 0.35rem;
}

.Convergedbg .Converged .Converged_r ul li h5{
  text-align: center;
  line-height: 0.4rem;
  font-size: 0.2rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 0.25rem;
}

.Convergedbg .Converged .Converged_r ul li h5 img{
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.12rem;

}

.Convergedbg .Converged .Converged_r ul li .pic{
  position: relative;
  width: 100%;
  padding-top: 60%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 5px;
}

.Convergedbg .Converged .Converged_r ul li .pic img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.Convergedbg .Converged .Converged_r ul li p{
  font-size: 0.18rem;
  line-height: 0.28rem;
  height: 0.56rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;

  color: rgba(51, 51, 51, 1);
  margin-top: 0.22rem;

}

.Convergedbg .Converged .Converged_r ul li:nth-child(1) h5{
  color: rgba(7, 186, 10, 1);
}

.Convergedbg .Converged .Converged_r ul li:nth-child(2) h5{
  color: rgba(244, 170, 41, 1);
}







#videoAlert {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1009;
}

#videoAlert .cont {
  position: relative;
  height: 100%;
}

#videoAlert .video_box {
  position: absolute;
  margin-top: 10%;
  width: 70%;
  height: 60%;
  margin-left: 15%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}

#videoAlert .video_box video {
  width: 85%;
  margin: 0 auto;
}

#videoAlert .video_box .close img {
  width: 30px;
  position: absolute;
  top: 0;
  right: 10%;
  max-height: initial;
}

#videoAlert .video_box .close {
  margin-bottom: 65px;
  height: 30px;
  position: relative;
  z-index: 10000;
  cursor: pointer;
}







@media(min-width: 1024px){

  .titlemore a:hover{
    padding-right: 0.28rem;
  }

  .Convergedbg .Converged .Converged_r ul li:hover .pic img{
    transform: scale(1.1);
  }

  .Convergedbg .Converged .Converged_l .more:hover{
    border: 1px solid rgba(155, 13, 20, 1);
  }


  .fc ul li .txt dl dt a:hover{
    transform: translateX(10px);
  }

  .specialbg .special .specialbox .swiper-slide:hover .pic img{
    transform: scale(1.1);
  }

  .dynamicsbg .dynamics .campus .dynamicslist ul li:hover::after{
    width: 100%;
  }
  
  .dynamicsbg .dynamics .campus .dynamicslist ul li:hover h5{
    color: rgba(159, 0, 0, 1);
  }

  .dynamicsbg .dynamics .campus .campusbox:hover .pic img{
    transform: scale(1.1);
  }


  .dynamicsbg .dynamics .dynamics_l .dynamicslist ul li:hover::after{
    width: 100%;
  }
  
  .dynamicsbg .dynamics .dynamics_l .dynamicslist ul li:hover h5{
    color: rgba(159, 0, 0, 1);
  }
  
  .dynamicsbg .dynamics .dynamics_l .dynamicsbox ul li:hover .pic img{
    transform: scale(1.1);
  }

  .newsbg .news .newsbox .news_l:hover .pic img{
    transform: scale(1.1);
  }
  
  .newsbg .news .newsbox .news_r ul li:hover::after{
    width: 100%;
  }
  
  .newsbg .news .newsbox .news_r ul li:hover h5{
    color: rgba(159, 0, 0, 1);
  }

  .newsbg .news .newsbottom ul li:hover .pic img{
    transform: scale(1.1);
  }

  .newsbg .news .newsbottom ul li:hover .txt h5{
    color: rgba(159, 0, 0, 1);
  }

  .mediabg .media .mediabox ul li:hover{
    box-shadow: 0px 4px 30px  rgba(155, 13, 20, 0.2);
  }

  .Academic .trailer .trailerbox ul li:hover{
    box-shadow: 0px 4px 30px  rgba(155, 13, 20, 0.2);
    }
    
    .Academic .trailer .trailerbox ul li:hover::after{
    width: 100%;
    }
  
  
  
  .Academic .Academic_l .Academiclist ul li:hover{
  box-shadow: 0px 4px 30px  rgba(155, 13, 20, 0.2);
  }
  
  .Academic .Academic_l .Academiclist ul li:hover::after{
  width: 100%;
  }

  .Academic .Academic_l .Academicbox:hover .pic img{
    transform: scale(1.1);
  }

  .Academic .Academic_l .Academicbox:hover .txt h5{
    color: rgba(159, 0, 0, 1);
  }

}







@media(max-width: 1024px){


.titlecon .title span{
  font-size: 0.24rem;
  padding-left: 0.45rem;
}


.titlecon .title h3{
  font-size: 0.4rem;
  margin-top: 0.1rem;
}

.titlecon .title h3 i {
  width: 0.15rem;
  height: 0.17rem;

}



.titlemore a{
  font-size: 0.24rem;
  background: url(/images/more.png) no-repeat right center ;
  background-size: 0.1rem 0.16rem;
  padding-right: 0.23rem;
}



/* news */


.newsbg{

  padding-bottom: 0.7rem;
}

.newsbg .news{
  margin: 0 auto;
  padding-top: 0.5rem;
  
}



.newsbg .news .newsbox .news_l{
  width: 100%;


}

.newsbg .news .newsbox .news_l .pic{
  height: auto;
  padding-top: 53%;

}



.newsbg .news .newsbox .news_l .txt .time{
  width: 1.3rem;
  height: 1.1rem;

}

.newsbg .news .newsbox .news_l .txt .time span{
  font-size: 0.4rem;
  font-weight: normal;
  line-height: 0.42rem;
  margin: 0.12rem auto 0.03rem auto;
}


.newsbg .news .newsbox .news_l .txt .time i{
  font-size: 0.24rem;
}


.newsbg .news .newsbox .news_l .txt h5 a{

  font-size: 0.28rem;

}



.newsbg .news .newsbox .news_r{
  width: 100%;
  height: auto;
  margin: 0.4rem auto  0 auto;

} 

.newsbg .news .newsbox .news_r ul{
  width: 90%;
  margin: 0 auto;
  padding: 0.1rem 0;
}

.newsbg .news .newsbox .news_r ul li{
  height: 1.3rem;

}


.newsbg .news .newsbox .news_r ul li a{

  padding-top: 0.23rem;
}

.newsbg .news .newsbox .news_r ul li h5{
  font-size: 0.28rem;
  line-height: 0.42rem;
  height: 0.84rem;

}

.newsbg .news .newsbox .news_r ul li span{
  font-size: 0.24rem;
  bottom: 0.25rem;
  
}



.newsbg .news .newsbottom{
  margin: 0.35rem auto 0 auto;

}


.newsbg .news .newsbottom ul li{
  width: 100%;
  margin-right: 0%;
  margin-bottom: 0.3rem;

}



.newsbg .news .newsbottom ul li .txt{
  height: auto;
  padding: 0.26rem 0.25rem 0.3rem 0.3rem;
  
}

.newsbg .news .newsbottom ul li .txt h5{

  font-size: 0.28rem;
  line-height: 0.45rem;
  height: 0.9rem;


}

.newsbg .news .newsbottom ul li .txt span{

  font-size: 0.24rem;

}



.newsbg .news .newsmore{
  margin: 0.4rem auto 0 auto;
  width: 2.15rem;
  height: 0.55rem;
  line-height: 0.55rem;
}

.newsbg .news .newsmore a{
  font-size: 0.24rem;
}




/* media */


.mediabg{

  padding-bottom: 0.5rem;
}

.mediabg .media{

  padding-top: 0.5rem;
  
}


.mediabg .media .mediabox{
  margin: 0.4rem auto 0 auto;

}



.mediabg .media .mediabox ul li{
  width: 100%;
  height: 1.3rem;
  margin-bottom: 0.25rem;

}


.mediabg .media .mediabox ul li .txt h5{
  font-size: 0.26rem;
  line-height: 0.42rem;
  height: 0.84rem;

}



/* Academic */

.Academic{
  margin: 0.7rem auto 0 auto;

}


.Academic .Academic_l{
  width: 100%;

}

.Academic .Academic_l .Academicbox{

  margin-top: 0.53rem;
  height: auto;

}

.Academic .Academic_l .Academicbox .txt{
  width: calc((100% - 0.01rem));
  padding: 0 0.4rem;

}



.Academic .Academic_l .Academicbox .txt span{
  font-size: 0.24rem;
  padding-top: 0.25rem;
}



.Academic .Academic_l .Academicbox .txt h5{
  font-size: 0.28rem;
  line-height: 0.45rem;
  height: 0.9rem;
  margin-top: 0.1rem;
}

.Academic .Academic_l .Academicbox .txt p{
  font-size: 0.24rem;
  line-height: 0.4rem;
  height: 1.2rem;
  margin: 0.15rem 0 0.25rem 0;
}

.Academic .Academic_l .Academicbox .txt em{
  font-size: 0.28rem;
  background: url(/images/more1.png) no-repeat right center;
  background-size: 0.4rem 0.12rem;
  padding-right: 0.56rem;
}

.Academic .Academic_l .Academicbox .pic{
  width: 100%;
  height: auto;
  padding-top: 65%;
  margin: 0.2rem auto 0 auto;
}


.Academic .Academic_l .Academiclist{
  margin: 0.3rem auto 0 auto;

}


.Academic .Academic_l .Academiclist ul li{
  width: 100%;
  height: auto;
  margin-bottom: 0.25rem;
  padding: 0.05rem 0.3rem 0.3rem 0.3rem;

}


.Academic .Academic_l .Academiclist ul li span{
  font-size: 0.24rem;
  margin: 0.27rem 0 0.15rem 0;
}

.Academic .Academic_l .Academiclist ul li h5{
  font-size: 0.28rem;
  line-height: 0.42rem;
  height: 0.84rem;

}





.Academic .trailer{
  width: 100%;
  margin-top: 0.5rem;
}

.Academic .trailer .trailerbox{
  margin-top: 0.4rem;
}

.Academic .trailer .trailerbox ul li{
  margin-bottom: 0.25rem;
  height: auto;
  padding-bottom: 0.25rem;


}



.Academic .trailer .trailerbox ul li .trailer_t{

  margin-bottom: 0.06rem;
}

.Academic .trailer .trailerbox ul li .trailer_t span{

  font-size: 0.24rem;
  line-height: 0.36rem;
  height: 0.36rem;
  margin-top: 0.07rem;
}

.Academic .trailer .trailerbox ul li .trailer_t h5{
  font-size: 0.28rem;
  line-height: 0.42rem;
  height: 0.84rem;
  width: calc((100% - 0.95rem));
}

.Academic .trailer .trailerbox ul li p{
  margin-bottom: 0.15rem;
}

.Academic .trailer .trailerbox ul li p img{
  width: 0.4rem;
  height: 0.4rem;


}

.Academic .trailer .trailerbox ul li p i{
  font-size: 0.24rem;
  line-height: 0.34rem;
  width: calc((100% - 0.5rem));

}

.Academic .trailer .trailerbox ul li .more{
  right: 0.26rem;
  bottom: 0.33rem;
  width: 0.24rem;
  height: 0.24rem;
}




.dynamicsbg .dynamics{
  padding-top: 0.6rem;

}

.dynamicsbg .dynamics .dynamics_l{
  width: 100%;

}

.dynamicsbg .dynamics .dynamics_l .dynamicsbox{
  margin-top: 0.4rem;


}



.dynamicsbg .dynamics .dynamics_l .dynamicsbox ul li{
  width: 48%;
  position: relative;
}


.dynamicsbg .dynamics .dynamics_l .dynamicsbox ul li .pic{

  height: 2.4rem;


}



.dynamicsbg .dynamics .dynamics_l .dynamicsbox ul li .txt h5{
  font-size: 0.28rem;

}

.dynamicsbg .dynamics .dynamics_l .dynamicslist{
  margin: 0.1rem auto 0 auto;

}

.dynamicsbg .dynamics .dynamics_l .dynamicslist ul li{
  height: 0.8rem;
  line-height: 0.8rem;


}



.dynamicsbg .dynamics .dynamics_l .dynamicslist ul li h5{
  background: url(/images/time1.png) no-repeat left center;
  background-size: 0.32rem 0.32rem;
  padding-left: 0.45rem;
  font-size: 0.26rem;
  width: 73%;
}

.dynamicsbg .dynamics .dynamics_l .dynamicslist ul li span{
  font-size: 0.24rem;

}



.dynamicsbg .dynamics .campus{
  width: 100%;
  margin-top: 0.4rem;
}

.dynamicsbg .dynamics .campus .campusbox{
  margin-top: 0.4rem;

}


.dynamicsbg .dynamics .campus .campusbox a{
  display: block;
}

.dynamicsbg .dynamics .campus .campusbox .pic{

  height: 3.3rem;


}



.dynamicsbg .dynamics .campus .campusbox .txt h5{
  line-height: 0.55rem;
  font-size: 0.28rem;

}

.dynamicsbg .dynamics .campus .dynamicslist{
  margin: 0.1rem auto 0 auto;

}

.dynamicsbg .dynamics .campus .campusbox .txt {
  padding: 0.15rem 0.25rem 0 0.25rem;
}

.dynamicsbg .dynamics .campus .dynamicslist ul li h5{
  background-size: 0.32rem 0.32rem;
  padding-left: 0.45rem;
  font-size: 0.28rem;
  width: 73%;
}

.dynamicsbg .dynamics .campus .dynamicslist ul li span{
  font-size: 0.24rem;

}



.fc{
  margin: 0.4rem auto 0 auto;
}


.fc ul li{
  position: relative;
  width: 100%;
  margin-right: 0%;
  margin-bottom: 0.25rem;
}



.fc ul li .txt .fc_t{
  position: relative;
  line-height: 0.55rem;
  padding-top: 0.75rem;

}



.fc ul li .txt .fc_t h5{
  font-size: 0.3rem;

}


.fc ul li .txt .fc_t em{

  width: 0.24rem;
  height: 0.21rem;

}


.fc ul li .txt dl dt{
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.15rem;
  margin-bottom: 0.2rem;

}



.fc ul li .txt dl dt a{
  font-size: 0.26rem;
  line-height: 0.42rem;
  height: 0.84rem;

}



.specialbg{
  margin: 0.5rem auto 0.6rem auto;
  
}


.specialbg .special .specialbox{
  margin: 0.4rem auto 0 auto;
}




.schllolifebg{
  margin: 0.5rem auto 0 auto ;
  padding-top: 0.6rem;
}

.schllolifebg .schllolife{

  height: auto;
}

.schllolifebg .schllolife .titlecon{
  position: relative;
  right: 0rem;
  top: 0rem;
  width: 100%;
}

.schllolifebg .schllolife .schllolifebox{
  margin: 0.4rem auto 0 auto;
}

.schllolifebg .schllolife .schllolifebox ul li{
  margin-bottom: 0.25rem;
}

.schllolifebg .schllolife .schllolifebox ul li .txt a{
  font-size: 0.28rem;
  bottom: 0.35rem;
  left: 0.35rem;
}

.schllolifebg .schllolife .schllolifebox ul li:nth-child(1){
  position: relative;
  left: 0rem;
  top: 0;
  width: 100%;
  height: 3.9rem;

}

.schllolifebg .schllolife .schllolifebox ul li:nth-child(1) .videoBtn{
  position: absolute;
  left: 10%;
  bottom: -0rem;
  width: 80%;
}


.schllolifebg .schllolife .schllolifebox ul li:nth-child(1) .videoBtn h5{
  width: auto;
  height: 1rem;
    line-height: 1rem;
  font-size: 0.28rem;
  writing-mode: inherit;
  float: left;
  width: 50%;
}

.schllolifebg .schllolife .schllolifebox ul li:nth-child(1) .videoBtn .ico{

  padding-top: 0.35rem;
  float: left;
}



.schllolifebg .schllolife .schllolifebox ul li:nth-child(2){
  position: relative;
  left: 0;
  top: 0rem;
  width: 100%;
  height: 3.5rem;

}

.schllolifebg .schllolife .schllolifebox ul li:nth-child(3){
  position: relative;
  right: 0;
  top: 0rem;
  width: 100%;
  height: 3.4rem;
}

.schllolifebg .schllolife .schllolifebox ul li:nth-child(4){
  position: relative;
  right: 0;
  top: 0rem;
  width: 100%;
  height: 3.4rem;
}




/* Converged */


.Convergedbg{
  margin: 0.6rem auto 0 auto;

}



.Convergedbg .Converged .Converged_l{
  width: 4.42rem;
  height: 4.84rem;
  margin: 0 auto;
}



.Convergedbg .Converged .Converged_l .ewm{
  margin: 0.55rem auto 0 auto;
  width: 78%;
}


.Convergedbg .Converged .Converged_l .ewm ul li{
  position: relative;
  width: 0.68rem;
  height: 0.68rem;
}

.Convergedbg .Converged .Converged_l .ewm ul li .ewmico{
  width: 0.68rem;
  height: 0.68rem;

}


.Convergedbg .Converged .Converged_l .ewm ul li .ewmimg{

  box-shadow: rgba(1, 1, 1, 0.1) 0px 2px 9.5px 0.5px;
  width: 1.5rem;
  height: 1.5rem;

  border-radius: 8px;
  padding: 0.1rem;

}



.Convergedbg .Converged .Converged_l .more{
  width: 2.03rem;
  height: 0.6rem;
  line-height: 0.6rem;
  margin: 0.45rem auto 0 auto;

}

.Convergedbg .Converged .Converged_l .more a{
  font-size: 0.28rem;
  background-size: 0.3rem 0.23rem;
  padding-right: 0.4rem;
}




.Convergedbg .Converged .Converged_r{
  width: calc((100% - 0.01rem));
  margin: 0.3rem auto 0 auto;
}


.Convergedbg .Converged .Converged_r ul li{
  width: 100%;
  margin: 0% 0 0.3rem 0;
  height: auto;
  padding-bottom: 0.4rem;
}

.Convergedbg .Converged .Converged_r ul li a{
  display: block;
  width: 84%;
  margin: 0 auto;
  padding-top: 0.35rem;
}

.Convergedbg .Converged .Converged_r ul li h5{

  font-size: 0.28rem;
  margin-bottom: 0.25rem;
}

.Convergedbg .Converged .Converged_r ul li h5 img{
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.15rem;

}



.Convergedbg .Converged .Converged_r ul li p{
  font-size: 0.28rem;
  line-height: 0.45rem;
  height: 0.9rem;
  margin-top: 0.22rem;

}







}