123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .wrap.data-v-211ae53c {
- width: 100%;
- height: 100vh;
- background-color: #fff;
- }
- .wrap .avatar.data-v-211ae53c {
- width: 100%;
- height: 80px;
- text-align: center;
- padding: 20px 0;
- }
- .wrap .avatar view.data-v-211ae53c {
- position: relative;
- height: 80px;
- width: 80px;
- text-align: center;
- display: inline-block;
- }
- .wrap .avatar view.data-v-211ae53c:before {
- width: 80px;
- height: 80px;
- display: block;
- content: " ";
- top: 50%;
- left: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- position: absolute;
- z-index: 99;
- background: rgba(0, 0, 0, 0.2);
- border-radius: 50%;
- }
- .wrap .avatar view .file.data-v-211ae53c {
- top: 50%;
- left: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- z-index: 1111;
- color: #333;
- position: absolute;
- display: inline-block;
- background: #fff;
- width: 40px;
- height: 20px;
- line-height: 20px;
- overflow: hidden;
- text-decoration: none;
- text-indent: 0;
- cursor: pointer;
- border-radius: 5px;
- font-size: 13px;
- }
- .wrap .avatar view image.data-v-211ae53c {
- width: 80px;
- height: 80px;
- overflow: hidden;
- border-radius: 50%;
- position: absolute;
- left: 50%;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- }
- .theForm.data-v-211ae53c {
- width: 650rpx;
- margin: 0 auto;
- }
- .theForm .fields-box.data-v-211ae53c {
- width: 100%;
- float: left;
- font-size: 31rpx;
- height: 110rpx;
- line-height: 110rpx;
- border: 1px solid #e0e0e0;
- border-left: 0;
- border-right: 0;
- }
- .theForm .fields-box.data-v-211ae53c:nth-child(1) {
- border-bottom: 0;
- }
- .theForm .fields-box.data-v-211ae53c:nth-child(2) {
- border-bottom: 0;
- }
- .theForm .fields-box view.data-v-211ae53c:first-child {
- float: left;
- width: 160rpx;
- color: #999;
- }
- .theForm .fields-box view.data-v-211ae53c:last-child {
- float: right;
- width: 490rpx;
- color: #333;
- }
- .theForm .fields-box view:last-child input.data-v-211ae53c {
- height: 110rpx;
- line-height: 110rpx;
- }
- .theForm .btn.data-v-211ae53c {
- float: left;
- margin: 25rpx 0;
- }
- .theForm .btn button.data-v-211ae53c {
- width: 650rpx;
- height: 100rpx;
- line-height: 100rpx;
- text-align: center;
- background-color: #c30d24;
- border: 1px solid #c30d24;
- color: #fff;
- font-size: 33rpx;
- }
- .theForm .logout.data-v-211ae53c {
- float: left;
- }
- .theForm .logout button.data-v-211ae53c {
- width: 650rpx;
- height: 100rpx;
- line-height: 100rpx;
- text-align: center;
- background-color: #ffffff;
- color: #a1a1a1;
- font-size: 33rpx;
- border: 0px solid #d6d6d6;
- }
|