@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 筛选组件 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .content .backImg { position: fixed; width: 100%; height: 100%; top: 0; left: 0; z-index: -1; } .content .container { box-sizing: border-box; padding: 20rpx 30rpx; min-height: calc(100vh - 166rpx - 88rpx - 44rpx); } .content .container .card { width: 690rpx; background: #fff; border-radius: 30rpx; box-sizing: border-box; padding: 40rpx 30rpx; } .content .container .card .list .list-item { display: flex; align-items: center; justify-content: space-between; font-size: 30rpx; color: #181818; height: 91rpx; line-height: 91rpx; border-bottom: 1rpx solid #f5f6fa; } .content .container .card .list .list-item:nth-child(1) { height: 148rpx; line-height: 148rpx; } .content .container .card .list .list-item:nth-child(1) .right { display: flex; align-items: center; font-size: 30rpx; color: #babdc7; } .content .container .card .list .list-item:nth-child(4) .right { display: flex; align-items: center; } .content .container .card .list .list-item:nth-child(5) .right { display: flex; align-items: center; } .content .container .card .list .list-item:nth-child(6) .right { display: flex; align-items: center; } .content .container .card .list .list-item:nth-child(7) .right { display: flex; align-items: center; } .content .container .card .list .list-item:last-child { border-bottom: none; } .content .bottom { position: fixed; left: 0; bottom: 0; padding-bottom: constant(safe-area-inset-bottom); /*兼容 IOS<11.2*/ padding-bottom: env(safe-area-inset-bottom); /*兼容 IOS>11.2*/ display: flex; align-items: center; justify-content: center; width: 100%; height: 166rpx; background: #FFFFFF; box-shadow: 0rpx -2rpx 4rpx 0rpx rgba(186, 189, 199, 0.2); } .content .avatar_choose { display: flex; align-items: center; justify-content: space-between; margin-top: 100rpx; margin-bottom: 100rpx; } .content .avatar_choose .cards { display: flex; flex-direction: column; align-items: center; justify-content: center; } .content .avatar_choose .cards ._img { width: 150rpx; height: 150rpx; margin-bottom: 20rpx; } .content .avatar_choose .cards .choose_btn { width: 100rpx; height: 50rpx; border-radius: 10rpx; background-color: #009379; color: #FFFFFF; text-align: center; line-height: 50rpx; }