猫妈狗爸伴宠师小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

153 lines
2.9 KiB

<template>
<!-- <div>保证金</div> -->
<view class="box">
<view class="top" :style="{ borderRadius: '16rpx' }">
<view class="level account">
<view class="text1">
账户总览
</view>
<view class="level text4">
<view>
资金明细
</view>
<view class="line">
申请退还
</view>
</view>
</view>
<view class="level Recharge">
<view class="money level">
<text>¥</text>
<input type="text" />
</view>
<view class="text2" :style="{ borderRadius: '23.5rpx' }">
去充值
</view>
</view>
</view>
<view class="center size-28">
<view class="text3">
保证金说明
</view>
<view>
履约保证金用于处理轻度违约行为以及交易纠纷;具体规则可在<text
:style="{color:'#FFBF60'}">履约保证金协议</text>中查看如平台有任何私自克扣/乱扣费的情况可向市场监督局投诉平台会对违约做出公正的判罚同时接受公正的处理
</view>
<view class="">
若在服务过程中由于伴宠师自身原因发生用户的隐私或财产被侵犯等涉及法律相关问题并不是保证金可以解决的;如若发生恶性事件平台会坚决走法律程序判定责任并追责请各位伴宠师严于律己
</view>
</view>
</view>
</template>
<script>
</script>
<style scoped lang="scss">
.box {
width: 750rpx;
height: 180rpx;
background-image: linear-gradient(to bottom, #FFBF60, #F2F2F2);
padding: 60rpx 24rpx 0 24rpx;
box-sizing: border-box;
}
.top {
width: 702rpx;
height: 227rpx;
background-color: #FFFFFF;
padding: 24rpx 34rpx 0 34rpx;
box-sizing: border-box;
}
.account {
justify-content: space-between;
color: #BDBDBD;
font-size: 22rpx;
}
.text1 {
font-size: 30rpx;
color: #000000;
}
.text4 {
color: #BDBDBD;
font-size: 22rpx;
}
.line {
position: relative;
padding: 0 0 0 20rpx;
&::before {
position: absolute;
top: 7rpx;
left: 10rpx;
content: "";
width: 3rpx;
height: 26rpx;
border-radius: 9rpx;
background-color: #BDBDBD;
}
}
.Recharge {
width: auto;
height: 71rpx;
justify-content: space-between;
margin: 30rpx 0 0 30rpx;
color: #FFFFFF;
font-size: 22rpx;
align-items: center;
}
.money {
width: 450rpx;
height: 71rpx;
/* background-color: #FFBF60; */
color: #FFBF60 !important;
font-size: 54rpx !important;
}
.money input {
margin-left: 5%;
font-size: 61rpx;
height: 71rpx;
}
.text2 {
width: 131rpx;
height: 47rpx;
background-color: #FFBF60;
line-height: 47rpx;
display: flex;
justify-content: center;
}
.center {
width: 100%;
height: 1265rpx;
font-size: 30rpx;
color: #707070;
padding: 44rpx 8rpx 0 34rpx;
box-sizing: border-box;
line-height: 45rpx;
}
.text3 {
color: #000000;
font-weight: 700;
margin-bottom: 30rpx;
}
.level {
display: flex;
}
.text4 {
/* color: ; */
}
</style>