WebOrder.css
999 Bytes
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
.all_box {
justify-content: center;
}
.titles {
color: #333333;
background-color: #C0C0C0;
font-size: 35upx;
line-height: 80upx;
height: 80upx;
text-align: center;
margin-bottom: 35upx;
}
.title_box {
margin: 15upx 70upx;
display: flex;
font-size: 30upx;
border-bottom: #C0C0C0 solid 1upx;
}
.title_box text {
padding: 5upx 35upx 15upx 5upx;
}
.storage_title{
width: 26%;
padding: 5upx 0upx 15upx 5upx;
}
.storage_box {
padding: 5upx 0upx 15upx 0upx;
width: 66%;
max-height: 35upx;
overflow: hidden;
word-break: break-all;
/* break-all(允许在单词内换行。) */
text-overflow: ellipsis;
/* 超出部分省略号 */
display: -webkit-box;
/** 对象作为伸缩盒子模型显示 **/
-webkit-box-orient: vertical;
/** 设置或检索伸缩盒对象的子元素的排列方式 **/
-webkit-line-clamp: 1;
/** 显示的行数 **/
}
.title_button {
margin: 50upx 100upx;
}
.title_button button {
background-color: #FF0000;
color: #FFFFFF;
font-size: 26upx;
}