configuration.scss 790 Bytes
.status-page {
	background: #f8f9fa;
	padding: 15rpx 15rpx;
	min-height: 100vh;
	.search-top {
		justify-content: space-between;
		flex-direction: row;
		.search-main {
			width: 700rpx;
			margin-top: -34rpx;
		}
	}
}
.status-container {
	width: 700rpx;
	height: 250rpx;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	justify-content: space-between;
	flex-direction: row;
	.status-item {
		width: 300rpx;
		height: 250rpx;
		margin: 23rpx;
		background-color: #ffffff;
		border-radius: 20px;
		flex-direction: column;
		justify-content: space-between;
		.item-image {
			margin-top: 38rpx;
			.image {
				width: 198rpx;
				height: 119rpx;
			}
		}
		.item-text {
			position: relative;
			top: -25rpx;
			.text {
				color: #333333;
				font-size: 14px;
			}
		}
	}
}