@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* uni.scss */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ page { background-color: #F6F6F6 !important; } .headbgbox { background-color: #fff; padding: 23rpx 31rpx; box-sizing: border-box; position: fixed; top: 0; z-index: 999; width: 100%; } .headbgbox .screen { display: flex; justify-content: center; align-items: center; } .searchbox { padding-left: 30rpx; box-sizing: border-box; background-color: #ECECEC; border-radius: 38rpx; height: 75rpx; margin: 0 auto; display: flex; align-items: center; } .searchbox input { width: 240px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .cardlist { display: flex; justify-content: center; flex-direction: column; margin: 0 auto; margin-top: 120rpx; } .lable { display: flex; margin: 0 auto; margin-top: 20rpx; } .lable .radiobox { margin-right: -10rpx; margin-left: 30rpx; } .card { flex: 1; overflow: hidden; margin: 0 30rpx; border-radius: 20rpx; background-color: #fff; position: relative; box-shadow: 0px 8rpx 20rpx 1rpx rgba(31, 36, 42, 0.08); } .card .passreview { position: absolute; right: 30rpx; top: 30rpx; width: 141rpx; height: 123.5rpx; } .card .passreview image { width: 100%; height: 100%; } .card .contadra { font-size: 24rpx; color: #BEBDBB; padding: 20rpx 0; margin: 0 30rpx; border-top: 1rpx solid #E8E8E8; } .card .innerbox { padding: 49rpx 0rpx; padding-bottom: 30rpx; margin: 0 30rpx; display: flex; align-items: center; border-bottom: 1rpx solid #E8E8E8; } .card .innerbox .listicon { width: 32rpx; height: 36rpx; } .card .innerbox .listicon image { width: 100%; height: 100%; } .card .cardtitle { display: block; max-width: 390rpx; font-size: 32rpx; font-weight: 600; padding-left: 10rpx; } .card .timebox { background-color: #FFF8E5; width: 100%; padding: 0 30rpx; box-sizing: border-box; color: #D8AB5A; font-size: 28rpx; height: 60rpx; line-height: 60rpx; } .card .contractmsg { padding: 30rpx; box-sizing: border-box; color: #68625B; font-size: 26rpx; } .totalmanage { margin-top: 90rpx; margin-bottom: 100rpx; display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 30rpx; box-sizing: border-box; } .totalmanage .managebox { width: 23.8rpx; height: 29.7rpx; } .totalmanage .managebox image { width: 100%; height: 100%; } .totalmanage .maboxtitls { width: 160rpx; height: 60rpx; display: flex; align-items: center; justify-content: center; border-radius: 30rpx; background-color: #D9D9D9; font-size: 28rpx; box-sizing: border-box; }