| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- .user-profile {
- min-height: calc(100vh - env(safe-area-inset-bottom));
- display: flex;
- flex-direction: column;
- }
- .user-profile .content {
- border-top-left-radius: 28rpx;
- border-top-right-radius: 28rpx;
- }
- .user-profile .content .user-avatar-box {
- padding: 30rpx;
- }
- .user-profile .content .user-avatar-box .user-avatar {
- width: 120rpx;
- height: 120rpx;
- border-radius: 50%;
- }
- .user-profile .content .row-info {
- padding: 30rpx 20rpx;
- }
- .user-profile .content .row-info .label {
- width: 180rpx;
- }
- .user-profile .content .row-info .bd-btn {
- padding: 8rpx 24rpx;
- border: 1px solid #FF2C3C;
- color: #FF2C3C;
- }
- .user-profile .content .bdb-line {
- border-bottom: 1rpx solid #e5e5e5;
- }
- .user-profile .license {
- margin-top: 80rpx;
- color: #a7a7a7;
- }
- .user-profile .save-btn {
- margin: 40rpx 54rpx 0;
- height: 88rpx;
- border-radius: 10rpx;
- }
- .user-profile .modify-container {
- padding: 30rpx;
- width: 620rpx;
- border-radius: 30rpx;
- }
- .user-profile .modify-container .title {
- padding: 26rpx 0rpx;
- }
- .user-profile .modify-container .btn {
- height: 80rpx;
- border-radius: 20rpx;
- margin: 60rpx 50rpx 0;
- }
- .psw-wrapper {
- width: 548rpx;
- height: 344rpx;
- background-color: #ffffff;
- }
- .psw-wrapper .psw-title {
- width: 100%;
- font-size: 35rpx;
- padding: 43rpx 0 49rpx;
- text-align: center;
- font-weight: 800;
- }
- .psw-wrapper .psw-ipt {
- display: block;
- background-color: #dce3ed;
- height: 90rpx;
- width: 464rpx;
- padding-left: 30rpx;
- margin: 0 auto;
- font-size: 80rpx;
- }
- .psw-wrapper .psw-btn text {
- display: inline-block;
- text-align: center;
- width: 50%;
- padding-top: 29rpx;
- font-size: 35rpx;
- }
- .psw-wrapper .psw-qd {
- color: #32c6ff;
- }
|