purchase-let/unpackage/dist/dev/mp-weixin/pages/my/my.wxss

108 lines
2.6 KiB
Plaintext
Raw Normal View History

2024-04-25 18:02:30 +08:00
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
2024-04-26 18:04:56 +08:00
.user-info {
overflow: hidden;
position: relative;
width: 750rpx;
height: 450rpx;
2024-04-25 18:02:30 +08:00
}
2024-04-26 18:04:56 +08:00
.user-info .bg {
width: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
2024-04-25 18:02:30 +08:00
}
2024-04-26 18:04:56 +08:00
.user-info .u-card {
box-sizing: border-box;
padding: 50rpx 0 50rpx 50rpx;
display: flex;
position: absolute;
bottom: 50rpx;
left: 0;
z-index: 2;
2024-04-25 18:02:30 +08:00
}
2024-04-26 18:04:56 +08:00
.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;
2024-04-25 18:02:30 +08:00
background-color: #fff;
2024-04-26 18:04:56 +08:00
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;
2024-04-25 18:02:30 +08:00
}
2024-04-26 18:04:56 +08:00
.card {
margin: 20rpx;
2024-04-25 18:02:30 +08:00
background-color: #fff;
2024-04-26 18:04:56 +08:00
border-radius: 14rpx;
overflow: hidden;
2024-04-25 18:02:30 +08:00
}