Blame view

pages/accepting/accepting.scss 1.67 KB
4dfe89e4   monkeyhouyi   初始化
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
  .page{
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  }
  /* 记录列表 */
  .record-list{
  	margin-top: 20rpx;
  	.record-list-box {
  		padding: 30rpx;
  		background-color: #FFFFFF;
  		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;
  		.thumb{
  			display: flex;
  			width: 36%;
  			image{
  				width: 230rpx;
  				height: 200rpx;
  				border-radius: 10rpx;
  			}
  		}
  		.title-date{
  			.date{
  				margin: 14rpx 0;
  				text{
  					color:#3D3D3D;
  				}
  				
  			}
  		}
  		.integral{
  			text{
  				font-size: 28rpx;
  				color: #3D3D3D;
  			}
  			image {
  				width: 22rpx;
  				height: 22rpx;
  			}
  		}
  	}
  }
  .msglist{
  	padding:40rpx 30rpx;
  	background-color: #Fff;
  	position: relative;
  	.msg_title{
  		display: flex;
  		width: 100%;
  		margin-bottom: 30rpx;
  	}
  	view{
  		width: 30%;
  	}
  	.msg_body{
  		margin-left: 30rpx;
  		width: 70%;
  	}
  	.imgGroup{
  		display: flex;
  		 image{
  			width: 200rpx;
  			height: 160rpx;
  			margin-right: 30rpx;
  		 }
  	}
  	.state{
  		position: absolute;
  		right: -100rpx;
  		top: 28rpx;
  		font-weight: 600;
  		font-size: 32rpx;
  	}
  	.org{
  		color:#CDA33A;
  	}
  	.green{
  		color:#219129;
  	}
  }
  .footbtn{
  	position: absolute;
  	bottom: 0;
  	left: 0;
  	z-index: 10;
  	width: 100%;
  	.zhifu{
  		display: flex;
  		justify-content: space-between;
  		padding: 40rpx;
  		background-color: #fff;
  	}
  	.zhifuBtn{
  		padding: 20rpx 0;
  		background-color:#3F9B6A;
  		color: #fff;
  		text-align: center;
  	}
  }