@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .address-action { position: fixed; left: 0; bottom: 0; background-color: #fff; width: 100%; border-radius: 20rpx 20rpx 0 0; display: flex; flex-direction: column; align-items: stretch; min-height: 50%; max-height: 80%; font-size: 28rpx; z-index: 19999; overflow: hidden; transition: all 0.3s cubic-bezier(0.65, 0.7, 0.7, 0.9); -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } .address-action .address-title { font-size: 32rpx; text-align: center; width: 100%; height: 100rpx; background-color: #fff; line-height: 100rpx; } .address-action .address-button { width: 100%; height: 90rpx; line-height: 90rpx; position: absolute; left: 0; bottom: 0; background-color: #fff; } .address-action .address-button text { text-align: center; background-color: #c30d24; width: 90%; height: 70rpx; line-height: 70rpx; margin: 10rpx auto; display: block; font-size: 30rpx; color: #fff; border-radius: 40rpx; } .address-action .address-body { flex: 1 1 auto; min-height: 88rpx; overflow-y: scroll; -webkit-overflow-scrolling: touch; } .address-action .address-body .address-empty { width: 100%; text-align: center; font-size: 36rpx; height: 100rpx; line-height: 100rpx; position: absolute; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); } .address-action .address-body .address-list { width: 95%; margin-left: 2.5%; float: left; margin-top: 20rpx; } .address-action .address-body .address-list .address-box { float: left; margin-bottom: 20rpx; width: 100%; height: 170rpx; background-color: #fff; border-radius: 20rpx; position: relative; } .address-action .address-body .address-list .address-box .address-r-box { float: left; margin-left: 60rpx; height: 170rpx; position: relative; } .address-action .address-body .address-list .address-box .address-r-box .address-name { font-size: 30rpx; padding-top: 36rpx; } .address-action .address-body .address-list .address-box .address-r-box .address-valid { padding-top: 24rpx; font-size: 28rpx; } .address-action .address-body .address-list .address-box .address-corner-checkbox { position: absolute; color: #999; right: 30rpx; height: 40rpx; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); } .address-action .address-body .address-list .address-box .address-corner-checkbox text { font-size: 40rpx; } .address-action .address-body .address-list .address-box .address-corner-checkbox .active { color: #c21313; } .address-action .close { position: absolute; top: 30rpx; right: 30rpx; z-index: 1; color: #c8c9cc; font-size: 44rpx; cursor: pointer; } .address-show { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }