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.
158 lines
3.0 KiB
158 lines
3.0 KiB
/* pages/mine/mine.wxss */
|
|
page{
|
|
height: 100vh;
|
|
width: 100%;
|
|
background-color: #f7f7f7;
|
|
}
|
|
.nase{
|
|
/* height: 100%; */
|
|
border: 3rpx solid #F7F7F7;
|
|
border-radius: 30rpx;
|
|
position: relative;
|
|
top: -20rpx;
|
|
background: #F7F7F7;
|
|
}
|
|
.header {
|
|
width: 100%;
|
|
height: 370rpx;
|
|
/* position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 1000; */
|
|
/* background: linear-gradient(180deg, #7DB5FF 0%, #F7F7F7 100%); */
|
|
background: #3973F6;
|
|
overflow: hidden;
|
|
}
|
|
.header .navigation {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #fdfdfd;
|
|
font-size: 32rpx;
|
|
position: relative;
|
|
z-index: 100;
|
|
}
|
|
.header .navigation image{
|
|
width: 34rpx;
|
|
height: 34rpx;
|
|
margin-right: 17rpx;
|
|
}
|
|
.header .content{
|
|
margin:60rpx 0 0;
|
|
height: 130rpx;
|
|
width: 100%;
|
|
padding: 0 30rpx;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
}
|
|
.header .content .left image{
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
border-radius: 50%;
|
|
}
|
|
.header .content .right{
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
padding-left: 30rpx;
|
|
}
|
|
.header .content .right .top b{
|
|
font-size: 36rpx;
|
|
font-family: PingFang SC;
|
|
color: #ffffff;
|
|
}
|
|
.header .content .right .top text{
|
|
margin-left: 19rpx;
|
|
padding-left: 19rpx;
|
|
height: 31rpx;
|
|
font-size: 30rpx;
|
|
border-left: 1rpx solid #fffefe ;
|
|
color: #ffffff;
|
|
}
|
|
.header .content .right .bto{
|
|
display: flex;
|
|
margin-top: 20rpx;
|
|
}
|
|
.header .content .right .bto view{
|
|
width: fit-content;
|
|
padding:7rpx 24rpx 7rpx 17rpx;
|
|
height: 46rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
/* background: #FFFFFF; */
|
|
border-radius: 46rpx;
|
|
font-size: 28rpx;
|
|
color: rgb(255, 255, 255);
|
|
margin-right: 10rpx;
|
|
}
|
|
.header .content .right .bto image{
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
.body{
|
|
padding: 0 20rpx;
|
|
/* height: auto; */
|
|
/* position: relative; */
|
|
/* top: -120rpx; */
|
|
margin-top: 30rpx;
|
|
|
|
}
|
|
|
|
.body .card {
|
|
background-color: #ffffff;
|
|
border-radius: 20rpx;
|
|
height: auto;
|
|
}
|
|
|
|
.body .card .item{
|
|
position: relative;
|
|
height: 100rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 30rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
.text-wrapper_24 {
|
|
background-color: #84ACF0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.text_63 {
|
|
overflow-wrap: break-word;
|
|
color: rgb(255, 255, 255);
|
|
font-family: PingFang-SC-Medium;
|
|
white-space: nowrap;
|
|
margin-left: 5rpx;
|
|
}
|
|
.body .card .item::before{
|
|
content: "";
|
|
position: absolute;
|
|
left: 30rpx;
|
|
right: 30rpx;
|
|
bottom: 0;
|
|
border-bottom: 2rpx solid #EAEAEA;
|
|
}
|
|
|
|
.no-pseudo::before {
|
|
display: none;
|
|
}
|
|
|
|
.body .card .item .left {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 32rpx;
|
|
}
|
|
.body .card .item .left image{
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
margin-right: 22rpx;
|
|
}
|
|
.body .card .item .right image{
|
|
width: 20rpx;
|
|
height: 20rpx;
|
|
}
|