/** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ uni-view[data-v-5cec8177], uni-scroll-view[data-v-5cec8177], uni-swiper-item[data-v-5cec8177] { display: flex; flex-direction: column; flex-shrink: 0; flex-grow: 0; flex-basis: auto; align-items: stretch; align-content: flex-start; } /** * vue版本动画内置的动画模式有如下: * fade:淡入 * zoom:缩放 * fade-zoom:缩放淡入 * fade-up:上滑淡入 * fade-down:下滑淡入 * fade-left:左滑淡入 * fade-right:右滑淡入 * slide-up:上滑进入 * slide-down:下滑进入 * slide-left:左滑进入 * slide-right:右滑进入 */ .u-fade-enter-active[data-v-5cec8177], .u-fade-leave-active[data-v-5cec8177] { transition-property: opacity; } .u-fade-enter[data-v-5cec8177], .u-fade-leave-to[data-v-5cec8177] { opacity: 0; } .u-fade-zoom-enter[data-v-5cec8177], .u-fade-zoom-leave-to[data-v-5cec8177] { transform: scale(0.95); opacity: 0; } .u-fade-zoom-enter-active[data-v-5cec8177], .u-fade-zoom-leave-active[data-v-5cec8177] { transition-property: transform, opacity; } .u-fade-down-enter-active[data-v-5cec8177], .u-fade-down-leave-active[data-v-5cec8177], .u-fade-left-enter-active[data-v-5cec8177], .u-fade-left-leave-active[data-v-5cec8177], .u-fade-right-enter-active[data-v-5cec8177], .u-fade-right-leave-active[data-v-5cec8177], .u-fade-up-enter-active[data-v-5cec8177], .u-fade-up-leave-active[data-v-5cec8177] { transition-property: opacity, transform; } .u-fade-up-enter[data-v-5cec8177], .u-fade-up-leave-to[data-v-5cec8177] { transform: translate3d(0, 100%, 0); opacity: 0; } .u-fade-down-enter[data-v-5cec8177], .u-fade-down-leave-to[data-v-5cec8177] { transform: translate3d(0, -100%, 0); opacity: 0; } .u-fade-left-enter[data-v-5cec8177], .u-fade-left-leave-to[data-v-5cec8177] { transform: translate3d(-100%, 0, 0); opacity: 0; } .u-fade-right-enter[data-v-5cec8177], .u-fade-right-leave-to[data-v-5cec8177] { transform: translate3d(100%, 0, 0); opacity: 0; } .u-slide-down-enter-active[data-v-5cec8177], .u-slide-down-leave-active[data-v-5cec8177], .u-slide-left-enter-active[data-v-5cec8177], .u-slide-left-leave-active[data-v-5cec8177], .u-slide-right-enter-active[data-v-5cec8177], .u-slide-right-leave-active[data-v-5cec8177], .u-slide-up-enter-active[data-v-5cec8177], .u-slide-up-leave-active[data-v-5cec8177] { transition-property: transform; } .u-slide-up-enter[data-v-5cec8177], .u-slide-up-leave-to[data-v-5cec8177] { transform: translate3d(0, 100%, 0); } .u-slide-down-enter[data-v-5cec8177], .u-slide-down-leave-to[data-v-5cec8177] { transform: translate3d(0, -100%, 0); } .u-slide-left-enter[data-v-5cec8177], .u-slide-left-leave-to[data-v-5cec8177] { transform: translate3d(-100%, 0, 0); } .u-slide-right-enter[data-v-5cec8177], .u-slide-right-leave-to[data-v-5cec8177] { transform: translate3d(100%, 0, 0); } .u-zoom-enter-active[data-v-5cec8177], .u-zoom-leave-active[data-v-5cec8177] { transition-property: transform; } .u-zoom-enter[data-v-5cec8177], .u-zoom-leave-to[data-v-5cec8177] { transform: scale(0.95); } /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ uni-view[data-v-9112bed9], uni-scroll-view[data-v-9112bed9], uni-swiper-item[data-v-9112bed9] { display: flex; flex-direction: column; flex-shrink: 0; flex-grow: 0; flex-basis: auto; align-items: stretch; align-content: flex-start; } .u-overlay[data-v-9112bed9] { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); } /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .u-status-bar[data-v-eb8e0cdd] { width: 100%; } /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ uni-view[data-v-ac70166d], uni-scroll-view[data-v-ac70166d], uni-swiper-item[data-v-ac70166d] { display: flex; flex-direction: column; flex-shrink: 0; flex-grow: 0; flex-basis: auto; align-items: stretch; align-content: flex-start; } @font-face { font-family: "uicon-iconfont"; src: url("https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf") format("truetype"); } .u-icon[data-v-ac70166d] { display: flex; align-items: center; } .u-icon--left[data-v-ac70166d] { flex-direction: row-reverse; align-items: center; } .u-icon--right[data-v-ac70166d] { flex-direction: row; align-items: center; } .u-icon--top[data-v-ac70166d] { flex-direction: column-reverse; justify-content: center; } .u-icon--bottom[data-v-ac70166d] { flex-direction: column; justify-content: center; } .u-icon__icon[data-v-ac70166d] { font-family: uicon-iconfont; position: relative; display: flex; flex-direction: row; align-items: center; } .u-icon__icon--primary[data-v-ac70166d] { color: #3c9cff; } .u-icon__icon--success[data-v-ac70166d] { color: #5ac725; } .u-icon__icon--error[data-v-ac70166d] { color: #f56c6c; } .u-icon__icon--warning[data-v-ac70166d] { color: #f9ae3d; } .u-icon__icon--info[data-v-ac70166d] { color: #909399; } .u-icon__img[data-v-ac70166d] { height: auto; will-change: transform; } .u-icon__label[data-v-ac70166d] { line-height: 1; } /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .u-safe-bottom[data-v-f3d22cfe] { width: 100%; } /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ uni-view[data-v-05c24e9b], uni-scroll-view[data-v-05c24e9b], uni-swiper-item[data-v-05c24e9b] { display: flex; flex-direction: column; flex-shrink: 0; flex-grow: 0; flex-basis: auto; align-items: stretch; align-content: flex-start; } .u-popup[data-v-05c24e9b] { flex: 1; } .u-popup__content[data-v-05c24e9b] { background-color: #fff; position: relative; } .u-popup__content--round-top[data-v-05c24e9b] { border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; } .u-popup__content--round-left[data-v-05c24e9b] { border-top-left-radius: 0; border-top-right-radius: 10px; border-bottom-left-radius: 0; border-bottom-right-radius: 10px; } .u-popup__content--round-right[data-v-05c24e9b] { border-top-left-radius: 10px; border-top-right-radius: 0; border-bottom-left-radius: 10px; border-bottom-right-radius: 0; } .u-popup__content--round-bottom[data-v-05c24e9b] { border-top-left-radius: 10px; border-top-right-radius: 10px; border-bottom-left-radius: 0; border-bottom-right-radius: 0; } .u-popup__content--round-center[data-v-05c24e9b] { border-top-left-radius: 10px; border-top-right-radius: 10px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; } .u-popup__content__close[data-v-05c24e9b] { position: absolute; } .u-popup__content__close--hover[data-v-05c24e9b] { opacity: 0.4; } .u-popup__content__close--top-left[data-v-05c24e9b] { top: 15px; left: 15px; } .u-popup__content__close--top-right[data-v-05c24e9b] { top: 15px; right: 15px; } .u-popup__content__close--bottom-left[data-v-05c24e9b] { bottom: 15px; left: 15px; } .u-popup__content__close--bottom-right[data-v-05c24e9b] { right: 15px; bottom: 15px; } /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .inner-box { padding: 0.625rem 0.625rem 9.375rem; } .inner-box .address-box { box-sizing: border-box; min-height: 5.34375rem; background: #FFFFFF; border-radius: 0.5rem; background-image: url(../static/images/address_bg.png); background-repeat: no-repeat; background-size: 100% 0.9375rem; background-position: left bottom; padding: 1.1875rem 0.9375rem 1.125rem; display: flex; align-items: center; justify-content: space-between; } .inner-box .address-box .left { width: 92%; } .inner-box .address-box .left .name-box { display: flex; align-items: center; } .inner-box .address-box .left .name-box .text { font-size: 1rem; font-family: PingFang SC; font-weight: bold; color: #111111; line-height: 1; } .inner-box .address-box .left .name-box .text.name { margin-right: 0.9375rem; } .inner-box .address-box .left .address { font-size: 0.875rem; font-family: PingFang SC; font-weight: 500; color: #666666; line-height: 1.3125rem; text-align: left; margin-top: 0.71875rem; } .inner-box .address-box .arrow-box { width: 0.375rem; height: 0.71875rem; display: flex; align-items: cenetr; justify-content: cenetr; } .inner-box .address-box .arrow-box uni-image { width: 100%; height: 100%; } .inner-box .goods-list { margin-top: 0.625rem; padding: 0 0.9375rem; background-color: #FFFFFF; border-radius: 0.5rem; } .inner-box .goods-list .item { padding: 0.9375rem 0; border-bottom: 1px solid #EDEEEF; display: flex; align-items: center; } .inner-box .goods-list .item .img-box { width: 5rem; height: 5rem; margin-right: 0.9375rem; } .inner-box .goods-list .item .img-box uni-image { width: 100%; height: 100%; } .inner-box .goods-list .item .info-box { width: calc(100% - 5.9375rem); height: 5rem; display: flex; flex-direction: column; justify-content: space-between; } .inner-box .goods-list .item .info-box .name-box { font-size: 0.875rem; font-family: PingFang SC; font-weight: 500; color: #111111; line-height: 1.25rem; } .inner-box .goods-list .item .info-box .name-box .tag { display: inline-block; padding: 0 0.1875rem; height: 0.9375rem; background: linear-gradient(90deg, #C39A58 0%, #E2C99E 100%); border-radius: 0.125rem; margin-right: 0.3125rem; font-size: 0.6875rem; font-family: PingFang SC; font-weight: bold; color: #FFFFFF; line-height: 0.9375rem; float: left; margin-top: 0.21875rem; } .inner-box .goods-list .item .info-box .spec { margin-top: 0.3125rem; font-size: 0.75rem; font-family: PingFang SC; font-weight: 500; color: #999999; line-height: 1; } .inner-box .goods-list .item .info-box .price-num { display: flex; align-items: center; justify-content: space-between; } .inner-box .goods-list .item .info-box .price-num .price { display: flex; align-items: flex-end; } .inner-box .goods-list .item .info-box .price-num .price .unit { font-size: 0.75rem; font-family: PingFang SC; font-weight: 500; color: #111111; line-height: 1.2; margin-right: 0.125rem; } .inner-box .goods-list .item .info-box .price-num .price .num { font-size: 1rem; font-family: PingFang SC; font-weight: 500; color: #111111; line-height: 1; } .inner-box .goods-list .item .info-box .price-num .num { font-size: 0.75rem; font-family: PingFang SC; font-weight: 500; color: #999999; line-height: 1; } .inner-box .goods-list .sub-total { height: 2.75rem; display: flex; align-items: center; justify-content: flex-end; } .inner-box .goods-list .sub-total .label { font-size: 0.75rem; font-family: PingFang SC; font-weight: 500; color: #999999; } .inner-box .goods-list .sub-total .price { display: flex; align-items: flex-end; } .inner-box .goods-list .sub-total .price .unit { font-size: 0.75rem; font-family: PingFang SC; font-weight: 500; color: #FF6633; line-height: 1.2; margin-right: 0.125rem; } .inner-box .goods-list .sub-total .price .num { font-size: 1rem; font-family: PingFang SC; font-weight: bold; color: #FF6633; line-height: 1; } .inner-box .other-info { margin-top: 0.625rem; background-color: #fff; border-radius: 0.625rem; overflow: hidden; padding: 0 0.9375rem; } .inner-box .other-info .title { height: 2.5rem; line-height: 2.5rem; font-size: 0.9375rem; color: #000; font-weight: bold; border-bottom: 0.0625rem solid #eeeeee; } .inner-box .other-info .drug-list { margin-top: 0.46875rem; } .inner-box .other-info .drug-list .drug-item { padding-bottom: 0.46875rem; border-bottom: 1px soli #F0F0F0; display: flex; align-items: center; } .inner-box .other-info .drug-list .drug-item .img-box { width: 5rem; height: 5rem; margin-right: 0.9375rem; flex-shrink: 0; } .inner-box .other-info .drug-list .drug-item .img-box uni-image { width: 100%; height: 100%; } .inner-box .other-info .drug-list .drug-item .drug-info { width: calc(100% - 5.9375rem); height: 5rem; display: flex; flex-direction: column; justify-content: space-between; } .inner-box .other-info .drug-list .drug-item .drug-info .name-box { font-size: 0.875rem; font-family: PingFang SC; font-weight: 500; color: #111111; line-height: 1.25rem; } .inner-box .other-info .drug-list .drug-item .drug-info .name-box .tag { display: inline-block; padding: 0 0.1875rem; height: 0.9375rem; background: linear-gradient(90deg, #2BC7B9 0%, #2BC7A4 100%); border-radius: 0.125rem; margin-right: 0.3125rem; font-size: 0.6875rem; font-family: PingFang SC; font-weight: bold; color: #FFFFFF; line-height: 0.9375rem; float: left; margin-top: 0.21875rem; } .inner-box .other-info .drug-list .drug-item .drug-info .spec { font-size: 0.75rem; font-family: PingFang SC; font-weight: 500; color: #999999; line-height: 1; margin-top: 0.3125rem; } .inner-box .other-info .drug-list .drug-item .drug-info .num-box { display: flex; align-items: center; justify-content: space-between; } .inner-box .other-info .drug-list .drug-item .drug-info .num-box .price { display: flex; align-items: flex-end; } .inner-box .other-info .drug-list .drug-item .drug-info .num-box .price .unit { font-size: 0.75rem; font-family: PingFang SC; font-weight: 500; color: #111111; line-height: 1.2; margin-right: 0.125rem; } .inner-box .other-info .drug-list .drug-item .drug-info .num-box .price .num { font-size: 1rem; font-family: PingFang SC; font-weight: 500; color: #111111; line-height: 1; } .inner-box .other-info .drug-list .drug-item .drug-info .num-box .use { font-size: 0.75rem; font-family: PingFang SC; color: #999999; } .inner-box .other-info .drug-list .drug-item .drug-info .num-box .amount { font-size: 0.75rem; font-family: PingFang SC; font-weight: 500; color: #999999; line-height: 1; } .inner-box .other-info .item { height: 2.5rem; display: flex; align-items: center; justify-content: space-between; } .inner-box .other-info .item:last-child { border-bottom: none; } .inner-box .other-info .item .left { flex: 1; display: flex; align-items: center; } .inner-box .other-info .item .left .label { min-width: 4.375rem; font-size: 0.875rem; color: #000; } .inner-box .other-info .item .left .text { font-size: 0.875rem; color: #1b1b1b; } .inner-box .other-info .item .right { display: flex; align-items: center; justify-content: flex-end; } .inner-box .other-info .item .right .text { font-size: 0.875rem; color: #1b1b1b; } .inner-box .other-info .item .right .ic-close { margin-left: 0.3125rem; width: 0.9375rem; height: 0.9375rem; } .inner-box .other-info .item .right .ic-back { margin-left: 0.3125rem; width: 0.46875rem; height: 0.9375rem; } .inner-box .other-info .item .item-btn { max-width: 6.25rem; padding: 0 0.46875rem; height: 1.5rem; border-radius: 0.75rem; line-height: 1.5rem; font-size: 0.75rem; color: #000; border: 0.03125rem solid #d8d8d8; display: flex; align-items: center; justify-content: center; } .inner-box .remarks { height: 2.75rem; padding: 0 0.9375rem; background: #FFFFFF; border-radius: 0.5rem; margin-top: 0.625rem; display: flex; align-items: center; } .inner-box .remarks uni-input { width: 100%; font-size: 0.875rem; font-family: PingFang SC; font-weight: 500; color: #000000; } .inner-box .remarks .input { font-size: 0.875rem; font-family: PingFang SC; font-weight: 500; color: #999999; } .btn-box { z-index: 9999; width: 100%; padding: 0.9375rem 0.9375rem 0; position: fixed; bottom: 0; left: 0; box-sizing: border-box; background-color: #ffffff; display: flex; flex-direction: column; align-items: center; justify-content: center; } .btn-box .btn { margin-bottom: 0.625rem; width: 100%; height: 2.75rem; line-height: 2.75rem; text-align: center; font-size: 1.0625rem; font-family: PingFang SC; font-weight: 400; color: #FFFFFF; background: #C39A58; border-radius: 0.3125rem; position: relative; } .btn-box .btn .contact-btn { position: absolute; width: 100%; height: 100%; display: flex; opacity: 0; } .btn-box .btn1 { margin-bottom: 0.625rem; width: 100%; height: 2.75rem; line-height: 2.75rem; text-align: center; font-size: 1.0625rem; font-family: PingFang SC; font-weight: 400; color: #C39A58; border: 0.03125rem solid #C39A58; border-radius: 0.3125rem; position: relative; } .btn-box .btn1 .contact-btn { position: absolute; width: 100%; height: 100%; display: flex; opacity: 0; } .pay-type { box-sizing: border-box; background: #FFFFFF; border-radius: 0.5rem; margin-top: 0.625rem; padding: 1.25rem 0.9375rem 0.625rem; display: flex; flex-direction: column; justify-content: space-between; } .pay-type .title { font-size: 0.875rem; font-family: PingFang SC; font-weight: 500; color: #999999; line-height: 1; margin-bottom: 0.3125rem; } .pay-type .item { padding: 0.46875rem 0; display: flex; align-items: center; justify-content: space-between; } .pay-type .item .left { display: flex; align-items: center; } .pay-type .item .left uni-image { width: 1.375rem; height: 1.375rem; margin-right: 0.625rem; } .pay-type .item .left .text { font-size: 0.9375rem; font-family: PingFang SC; font-weight: bold; color: #222222; line-height: 1; } .coupon { height: 100%; } .coupon .empty { display: flex; align-items: center; justify-content: center; height: 20.3125rem; width: 100%; } .coupon .empty uni-image { width: 8.75rem; height: 6.25rem; } .coupon-box { overflow-y: auto; padding: 2.5rem 0.625rem 2.5rem; height: 20.3125rem; width: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; box-sizing: border-box; } .coupon-box .coupon-item { width: 100%; display: flex; align-items: center; justify-content: flex-start; margin-bottom: 0.5rem; height: 5.3125rem; } .coupon-box .coupon-item:last-child { margin-bottom: 0; } .coupon-box .coupon-item .left { color: #fff; font-size: 1.125rem; font-weight: bold; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; width: 7.1875rem; } .coupon-box .coupon-item .left uni-image { position: absolute; width: 7.1875rem; height: 5.3125rem; color: #fff; } .coupon-box .coupon-item .left .num { font-size: 1.25rem; } .coupon-box .coupon-item .left .pic-num { font-size: 0.625rem; z-index: 99; } .coupon-box .coupon-item .right { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; height: 5.3125rem; width: calc(100% - 7.1875rem); padding: 0 0.53125rem 0 0.75rem; background-color: #fff; box-sizing: border-box; } .coupon-box .coupon-item .right .title { width: 100%; font-size: 0.9375rem; color: #282828; height: 2.90625rem; line-height: 2.90625rem; border-bottom: 1px solid #f0f0f0; } .coupon-box .coupon-item .right .btns { display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: 0.625rem; color: #999; height: 2.375rem; } .coupon-box .coupon-item .right .btns .btn { width: 4.25rem; height: 1.375rem; border-radius: 0.6875rem; font-size: 0.6875rem; color: #fff; text-align: center; line-height: 1.375rem; background-color: #C39A58; } .coupon-box .coupon-item .right .btns .btn .gray { background-color: #ccc; }