index.scss
2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
.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;
}
.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;
					}
				}
			}
		}
	}
}