/** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .container.data-v-a0e9f0c4 { min-height: 100vh; background: #fff; } .nav-bar.data-v-a0e9f0c4 { display: flex; align-items: center; background: linear-gradient(to right, #f68240 0%, #fc8940 10%); position: fixed; top: 0; left: 0; right: 0; z-index: 999; } .back.data-v-a0e9f0c4 { padding: 20rpx; margin-left: -20rpx; } .title.data-v-a0e9f0c4 { flex: 1; text-align: center; font-size: 34rpx; font-weight: 500; color: #fff; } .banner.data-v-a0e9f0c4 { position: relative; background: linear-gradient(to right, #f78b49, #fc8940); overflow: hidden; border-radius: 0 0 30rpx 30rpx; margin-top: 0; } .banner-bg.data-v-a0e9f0c4 { position: absolute; width: 100%; height: 100%; } .banner-content.data-v-a0e9f0c4 { position: relative; z-index: 1; height: 100%; display: flex; justify-content: center; align-items: center; } .banner-content .wallet-icon.data-v-a0e9f0c4 { width: 240rpx; height: 240rpx; } .balance-card.data-v-a0e9f0c4 { margin: -60rpx 30rpx 0; padding: 30rpx; background: #fff; border-radius: 20rpx; box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.06); display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; } .balance-card .balance-info .label.data-v-a0e9f0c4 { font-size: 28rpx; color: #666; } .balance-card .balance-info .amount.data-v-a0e9f0c4 { margin-top: 8rpx; display: flex; align-items: baseline; } .balance-card .balance-info .amount .symbol.data-v-a0e9f0c4 { font-size: 32rpx; color: #333; } .balance-card .balance-info .amount .value.data-v-a0e9f0c4 { font-size: 48rpx; font-weight: bold; color: #333; margin-left: 4rpx; } .balance-card .withdraw-btn.data-v-a0e9f0c4 { width: 160rpx; height: 70rpx; background: #FFB74D; color: #fff; font-size: 28rpx; border-radius: 35rpx; display: flex; align-items: center; justify-content: center; border: none; } .balance-card .withdraw-btn.data-v-a0e9f0c4::after { border: none; } .record-tabs.data-v-a0e9f0c4 { display: flex; padding: 20rpx 0; border-bottom: 1rpx solid #f5f5f5; } .record-tabs .tab-item.data-v-a0e9f0c4 { position: relative; padding: 16rpx 0; font-size: 28rpx; color: #666; flex: 1; text-align: center; } .record-tabs .tab-item.active.data-v-a0e9f0c4 { color: #333; font-weight: 500; } .record-tabs .tab-item.active.data-v-a0e9f0c4::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -21rpx; width: 48rpx; height: 2rpx; background: #FFB74D; } .record-list.data-v-a0e9f0c4 { height: calc(100vh - 88rpx - 300rpx + 60rpx - 120rpx - 71rpx); } .record-list .record-item.data-v-a0e9f0c4 { display: flex; flex-direction: column; padding: 30rpx; border-bottom: 1rpx solid rgba(0, 0, 0, 0.05); } .record-list .record-item .record-info.data-v-a0e9f0c4 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12rpx; } .record-list .record-item .record-info .type.data-v-a0e9f0c4 { font-size: 28rpx; color: #333; } .record-list .record-item .record-info .amount.data-v-a0e9f0c4 { font-size: 28rpx; color: #333; } .record-list .record-item .date.data-v-a0e9f0c4 { font-size: 24rpx; color: #999; }