/** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ page { height: 100%; } .content { height: 100%; display: flex; flex-direction: column; justify-content: space-between; } .content .inner { flex: 1; padding: 20rpx 20rpx 160rpx; } .content .inner .top { padding: 0rpx 20rpx 20rpx; text-align: right; } .content .inner .top .del { font-size: 28rpx; font-family: PingFang SC; color: #999999; } .content .inner .address-item { background: #FFFFFF; border-radius: 16rpx; padding: 46rpx 40rpx 50rpx 24rpx; display: flex; align-items: center; justify-content: space-between; margin-bottom: 20rpx; } .content .inner .address-item .info { width: 75%; } .content .inner .address-item .info .title { font-size: 30rpx; font-family: PingFang SC; font-weight: bold; color: #111111; line-height: 42rpx; word-break: break-all; } .content .inner .address-item .info .title .tag { padding: 0 6rpx; height: 32rpx; line-height: 32rpx; font-size: 22rpx; font-family: PingFang SC; font-weight: 500; color: #FFFFFF; background: #C39A58; border-radius: 4rpx; float: left; margin-right: 10rpx; margin-top: 5rpx; } .content .inner .address-item .info .name-phone { margin-top: 30rpx; display: flex; align-items: center; } .content .inner .address-item .info .name-phone .text { font-size: 26rpx; font-family: PingFang SC; font-weight: 500; color: #999999; margin-right: 22rpx; } .content .inner .address-item .info .name-phone .text:last-child { margin-right: 0; } .content .inner .address-item .operat-box { display: flex; align-items: center; } .content .inner .address-item .operat-box image { padding: 15rpx; width: 30rpx; height: 30rpx; margin-left: 10rpx; } .content .inner .address-item .operat-box image:first-child { margin-left: 0; } .content .btn-box { z-index: 9999; width: 100%; padding: 30rpx; position: fixed; bottom: 0; left: 0; box-sizing: border-box; background: #FFFFFF; } .content .btn-box .sub-btn { height: 88rpx; line-height: 88rpx; text-align: center; font-size: 30rpx; font-family: PingFang SC; font-weight: bold; color: #FFFFFF; background: #C39A58; border-radius: 44rpx; }