@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .content.data-v-57280228 { margin: 0 auto; margin-top: 40rpx; } .content .main.data-v-57280228 { margin: 20rpx; background-color: #fff; border-radius: 30rpx; padding: 30rpx; } .content .main .title.data-v-57280228 { display: flex; align-items: center; justify-content: center; text-align: center; font-size: 36rpx; font-weight: 600; margin-top: 30rpx; } .content .main .title .shop-images.data-v-57280228 { width: 50rpx; height: 50rpx; margin-right: 20rpx; } .content .main .title .name.data-v-57280228 { -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; text-overflow: ellipsis; } .content .main .money.data-v-57280228 { text-align: left; padding: 30rpx 40rpx; font-size: 42rpx; font-weight: 600; margin-top: 40rpx; background-color: #f8f8f8; border-radius: 20rpx; } .content .main .money .input.data-v-57280228 { display: flex; align-items: center; justify-content: space-between; font-size: 38rpx; } .content .main .money .input .txt.data-v-57280228 { width: 300rpx; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; margin-right: 30rpx; } .content .main .money .input .num.data-v-57280228 { font-weight: 600; text-align: right; font-size: 38rpx; } .content .main .money .input .wrap.data-v-57280228 { position: relative; } .content .main .money .input .wrap .line.data-v-57280228 { position: absolute; top: 10rpx; right: 14rpx; -webkit-animation: blink-data-v-57280228 1s infinite; animation: blink-data-v-57280228 1s infinite; color: #556dea; } /* 光标闪烁动画 */ @-webkit-keyframes blink-data-v-57280228 { 0%, 100% { opacity: 1; } 50% { opacity: 0; } } @keyframes blink-data-v-57280228 { 0%, 100% { opacity: 1; } 50% { opacity: 0; } } .list-item.data-v-57280228 { display: flex; justify-content: space-between; align-items: center; padding: 30rpx 20rpx; border-bottom: 1rpx solid #eee; } .list-item .titles.data-v-57280228 { font-size: 32rpx; } .right-section.data-v-57280228 { display: flex; align-items: center; gap: 20rpx; } .payment-section.data-v-57280228 { display: flex; justify-content: space-between; padding: 40rpx 20rpx; font-weight: bold; font-size: 38rpx; } .payment-amount.data-v-57280228 { color: #ff2d55; font-size: 38rpx; } .shadow.data-v-57280228 { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: #000; opacity: 0.5; width: 100%; height: 100vh; z-index: 999999; } /* 自定义弹窗样式 */ .custom-modal.data-v-57280228 { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999; display: flex; justify-content: center; align-items: center; } .modal-mask.data-v-57280228 { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.5); } .modal-content.data-v-57280228 { width: 80%; background-color: #fff; border-radius: 16rpx; overflow: hidden; z-index: 1000; -webkit-animation: modal-show-data-v-57280228 0.3s; animation: modal-show-data-v-57280228 0.3s; } .modal-content .flex-al.data-v-57280228 { display: flex; align-items: center; justify-content: center; padding: 40rpx; } .modal-content .code.data-v-57280228 { width: 200rpx; height: 40rpx; margin-right: 20rpx; } @-webkit-keyframes modal-show-data-v-57280228 { from { opacity: 0; -webkit-transform: scale(0.7); transform: scale(0.7); } to { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } } @keyframes modal-show-data-v-57280228 { from { opacity: 0; -webkit-transform: scale(0.7); transform: scale(0.7); } to { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } } .modal-header.data-v-57280228 { padding: 30rpx; text-align: center; border-bottom: 1rpx solid #eee; } .modal-title.data-v-57280228 { font-size: 32rpx; font-weight: bold; text-align: center; } .modal-body.data-v-57280228 { padding: 40rpx 30rpx; font-size: 28rpx; line-height: 1.6; color: #666; } .modal-footer.data-v-57280228 { padding: 20rpx 30rpx; display: flex; justify-content: center; border-top: 1rpx solid #eee; } .modal-btn.data-v-57280228 { background-color: #5fce72; color: #fff; height: 80rpx; line-height: 80rpx; padding: 0 60rpx; border-radius: 40rpx; font-size: 28rpx; border: none; }