优化后,再次提交

This commit is contained in:
王利强
2026-05-03 09:08:56 +08:00
parent 721ef0ad54
commit 805747d1d9
1243 changed files with 46213 additions and 221 deletions

View File

@@ -0,0 +1,179 @@
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* uni.scss */
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.page-wrapper.data-v-02345808 {
min-height: 100vh;
background: #EBF2FC;
}
.header-bg.data-v-02345808 {
position: relative;
height: 400rpx;
background: linear-gradient(180deg, #3B7FED 0%, #007AFF 50%, #8BB8F8 100%);
padding-top: 60rpx;
overflow: hidden;
}
.header-bg .blur-circle.data-v-02345808 {
position: absolute;
border-radius: 50%;
filter: blur(60rpx);
opacity: 0.5;
}
.header-bg .circle-1.data-v-02345808 {
width: 300rpx;
height: 300rpx;
background: rgba(100, 180, 255, 0.6);
top: -50rpx;
left: -50rpx;
}
.header-bg .circle-2.data-v-02345808 {
width: 250rpx;
height: 250rpx;
background: rgba(150, 200, 255, 0.5);
top: 100rpx;
right: -30rpx;
}
.header-bg .circle-3.data-v-02345808 {
width: 200rpx;
height: 200rpx;
background: rgba(180, 220, 255, 0.4);
bottom: 50rpx;
left: 200rpx;
}
.header-title.data-v-02345808 {
text-align: center;
font-size: 36rpx;
font-weight: 600;
color: #fff;
position: relative;
z-index: 5;
}
.user-info-section.data-v-02345808 {
display: flex;
align-items: center;
padding: 60rpx 40rpx 0;
position: relative;
z-index: 5;
}
.user-info-section .user-avatar.data-v-02345808 {
width: 120rpx;
height: 120rpx;
border-radius: 50%;
overflow: hidden;
border: 4rpx solid rgba(255, 255, 255, 0.5);
box-shadow: 0 8rpx 20rpx rgba(0, 0, 0, 0.15);
}
.user-info-section .user-avatar .avatar-img.data-v-02345808 {
width: 100%;
height: 100%;
}
.user-info-section .user-details.data-v-02345808 {
flex: 1;
margin-left: 24rpx;
}
.user-info-section .user-details .user-name.data-v-02345808 {
font-size: 36rpx;
font-weight: 600;
color: #fff;
margin-bottom: 8rpx;
}
.user-info-section .user-details .user-phone.data-v-02345808 {
font-size: 26rpx;
color: rgba(255, 255, 255, 0.85);
}
.user-info-section .edit-btn.data-v-02345808 {
background: rgba(255, 255, 255, 0.25);
border: 2rpx solid rgba(255, 255, 255, 0.5);
border-radius: 32rpx;
font-size: 26rpx;
color: #fff;
-webkit-backdrop-filter: blur(10rpx);
backdrop-filter: blur(10rpx);
}
.user-info-section .edit-btn.data-v-02345808::after {
border: none;
}
.content-area.data-v-02345808 {
position: relative;
margin-top: -60rpx;
padding: 0 30rpx 50rpx;
z-index: 10;
}
.menu-card.data-v-02345808 {
background: #fff;
border-radius: 24rpx;
padding: 10rpx 0;
box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.06);
}
.menu-item.data-v-02345808 {
display: flex;
align-items: center;
justify-content: space-between;
padding: 32rpx 36rpx;
border-bottom: 1rpx solid #F5F5F5;
}
.menu-item.data-v-02345808:last-child {
border-bottom: none;
}
.menu-item .menu-left.data-v-02345808 {
display: flex;
align-items: center;
}
.menu-item .menu-left .menu-icon.data-v-02345808 {
width: 44rpx;
height: 44rpx;
margin-right: 24rpx;
}
.menu-item .menu-left .menu-text.data-v-02345808 {
font-size: 30rpx;
color: #333;
}
.menu-item .menu-right.data-v-02345808 {
display: flex;
align-items: center;
}
.menu-item .menu-right .menu-value.data-v-02345808 {
font-size: 28rpx;
color: #999;
margin-right: 8rpx;
}
.menu-item .menu-arrow.data-v-02345808 {
font-size: 28rpx;
color: #ccc;
}
.logout-btn.data-v-02345808 {
margin-top: 60rpx;
height: 96rpx;
line-height: 96rpx;
background: linear-gradient(135deg, #3B7FED 0%, #5A9CF5 100%);
border-radius: 48rpx;
font-size: 32rpx;
font-weight: 500;
color: #fff;
box-shadow: 0 8rpx 24rpx rgba(59, 127, 237, 0.35);
}
.logout-btn.data-v-02345808::after {
border: none;
}