﻿@keyframes rotateright {
    0% {
      transform: rotate(0deg);
    }
    50%,100% {
      transform: rotate(180deg);
    }
  }
  @keyframes rotateleft {
    0%,50% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(180deg);
    }
  }
/* banner圆圈 */
  .move-round {
    display: none;
    position: relative;
    width: 0.8rem;
    height:0.4rem;
  }
  .swiper-pagination-yuan {
    font-size:0.16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width:0.4rem;
    height:0.4rem;
    border: 0.01rem solid #fff;
    border-radius: 50%;
  }

  .rigth_round {
    width:0.4rem;
    height:0.4rem;
    overflow: hidden;
    position: relative;
  }
  .left_round {
    width:0.4rem;
    height:0.4rem;
    overflow: hidden;
    position: relative;
  }
  .rotate_box {
    width:0.4rem;
    height:0.4rem;
    position: absolute;
    box-shadow: 0 0 0 0.03rem #fff inset;
    border-radius: 50%;
    top: 0;
  }
  .left_rotate {
    left: 0.2rem;
    clip: rect(0, auto, auto, 0.2rem);
    animation: rotateleft 6s linear normal;
    animation-fill-mode: forwards;
  }
  .right_rotate {
    left: -0.2rem;
    clip: rect(0, 0.2rem, auto, 0);
    animation: rotateright 6s linear normal;
    animation-fill-mode: forwards;
  }


  /* 最新动态圆圈旋转 */
  .move-round2 {
    display: none;
    position: relative;
    width: 0.8rem;
    height:0.4rem;
  }
  .swiper2-pagination-yuan {
    font-size:0.16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width:0.4rem;
    height:0.4rem;
    border: 0.01rem solid #fff;
    border-radius: 50%;
  }

  .rigth_round2 {
    width:0.4rem;
    height:0.4rem;
    overflow: hidden;
    position: relative;
  }
  .left_round2 {
    width:0.4rem;
    height:0.4rem;
    overflow: hidden;
    position: relative;
  }
  .rotate_box2 {
    width:0.4rem;
    height:0.4rem;
    position: absolute;
    box-shadow: 0 0 0 0.03rem #fff inset;
    border-radius: 50%;
    top: 0;
  }
  .left_rotate2 {
    left: 0.2rem;
    clip: rect(0, auto, auto, 0.2rem);
    animation: rotateleft 5s linear normal;
    animation-fill-mode: forwards;
  }
  .right_rotate2 {
    left: -0.2rem;
    clip: rect(0, 0.2rem, auto, 0);
    animation: rotateright 5s linear normal;
    animation-fill-mode: forwards;
  }

    /* 校史今日圆圈旋转 */
    .move-round3 {
      display: none;
      position: relative;
      width: 1rem;
      height:0.5rem;
    }
    .swiper3-pagination-yuan {
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      width:0.5rem;
      height:0.5rem;
      border: 0.01rem solid var(--zt_color--);
      border-radius: 50%;
    }
    .swiper3-pagination-yuan>img {
      height: 0.25rem;
    }
  
    .rigth_round3 {
      width:0.5rem;
      height:0.5rem;
      overflow: hidden;
      position: relative;
    }
    .left_round3 {
      width:0.5rem;
      height:0.5rem;
      overflow: hidden;
      position: relative;
    }
    .rotate_box3 {
      width:0.5rem;
      height:0.5rem;
      position: absolute;
      box-shadow: 0 0 0 0.03rem var(--zt_color--) inset;
      border-radius: 50%;
      top: 0;
    }
    .left_rotate3 {
      left: 0.25rem;
      clip: rect(0, auto, auto, 0.25rem);
      animation: rotateleft 5s linear normal;
      animation-fill-mode: forwards;
    }
    .right_rotate3 {
      left: -0.25rem;
      clip: rect(0, 0.25rem, auto, 0);
      animation: rotateright 5s linear normal;
      animation-fill-mode: forwards;
    }


  @keyframes zhuanquan {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }