@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .edit_title { display: flex; align-items: center; font-size: 32rpx; } .editBox { width: 100%; height: 840rpx; display: flex; flex-direction: column; background-color: #fff; border-top: 1px solid #E7E7E7; padding: 0 18px; } .editBox .edit_avatar { height: 164rpx; display: flex; justify-content: space-between; } .editBox .edit_avatar .userAvatar { display: flex; align-items: center; } .editBox .edit_avatar .userAvatar image { width: 120rpx; height: 120rpx; } .editBox .setName { display: flex; justify-content: space-between; height: 92rpx; border-top: 1px solid #E7E7E7; } .editBox .setName .input_details { display: flex; align-items: center; flex-direction: row; } .editBox .setName .input_details .nickname { width: 100px; text-align: end; font-size: 28rpx; color: #999999; } .editBox .setPicker { height: 92rpx; border-top: 1px solid #E7E7E7; } .editBox .setPicker .content { height: 92rpx; display: flex; align-items: center; justify-content: space-between; } .editBox .setPicker .content .input_details { display: flex; align-items: center; } .editBox .setPicker .content .input_details .details { display: flex; flex-direction: row; } .editBox .setPicker .content .input_details .details .text { font-size: 28rpx; color: #999999; } .editBox .setPicker .content .input_details .arrow { display: flex; } .editBox .setPicker .content .input_details .arrow image { width: 32rpx; height: 32rpx; } .editBox .setIntro { display: flex; flex-direction: column; justify-content: space-evenly; height: 216rpx; border-top: 1px solid #E7E7E7; } .editBox .setIntro .input_details { display: flex; align-items: center; } .editBox .setIntro .input_details .selfdomIntro { width: 100%; height: 88rpx; } .editBox .setIntro .input_details .selfdomIntro textarea { width: 100%; height: 88rpx; font-size: 28rpx; color: #999999; } .btnBox { position: absolute; margin: 0 85rpx; bottom: 40px; } .btnBox .btn button { width: 580rpx; height: 88rpx; border: none; border-radius: 100rpx; border: 1px solid lightgray; font-size: 36rpx; color: #545454; text-align: center; } .btnBox .btn button:first-child { background-color: #0056a8; color: white; margin-bottom: 24rpx; } .btnBox .btn button::after { border: none; }