Commit 7420fb89 authored by lixy's avatar lixy

cc

parent 80972b4d
...@@ -146,11 +146,24 @@ h2{ ...@@ -146,11 +146,24 @@ h2{
.new-item:hover, .activity-item:hover, .content-new:hover, .vehicle-item:hover, .item-c:hover{ .new-item:hover, .activity-item:hover, .content-new:hover, .vehicle-item:hover, .item-c:hover{
box-shadow: 0 0 5px #ccc; box-shadow: 0 0 5px #ccc;
} }
.gallery-thumbs-box img{
cursor: pointer;
}
.total-div{ .total-div{
margin: 20px 0; margin: 20px 0;
background: #fff; background: #fff;
padding: 10px; padding: 10px;
} }
.vehicle-desc{
height: 100px;
color: #666;
font-size: 14px;
}
.vehicle-item .config{
margin-right: 20px;
color: #666;
font-size: 12px;
}
.buttonDetails:hover{ .buttonDetails:hover{
background: #1D9D87 !important; background: #1D9D87 !important;
} }
......
...@@ -25,7 +25,11 @@ ...@@ -25,7 +25,11 @@
<img :src="item.coverPic" alt="房车租赁" style="width:30%;height:100%;" /> <img :src="item.coverPic" alt="房车租赁" style="width:30%;height:100%;" />
<div style="margin-left: 20px;width: 50%;"> <div style="margin-left: 20px;width: 50%;">
<h2 style="font-size: 18px;margin:10px 0">{{ item.name }}</h2> <h2 style="font-size: 18px;margin:10px 0">{{ item.name }}</h2>
<div>{{item.keyword}}</div> <div class="vehicle-desc">{{item.intro}}</div>
<div class="flex-aic">
<span class="flex-aic config" v-for="iitem in item.uccnCataList" :key="iitem.id"><img src="../assets/images/license.png"/>{{iitem.name}}</span>
<nuxt-link :to="item.link"><span class="more-set">+更多配置</span></nuxt-link>
</div>
</div> </div>
<nuxt-link :to="item.link" class="flex-aic"> <nuxt-link :to="item.link" class="flex-aic">
<button class="buttonDetails">租车详情</button> <button class="buttonDetails">租车详情</button>
...@@ -160,10 +164,16 @@ ...@@ -160,10 +164,16 @@
.clearfix { .clearfix {
*zoom: 1; /*ie6清除浮动的方式 *号只有IE6-IE7执行,其他浏览器不执行*/ *zoom: 1; /*ie6清除浮动的方式 *号只有IE6-IE7执行,其他浏览器不执行*/
} }
.wrap { .more-set:hover{
width: 1200px; border:1px solid #1bbb9f;
margin: 0 auto; color: #1bbb9f;
background: #fff; }
.more-set{
border: 1px solid #999;
padding: 3px 10px;
color: #999;
font-size: 12px;
cursor: pointer;
} }
.banner { .banner {
/* background-color: #fff; */ /* background-color: #fff; */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment