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 .swiper-container {
  overflow: hidden;
  margin: 0 auto;

}

.banner .swiper-slide {
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.banner .swiper-slide::after{
  position: absolute;
  content: "";
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

.banner .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
}

.banner .swiper-slide a{
  display: block;
}

.banner .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 1s linear 2s;
  transform: scale(1, 1);
  object-fit: cover;
  position: relative;
}

.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 .swiper-slide .txt{
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 17%;
}

.banner .swiper-slide .txt h5{
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
}

.banner .swiper-slide .txt p{
  font-size: 0.18rem;
  line-height: 0.42rem;
  color: rgba(255, 255, 255, 1);
  margin: 0.43rem auto 0.43rem auto;
}

.banner .swiper-slide .txt .more{
  display: block;
  height: 0.56rem;
  line-height: 0.56rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 0 0.45rem;
  margin: 0 auto;
}


.banner .swiper-slide .txt .more i{
  display: block;
  padding-right: 0.25rem;
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 1);
  background: url(../images/more.png) no-repeat right center;
  background-size: 0.14rem 0.12rem;
}



.banner .swiper-banner-next {
  position: absolute;
  width: 0.66rem;
  height: 0.67rem;
  background: url(../images/bannerright.png) no-repeat center;
  background-size: 100%;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  cursor: pointer;
  display: none;

}

.banner .swiper-banner-prev {
  position: absolute;
  width: 0.66rem;
  height: 0.67rem;
  background: url(../images/bannerleft.png) no-repeat center;
  background-size: 100%;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  cursor: pointer;
  display: none;
}



.banner .swiper-pagination{
  width: auto;
  text-align: center;
  position: absolute;
  bottom: 0.3rem;
  left: 9%;
}

.banner .swiper-pagination .swiper-pagination-bullet{
  position: relative;
  margin: 0 0.12rem;
  border-radius: 0%;
  opacity: 1;
  display: inline-block;
  width: 0.32rem;
  height: 0.32rem;
  background: none;
  line-height: 0.32rem;
  color: rgba(255, 255, 255, 0);
}



.banner .swiper-pagination-bullet-active {
  opacity: 1;
}

  /* 基础圆点样式 */
  .bullet-dot {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.1rem;
    height: 0.1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}



/* SVG容器 */
.bullet-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* 让圆圈从顶部开始 */
}

/* 基础圆圈 */
.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1;
    display: none;
  
}

/* 进度圆圈 */
.circle-progress {
    fill: none;
    stroke: #ffffff;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-dasharray: 94; /* 2 * π * 15 ≈ 94 */
    stroke-dashoffset: 94; /* 初始隐藏 */
    display: none;
}

/* 激活状态 - 动画 */
.swiper-pagination-bullet-active .circle-progress {
    animation: circleFill 4s linear forwards;
    display: block;
}

.swiper-pagination-bullet-active .circle-bg{
  display: block;
}

.swiper-pagination-bullet-active .bullet-dot{
  background: rgba(255, 255, 255, 1);
}



/* SVG旋转动画 */
@keyframes circleFill {
    0% {
        stroke-dashoffset: 94;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* IE兼容方案 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .swiper-pagination-bullet-active .circle-progress {
        animation: none;
        transition: stroke-dashoffset 6s linear;
        stroke-dashoffset: 0;
    }
}

.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.25rem;
  width: 100%;


}

.banner .headerht span{
  width: 0.32rem;
  height: 0.32rem;
  position: relative;
  z-index: 10;
  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);
 }
 }
 


 


  /* title */
  
  .titlecon{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
  }
  
  .title{
    text-align: left;

  
  }
  
  .title h3{
    font-size: 0.48rem;
    font-weight: normal;
    font-family: "PingFangSC-bold";
    line-height: 0.48rem;
    color: rgba(0, 0, 0, 1);
    position: relative;
    z-index: 5;
  }

  .title i{
    font-size: 0.74rem;
    color: #fff;
    text-transform: uppercase;
    font-family: "PingFangSC-bold";
    line-height: 0.48rem;
    -webkit-text-stroke: 0.5px rgba(0, 40, 125, 0.2); 
    text-stroke: 0.5px rgba(0, 40, 125, 0.2);
    position: relative;
    top: -0.38rem;
  }
  
  
  
  .titlemore{
    height: 0.41rem;
    line-height: 0.41rem;
    border-radius: 45px;
    border: 1px solid rgba(73, 73, 73, 1);
    margin-top: 0.07rem;
  }

  .titlemore a{
    display: block;
    padding: 0 0.2rem;
  }
  
  .titlemore a i{
    display: block;
    font-size: 0.16rem;
    color: rgba(26, 26, 26, 1);
    text-transform: uppercase;
    background: url(../images/titlemore.png) no-repeat right center;
    background-size: 0.12rem 0.11rem;
    padding-right: 0.25rem;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }




