long-press-segment.css 993 Bytes
.long-press-segment {
	width: 16vw;
	height: 3vw;
	display: flex;
	position: relative;
	background: #e0e0e0;
	border-radius: 0.6vw;
	margin: 0;
	overflow: hidden;
	border: 0.12vw solid #3f3e3e;
	box-shadow: 0.2vw 0.2vw 0.2vw #333, 0.3vw 0.3vw 1vw rgba(0, 0, 0, 0.3);
}

.long-press-segment__item {
	flex: 1;
	padding: 0.5vw 0;
	cursor: pointer;
	font-size: 0.9vw;
	color: #333;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	user-select: none;
}

.long-press-segment__item.active {
	color: black;
}

.long-press-segment__slider {
	width: 6.6vw;
	height: 2.2vw;
	position: absolute;
	top: 0.3vw;
	border-radius: 0.4vw;
	z-index: 1;
	box-shadow: 0 0.1vw 0.3vw rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.long-press-segment__slider-position-1 {
	left: 0.4vw;
	width: 7.1vw;
	background: #ffd700 !important;
}

.long-press-segment__slider-position-2 {
	left: 8.1vw;
	width: 7.4vw;
	background: #32b92b !important;
}