list.vue
<template>
<div class="list">
<div class="area">
<div class="title" border-topbottom>当前城市</div>
</div>
<div class="area">
<div class="title" border-topbottom>热门城市</div>
</div>
<div class="area">
<div class="title" border-topbottom>A</div>
</div>
</div>
</template>
<script>
export default {
name: "CityList"
}
</script>
<style lang="stylus" scoped>
@import "~css/varibles.styl";
.border-topbottom
&:before
border-color red
&:after
border-color red
.list
border .02rem red
.title
background #eee
height .44rem
padding-left .2rem
font-size .26rem
border-bottom .1rem !important
// margin-top .1rem
</style>
varibles.styl
$bgColor=#00bcd4;
$darkTextColor=#333;
$headerHeight=.86rem;