@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .cap_chart { height: 300px; margin-top: 30rpx; width: 100%; overflow: hidden; z-index: 99; } .user { padding-bottom: 100rpx; } .user .search_box { width: 690rpx; margin: 0 auto; height: 100rpx; padding: 5rpx 0; } .user .search_box .search_inp { margin: 0 auto; border: 2rpx solid #ccc; height: 80rpx; padding: 0 20rpx; box-sizing: border-box; border-radius: 44rpx; } .user .search_box .search_inp input { width: 80%; height: 80rpx; line-height: 80rpx; } .user .search_box .search_inp .iconfont { color: #999; font-size: 40rpx; } .user .tabs { padding: 0 30rpx; margin: 30rpx 0; box-sizing: border-box; } .user .tabs .active_tab { background: linear-gradient(95deg, #ff232c 0%, #ff571b 100%); color: #fff; border: none; } .user .tabs view { width: 120rpx; text-align: center; height: 60rpx; line-height: 60rpx; border-radius: 32rpx; border: 2rpx solid #999999; color: #999; } .user .user_data { padding: 15rpx 0; } .user .user_data .data_item { text-align: center; } .user .user_data .data_item view { font-size: 60rpx; font-weight: bold; margin-bottom: 20rpx; } .user .user_data .data_item text { font-size: 28rpx; color: #999; } .user .user_con { width: 100%; } .user .user_con .user_title { width: 100%; height: 88rpx; border-bottom: 2rpx solid #eee; font-size: 32rpx; } .user .user_con .user_title text { width: 25%; text-align: center; } .user .user_con .user_list .user_info { width: 100%; height: 100rpx; background: #fff; } .user .user_con .user_list .user_info view { width: 25%; text-align: center; font-size: 32rpx; } .user .user_con .user_list .user_info view .avatar { width: 68rpx; height: 68rpx; border-radius: 50%; } .user .user_con .user_list .user_opear { width: 100%; height: 68rpx; background: #f8f8f8; } .user .user_con .user_list .user_opear view { width: 50%; height: 68rpx; line-height: 68rpx; text-align: center; color: #fb231f; font-weight: bold; }