Blame view

lvdao-miniapp/pagesA/application/application.scss 1.95 KB
3f535f30   杨鑫   '初始'
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
  .page{
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  	background-color: #f6f6f6;
  }
  
  .add-list{
  	padding: 0 4%;
  	background-color: #FFFFFF;
  	border-radius: 20rpx;
  	margin-top: 20rpx;
  	width: 100%;
  	padding-bottom: 150rpx;
  	.list{
  		display: flex;
  		justify-content: space-between;
  		align-items: center;
  		width: 100%;
  		height: 100rpx;
  		border-bottom: 2rpx solid #f6f6f6;
  		.title{
  			display: flex;
  			align-items: center;
  			height: 100%;
  			text{
  				font-size: 26rpx;
  				color: #222222;
  			}
  			.star{
  				color: red;
  			}
  		}
  		.content{
  			display: flex;
  			align-items: center;
  			text-align: right;
  			input{
  				width: 100%;
  				color: #222222;
  				font-size: 26rpx;
  				padding-top: 6rpx;
  				/* #ifdef MP */
  				padding-top: 5rpx;
  				/* #endif */
  			}
  			image {
  				width: 20rpx;
  				height: 20rpx;
  				margin-left: 10rpx;
  				/* #ifdef MP */
  				margin-top: 5rpx;
  				/* #endif */
  			}
  		}
  	}
  }
  
  /* 保存按钮 */
  .page-footer{
  	position: fixed;
  	left: 0;
  	bottom: 0;
  	display: flex;
  	width: 100%;
40a0b33d   杨鑫   '最新'
68
69
  	height: 150rpx;
  	justify-content:space-evenly;	
3f535f30   杨鑫   '初始'
70
71
72
73
74
75
76
  	background-color: #FFFFFF;
  	padding-bottom: constant(safe-area-inset-bottom);
  	padding-bottom: env(safe-area-inset-bottom);
  	.footer-buy{
  		display: flex;
  		align-items: center;
  		justify-content: space-between;
40a0b33d   杨鑫   '最新'
77
  		width: 90%;
3f535f30   杨鑫   '初始'
78
  		height: 100%;
40a0b33d   杨鑫   '最新'
79
  		
3f535f30   杨鑫   '初始'
80
81
82
83
84
  		.cart-add{
  			display: flex;
  			align-items: center;
  			justify-content: center;
  			width: 100%;
40a0b33d   杨鑫   '最新'
85
  			height: 60%;
3f535f30   杨鑫   '初始'
86
  			background-color: #3f9b6a;
40a0b33d   杨鑫   '最新'
87
  			border-radius: 12px;
3f535f30   杨鑫   '初始'
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
124
125
  			text{
  				font-size: 28rpx;
  				color: #FFFFFF;
  			}
  		}
  	}
  }
  
  .feedback-data{
  	width: 100%;
  	padding-bottom: 20rpx;
  	border-bottom: 2rpx solid #f6f6f6;
  	.title{
  		display: flex;
  		align-items: center;
  		height: 100rpx;
  		text{
  			font-size: 26rpx;
  			color: #222222;
  		}
  		.star{
  			color: red;
  		}
  	}
  	.voucher-img{
  		display: flex;
  		align-items: center;
  		.voucher-list {
  			width: 33%;
  			height: 100%;
  			image{
  				width: 160rpx;
  				height: 160rpx;
  				border-radius: 10rpx;
  			}
  		}
  	}
  }