国外MOSE官网
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.
 
 
 
 

163 lines
3.8 KiB

@charset "UTF-8";
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.my-page.data-v-810f65fc {
min-height: 100vh;
background-color: #FFFFFF;
}
.header-section.data-v-810f65fc {
background: linear-gradient(180deg, #1488db, #98b5f1);
padding: 60rpx 40rpx 80rpx;
position: relative;
}
.header-icons.data-v-810f65fc {
display: flex;
justify-content: flex-end;
gap: 32rpx;
margin-bottom: 40rpx;
}
.user-info.data-v-810f65fc {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 60rpx;
}
.avatar-container.data-v-810f65fc {
width: 120rpx;
height: 120rpx;
border-radius: 50%;
overflow: hidden;
margin-bottom: 20rpx;
border: 4rpx solid rgba(255, 255, 255, 0.3);
}
.avatar.data-v-810f65fc {
width: 100%;
height: 100%;
}
.username.data-v-810f65fc {
font-size: 30rpx;
color: #000000;
}
.points-section.data-v-810f65fc {
display: flex;
justify-content: space-between;
margin: 30rpx 30rpx;
gap: 24rpx;
}
.points-item.data-v-810f65fc {
border-radius: 12rpx;
padding: 32rpx 24rpx;
flex: 1;
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
box-shadow: 0px 1.5px 3px 0px rgba(0, 0, 0, 0.16);
}
.points-item.yellow.data-v-810f65fc {
background: #FEF4D1;
}
.points-item.blue.data-v-810f65fc {
background: #C7E6FF;
}
.points-content.data-v-810f65fc {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.points-number.data-v-810f65fc {
font-size: 48rpx;
color: #000000;
font-weight: bold;
line-height: 1;
}
.points-label.data-v-810f65fc {
font-size: 24rpx;
color: #000000;
font-size: 24rpx;
margin-top: 8rpx;
}
.points-label.yellow.data-v-810f65fc {
color: #DEB31B;
}
.points-label.blue.data-v-810f65fc {
color: #1488db;
}
.points-icon.data-v-810f65fc {
display: flex;
align-items: center;
justify-content: center;
}
.functions-container.data-v-810f65fc {
height: 319px;
background: #ffffff;
border-radius: 8px;
box-shadow: 0px 1.5px 3px 0px rgba(0, 0, 0, 0.16);
margin: 20rpx 30rpx;
padding: 40rpx;
}
.section-title.data-v-810f65fc {
font-size: 32rpx;
color: #333;
font-weight: bold;
margin-bottom: 40rpx;
display: block;
}
.functions-grid.data-v-810f65fc {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40rpx 10rpx;
}
.function-item.data-v-810f65fc {
display: flex;
flex-direction: column;
align-items: center;
gap: 16rpx;
padding: 20rpx;
border-radius: 12rpx;
transition: all 0.3s ease;
}
.function-item.data-v-810f65fc:active {
background-color: #F0F8FF;
-webkit-transform: scale(0.95);
transform: scale(0.95);
}
.function-icon.data-v-810f65fc {
width: 48rpx;
height: 48rpx;
}
.function-icon-wrapper.data-v-810f65fc {
width: 48rpx;
height: 48rpx;
display: flex;
align-items: center;
justify-content: center;
}
.function-text.data-v-810f65fc {
font-size: 24rpx;
color: #000000;
text-align: center;
}