|
|
@@ -5,7 +5,12 @@
|
|
|
<input type="text" placeholder="请输入关键词搜索" />
|
|
|
</view>
|
|
|
<div class="companys">
|
|
|
- <div class="company" v-for="(company, index) in companyList" :key="index" @tap="toDetail(index)">
|
|
|
+ <div
|
|
|
+ class="company"
|
|
|
+ v-for="(company, index) in companyList"
|
|
|
+ :key="index"
|
|
|
+ @tap="toDetail(index)"
|
|
|
+ >
|
|
|
<div class="title">
|
|
|
<div class="logo">
|
|
|
<img :src="company.logo" alt="" />
|
|
|
@@ -110,8 +115,13 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ .line {
|
|
|
+ width: 3rpx;
|
|
|
+ height: 70rpx;
|
|
|
+ background: rgb(175, 186, 197);
|
|
|
+ }
|
|
|
.info {
|
|
|
- font-size: 25rpx;
|
|
|
+ font-size: 19rpx;
|
|
|
font-weight: 100;
|
|
|
display: flex;
|
|
|
text-align: center;
|
|
|
@@ -119,11 +129,6 @@ export default {
|
|
|
align-items: center;
|
|
|
padding: 0 2%;
|
|
|
margin-top: 2%;
|
|
|
- .line {
|
|
|
- width: 2rpx;
|
|
|
- height: 70rpx;
|
|
|
- background: rgb(175, 186, 197);
|
|
|
- }
|
|
|
.div {
|
|
|
margin-top: 2%;
|
|
|
.name {
|
|
|
@@ -131,6 +136,7 @@ export default {
|
|
|
}
|
|
|
.info_t {
|
|
|
margin-bottom: 10rpx;
|
|
|
+ font-size: 25rpx;
|
|
|
}
|
|
|
}
|
|
|
}
|