/** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .user-info { overflow: hidden; position: relative; width: 750rpx; height: 450rpx; } .user-info .bg { width: 100%; position: absolute; top: 0; left: 0; z-index: 1; } .user-info .u-card { box-sizing: border-box; padding: 50rpx 0 50rpx 50rpx; display: flex; position: absolute; bottom: 50rpx; left: 0; z-index: 2; } .user-info .u-card .content { width: 500rpx; padding-left: 30rpx; display: flex; flex-direction: column; justify-content: center; } .user-info .u-card .content .u-phone { font-size: 32rpx; margin-bottom: 16rpx; } .user-info .u-card .content .u-id { font-size: 24rpx; } .order-info-box { margin: 20rpx; height: 140rpx; position: relative; } .order-info-box .order-info { height: 220rpx; width: 710rpx; background-color: #fff; border-radius: 14rpx; position: absolute; top: -80rpx; left: 0; z-index: 3; background-image: url("https://lihai001.oss-cn-chengdu.aliyuncs.com/def/a8863202404261349533191.png"); background-size: 28% 100%; background-position: right; background-repeat: no-repeat; } .order-info-box .order-info .info-head { margin-left: 20rpx; margin-top: 20rpx; margin-bottom: 20rpx; font-size: 32rpx; } .order-info-box .order-info .info-list { height: 110rpx; display: flex; font-size: 26rpx; } .order-info-box .order-info .info-list .list-item { flex: 1; display: flex; flex-direction: column; justify-content: space-between; align-items: center; } .order-info-box .order-info .info-list .list-item image { width: 64rpx; height: 64rpx; } .card { margin: 20rpx; background-color: #fff; border-radius: 14rpx; overflow: hidden; }