company.wxss
1.8 KB
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
/* pages/matrix/company/company.wxss */
page{
background-color: #f7f7f7;
}
.main_container{
width: 688rpx;
margin: 32rpx auto 0;
background-color: #FFF;
}
.banner_top{
height: 236rpx;
}
.banner_top image{
width: 100%
}
.compony_info{
padding: 0 30rpx;
margin: 20rpx 0;
}
.compony_title{
display: flex;
justify-content: space-between;
}
.compony_left{
color: #333;
font-size: 30rpx;
font-weight: bold;
}
.focus_button{
width: 128rpx;
height: 48rpx;
border:2rpx solid rgba(22, 155, 213, 1);
opacity:1;
border-radius: 8rpx;
color: #169BD6;
font-size: 26rpx;
display: flex;
align-items: center;
justify-content: center;
}
.detailInfo_items{
margin-top: 20rpx;
padding-bottom: 28rpx;
border-bottom: 2rpx solid #f5f5f5;
}
.detailInfo_item{
font-size: 26rpx;
display: flex;
display: -webkit-flex;
margin-bottom: 20rpx;
color: #666;
align-items: center;
}
.detail_icon{
height: 48rpx;
width: 48rpx;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20rpx;
}
.detail_icon image{
height: 100%;
}
.detailInfo_desc{
color: #999;
font-size: 26rpx;
line-height: 38rpx;
margin-top: 30rpx;
}
.company_desc{
display: -webkit-box;
word-break: break-all;
text-overflow: ellipsis;
overflow: hidden;
-webkit-box-orient: vertical;
-webkit-line-clamp:3;
margin-top: 16rpx;
transition: 1s;
}
.company_desc.openContent{
overflow: auto;
-webkit-line-clamp: unset;
}
.open{
height: 96rpx;
display: flex;
align-items: center;
justify-content: center;
}
.tuijian_content{
height: 174rpx;
display: flex;
align-items: flex-start;
flex-flow: column;
justify-content: center;
color: #169BD5;
font-size: 26rpx;
border-top: 2rpx solid #F5F5F5;
}