Files
xiaokuaisong-paotui/distribution/unpackage/dist/dev/mp-alipay/pages/my/my.acss
2025-08-18 09:57:10 +08:00

154 lines
3.4 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.container.data-v-2f1ef635 {
background-image: linear-gradient(to bottom, #5e7dec, #d0f0ff);
padding: 20px;
height: 100vh;
}
.header.data-v-2f1ef635 {
display: flex;
align-items: center;
padding: 10px;
background-color: #ffffff;
border-radius: 15px;
}
.user-icon.data-v-2f1ef635 {
width: 60px;
height: 60px;
border-radius: 50%;
margin-right: 10px;
}
.user-info.data-v-2f1ef635 {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.name.data-v-2f1ef635 {
font-size: 16px;
font-weight: bold;
}
.rule.data-v-2f1ef635 {
font-size: 12px;
color: #999;
}
.rating.data-v-2f1ef635 {
color: #ff9800;
margin-top: 5px;
}
.settings.data-v-2f1ef635 {
margin-left: auto;
}
.settings-icon.data-v-2f1ef635 {
width: 24px;
height: 24px;
}
.summary.data-v-2f1ef635 {
display: flex;
justify-content: space-around;
margin-top: 20px;
background-color: #1970fd;
padding: 10px;
border-radius: 15px;
}
.summary-item.data-v-2f1ef635 {
text-align: center;
color: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
}
.summary-label.data-v-2f1ef635 {
padding: 5px;
font-size: 14px;
}
.summary-detail.data-v-2f1ef635 {
font-size: 12px;
color: #92b1e9;
padding: 5px;
}
.summary-value.data-v-2f1ef635 {
font-size: 20px;
font-weight: bold;
padding: 5px;
}
.menu.data-v-2f1ef635 {
background-color: #ffffff;
border-radius: 8px;
margin-top: 20px;
padding: 0 15px;
}
.menu .menu-item.data-v-2f1ef635 {
display: flex;
align-items: center;
justify-content: space-between;
/* 关键属性 */
height: 50px;
border-bottom: 1px solid #f5f5f5;
}
.menu .menu-item.data-v-2f1ef635:last-child {
border-bottom: none;
}
.menu .menu-item text.data-v-2f1ef635 {
font-size: 15px;
color: #333;
flex-shrink: 0;
/* 防止文字被压缩 */
}
.menu .menu-item .arrow-icon.data-v-2f1ef635 {
color: #999;
margin-left: 20px;
/* 增加图标与文字的间距 */
}
.popup-content.data-v-2f1ef635 {
background-color: #ffffff;
padding: 30px 40px;
border-radius: 16px;
min-width: 240px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
text-align: center;
animation: fadeIn-2f1ef635 0.3s ease;
border: 2px solid #5e7dec;
/* 主色调蓝边框 */
}
.popup-text.data-v-2f1ef635 {
font-size: 24px;
color: #2a3f88;
/* 深蓝文字 */
font-weight: bold;
letter-spacing: 1px;
}
/* 弹出动画 */
@keyframes fadeIn-2f1ef635 {
from {
opacity: 0;
transform: scale(0.9);
}
to {
opacity: 1;
transform: scale(1);
}
}