Blame view

pages/record/record.scss 1.51 KB
4dfe89e4   monkeyhouyi   初始化
1
2
3
4
5
6
7
  .page{
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  }
19e734d2   杨鑫   场地,登录页,隐私政策
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
  .screen-list {
  		display: flex;
  		align-items: center;
  		width: 100%;
  		margin: 20rpx 20rpx;
  		padding: 0 10rpx;
  		.zidong{
  			width: 160rpx;
  			background-color: #3F9B6A;
  		color: #fff;
  		padding: 10rpx;
  		border-radius: 30rpx;
  		font-size: 24rpx;
  		text-align: center;
  		}
  		.list {
  			display: flex;
  			justify-content: center;
  			align-items: center;
  			width: 30%;
  			height: 100%;
  			background-color: #fff;
  			padding: 10rpx 16rpx;
  			border-radius: 18rpx;
  			color: #0FBB59;
  			text {
  				font-size: 26rpx;
  			}
  			image {
  				width: 30rpx;
  				height: 30rpx;
  				margin-left: 10rpx;
  			}
  		}
  		.action {
  			text {
  				color: $base;
  			}
  		}
  	}
4dfe89e4   monkeyhouyi   初始化
48
49
  /* 记录列表 */
  .record-list{
19e734d2   杨鑫   场地,登录页,隐私政策
50
  	margin: 0 20rpx;
4dfe89e4   monkeyhouyi   初始化
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
  	.record-list-box {
  		background-color: #FFFFFF;
  		border-radius: 20rpx;
  		padding: 20rpx 30rpx;
  		margin-bottom: 20rpx;	
  	}
  	.list-btn {
  		display: inline-block;
  		width: 100%;
  		text-align: right;
  		padding-bottom: 10rpx;
  		.date-btn {
  			background-color: #3f9b6a;
  			color: #fff;
  			font-size: 28rpx;
  			font-weight: bold;
  			padding: 10rpx 20rpx;
  			border-radius: 10rpx;
  		}
  	}
  	.list{
  		display: flex;
  		align-items: center;
  		justify-content: space-between;
  		.title-date{
  			.date{
  				margin: 14rpx 0;
  				text{
  					color:#3D3D3D;
  				}
  				.org{
  					color:#CDA33A;
  				}
  				.green{
  					color:#219129;
  				}
  			}
  		}
  		.integral{
  			text{
  				font-size: 28rpx;
  				color: #3D3D3D;
  			}
  			image {
  				width: 22rpx;
  				height: 22rpx;
  			}
  		}
  	}
  }