index.scss 3.27 KB
.index-page {
	padding: 27rpx 15rpx;
	min-height: 100vh;
	background-color: #f8f9fa;
	overflow-x: hidden;
	overflow-y: hidden;
}
.grid-container {
	display: grid;
	width: 750rpx;
	height: 400rpx;
	grid-template-columns: repeat(2, 339rpx);
	grid-template-rows: repeat(2, 200rpx);
	grid-gap: 20rpx;
	margin-top: 50rpx;
	margin-left: 10rpx;
	margin-bottom: 40rpx;
}

.grid-item {
	background-color: #fff;
	border: 0.01rpx solid #fff;
	padding: 40rpx;
	border-radius: 10px;
	.item-center {
		width: 290rpx;
		height: 150rpx;
		margin: -15rpx;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		.center {
			width: 130rpx;
			height: 150rpx;
			.image {
				width: 100rpx;
				height: 100rpx;
				margin-top: 20rpx;
				border-radius: 32rpx;
			}
		}
		.center-text {
			position: relative;
			left: -34rpx;
			text-align: left;
			width: 140rpx;
			font-size: 13px;
			height: 100rpx;
			display: flex;
			align-items: center;
			top: -6rpx;
			.text {
				font-size: 13px;
				color: #333333;
				text-align: center;
			}
		}
	}
}
.basic-statistics {
	padding: 0 10rpx;
	.basic-text {
		.text {
			font-size: 15px;
			color: #333333;
		}
	}
	.basic {
		width: 750rpx;
		height: 500rpx;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-direction: column;
		margin-top: 25rpx;
		.basic-item {
			width: 700rpx;
			height: 240rpx;
			background-color: #fff;
			display: flex;
			justify-content: space-between;
			align-items: flex-start;
			flex-direction: column;
			border-radius: 10px;
			.item-child-top {
				// justify-content: space-between;
				padding: 30rpx;
				.item-image {
					width: 50rpx;
					height: 50rpx;
				}
				.item-text {
					color: #333333;
					font-size: 14px;
					margin-left: 10rpx;
				}
			}
			.item-child-bottom {
				justify-content: space-between;
				align-items: center;
				.sigle-child {
					width: 223rpx;
					height: 150rpx;
					justify-content: space-between;
					flex-direction: column;
					.sigle-text {
						height: 70rpx;
						font-size: 14px;
						color: #333333;
						font-weight: 500;
					}
					.sigle-value {
						position: relative;
						top: -40rpx;
						height: 60rpx;
						font-size: 12px;
						color: #999999;
					}
				}
			}
		}
	}
	.menu{
		.menu-item{
			width: 700rpx;
			background-color: #fff;
			display: flex;
			justify-content: space-between;
			align-items: flex-start;
			flex-direction: column;
			border-radius: 10px;
			margin-top: 20rpx;
			padding:30rpx;
			.menu-item-top{
				// padding: 30rpx;
				display: flex;
				padding-bottom: 30rpx;
				.item-image {
					width: 50rpx;
					height: 50rpx;
				}
				.item-text {
					color: #333333;
					font-size: 14px;
					margin-left: 10rpx;
				}
			}
			.menu-item-bottom{
				width: 100%;
				flex-wrap: wrap;
				.menu-item-child:last-child{
					// margin-right: 0;
				}
				.menu-item-child{
					display: flex;
					justify-content: center;
					align-items: center;
					flex-direction: column;
					// margin-right: 5%;
					height: 120rpx;
					.menu-child-icon{
						.image{
							width: 92rpx;
							height: 92rpx;
						}
					}
					.menu-child-text{
						margin-top: 12rpx;
						.text{
							color: #333333;
							font-size: 14px;
							margin-left: 10rpx;
						}
					}
						
				}
			}	
		}

	}
}