/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav {
  margin-top: 10px;
}
.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}
/* 强制显示所有尺寸的 Owl 圆点 */
.owl-carousel .owl-dots{
    display:flex !important;
    justify-content:center;
    align-items:center;
    margin:10px 0;
}
.owl-carousel .owl-dot{
    width:12px;
    height:12px;
    background:#c4c4c4;
    border-radius:50%;
    margin:0 6px;
    transition:all .3s ease;
}
.owl-carousel .owl-dot.active{
    background:#000;
    transform:scale(1.2);
}
}
/* 1. 隐藏 Owl 默认箭头 */
#home-slider .owl-nav,
.owl-carousel .owl-nav{ display:none !important; }

/* 2. 隐藏主题可能额外写的左右按钮 */
#home-slider .slider-arrow,
#home-slider .slide-arrow,
#home-slider .prev-slide,
#home-slider .next-slide,
#home-slider .slick-prev,
#home-slider .slick-next,
#home-slider [class*="arrow"],
#home-slider [class*="prev"],
#home-slider [class*="next"]{ display:none !important; }

/* 3. 隐藏伪元素箭头（有些主题用 ::before/::after 画） */
#home-slider .owl-stage-outer::before,
#home-slider .owl-stage-outer::after{ display:none !important; }
/* 把圆点放进轮播图内部 */
#home-slider{
    position: relative;          /* 让圆点相对它定位 */
}

#home-slider .owl-dots{
    position: absolute;
    bottom: 20px;                /* 距离底部 20px，可自己调 */
    left: 50%;
    transform: translateX(-50%); /* 水平居中 */
    display: flex;
    gap: 8px;                    /* 圆点间距 */
    z-index: 2;                  /* 确保在图片上方 */
}

#home-slider .owl-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e1754c;
    transition: all .3s ease;
}

#home-slider .owl-dot.active{
    background: #333333;
    transform: scale(1.2);
}
