/* For Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 10px; /* 滚动条的宽度 */
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* 滚动条轨道的背景颜色 */
  border-radius: 10px; /* 滚动条轨道的圆角 */
}

::-webkit-scrollbar-thumb {
  background: #888; /* 滚动条滑块的背景颜色 */
  border-radius: 10px; /* 滚动条滑块的圆角 */
}

::-webkit-scrollbar-thumb:hover {
  background: #555; /* 当鼠标悬停时，滚动条滑块的背景颜色 */
}

/* For Firefox */
* {
  scrollbar-width: thin; /* 滚动条宽度 */
  scrollbar-color: #888 #f1f1f1; /* 滚动条滑块和轨道的颜色 */
}
/* ================== */
html,
body {
  color: #101010;
  margin: 0;
  height: 100%;
  font-family: 'Poppins', sans-serif !important;
  font-weight: normal;
  font-size: 18px;
  color: #666;
}
body {
  overflow-x: hidden;
}

.imgcove1 {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

/* Pagination style */
.pagination {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.pagination ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.pagination li {
  display: inline;
}

.pagination a,
.pagination span {
  color: #333;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.pagination a:hover,
.pagination .current {
  background-color: #ae2725;
  color: white;
  border: 1px solid #ae2725;
}

* {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: #101010;
  cursor: pointer;
}
img {
  border: 0;
  transition: all 0.6s;
}
button,
input,
textarea,
div {
  outline: 0;
  transition: all 0.6s;
}
button {
  border: none;
  background: none;
  transition: all 0.6s;
}
li {
  list-style: none;
}
i {
  font-style: normal;
}
/* 修改活动状态的分页器点的颜色 */
.swiper-pagination-bullet-active {
  background-color: #ae2725 !important;
}
.swiper-button-next,
.swiper-button-prev {
  color: #ae2725 !important;
}
.container {
  max-width: 1300px;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}