/* notice */

.noticebg{
  margin: 0 auto;
  width: 100%;
  padding: 1.05rem 0 1rem 0;
  background: rgba(246, 248, 255, 1);
  overflow: hidden;
}

.noticebg .title i{
  color: rgba(246, 248, 255, 1);
}

.noticebg .noticebox{
  margin: 0.05rem auto 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.noticebg .noticebox .notice_l{
  width: 39.5%;

}


.noticebg .noticebox .notice_l .swiper-slide{
  position: relative;
}


.noticebg .noticebox .notice_l .swiper-slide a{
  display: block;
}

.noticebg .noticebox .notice_l .swiper-slide .pic{
  position: relative;
  z-index: 5;
  overflow: hidden;
  width: 100%;
  height: 6.48rem;
  border-radius: 0.3rem;
}

.noticebg .noticebox .notice_l .swiper-slide .pic img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.3rem;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.noticebg .noticebox .notice_l .swiper-slide .pic::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  pointer-events: none;
  border-radius: 0.3rem;
  background: linear-gradient(180deg, rgba(0, 40, 125, 0) 0%, rgba(0, 40, 125, 1) 75.67%);
}

.noticebg .noticebox .notice_l .swiper-slide .time{
  position: absolute;
  z-index: 5;
  right: 0.3rem;
  top: 0.35rem;
  text-align: center;
  width: 1rem;
  height: 1rem;
  border-radius: 0.1rem;
  background: rgba(255, 255, 255, 1);


} 

.noticebg .noticebox .notice_l .swiper-slide .time span{
  display: block;
  font-size: 0.12rem;
  color: rgba(255, 255, 255, 1);
  line-height: 0.3rem;
  border-radius: 0.1rem 0.1rem 0px 0px;
  background: rgba(0, 40, 125, 1);
}

.noticebg .noticebox .notice_l .swiper-slide .time i{
  display: block;
  font-size: 0.38rem;
  font-weight: bold;
  color: rgba(0, 40, 125, 1);
  line-height: 0.38rem;
  margin: 0.04rem 0 0.03rem 0;
}

.noticebg .noticebox .notice_l .swiper-slide .time em{
  display: block;
  font-size: 0.12rem;
  color: rgba(119, 117, 136, 1);
}


.noticebg .noticebox .notice_l .swiper-slide .txt{
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 0.45rem 0.57rem 0.45rem;


} 


.noticebg .noticebox .notice_l .swiper-slide .txt h5{
  font-size: 0.24rem;
  color: rgba(255, 255, 255, 1);
  line-height: 0.42rem;
  height: 0.84rem;
  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;
}

.noticebg .noticebox .notice_l .swiper-slide .txt p{
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 0.24rem;
  height: 0.48rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 0.07rem;

}

.noticebg .noticebox .notice_l .news-pagination{
  position: absolute;
  right: 0.4rem;
  left: auto;
  bottom: 0.35rem;
  z-index: 5;
  width: auto;
  display: none;

}



.noticebg .noticebox .notice_r{
  width: 56.3%;
  margin-top: 0.1rem;
}

.noticebg .noticebox .notice_r ul li{
  position: relative;
  z-index: 5;
  height: 1.83rem;
  margin-bottom: 0.4rem;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 1);
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.noticebg .noticebox .notice_r ul li a{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.33rem 0.45rem 0.27rem 0.4rem;
}

.noticebg .noticebox .notice_r ul li .txt{
  width: calc((100% - 1.6rem));
}

