*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

body{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	overflow: hidden;
	/* 添加背景图片 */
	background-image: url('https://pic.imgdb.cn/item/6481da111ddac507cc2e65c7.jpg');
	background-position: center; /* 图片的位置，默认是center */
	background-repeat: no-repeat; /* 确保图片不重复 */
	background-size: cover; /* 图片大小会缩放以填满整个容器 */

	/* 添加背景模糊效果 */
	backdrop-filter: blur(10px); /* 您可以根据需要调整模糊的程度 */
}
.card{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.card span{
	position: absolute;
	top: 0;
	width: 250px;
	height: 250px;
	display: block;
	background: #000;
	border-radius: 50%;
	transform-origin: 125px 0;
	transform: rotate(calc(90deg * var(--i)));
	filter: blur(80px);
	opacity: 0.75;
}
.card span:nth-child(1){
	background: #01b2fe;
}
.card span:nth-child(2){
	background: #ff008c;
}
.card span:nth-child(3){
	background: #ffcd00;
}
.card span:nth-child(4){
	background: #00c456;
}
.card .glass{
	position: absolute;
	width: 370px;
	height: 300px;
	background: rgba(255,255,255,0.5);
	border-radius: 20px;
	border: 1px solid #fff;
	overflow: hidden;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}
.card .glass::before{
	content: '';
	position: absolute;
	top: 0;
	left: -50%;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.2);
	pointer-events: none;
	transform: skewX(345deg);
}
.card .glass h2{
	padding: 20px;
	font-weight: 400;
	width: 100%;
	background: rgba(255,255,255,0.2);
	color: #333;
	text-align: end;
}
.card .glass h2 i{
	font-weight: 300;
	font-size: 0.75em;
	font-style: normal;
}
@media (min-width: 460px){
.card .glass{
	width: 450px;
}
}
