直播记录/styles.css

Selfice留言 | 贡献2024年12月2日 (一) 19:32的版本
/* 父容器样式 */
.base_block {
	border: 2px outset #9147ff;
	background-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 2px 5px #aaa;
	display: flex;
	justify-content: space-around; /* 确保子元素均匀分布 */
	flex-wrap: wrap; /* 允许子元素换行 */
	padding: 15px;
	gap: 10px; /* 子元素之间的间距 */
}
/* 子元素样式 */
.item {
	flex: 1 1 20%; /* 每行最多 4 个子元素 */
	max-width: 360px; /* 最大宽度 */
	min-width: 200px; /* 最小宽度 */
	height: 124px;
	padding: 0;
	display: flex;
	box-shadow: 0 2px 5px #aaa;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	position: relative;
	margin: 3px;
}
.item1{
	background-color: rgba(145, 71, 255, 0.8);
}
.item2{
	background-color: rgba(255, 50, 80, 0.8);
}
.item3{
	background-color: rgba(50, 100, 255, 0.8);
}
.item4{
	background-color: rgba(255, 220, 50, 0.8);
}
.item5{
	background-color: rgba(50, 255, 150, 0.8);
}
.item6{
	background-color: rgba(50, 230, 255, 0.8);
}
.item7{
	background-color: rgba(120, 120, 120, 0.8);
}
.item > a{
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: right;
	align-items: flex-end;
	font-size: 42px;
	color: #ffffff;
	transition: all 0.3s ease-in-out;
	padding-right:0;
	text-decoration: none;
}
.item:hover > a{
	padding-right:26px;
	text-decoration: none;
}
a > .long{
	max-width:90%;
	font-size: 24px;
}
.item:hover{
	background-color: rgba(0, 0, 0, 0.6);
}
.item > .img{
	position: absolute;
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
	transition: all 1.3s ease-in-out;
}
.item:hover > .img{
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

@media screen and (max-width: 1770px) {
	.base_block {
		padding-left:15px;
		padding-right:15px;
	}
	.item7{
		max-width: 100%;
	}
}
@media screen and (min-width: 1770px) {
	.base_block {
		padding-left:250px;
		padding-right:250px;
	}
	.item7{
		max-width: 40%;
	}
}