configuration.scss
887 Bytes
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
.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;
		}
	}
	.configuation-container {
		.configuation-item {
			width: 750rpx;
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;
			margin: 58rpx 0rpx 0rpx 6rpx;
			.item {
				width: 330rpx;
				height: 288rpx;
				background-color: #fff;
				border-radius: 10px;
				display: flex;
				align-items: center;
				justify-content: center;
				flex-direction: column;
				margin: 0rpx 43rpx 35rpx 0rpx;
				.image {
					width: 200rpx;
					height: 144rpx;
				}
				.name {
					font-size: 14px;
					font-family: PingFangSC-Regular, PingFang SC;
					font-weight: 400;
					color: #333333;
					line-height: 20px;
					margin-top: 29rpx;
				}
			}
		}
	}
}