Files
xiaokuaisong-paotui/distribution/unpackage/dist/dev/mp-alipay/pages/purse/purse.acss

118 lines
3.4 KiB
Plaintext
Raw Normal View History

2025-08-18 09:57:10 +08:00
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.wallet-page.data-v-7378640c {
display: flex;
flex-direction: column;
height: 100%;
background-color: #f1f1f1;
}
.wallet-page .balance-section.data-v-7378640c {
padding: 16px;
background-color: #5e7dec;
color: #fff;
}
.wallet-page .balance-section .balance-label.data-v-7378640c {
margin-bottom: 8px;
padding-left: 20px;
}
.wallet-page .balance-section .balance-amount.data-v-7378640c {
display: flex;
justify-content: space-between;
align-items: center;
}
.wallet-page .balance-section .balance-amount .amount.data-v-7378640c {
font-size: 24px;
font-weight: bold;
padding: 20px;
}
.wallet-page .balance-section .balance-amount .view-detail.data-v-7378640c {
margin: 0 20px;
border-radius: 15px;
background-color: rgba(255, 255, 255, 0.2);
color: #fff;
border: none;
cursor: pointer;
line-height: inherit;
padding: 8px 20px;
/* 添加内边距 */
}
.wallet-page .balance-section .transactions-section.data-v-7378640c {
padding: 16px;
border-top: 1rpx solid #e0e0e0;
}
.wallet-page .balance-section .transactions-section .transaction-item.data-v-7378640c {
display: flex;
justify-content: space-between;
align-items: center;
padding: 5px;
}
.wallet-page .balance-section .transactions-section .transaction-item .transaction-label.data-v-7378640c {
font-size: 16px;
color: #fff;
}
.wallet-page .menu-section.data-v-7378640c {
flex: 1;
overflow-y: auto;
}
.wallet-page .menu-section .menu-item.data-v-7378640c {
display: flex;
justify-content: space-between;
align-items: flex-start;
padding: 16px;
background-color: #fff;
border-bottom: 1px solid #e0e0e0;
margin-top: 10px;
}
.wallet-page .menu-section .menu-item .menu-title.data-v-7378640c {
font-size: 18px;
font-weight: bold;
}
.wallet-page .menu-section .menu-item .menu-subtitle.data-v-7378640c {
font-size: 16px;
color: #666;
}
.wallet-page .menu-section .menu-item .menu-icon.data-v-7378640c {
margin-left: auto;
}
.wallet-page .menu-section .menu-item .subtitles-container.data-v-7378640c {
display: flex;
gap: 16px;
margin-top: 8px;
}
.wallet-page .menu-section .menu-item.today-bill .subtitles-container.data-v-7378640c {
margin-top: 16px;
}
.wallet-page .menu-section .menu-item.today-bill .view-history.data-v-7378640c {
margin-left: 16px;
color: #333;
cursor: pointer;
}
.wallet-page .no-bill-message.data-v-7378640c {
text-align: center;
padding: 16px;
color: #999;
background-color: #fff;
}