191 lines
3.0 KiB
Plaintext
191 lines
3.0 KiB
Plaintext
/* pages/member/info/info.wxss */
|
|
page {
|
|
background: #fff;
|
|
}
|
|
|
|
.cell_box {
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.user {
|
|
padding: 32rpx;
|
|
background-color: #fff;
|
|
margin-bottom: 32rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.user .left {
|
|
display: flex;
|
|
}
|
|
|
|
.user .left .user-avatar {
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
}
|
|
|
|
.user .left .user-avatar image {
|
|
border-radius: 50%;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.user .update-btn {
|
|
width: 160rpx;
|
|
height: 56rpx;
|
|
box-sizing: border-box;
|
|
background-color: rgba(255, 183, 182, 0.46);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: rgba(242, 79, 78, 1);
|
|
border-radius: 40rpx;
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
.cell_box .title {
|
|
padding: 5rpx 24rpx 10rpx;
|
|
font-size: 28rpx;
|
|
text-align: left;
|
|
color: #888;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.cell_box .inp_content {
|
|
padding-left: 24rpx;
|
|
display: flex;
|
|
}
|
|
|
|
.cell_box .inp_content .required {
|
|
position: relative;
|
|
}
|
|
|
|
.cell_box .inp_content .required::before {
|
|
position: absolute;
|
|
content: "*";
|
|
left: -10rpx;
|
|
top: 55%;
|
|
transform: translateY(-50%);
|
|
color: #ee0a24;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.cell_box .inp_content .left {
|
|
color: #555;
|
|
font-size: 28rpx;
|
|
white-space: nowrap;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.buttongroup {
|
|
padding: 10px 0;
|
|
width: 100%;
|
|
display: inline-flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
}
|
|
|
|
.buttongroup .button {
|
|
background-color: #ef4f4f;
|
|
width: 40%;
|
|
margin: 0 auto;
|
|
font-size: 30rpx;
|
|
height: 70rpx;
|
|
line-height: 70rpx;
|
|
text-align: center;
|
|
border-radius: 10rpx;
|
|
color: #fff;
|
|
}
|
|
|
|
/* 地址选择器 */
|
|
|
|
/* -------------------------------- */
|
|
.btn-area {
|
|
padding: 0rpx 20rpx;
|
|
}
|
|
|
|
.dateBe {
|
|
position: fixed;
|
|
bottom: 0rpx;
|
|
left: -5rpx;
|
|
width: 760rpx;
|
|
padding: 0rpx 5rpx;
|
|
box-sizing: border-box;
|
|
z-index: 200;
|
|
font-size: 28rpx;
|
|
border-top: 1rpx solid #d9d9d9;
|
|
opacity: 0;
|
|
transform: translate(-750rpx, 0rpx);
|
|
}
|
|
|
|
.dateBe.true {
|
|
opacity: 1;
|
|
transform: translate(0rpx, 0rpx);
|
|
}
|
|
|
|
.dateBe .head {
|
|
display: flex;
|
|
flex-flow: nowrap;
|
|
padding: 0rpx 30rpx;
|
|
line-height: 80rpx;
|
|
border-bottom: 1rpx solid #d9d9d9;
|
|
background: #f8f8f8;
|
|
}
|
|
|
|
.dateBe .head .ll {
|
|
flex: 1;
|
|
}
|
|
|
|
.dateBe .head .rr {
|
|
text-align: right;
|
|
flex: 1;
|
|
}
|
|
|
|
.dateBe .main {
|
|
background: #f8f8f8;
|
|
}
|
|
|
|
.dateBe .main view {
|
|
text-align: center;
|
|
}
|
|
|
|
/* -------------------------------- */
|
|
|
|
.button_2 {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: 0;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
.member_photo{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 0 32rpx;
|
|
align-items: center;
|
|
}
|
|
.member_photo .van-uploader__upload {
|
|
width: 70rpx !important;
|
|
height: 70rpx !important;
|
|
border-radius: 100rpx;
|
|
}
|
|
.member_photo_item{
|
|
width: 70rpx !important;
|
|
height: 70rpx !important;
|
|
border-radius: 100rpx;
|
|
}
|
|
.member_photo .van-uploader__preview-image{
|
|
width: 70rpx !important;
|
|
height: 70rpx !important;
|
|
border-radius: 100rpx;
|
|
}
|
|
.member_photo_text{
|
|
font-size: 28rpx;
|
|
color:#323233;
|
|
} |