/* md */
/* 最小屏幕 */

@media (min-width: 375px) and (max-width: 639px) {
  #cdp .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 88%;
  }
  /* 基础样式：矩形按钮 */
  #ourCostomers .swiper-pagination-bullet {
    width: 40px;
    height: 8px;
    background-color: #A7C1EC;
    position: relative;
    border-radius: 0;
    margin: 0 4px; /* 分隔按钮 */
  }

  #ourCostomers .swiper-pagination-bullet:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: 83%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 9px 9px ; /* 控制三角形的大小 */
    border-color:  transparent transparent white transparent; /* 左上角的直角三角形 */
    /* 不要使用 transform */
  }



  #ourCostomers .swiper-pagination-bullet:last-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 9px 0 0; /* 控制三角形的大小 */
    border-color:  white transparent transparent transparent; 
  }
}

/* 小屏幕（sm） */
@media (min-width: 640px) and (max-width: 767px) {
  #cdp .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 90%;
  }
  #ourCostomers .swiper-pagination-bullet {
    width: 40px;
    height: 8px;
    background-color: #A7C1EC;
    position: relative;
    border-radius: 0;
    margin: 0 4px; /* 分隔按钮 */
  }

  #ourCostomers .swiper-pagination-bullet:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: 83%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 9px 9px ; /* 控制三角形的大小 */
    border-color:  transparent transparent white transparent; /* 左上角的直角三角形 */
    /* 不要使用 transform */
  }



  #ourCostomers .swiper-pagination-bullet:last-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 9px 0 0; /* 控制三角形的大小 */
    border-color: white transparent transparent transparent; 
  }
}

/* 中屏幕（md） */
@media (min-width: 768px) and (max-width: 1023px) {
  #cdp .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 88%;
  }
}

/* 大屏幕（lg） */
 @media (min-width: 1024px) {
  #cdp .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 90%;
  }
  /* 基础样式：矩形按钮 */
#ourCostomers .swiper-pagination-bullet {
  width: 70px;
  height: 12px;
  background-color: #A7C1EC;
  position: relative;
  border-radius: 0;
  margin: 0 4px; /* 分隔按钮 */
}


#ourCostomers .swiper-pagination-bullet:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  left: 83%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 13px 13px ; /* 控制三角形的大小 */
  border-color:  transparent transparent white transparent; /* 左上角的直角三角形 */
  /* 不要使用 transform */
}


#ourCostomers .swiper-pagination-bullet:last-child::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 13px 0 0; /* 控制三角形的大小 */
  border-color: white transparent transparent transparent; 
}

  
} 
 
#wechat{
  position: fixed;
    display: flex;
    width: 150px;
    height: 206px;
    bottom: 12vh;
    left: 20px;
    margin: auto;
    align-items: center;
    border: 3px solid transparent;
    background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)), linear-gradient(321.64deg, rgb(93, 237, 228) 17.3%, rgb(28, 159, 255) 60.35%);
    border-radius: 20px;
    background-origin: border-box;
    background-clip: content-box, border-box;
    flex-direction: column;
    font-size: 16px;
    font-weight: 600;
    box-shadow: rgb(28 159 255 / 10%) 0px 0px 15px;
    z-index: 1000000000;
    overflow: hidden;
} 
  
/* //滚动条 */
/* 针对 Webkit 浏览器（Chrome, Safari, Edge 等） */
::-webkit-scrollbar {
  width: 8px; /* 滚动条的宽度 */
  height: 8px; /* 水平滚动条的高度 */
}

::-webkit-scrollbar-thumb {
  background-color: #888; /* 滚动条的颜色 */
  border-radius: 10px; /* 滚动条的圆角 */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* 鼠标悬停时滚动条颜色 */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* 滚动条背景色 */
  border-radius: 10px; /* 滚动条背景的圆角 */
}

::-webkit-scrollbar-track:hover {
  background: #ddd; /* 鼠标悬停时滚动条背景颜色 */
}
 







  