.noticebg .noticebox .notice_r ul li .txt h5{
  font-size: 0.2rem;
  font-weight: 500;
  color: rgba(1, 5, 68, 1);
  line-height: 0.34rem;
  max-height: 0.68rem;
  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;
}

.noticebg .noticebox .notice_r ul li .txt p{
  font-size: 0.16rem;
  color: rgba(1, 5, 68, 0.6);
  line-height: 0.34rem;
  height: 0.68rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 0.05rem;
}

.noticebg .noticebox .notice_r ul li .time{
  text-align: center;
  width: 1rem;
  height: 1rem;
  border-radius: 0.1rem;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(0, 40, 125, 0.6);
  margin-top: 0.05rem;
} 

.noticebg .noticebox .notice_r ul li .time span{
  display: block;
  font-size: 0.12rem;
  color: rgba(255, 255, 255, 1);
  line-height: 0.3rem;
  border-radius: 0.1rem 0.1rem 0px 0px;
  background: rgba(0, 40, 125, 1);
}

.noticebg .noticebox .notice_r ul li .time i{
  display: block;
  font-size: 0.38rem;
  font-weight: bold;
  color: rgba(0, 40, 125, 1);
  line-height: 0.38rem;
  margin: 0.04rem 0 0.03rem 0;
}

.noticebg .noticebox .notice_r ul li .time em{
  display: block;
  font-size: 0.12rem;
  color: rgba(119, 117, 136, 1);
}



/* dynamic */

.dynamicbg{
  margin: 0 auto;
  width: 100%;
  background: url(../images/dynamicbg.jpg) no-repeat bottom center;
  background-size: 100%;
  padding: 1.05rem 0 1rem 0;
  overflow: hidden;
}

.dynamicbg .dynamic{
  margin: 0 auto;
}

.dynamicbg .dynamic .dynamicbox{
  margin: 0.05rem auto 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


.dynamicbg .dynamic .dynamicbox .dynamic_l{
  width: 64.7%;
  position: relative;

}

.dynamicbg .dynamic .dynamicbox .dynamic_l .swiper-slide{
  position: relative;
}


.dynamicbg .dynamic .dynamicbox .dynamic_l .swiper-slide a{
  display: block;
}

.dynamicbg .dynamic .dynamicbox .dynamic_l .swiper-slide .pic{
  position: relative;
  z-index: 5;
  overflow: hidden;
  width: 100%;
  height: 5.77rem;
  border-radius: 0.22rem;
}

.dynamicbg .dynamic .dynamicbox .dynamic_l .swiper-slide .pic img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.22rem;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.dynamicbg .dynamic .dynamicbox .dynamic_l .swiper-slide .pic::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  pointer-events: none;
  border-radius: 0.22rem;
  background: linear-gradient(180deg, rgba(0, 40, 125, 0) 65%, rgba(0, 40, 125, 0.9) 100%);
}

.dynamicbg .dynamic .dynamicbox .dynamic_l .swiper-slide .txt{
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 1.45rem 0.35rem 0.45rem;


} 

.dynamicbg .dynamic .dynamicbox .dynamic_l .swiper-slide .txt i{
  display: block;
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.17rem;
}

.dynamicbg .dynamic .dynamicbox .dynamic_l .swiper-slide .txt h5{
  font-size: 0.22rem;
  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;
}

.dynamicbg .dynamic .dynamicbox .dynamic_l .dynamic-pagination{
  position: absolute;
  right: 0.4rem;
  left: auto;
  bottom: 0.35rem;
  z-index: 5;
  width: auto;

}

.dynamicbg .dynamic .dynamicbox .dynamic_l .dynamic-pagination .swiper-pagination-bullet{
  margin: 0 0.05rem;
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.6);
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 50%;
  background: none;
}

.dynamicbg .dynamic .dynamicbox .dynamic_l .dynamic-pagination .swiper-pagination-bullet-active{
  background: #fff;
}


.dynamicbg .dynamic .dynamicbox .dynamic_r{
  width: 33%;
  
}

.dynamicbg .dynamic .dynamicbox .dynamic_r ul li{
  margin-bottom: 0.36rem;
  position: relative;

}

.dynamicbg .dynamic .dynamicbox .dynamic_r ul li a{
  display: block;
}

