123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- body {
- height: 100%;
- overflow: hidden;
- background-color: #f7f7f8;
- }
- .viewport {
- height: 100%;
- background-repeat: no-repeat;
- background-image: url(https://pcapi-xiaotuxian-front-devtest.itheima.net/miniapp/images/center_bg.png);
- background-size: 100% auto;
- }
- /* 用户信息 */
- .profile {
- margin-top: 0.9375rem;
- position: relative;
- }
- .profile .overview {
- display: flex;
- height: 3.75rem;
- padding: 0 1.125rem;
- color: #fff;
- }
- .profile .avatar {
- width: 3.75rem;
- height: 3.75rem;
- border-radius: 50%;
- background-color: #eee;
- }
- .profile .gray {
- filter: grayscale(100%);
- }
- .profile .meta {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-start;
- line-height: 0.9375rem;
- padding: 0.5rem 0;
- margin-left: 0.625rem;
- }
- .profile .nickname {
- max-width: 5.625rem;
- margin-bottom: 0.5rem;
- font-size: 0.9375rem;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .profile .extra {
- display: flex;
- font-size: 0.625rem;
- }
- .profile .tips {
- font-size: 0.6875rem;
- }
- .profile .update {
- padding: 0.09375rem 0.3125rem 0.03125rem;
- color: rgba(255, 255, 255, 0.8);
- border: 0.03125rem solid rgba(255, 255, 255, 0.8);
- margin-right: 0.3125rem;
- border-radius: 0.9375rem;
- }
- .profile .settings {
- position: absolute;
- bottom: 0;
- right: 1.25rem;
- font-size: 0.9375rem;
- color: #fff;
- }
- /* 我的订单 */
- .orders {
- position: relative;
- z-index: 99;
- padding: 0.9375rem;
- margin: 1.5625rem 0.625rem 0;
- background-color: #fff;
- border-radius: 0.3125rem;
- box-shadow: 0 0.125rem 0.1875rem rgba(240, 240, 240, 0.6);
- }
- .orders .title {
- height: 1.25rem;
- line-height: 1.25rem;
- font-size: 0.875rem;
- color: #1e1e1e;
- }
- .orders .title .navigator {
- font-size: 0.75rem;
- color: #939393;
- float: right;
- }
- .orders .section {
- width: 100%;
- display: flex;
- justify-content: space-between;
- padding: 1.25rem 0.625rem 0.3125rem;
- }
- .orders .section .navigator,
- .orders .section .contact {
- text-align: center;
- font-size: 0.75rem;
- color: #333;
- }
- .orders .section .navigator::before,
- .orders .section .contact::before {
- display: block;
- font-size: 1.875rem;
- color: #ff9545;
- }
- .orders .section .navigator::after,
- .orders .section .contact::after {
- border: none;
- }
- .orders .section .contact {
- padding: 0;
- margin: 0;
- border: 0;
- background-color: transparent;
- line-height: inherit;
- }
|