/* ****************************** Swiper 涉及样式 ****************************** */

  
/*—————— 校友园地 的左右按钮设置 ——————*/
.xyydNext,.xyydPrev{
    color: #ccc;
    transition: 0.5s;
}
.xyydNext:hover,.xyydPrev:hover{
    color: #333;
}

/*—————— 大图背景，图片无效时显示 ——————*/
.picFullSwiper .swiper-slide {
    background-image: url("../v2023image/swiperBg01.jpg");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 100% 100%;
}


/*—————— 左右按钮 设置——————*/
.picFullRight, .picFullLeft {
    /*显示的位置：1/2*/
    top: auto;
    left: auto;
    right: auto;
    
    /*设置 左右 按钮 的大小*/
    width: 1.5rem;
    height: 1.5rem;
    
    /*border-radius: 50%;*/
    
    /*按钮背景色*/
    background-color: blue;
    /*按钮背景图片*/
    background: url("../v2023image/arrow04.png") no-repeat;
    background-position: center center;
    background-size: 0.7rem 0.32rem;
    
    /*鼠标没有指向时的透明度*/
    transition: 0.5s;
    opacity: 0.4;
    /*置于高层次的位置*/
    z-index: 99;
}
/*显示的位置：2/2，左*/
.picFullLeft {
    left: 3rem;
    bottom: -0.4rem;
    transform: rotateX(180deg) rotateY(180deg);
/*    transform: rotateZ(180deg);*/
}
/*显示的位置：2/2，右*/
.picFullRight {
    right: 3rem;
    bottom: -0.1rem;
}
/*左右按钮 使用的具体符号*/
.picFullRight::after, .picFullLeft::after {
    /*默认是 小于、大于 符号：设置为 空 ，此时使用背景图片作为左右按钮*/
    content: '';
}
/*鼠标指向时 左右按钮 的变化*/
.picFullRight:hover, .picFullLeft:hover {
    /*指向不透明*/
    opacity: 1;
}





/*—————— 分页器 的 小圆点 设置 ——————*/

/*小圆点，位置设置*/
.topNewPagination {
    /*text-align: left;*/
    /*padding-left: 10%;*/
    
    /*position: relative;*/
    top: 8.9rem;
    
    z-index: 9999;
    
    /*left: 1rem;*/
    
}

/*非当前 小圆点*/
.topNewPagination .swiper-pagination-bullet {
    /* 圆角设置：50% = 正圆，此为默认值 */
    border-radius: 50%;

    /*内部背景颜色*/
    background-color: white;
    border: 3px solid white;
    
    /*透明度*/
    opacity: 1;
    
    /*大小*/
    width: 15px;
    height: 15px;

    /*圆点间隔*/
    margin-left: 0.2rem !important;

}
/*当前 小圆点*/
.topNewPagination .swiper-pagination-bullet-active {
    background-color: transparent;
    border: 3px solid white;
}

.topNewPagination .swiper-pagination-bullet:first-child {
    /*border-radius: 0.08rem 0 0 0.08rem;*/
}
.topNewPagination .swiper-pagination-bullet:last-child {
   /* border-radius: 0 0.08rem 0.08rem 0;*/
}







/*
    .swiper-pagination-bullet {
      width: 20px;
      height: 20px;
      text-align: center;
      line-height: 20px;
      font-size: 12px;
      color: #000;
      opacity: 1;
      background: rgba(0, 0, 0, 0.2);
    }

    .swiper-pagination-bullet-active {
      color: #fff;
      background: #007aff;
    }*/