.dynamicbg .dynamic .dynamicbox .dynamic_r ul li .pic{
  position: relative;
  z-index: 5;
  overflow: hidden;
  width: 100%;
  height: 2.7rem;
  border-radius: 0.22rem;
}

.dynamicbg .dynamic .dynamicbox .dynamic_r ul li .pic img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.22rem;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}


.dynamicbg .dynamic .dynamicbox .dynamic_r ul li .pic::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  pointer-events: none;
  border-radius: 0.22rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.dynamicbg .dynamic .dynamicbox .dynamic_r ul li .txt{
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 0.3rem 0.28rem 0.3rem;
} 

.dynamicbg .dynamic .dynamicbox .dynamic_r ul li .txt i{
  display: block;
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.12rem;
}

.dynamicbg .dynamic .dynamicbox .dynamic_r ul li .txt h5{
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 1);
  line-height: 0.24rem;
  height: 0.48rem;
  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;
}


.dynamicbg .dynamic .dynamiclist{
  margin: 0.05rem auto 0 auto;
}


.dynamicbg .dynamic .dynamiclist ul{
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
}

.dynamicbg .dynamic .dynamiclist ul li{
  width: 30.6%;
  border-bottom: 1px solid rgba(51, 51, 51, 1);
  margin-right: 4%;
}

.dynamicbg .dynamic .dynamiclist ul li:nth-child(3n){
  margin-right: 0;
}

.dynamicbg .dynamic .dynamiclist ul li a{

}

.dynamicbg .dynamic .dynamiclist ul li h5{
  font-size: 0.2rem;
  color: rgba(5, 6, 43, 1);
  line-height: 0.34rem;
  height: 0.68rem;
  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;
}

.dynamicbg .dynamic .dynamiclist ul li .time{
  display: block;
  font-size: 0.18rem;
  color: rgba(5, 6, 43, 1);
  padding-left: 0.27rem;
  background: url(../images/time.png) no-repeat left center;
  background-size: 0.15rem 0.15rem;
  margin: 0.25rem 0 0.42rem 0;
}



/* enrollment */

.enrollmentbg{
  width: 100%;
  height: 7rem;
  margin: 0 auto;
  background: url(../images/enrollmentimgbg.jpg) no-repeat  center;
  background-size: 100% 100%;
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  z-index: 5;
}

.enrollmentbg::after{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 40, 125, 0.09) 12.98%, rgba(0, 19, 58, 0.9) 71.63%, rgba(5, 22, 40, 0.9) 100%);
}


.enrollmentbg .enrollment{
  margin: 0 auto;
}

.enrollmentbg .enrollment .enrollment_t{
  text-align: center;
  margin: 0 auto;
}

.enrollmentbg .enrollment .enrollment_t i{
  display: block;
  width: 3px;
  height: 1.14rem;
  background: rgba(255, 255, 255, 1);
  margin: 0 auto;
}

.enrollmentbg .enrollment .enrollment_t h3{
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 1);
  font-weight: normal;
  font-family: "PingFangSC-bold";
  margin: 0.1rem auto 1rem auto;
}

.enrollmentbg .enrollment .enrollment_t p{
  font-size: 0.24rem;
  color: rgba(255, 255, 255, 1);
}

.enrollmentbg .enrollment .enrollmentbox{
  margin: 0.55rem auto 0 auto;
}

.enrollmentbg .enrollment .enrollmentbox ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.enrollmentbg .enrollment .enrollmentbox ul li{
  margin-right: 3.6%;
  width: 30.8%;
  height: 2.18rem;
  border-radius: 0.15rem;
  background: linear-gradient(270deg, rgba(160, 202, 255, 1) 0%, rgba(121, 181, 255, 1) 100%);
}

.enrollmentbg .enrollment .enrollmentbox ul li:nth-child(2){
  background: linear-gradient(270deg, rgba(181, 230, 255, 1) 0%, rgba(105, 194, 255, 1) 100%);
}

.enrollmentbg .enrollment .enrollmentbox ul li:nth-child(3){
  margin-right: 0;
  background: linear-gradient(270deg, rgba(255, 240, 213, 1) 0%, rgba(255, 227, 187, 1) 100%);
}

.enrollmentbg .enrollment .enrollmentbox ul li a{
  padding: 0.4rem 0.5rem 0 0.5rem;
  display: block;

}

.enrollmentbg .enrollment .enrollmentbox ul li h5{
  font-size: 0.22rem;
  font-weight: 600;
  color: rgba(17, 17, 17, 1);
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.enrollmentbg .enrollment .enrollmentbox ul li i{
  display: inline-block;
  font-size: 0.16rem;
  color: rgba(17, 17, 17, 1);
  padding-right: 0.25rem;
  background: url(../images/more2.png) no-repeat right center;
  background-size: 0.15rem 0.11rem;
  margin-top: 0.77rem;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}




/* system */

.systembg{
  margin: 0 auto;
  padding: 0.95rem 0 1.05rem 0;
}

.systembg .system{
  margin: 0 auto;
}

.systembg .system ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.systembg .system ul li{
  margin-right: 2.2%;
  width: 31.8%;
  height: 3.5rem;
  border-radius: 0.2rem;
  background: linear-gradient(115.58deg, rgba(242, 245, 252, 1) 0%, rgba(234, 237, 246, 1) 100%);
}

.systembg .system ul li a{
  padding: 0.55rem 0.3rem 0 0.3rem;
  display: block;
  text-align: center;
}

.systembg .system ul li img{
  display: block;
  margin: 0 auto;
  width: 1rem;
  height: 1rem;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.systembg .system ul li h5{
  font-size: 0.35rem;
  font-weight: 600;
  color: rgba(1, 5, 68, 1);
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  margin: 0.4rem auto 0.23rem auto;
}

.systembg .system ul li i{
  display: inline-block;
  font-size: 0.16rem;
  color: rgba(0, 40, 125, 1);
  padding-right: 0.25rem;
  background: url(../images/more3.png) no-repeat right center;
  background-size: 0.15rem 0.11rem;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.systembg .system ul li:last-child{
  margin-right: 0;
}





@keyframes beat{from,to{-webkit-transform:scale(1,1);transform:scale(1,1)}
25%{-webkit-transform:scale(.9,1.1);transform:scale(.9,1.1)}
50%{-webkit-transform:scale(1.1,.9);transform:scale(1.1,.9)}
75%{-webkit-transform:scale(.95,1.05);transform:scale(.95,1.05)}
from,to{-webkit-transform:scale(1,1);transform:scale(1,1)}
25%{-webkit-transform:scale(.9,1.1);transform:scale(.9,1.1)}
50%{-webkit-transform:scale(1.1,.9);transform:scale(1.1,.9)}
75%{-webkit-transform:scale(.95,1.05);transform:scale(.95,1.05)}
}


@media(min-width: 1024px){

  .enrollmentbg .enrollment .enrollmentbox ul li:hover h5{
    transform: translateX(10px);

  }

  .systembg .system ul li:hover h5{
    color: rgba(0, 40, 125, 1);
  }

  .systembg .system ul li:hover img {
    animation: beat 0.5s 1;
}

.dynamicbg .dynamic .dynamiclist ul li:hover h5{
  text-decoration: underline;
}

.dynamicbg .dynamic .dynamicbox .dynamic_l .swiper-slide:hover .pic img{
  transform: scale(1.1);
}

.dynamicbg .dynamic .dynamicbox .dynamic_r ul li:hover .pic img{
  transform: scale(1.1);
}

.noticebg .noticebox .notice_l .swiper-slide:hover .pic img{
  transform: scale(1.1);
}

.noticebg .noticebox .notice_r ul li:hover{
  box-shadow: 0px 4px 30px  rgba(0, 40, 125, 0.15);
}

.titlemore:hover{
  border: 1px solid rgba(0, 40, 125, 1);
}

.titlemore:hover a i{
  color: rgba(0, 40, 125, 1);

}

}



@media(max-width: 1024px){

  .banner .swiper-slide .txt {
    padding: 0 7%;
}

  .banner .swiper-slide .txt h5 {
    font-size: 0.32rem;
    font-weight: normal;
}

.banner .swiper-slide .txt p {
  font-size: 0.24rem;
  line-height: 0.4rem;
  margin: 0.4rem auto 0.4rem auto;
  display: none;
}

.banner .swiper-slide .txt .more {
  margin: 0.1rem auto 0 auto;
}

.banner .swiper-slide .txt .more i {
  padding-right: 0.35rem;
  font-size: 0.24rem;
  background-size: 0.21rem 0.18rem;
}
  
  .title h3{
    font-size: 0.4rem;
    line-height: 0.5rem;

  }

  .title i{
    font-size: 0.68rem;
    top: -0.38rem;
  }
  
  
  
  .titlemore{
    height: 0.48rem;
    line-height: 0.47rem;
  }


  
  .titlemore a i{
    font-size: 0.24rem;
    background: url(../images/titlemore.png) no-repeat right center;
    background-size: 0.24rem 0.22rem;
    padding-right: 0.35rem;

  }




/* notice */

.noticebg{

  padding: 0.6rem 0 0.4rem 0;

}



.noticebg .noticebox .notice_l{
  width: 100%;

}



.noticebg .noticebox .notice_l .swiper-slide .pic{
  height: auto;
  padding-top: 105%;
}


.noticebg .noticebox .notice_l .swiper-slide .time{

  right: 0.3rem;
  top: 0.35rem;
  width: 1.5rem;
  height: 1.5rem;



} 

.noticebg .noticebox .notice_l .swiper-slide .time span{
  font-size: 0.24rem;
  line-height: 0.5rem;

}

.noticebg .noticebox .notice_l .swiper-slide .time i{
  margin: 0.07rem 0 0.06rem 0;
  font-size: 0.38rem;

}

.noticebg .noticebox .notice_l .swiper-slide .time em{
  font-size: 0.24rem;

}


.noticebg .noticebox .notice_l .swiper-slide .txt{

  padding: 0 0.45rem 0.5rem 0.45rem;


} 



.noticebg .noticebox .notice_l .swiper-slide .txt h5{
  font-size: 0.3rem;
  line-height: 0.45rem;
  height: 0.89rem;

}

.noticebg .noticebox .notice_l .swiper-slide .txt p{
  font-size: 0.26rem;
  line-height: 0.42rem;
  height: 0.84rem;

}



.noticebg .noticebox .notice_r{
  width: 100%;
  margin-top: 0.4rem;
}

.noticebg .noticebox .notice_r ul li{

  height: auto;
  margin-bottom: 0.3rem;
}

.noticebg .noticebox .notice_r ul li a{

  padding: 0.33rem 0.3rem 0.3rem 0.3rem;
}

.noticebg .noticebox .notice_r ul li .txt{
  width: calc((100% - 1.8rem));
}

.noticebg .noticebox .notice_r ul li .txt h5{
  font-size: 0.3rem;
  line-height: 0.45rem;
  max-height: 0.9rem;

}

.noticebg .noticebox .notice_r ul li .txt p{
  font-size: 0.26rem;
  line-height: 0.42rem;
  height: 0.84rem;
  margin-top: 0.1rem;
}

.noticebg .noticebox .notice_r ul li .time{

  width: 1.5rem;
  height: 1.5rem;

} 

.noticebg .noticebox .notice_r ul li .time span{
  font-size: 0.24rem;
  line-height: 0.5rem;

}

.noticebg .noticebox .notice_r ul li .time i{
  font-size: 0.38rem;
  line-height: 0.38rem;
  margin: 0.08rem 0 0.05rem 0;
}

.noticebg .noticebox .notice_r ul li .time em{

  font-size: 0.24rem;

}





.dynamicbg{

  padding: 0.5rem 0 0.5rem 0;

}



.dynamicbg .dynamic .dynamicbox{
  margin: 0.05rem auto 0 auto;

}


.dynamicbg .dynamic .dynamicbox .dynamic_l{
  width: 100%;


}



.dynamicbg .dynamic .dynamicbox .dynamic_l .swiper-slide .pic{

  height: auto;
  padding-top: 75%;

}



.dynamicbg .dynamic .dynamicbox .dynamic_l .swiper-slide .txt{

  padding: 0 1.45rem 0.35rem 0.4rem;


} 

.dynamicbg .dynamic .dynamicbox .dynamic_l .swiper-slide .txt i{
  font-size: 0.24rem;
  margin-bottom: 0.17rem;
}

.dynamicbg .dynamic .dynamicbox .dynamic_l .swiper-slide .txt h5{
  font-size: 0.3rem;
}

.dynamicbg .dynamic .dynamicbox .dynamic_l .dynamic-pagination{
  position: absolute;
  right: 0.4rem;
  left: auto;
  bottom: 0.35rem;
  z-index: 5;
  width: auto;

}

.dynamicbg .dynamic .dynamicbox .dynamic_l .dynamic-pagination .swiper-pagination-bullet{
  margin: 0 0.08rem;
  width: 0.16rem;
  height: 0.16rem;

}

.dynamicbg .dynamic .dynamicbox .dynamic_l .dynamic-pagination .swiper-pagination-bullet-active{
  background: #fff;
}


.dynamicbg .dynamic .dynamicbox .dynamic_r{
  width: 100%;
  margin: 0.35rem auto 0 auto;
  
}



.dynamicbg .dynamic .dynamicbox .dynamic_r ul li .pic{
  height: auto;
  padding-top: 56%;
}



.dynamicbg .dynamic .dynamicbox .dynamic_r ul li .txt{

  padding: 0 0.3rem 0.2rem 0.3rem;
} 

.dynamicbg .dynamic .dynamicbox .dynamic_r ul li .txt i{

  font-size: 0.24rem;
}

.dynamicbg .dynamic .dynamicbox .dynamic_r ul li .txt h5{
  font-size: 0.28rem;
  line-height: 0.45rem;
  height: 0.9rem;

}



.dynamicbg .dynamic .dynamiclist ul li{
  width: 100%;
  margin: 0% auto 0.3rem auto;
}



.dynamicbg .dynamic .dynamiclist ul li h5{
  font-size: 0.3rem;
  line-height: 0.45rem;
  height: 0.9rem;

}

.dynamicbg .dynamic .dynamiclist ul li .time{
  font-size: 0.26rem;
  padding-left: 0.42rem;
  background: url(../images/time.png) no-repeat left center;
  background-size: 0.3rem 0.3rem;

}



/* enrollment */

.enrollmentbg{
  width: 100%;
  height: auto;
  padding-bottom: 0.6rem;

}


.enrollmentbg .enrollment .enrollment_t i{
  height: 1rem;

}

.enrollmentbg .enrollment .enrollment_t h3{
  font-size: 0.36rem;
  margin: 0.1rem auto 0.5rem auto;
}

.enrollmentbg .enrollment .enrollment_t p{
  font-size: 0.24rem;
  line-height: 0.4rem;

}

.enrollmentbg .enrollment .enrollmentbox{
  margin: 0.55rem auto 0 auto;
}


.enrollmentbg .enrollment .enrollmentbox ul li{
  margin-right: 2.2%;
  width: 31.8%;
  height: 2.18rem;
 
}



.enrollmentbg .enrollment .enrollmentbox ul li a{
  padding: 0.35rem 0.3rem 0 0.3rem;

}

.enrollmentbg .enrollment .enrollmentbox ul li h5{
  font-size: 0.3rem;
}

.enrollmentbg .enrollment .enrollmentbox ul li i{
  font-size: 0.24rem;
  padding-right: 0.4rem;
  background: url(../images/more2.png) no-repeat right center;
  background-size: 0.3rem 0.22rem;
  margin-top: 0.57rem;
}




/* system */

.systembg{
  margin: 0 auto;
  padding: 0.5rem 0 0.5rem 0;
}


.systembg .system ul li{
  margin: 0% auto 0.25rem auto;
  width: 100%;
  height: auto;
}

.systembg .system ul li a{
  padding: 0.5rem 0.3rem 0.5rem 0.3rem;

}

.systembg .system ul li img{

  width: 1rem;
  height: 1rem;

}

.systembg .system ul li h5{
  font-size: 0.32rem;
  margin: 0.4rem auto 0.23rem auto;
}

.systembg .system ul li i{
  font-size: 0.24rem;
  padding-right: 0.4rem;
  background: url(../images/more3.png) no-repeat right center;
  background-size: 0.3rem 0.22rem;

}






}