﻿@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;
  }

 


  @keyframes zhuanquan {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }