Blame view

lvdao-miniapp/pages/advertisement/advertisement.scss 1.99 KB
3f535f30   杨鑫   '初始'
1
2
3
4
5
6
7
8
  .page{
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  }
  .head-search{
e3789a75   杨鑫   '最新'
9
10
11
12
13
  		display: flex;
  		align-items: center;
  		justify-content: space-between;
  		position: relative;
  		padding: 20rpx;
e5b57447   杨鑫   '分包问卷'
14
  	.u-search {
3f535f30   杨鑫   '初始'
15
  		position: relative;
3f535f30   杨鑫   '初始'
16
  	}
e5b57447   杨鑫   '分包问卷'
17
18
19
20
21
22
23
24
25
  	.u-btn {
  		border: unset;
  		border: 0px transparent;
  		height: 46rpx;
  		width: 88rpx;
  		font-size: 24rpx;
  		border-radius: 35rpx;
  	}
  }
3f535f30   杨鑫   '初始'
26
27
28
29
30
  /* 订单列表 */
  .screen-list {
  		display: flex;
  		align-items: center;
  		width: 100%;
e3789a75   杨鑫   '最新'
31
  		margin: 20rpx 0;
3f535f30   杨鑫   '初始'
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
  		.list {
  			display: flex;
  			justify-content: center;
  			align-items: center;
  			width: 33%;
  			height: 100%;
  			text {
  				font-size: 26rpx;
  				color: #555555;
  			}
  			image {
  				width: 30rpx;
  				height: 30rpx;
  				margin-left: 10rpx;
  			}
  		}
  		.action {
  			text {
  				color: $base;
  			}
  		}
  	}
  
  .goods-data{
  	width: 100%;
  	.goods-list{
  		width: 100%;
  		padding: 0 25rpx;
  		.list{
  			display: flex;
e5b57447   杨鑫   '分包问卷'
62
63
64
65
  			margin-bottom: 20rpx;
  			background-color: #fff;
  			padding: 14rpx;
  			border-radius: 14rpx;
3f535f30   杨鑫   '初始'
66
67
68
  			.thumb{
  				display: flex;
  				align-items: center;
e5b57447   杨鑫   '分包问卷'
69
  				width: 20vw;
3f535f30   杨鑫   '初始'
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
  				image{
  					width: 100%;
  					// height: 280rpx;
  				}
  			}
  			.item{
  				width: 78%;
  				margin-left: 2%;
  				.title{
  					display: flex;
  					align-items: center;
  					width: 100%;
  					text{
  						font-size: 30rpx;
  						font-weight: bold;
  						color: #222222;
  					}
  				}
  				.goods-list-text {
  					font-size: 24rpx;
  					display: flex;
  					align-items: center;
  					color: #676767;
  					margin-top: 20rpx;
  					text {
  						color: #000;
  					}
  					.goods-list-txt {
  						width: 50%;
  						padding-right: 2%;
  						 white-space: nowrap; /* 防止文本换行 */
  						  overflow: hidden; /* 隐藏溢出的文本 */
  						  text-overflow: ellipsis; /* 添加省略号 */
  					}
  				}
  				.goods-btn {
  					display:inline-block;
  					background-color: #3F9B6A;
  					border-radius: 10rpx;
  					color: #fff;
  					font-size: 26rpx;
  					padding: 10rpx 20rpx;
  					margin-top: 28rpx;
  					image {
  						width: 20rpx;
  						height: 20rpx;
  					}
  				}
  			}
  		}
  	}
  }