123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .score-box.data-v-f08f8293 {
- margin: 20rpx;
- border-radius: 20rpx;
- padding-top: 100rpx;
- }
- .avatar-box.data-v-f08f8293 {
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- overflow: hidden;
- border: 1px solid #eaeaea;
- }
- .avatar-box .avatar-img.data-v-f08f8293 {
- width: 100%;
- height: 100%;
- }
- .value-box.data-v-f08f8293 {
- width: 100rpx;
- height: 100rpx;
- line-height: 100rpx;
- text-align: center;
- border-radius: 50%;
- border: 2px solid #f6f6f6;
- }
- .btn.data-v-f08f8293 {
- width: 300rpx;
- background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
- border-radius: 20rpx;
- font-size: 30rpx;
- font-weight: 500;
- line-height: 80rpx;
- color: #ffffff;
- position: relative;
- z-index: 1;
- }
- .header-box.data-v-f08f8293 {
- width: 100%;
- background: linear-gradient(180deg, var(--ui-BG-Main) 0%, var(--ui-BG-Main-gradient) 100%) no-repeat;
- background-size: 750rpx 100%;
- padding: 0 0 120rpx 0;
- box-sizing: border-box;
- }
- .header-box .score-box.data-v-f08f8293 {
- height: 100%;
- }
- .header-box .score-box .all-num.data-v-f08f8293 {
- font-size: 50rpx;
- font-weight: bold;
- color: #fff;
- font-family: OPPOSANS;
- }
- .header-box .score-box .all-title.data-v-f08f8293 {
- font-size: 26rpx;
- font-weight: 500;
- color: #fff;
- }
- .header-box .score-box .cicon-help-o.data-v-f08f8293 {
- color: #fff;
- font-size: 28rpx;
- }
- .filter-box.data-v-f08f8293 {
- height: 114rpx;
- background-color: #f6f6f6;
- }
- .filter-box .total-box.data-v-f08f8293 {
- font-size: 24rpx;
- font-weight: 500;
- color: #999999;
- }
- .filter-box .date-btn.data-v-f08f8293 {
- background-color: #ffffff;
- line-height: 54rpx;
- border-radius: 27rpx;
- padding: 0 20rpx;
- font-size: 24rpx;
- font-weight: 500;
- color: #666666;
- }
- .filter-box .date-btn .ss-seldate-icon.data-v-f08f8293 {
- font-size: 50rpx;
- color: #999999;
- }
- .list-box.data-v-f08f8293 {
- width: 500rpx;
- height: 600rpx;
- padding: 0 20rpx;
- overflow-y: auto;
- }
- .list-box .list-item.data-v-f08f8293 {
- background: #fff;
- padding: 30rpx;
- }
- .list-box .list-item .name.data-v-f08f8293 {
- font-size: 30rpx;
- font-weight: 500;
- color: #666666;
- line-height: 30rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .list-box .list-item .time.data-v-f08f8293 {
- font-size: 24rpx;
- font-weight: 500;
- color: #c4c4c4;
- line-height: 24px;
- }
- .list-box .list-item .add.data-v-f08f8293 {
- font-size: 30rpx;
- font-weight: 500;
- color: #e6b873;
- }
- .list-box .list-item .minus.data-v-f08f8293 {
- font-size: 30rpx;
- font-weight: 500;
- color: #333333;
- }
|