<style>
:root {
--swiper-scrollbar-color: #eee;
--swiper-slide-border-color : #eee;
--swiper-slide-background-color: white;
--swiper-slide-border-width: 5px;
--swiper-slide-border-radius: 0.2em;
}
.swiper {
height: 100%;
}
.swiper .swiper-wrapper {
height: 100%;
}
.swiper .swiper-scrollbar {
background-color: var(--swiper-scrollbar-color);
}
.swiper .swiper-slide {
box-sizing: border-box;
border: var(--swiper-slide-border-width) solid var(--swiper-slide-border-color);
border-radius: var(--swiper-slide-border-radius);
background: var(--swiper-slide-background-color);
display: flex;
justify-content: center;
align-items: center;
}
.swiper.swiper-horizontal .swiper-slide {
height: calc(100% - 3px);
}
.swiper.swiper-vertical .swiper-slide {
width: calc(100% - 3px);
}
.swiper .swiper-scrollbar-drag {
background-color: var(--swiper-theme-color);
}
.swiper .swiper-button-next ,
.swiper .swiper-button-next {
}
.swiper .swiper-pagination {
font-size: 1.2em;
background-color: rgba(255,255,255,0.4);
border-radius: var(--swiper-slide-border-radius);
color: rgba(0,0,0,0.4);
left: calc(50% - 4em);
width: 8em;
}
.swiper .swiper-pagination:hover {
background-color: rgba(255,255,255,1);
color: rgba(0,0,0,1);
left: calc(50% - 4em);
width: 8em;
}
</style>