* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html,
body {
  height: 100%;
  margin: 0 auto;
  font-size: 100px;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  box-sizing: border-box;
}

/* 设置 Swiper 容器和幻灯片的高度 */
.swiper {
  width: 100%;
  height: 100vh;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
  color: #ffffff;
  /* border-bottom: 1px solid #fff; */
}

a {
  text-decoration: none;
  color: #ffffff;
}

img {
  border: none;
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
}

.pointer {
  cursor: pointer;
}

.hide {
  display: none;
}

a {
  text-decoration: none;
}

.text-center {
  text-align: center;
}

.flex{
  display: flex;
  align-items: center;
}

.flex-center {
  justify-content: center;
}

.flex-between {
  justify-content: space-between;
}

.flex-around {
  justify-content: space-around;
}

.text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* 针对Webkit浏览器，如Chrome和Safari */
::-webkit-scrollbar {
  width: 8px; /* 设置滚动条的宽度 */
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* 设置滚动条轨道的背景颜色 */
}

/* 滚动条手柄 */
::-webkit-scrollbar-thumb {
  background: #888; /* 设置滚动条手柄的背景颜色 */
  border-radius: 10px; /* 设置滚动条手柄的圆角 */
}

/* 当手柄在滚动条上滚动时添加阴影 */
::-webkit-scrollbar-thumb:hover {
  background: #555; /* 设置滚动条手柄在鼠标悬停时的背景颜色 */
}