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.
 
 
 
 

124 lines
3.0 KiB

@charset "UTF-8";
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.phoneContainer.data-v-0be17cc6 {
display: flex;
justify-content: space-between;
padding: 100rpx 24rpx 50rpx 24rpx;
}
.my.data-v-0be17cc6 {
min-height: calc(100vh);
background-color: #F4F5F7;
padding-bottom: 200rpx;
overflow-x: hidden;
}
.userInfo.data-v-0be17cc6 {
position: relative;
}
.userInfo > image.data-v-0be17cc6 {
width: 100%;
height: auto;
}
.userInfo .avatar.data-v-0be17cc6 {
position: absolute;
display: flex;
width: 100%;
left: 24rpx;
align-items: center;
top: 50%;
z-index: 9;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.userInfo .avatar > image.data-v-0be17cc6 {
width: 110rpx;
height: 110rpx;
background: #FFFFFF;
border: 2px solid #FFFFFF;
border-radius: 50%;
}
.userInfo .avatar .userInfo.data-v-0be17cc6 {
margin-left: 24rpx;
}
.userInfo .avatar .userInfo .userName.data-v-0be17cc6 {
font-size: 30rpx;
font-weight: 400;
color: #333333;
}
.userInfo .avatar .userInfo .phone.data-v-0be17cc6 {
font-size: 28rpx;
font-weight: 400;
color: #666666;
margin-top: 28rpx;
}
.cellList.data-v-0be17cc6 {
background: #FFFFFF;
border-radius: 10px;
margin: 24rpx;
padding: 0rpx 28rpx;
}
.cellList .cellItem.data-v-0be17cc6 {
display: flex;
align-items: center;
justify-content: space-between;
padding: 38rpx 0;
border-bottom: 1px solid #EAEAEA;
}
.cellList .cellItem.data-v-0be17cc6:last-child {
border: none !important;
}
.cellList .cellItem .left.data-v-0be17cc6 {
display: flex;
align-items: center;
}
.cellList .cellItem .left image.data-v-0be17cc6 {
width: 44rpx;
height: auto;
}
.cellList .cellItem .left text.data-v-0be17cc6 {
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 500;
color: #333333;
margin-left: 20rpx;
}
.cellList .cellItem .rightArrow.data-v-0be17cc6 {
width: 44rpx;
height: 44rpx;
}
.logOutBtn.data-v-0be17cc6 {
background: #F4F5F7;
border: 1px solid #CCCCCC;
border-radius: 45px;
padding: 30rpx 0;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 500;
text-align: center;
color: #333333;
margin: 88rpx 24rpx 0rpx 24rpx;
}