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.
101 lines
1.9 KiB
101 lines
1.9 KiB
<template>
|
|
<view class="qingshaonian">
|
|
<view class="bd">
|
|
<image src="@/static/qingshaonian-san.png"></image>
|
|
<!-- <view class="title">青少年模式已开启</view> -->
|
|
<view class="title">青少年模式未开启</view>
|
|
<!-- <view class="desc">关闭后,所有行为将不受限制</view> -->
|
|
<view class="desc">开启时,以下行为会收到限制:</view>
|
|
<view class="item">
|
|
<image src="@/static/qingshaonian-yuan.png"></image>无法进行充值
|
|
</view>
|
|
<view class="item">
|
|
<image src="@/static/qingshaonian-yuan.png"></image>部分功能无法使用
|
|
</view>
|
|
</view>
|
|
<view class="fd">
|
|
<!-- <view class="btn">关闭</view> -->
|
|
<view class="btn">开启青少年模式</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
page{
|
|
background-color: #fff;
|
|
}
|
|
.qingshaonian{
|
|
padding: 0 25rpx;
|
|
overflow: hidden;
|
|
.fd{
|
|
width: 100%;
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
padding: 25rpx;
|
|
overflow: hidden;
|
|
z-index: 22;
|
|
box-sizing: border-box;
|
|
.btn{
|
|
width: 100%;
|
|
line-height: 98rpx;
|
|
background: linear-gradient(0deg, #000000, #3D3B38);
|
|
box-shadow: 0px 4rpx 18rpx 0px rgba(42,41,39,0.34);
|
|
border-radius: 98rpx;
|
|
font-weight: 400;
|
|
font-size: 30rpx;
|
|
color: #FFFFFF;
|
|
text-align: center;
|
|
}
|
|
}
|
|
.bd{
|
|
text-align: center;
|
|
margin-top: 130rpx;
|
|
image{
|
|
width: 170rpx;
|
|
height: 170rpx;
|
|
}
|
|
.title{
|
|
font-weight: 500;
|
|
font-size: 36rpx;
|
|
color: #222222;
|
|
margin-top: 43rpx;
|
|
}
|
|
.desc{
|
|
margin-top: 100rpx;
|
|
font-weight: 500;
|
|
font-size: 30rpx;
|
|
color: #222222;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
.item{
|
|
display: flex;
|
|
align-items: center;
|
|
width: 300rpx;
|
|
font-weight: 500;
|
|
font-size: 30rpx;
|
|
color: #666666;
|
|
margin: 0 auto;
|
|
margin-top: 20rpx;
|
|
image{
|
|
width: 27rpx;
|
|
height: 27rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|