Blame view

pages/myreservation/myreservation.scss 2.55 KB
1f3f2378   起风了   我的第一次
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
  .listBox{
  	position: relative;
  	z-index: 1;
  }
  .content {
  	width: 100%;
  }
  /* 订单tab */
  .order-tab{
  	position: fixed;
  	left: 0;
  	top: 88rpx;
  	/* #ifdef MP-WEIXIN */
  	top: calc(100rpx + var(--status-bar-height));
  	/* #endif */
  	z-index: 10;
  	display: flex;
  	align-items: center;
  	width: 100%;
  	height: 100rpx;
  	background-color: #FFFFFF;
  	.tab{
  		position: relative;
  		display: flex;
  		align-items: center;
  		justify-content: center;
  		width: 25%;
  		height: 80%;
  		text{
  			font-size: 26rpx;
  			color: #7C7C7C;
  		}
  	}
  	.action{
  		text{
  			color: #222222;
  		}
  		.line{
  			position: absolute;
  			left: 50%;
  			bottom: -10rpx;
  			width: 40rpx;
  			height: 9rpx;
  			background-color: #667FFF;
  			transform: translate(-50%,0);
  			border-radius: 10rpx 10rpx 0 0;
  		}
  	}
  }
  
  /* 订单列表 */
  .order-list{
  	width: 100%;
  	padding-bottom: 10rpx;
  	margin-top: 120rpx;
  	.list{
  		padding: 0 4%;
  		min-height: 400rpx;
  		background-color: #FFFFFF;
  		border-radius: 20rpx;
  		margin: 25rpx;
  		.title-status{
  			display: flex;
  			align-items: center;
  			justify-content: space-between;
  			width: 100%;
  			height: 100rpx;
  			.title{
  				display: flex;
  				align-items: center;
  				text{
  					font-size: 26rpx;
  					color: #A7A7A7;
  				}
  				image {
  					width: 18rpx;
  					height: 18rpx;
  					margin-left: 10rpx;
  				}
  			}
  			.status{
  				display: flex;
  				align-items: center;
  				text{
  					font-size: 26rpx;
  					color: #EE8952;
  				}
  			}
  		}
  		.goods-list{
  			width: 100%;
  			border-top: 2rpx dashed #F1F1F1;
  			border-bottom: 2rpx dashed #F1F1F1;
  			.goods{
  				display: flex;
  				align-items: center;
  				width: 100%;
  				height: 180rpx;
  				.item{
  					display: flex;
  					align-items: center;
  					width: 100%;
  					.goods-name{
  						width: 100%;
  						font-size: 26rpx;
  						color: #A7A7A7;
  						.goods-name-title {
  							font-size: 30rpx;
  							color: #3d3d3d;
  							font-weight: bold;
  							margin-bottom: 40rpx;
  						}
  					}
  				}
  			}
  		}
  		.status-btn{
  			display: flex;
  			align-items: center;
  			justify-content: space-between;
  			width: 100%;
  			height: 100rpx;
  			font-size: 28rpx;
  			font-weight: bold;
  			.red {
  				color: #FA5D52;
  			}
  			.big {
  				font-size: 36rpx;
  			}
  			.btn{
  				width: 200rpx;
  				height: 58rpx;
  				position: relative;
  				text{
  					font-size: 28rpx;
  					color: #fff;
  					position: absolute;
  					width: 200rpx;
  					line-height: 58rpx;
  					text-align: center;
  					z-index: 1;
  				}
  				image {
  					width: 200rpx;
  					height: 58rpx;
  					position: absolute;
  					z-index: 0;
  					box-shadow: 5rpx 10rpx 20rpx 0 #b7c8ff;
  					border-radius: 100rpx;
  				}
  			}
  		}
  	}
  }