|
@@ -48,6 +48,9 @@
|
|
|
<view class="rank_item_name" style="width: 30%;" :style="{color:(index==0||index==1||index==2)?color1:'auto'}">
|
|
|
8273.00
|
|
|
</view>
|
|
|
+ <view class="item_line">
|
|
|
+
|
|
|
+ </view>
|
|
|
</view>
|
|
|
|
|
|
<view class="back_home" :style="{background:color2}" @click="backHome">
|
|
@@ -188,7 +191,7 @@
|
|
|
width: 100%;
|
|
|
height: 104rpx;
|
|
|
margin: 0 auto;
|
|
|
- border-bottom: 2rpx solid rgba(0,0,0,0.05);
|
|
|
+ position: relative;
|
|
|
.rank_item_name{
|
|
|
font-size: 28rpx;
|
|
|
flex: auto;
|
|
@@ -201,6 +204,15 @@
|
|
|
height: 40rpx;
|
|
|
}
|
|
|
}
|
|
|
+ .item_line{
|
|
|
+ position: absolute;
|
|
|
+ bottom: 0;
|
|
|
+ left: 50%;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ width: 630rpx;
|
|
|
+ height: 2rpx;
|
|
|
+ background-color: rgba(0,0,0,0.05);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|