@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 字体大小变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ page { height: auto; background: #f7f7f7; } .details { padding-bottom: 130rpx; } .btn-hover { background: #ffffff; } .animation { /* transition: transform 0.3s ease;*/ transition-property: -webkit-transform; transition-property: transform; transition-property: transform, -webkit-transform; transition-duration: 0.3s; transition-timing-function: ease; } .invoice-balance { width: 702rpx; height: auto; padding: 0 24rpx; background: #ffffff; float: left; margin-top: 24rpx; margin-bottom: 24rpx; } .invoice-balance .balabce-t { width: 100%; height: 86rpx; line-height: 86rpx; font-size: 28rpx; color: #333333; float: left; } .invoice-balance .balabce-t .balabce-t-le { float: left; font-weight: bold; } .invoice-balance .balabce-t .balabce-t-ri { float: right; display: flex; align-items: center; } .invoice-balance .balabce-t .balabce-t-ri .money { display: flex; float: left; } .invoice-balance .balabce-t .balabce-t-ri .checkbox-box { display: flex; width: 60rpx; float: left; height: 100%; font-size: 24rpx; } .invoice-balance .balabce-t .balabce-t-ri .checkbox-box .checkbox { width: 40rpx; text-align: right; box-sizing: border-box; text-align: center; text-decoration: none; border-radius: 0; -webkit-tap-highlight-color: transparent; overflow: hidden; } .invoice-balance .balabce-b { width: 100%; float: left; overflow: hidden; } .invoice-balance .balabce-b .balabce-b-text { width: 100%; line-height: 58rpx; font-size: 24rpx; color: #ff457b; text-align: right; float: right; } .invoice-balance .balabce-b.balabce-b--hide { padding: 0 0; height: 0px; line-height: 0px; } .clause { float: right; font-size: 24rpx; color: #999999; margin-top: 60rpx; margin-right: 24rpx; } .clause.noclick { pointer-events: none; } .clause .text { color: #1890f9; } .clause .text.color-bg { color: #333333; } .status-text { overflow: hidden; padding: 0 24rpx; background: #fff; font-size: 26rpx; } .status-text .view-type { float: left; color: #ff457b; } .tui-modal-custom-text { min-height: 300rpx; margin-bottom: 30rpx; } .tui-modal-custom-text .title { width: 100%; height: auto; font-size: 30rpx; text-align: justify; color: #333333; line-height: 40rpx; margin-bottom: 30rpx; } .tui-modal-custom-text .tui-modal-custom-list { width: 100%; height: 350rpx; overflow: hidden; } .tui-modal-custom-text .tui-modal-custom-list .custom-list { width: 100%; height: 117rpx; box-sizing: border-box; float: left; padding: 15rpx 0; } .tui-modal-custom-text .tui-modal-custom-list .custom-list .custom-list-image { width: 86rpx; height: 86rpx; float: left; border-radius: 6rpx; box-sizing: border-box; border: 1px solid #e1e1e1; } .tui-modal-custom-text .tui-modal-custom-list .custom-list .custom-list-image image { width: 84rpx; height: 84rpx; border-radius: 6rpx; display: block; } .tui-modal-custom-text .tui-modal-custom-list .custom-list .custom-list-name { width: 400rpx; height: 86rpx; float: right; line-height: 43rpx; font-size: 26rpx; color: #666666; text-overflow: ellipsis; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; } .tui-modal-button { width: 100%; height: 72rpx; display: flex; } .tui-modal-button .modal-button { width: 200rpx; height: 72rpx; line-height: 72rpx; border-radius: 36rpx; box-sizing: border-box; } .tui-modal-button .modal-button.cancel { border: 1px solid #b2b2b2; background: #ffffff; color: #333333; } .tui-modal-button .modal-button.confirm { background: linear-gradient(270deg, #f83c6c 0%, #fc32b4 100%); color: #ffffff; }