/* 懒人图库 搜集整理 www.lanrentuku.com */

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;}

.rslides li {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  display: none;
  width: 100%;}

.rslides li:first-child {
  position: relative;
  display: block;}

.rslides img {
  height: 100%;
  display: block;
  width: 100%;
  border: 0;
  object-fit: cover; /* 保持图片比例并填充容器 */
  transform: scale(1.1); /* 初始放大状态 */
  transition: transform 8s ease-out;}
.rslides video {
  height: 100%;
  display: block;
  width: 100%;
  border: 0;
  object-fit: cover;}

/* 缩放动画类 */
.zoom-in {
  transform: scale(1.1) !important;}

.zoom-out {
  transform: scale(1) !important;}
.slide_container {
  position: relative;
  float: left;
  width: 100%;
  overflow: hidden; /* 隐藏溢出内容 */
  height: 100vh;}

.slide {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;}

.slide li {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;}
  
 .slide img {
  display: block;
  position: relative;
  z-index: 1;
  height: auto;
  width: 100%;
  border: 0;}

.slide .caption {
  display: block;
  position: absolute;
  z-index: 2;
  font-size: 20px;
  text-shadow: none;
  color: #fff;
  background: #000;
  background: rgba(0,0,0, .8);
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 20px;
  margin: 0;
  max-width: none;}
.prev{
    left: 20px!important;}
.prev,.next{background: #0000007d url(../images/left_bg0726.png) no-repeat center;
  border-radius: 50%;}
  
 .slide_nav {
  position: absolute;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  top: 52%;
  left: 0;
  opacity: 0.7;
  z-index: 3;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  height: 61px;
  width: 61px;
  margin-top: -45px;
  background: #0000007d url(../images/left_bg0726.png) no-repeat center;
  border-radius: 50%;}

.slide_nav:active {
  opacity: 1.0;}

.slide_nav.next {
  left: auto;
  /* background-position: right top; */
  right: 20px;
  transform: rotateY(180deg);}

/* 小圆点导航样式 */
.slide_dots {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;}

.slide_dots .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);}

.slide_dots .dot:hover {
  background-color: #0069b7;
  transform: scale(1.1);}

.slide_dots .dot.active {
  background-color: #0069b7;
  border-color: #0069b7;
  transform: scale(1.2);}