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.
92 lines
1.4 KiB
92 lines
1.4 KiB
|
3 years ago
|
/* pages/me/me.wxss */
|
||
|
|
/* pages/my/my.wxss */
|
||
|
|
.hr{
|
||
|
|
width: 100%;
|
||
|
|
height: 15px;
|
||
|
|
background-color: #f5f5f5;
|
||
|
|
}
|
||
|
|
.underline{
|
||
|
|
width: auto;
|
||
|
|
border-bottom: 1px solid #cfcfcf;
|
||
|
|
}
|
||
|
|
/* 登录 */
|
||
|
|
|
||
|
|
.head{
|
||
|
|
display: flex;
|
||
|
|
position: relative;
|
||
|
|
width: 100%;
|
||
|
|
height: 90px;
|
||
|
|
background-color: #009966;
|
||
|
|
flex-direction: row;
|
||
|
|
}
|
||
|
|
.headlcon{
|
||
|
|
float: left;
|
||
|
|
position: absolute;
|
||
|
|
left: 10px;
|
||
|
|
top: 10px;
|
||
|
|
}
|
||
|
|
.head .headlcon image{
|
||
|
|
border-radius: 90px;
|
||
|
|
}
|
||
|
|
.login{
|
||
|
|
float: left;
|
||
|
|
position: absolute;
|
||
|
|
left: 90px;
|
||
|
|
top:35px;
|
||
|
|
vertical-align: middle;
|
||
|
|
}
|
||
|
|
|
||
|
|
.detail{
|
||
|
|
float: right;
|
||
|
|
position: absolute;
|
||
|
|
right: 15px;
|
||
|
|
top:35px;
|
||
|
|
}
|
||
|
|
/* 我的订单 */
|
||
|
|
.nav{
|
||
|
|
display: flex;
|
||
|
|
}
|
||
|
|
.order{
|
||
|
|
padding-top: 15px;
|
||
|
|
padding-left: 15px;
|
||
|
|
padding-bottom: 15px;
|
||
|
|
font-size: 15px;
|
||
|
|
}
|
||
|
|
.line{
|
||
|
|
border-bottom: 1px solid #cfcfcf;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
}
|
||
|
|
.nav-item image{
|
||
|
|
width: 30px;
|
||
|
|
height: 25px;
|
||
|
|
}
|
||
|
|
.nav-item{
|
||
|
|
float: left;
|
||
|
|
width: 25%;
|
||
|
|
height: 60px;
|
||
|
|
margin: 0;
|
||
|
|
font-size: 13px;
|
||
|
|
text-align: center;
|
||
|
|
margin: 0 auto;
|
||
|
|
}
|
||
|
|
.item{
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
/* 每个小view:如我的信息 */
|
||
|
|
.item .detail2 text{
|
||
|
|
position: absolute;
|
||
|
|
right: 8px;
|
||
|
|
top: 12px;
|
||
|
|
float: right;
|
||
|
|
|
||
|
|
}
|
||
|
|
/* 余额 */
|
||
|
|
.item .money{
|
||
|
|
margin-right: 20px;
|
||
|
|
margin-top: 2px;
|
||
|
|
font-size: 13px;
|
||
|
|
color: rgb(190, 184, 184);
|
||
|
|
vertical-align: middle;
|
||
|
|
}
|
||
|
|
|