@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .user_list { width: 100vw; min-height: 100%; background-color: #f9f9fb; position: relative; } .user_list .search { width: 100%; height: 10vh; background-color: #fff; padding: 0 30rpx; box-sizing: border-box; } .user_list .search .inp { height: 80rpx; border: 2rpx solid #cccccc; border-radius: 44rpx; padding: 0 30rpx; box-sizing: border-box; } .user_list .search .inp input { width: 80%; height: 100%; } .user_list .search .inp .iconfont { font-size: 50rpx; color: #ccc; } .user_list .search .query { margin-right: 30rpx; width: 120rpx; height: 56rpx; text-align: center; line-height: 56rpx; background: linear-gradient(94deg, #a080ff 0%, #5d6bff 100%); font-size: 28rpx; color: #fff; border-radius: 44rpx; } .user_list .scroll { height: 84vh; } .user_list .scroll scroll-view { height: 100%; } .user_list .scroll .list { margin-top: 30rpx; padding-bottom: 120rpx; } .user_list .scroll .list .list_con { width: 690rpx; height: 128rpx; margin: 0 auto 30rpx; background-color: #fff; padding: 0 30rpx; box-sizing: border-box; border-radius: 25rpx; } .user_list .scroll .list .list_con image { height: 36rpx; width: 36rpx; } .user_list .scroll .list .list_con .vip_icon { width: 88rpx; height: 36rpx; margin-left: 15rpx; } .user_list .scroll .list .list_con .iconfont { font-size: 45rpx; } .user_list .btn_box { width: 80%; margin: 0 auto; } .user_list .btn_box view { width: 260rpx; height: 78rpx; line-height: 78rpx; font-size: 32rpx; border-radius: 44rpx; } .user_list .btn_box .after_btn { border: 2rpx solid #fb231f; } .user_list .hint { width: 100%; text-align: center; padding: 20rpx 0 0; color: #fb231f; font-size: 30rpx; } .add_new { width: 100%; height: 100rpx; background: linear-gradient(93deg, #ff232c 0%, #ff571b 100%); color: #fff; position: fixed; bottom: 0; left: 0; font-size: 30rpx; }