2024-09-19 07:20:14 +08:00
|
|
|
|
/* stylelint-disable comment-empty-line-before */
|
|
|
|
|
/**
|
|
|
|
|
* 这里是uni-app内置的常用样式变量
|
|
|
|
|
*
|
|
|
|
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
|
|
|
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
|
|
|
|
*
|
|
|
|
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
|
|
|
|
*/
|
|
|
|
|
/* 颜色变量 */
|
|
|
|
|
/* 行为相关颜色 */
|
|
|
|
|
/* 文字基本颜色 */
|
|
|
|
|
/* 背景颜色 */
|
|
|
|
|
/* 边框颜色 */
|
|
|
|
|
/* 尺寸变量 */
|
|
|
|
|
/* 文字尺寸 */
|
|
|
|
|
/* 图片尺寸 */
|
|
|
|
|
/* Border Radius */
|
|
|
|
|
/* 水平间距 */
|
|
|
|
|
/* 垂直间距 */
|
|
|
|
|
/* 透明度 */
|
|
|
|
|
/* 文章场景相关 */
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow: scroll;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .bg.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 250px;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: #fbfbfb;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .card.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
margin: 10rpx;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .background.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 30%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .cat-dog.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 140px;
|
|
|
|
|
right: 0;
|
|
|
|
|
width: 120px;
|
|
|
|
|
height: 127px;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .my-avatar.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: auto 1fr;
|
|
|
|
|
grid-gap: 10px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding-top: 130px;
|
|
|
|
|
padding-left: 30px;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .my-avatar .info.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .my-avatar .name.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
font-size: 20px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .my-avatar .description.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
font-size: 16px;
|
|
|
|
|
color: #666;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .stats-container.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
padding: 20px 0;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .stats-container .stat-item.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .stats-container .stat-number.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
font-size: 20px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .stats-container .stat-label.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #666;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .services-container.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
padding: 20px 0;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .services-container .service-item.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .services-container .service-box.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 105rpx;
|
|
|
|
|
height: 100rpx;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
background-color: #fcd038;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .services-container .service-icon.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
-o-object-fit: cover;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
border-radius: inherit;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .services-container .service-label.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
padding-top: 8px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #666;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .pets-container.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
padding: 20px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .pets-container .pets-title.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .pets-container .pets-list.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
gap: 30rpx;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .pets-container .pet-item.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .pets-container .pet-avatar.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
border: 2px solid #fcd038;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .pets-container .add-avatar.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
width: 102rpx;
|
|
|
|
|
height: 102rpx;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border: 2px dashed #fcd038;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .pets-container .add-icon.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
font-size: 36px;
|
|
|
|
|
line-height: 45px;
|
|
|
|
|
color: #fcd038;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .pets-container .pet-label.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #666;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .settings-container.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .settings-container .list.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .settings-container .list-item.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 15px 10px;
|
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .settings-container .list-item.data-v-3567cc5a:last-child {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .settings-container .icon.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .settings-container .item-icon.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .settings-container .label.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
flex: 1;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
2024-10-01 09:15:35 +08:00
|
|
|
|
.my-page-container .settings-container .arrow.data-v-3567cc5a {
|
2024-09-19 07:20:14 +08:00
|
|
|
|
font-size: 16px;
|
|
|
|
|
color: #b2b2b2;
|
|
|
|
|
}
|