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.
42 lines
875 B
42 lines
875 B
2 years ago
|
/* subpages/settings/pages/index/index.wxss */
|
||
|
page{
|
||
|
background-color:#f7f7f7 ;
|
||
|
overflow: hidden;
|
||
|
padding:20rpx;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
.card{
|
||
|
border-radius: 20rpx;
|
||
|
background-color: #fff;
|
||
|
padding: 0 20rpx;
|
||
|
box-sizing: border-box;
|
||
|
|
||
|
}
|
||
|
.card .item{
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
height: 100rpx;
|
||
|
align-items: center;
|
||
|
font-size: 32rpx;
|
||
|
font-family: PingFang SC;
|
||
|
font-weight: 500;
|
||
|
color: #333333;
|
||
|
border-bottom: 2rpx solid #f7f7f7;
|
||
|
}
|
||
|
.card .item image{
|
||
|
width: 20rpx;
|
||
|
height: 20rpx;
|
||
|
}
|
||
|
button{
|
||
|
background: linear-gradient(to right, #82b4fd, #3e93fe);
|
||
|
font-size: 33rpx;
|
||
|
width: 600rpx !important;
|
||
|
height: 84rpx;
|
||
|
text-align: center;
|
||
|
color: #fff;
|
||
|
border-radius: 84rpx;
|
||
|
position: fixed;
|
||
|
bottom: 100rpx;
|
||
|
left: 50%;
|
||
|
transform: translateX(-300rpx);
|
||
|
}
|