@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_title { width: 690rpx; margin: 0 auto; display: flex; justify-content: flex-start; align-items: flex-end; } .user .user_data .data_title view { font-size: 28rpx; font-weight: bold; } .user .user_data .data_title text { color: #fb231f; font-size: 60rpx; font-weight: bold; } .user .user_con { width: 690rpx; margin: 0 auto; } .user .user_con .user_title { font-size: 36rpx; font-weight: bold; height: 100rpx; line-height: 100rpx; } .user .user_con .user_list .list_con { width: 100%; padding: 10rpx 0; box-sizing: border-box; } .user .user_con .user_list .list_con .avatar { width: 68rpx; height: 68rpx; border-radius: 50%; margin-right: 20rpx; } .user .user_con .user_list .list_con .user_name view { font-size: 32rpx; margin-bottom: 10rpx; } .user .user_con .user_list .list_con .user_name text { font-size: 28rpx; color: #999; }