Blame view

pages/funeralproblem/funeralproblem.scss 1.16 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
  .listBox{
  	position: relative;
  	z-index: 1;
  }
  .content {
  	width: 100%;
  }
  /* 地址列表 */
  .address-list{
  	width: 100%;
  	.list{
  		padding: 0 4%;
  		background-color: #fff;
  		border-radius: 20rpx;
  		margin: 20rpx;
  		padding: 20rpx 26rpx;
  		.name-phone{
  			display: flex;
  			align-items: center;
  			justify-content: space-between;
  			width: 100%;
  			.name{
  				display: flex;
  				align-items: center;
  				margin-bottom: 20rpx;
  				text{
  					width: 100%;
  					font-size: 30rpx;
  					font-weight: bold;
  				}
  			}
  			.edit {
  				margin-bottom: 10rpx;
  				image {
  					width: 40rpx;
  					height: 40rpx;
  				}
  			}
  		}
  		.address{
  			width: 100%;
  			display: -webkit-box;
  			-webkit-box-orient: vertical;
  			-webkit-line-clamp: 2;
  			overflow: hidden;
  			text{
  				font-size: 25rpx;
  				color: #939393;
  			}
  		}
  	}
  }
  
  /* 添加地址 */
  .add-address{
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	width: 100%;
  	height: 100rpx;
  	.btn{
  		display: flex;
  		align-items: center;
  		justify-content: center;
  		width: 94%;
  		height: 70rpx;
  		background: linear-gradient(to right,#39C079,#30A567);
  		border-radius: 70rpx;
  		text{
  			font-size: 28rpx;
  			color: #FFFFFF;
  		}
  	}
  }