2021-10-08 14:10:11 +00:00
|
|
|
/**
|
|
|
|
|
* 顶部内容
|
|
|
|
|
*/
|
|
|
|
|
.top-content {
|
|
|
|
|
background-repeat: no-repeat;
|
2021-11-26 12:30:04 +00:00
|
|
|
background-size: 100% auto;
|
2021-10-08 14:10:11 +00:00
|
|
|
width: 100%;
|
|
|
|
|
min-height: 300rpx;
|
2021-11-30 17:42:14 +00:00
|
|
|
padding-top: var(--status-bar-height);
|
2021-10-08 14:10:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2021-12-02 15:52:21 +00:00
|
|
|
* 头部
|
2021-11-30 17:42:14 +00:00
|
|
|
*/
|
2021-12-02 15:52:21 +00:00
|
|
|
.head-base {
|
|
|
|
|
padding-top: 35rpx;
|
|
|
|
|
}
|
2021-11-30 17:42:14 +00:00
|
|
|
/* #ifdef H5 || APP */
|
|
|
|
|
.head-base {
|
|
|
|
|
margin-bottom: 25rpx;
|
|
|
|
|
}
|
|
|
|
|
/* #endif */
|
2021-10-08 14:10:11 +00:00
|
|
|
.head-avatar {
|
2021-11-30 17:42:14 +00:00
|
|
|
width: 120rpx;
|
|
|
|
|
height: 120rpx !important;
|
2021-10-08 14:10:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 头部导航
|
|
|
|
|
*/
|
|
|
|
|
.head-nav-item {
|
|
|
|
|
width: 25%;
|
|
|
|
|
}
|
|
|
|
|
.head-nav-item .nav-value,
|
|
|
|
|
.head-nav-item .nav-name {
|
|
|
|
|
line-height: 46rpx;
|
|
|
|
|
}
|
|
|
|
|
/**
|
2022-11-20 13:31:42 +00:00
|
|
|
* 头部右上角
|
2021-10-08 14:10:11 +00:00
|
|
|
*/
|
2022-11-20 13:31:42 +00:00
|
|
|
.head-right {
|
2021-11-30 10:57:18 +00:00
|
|
|
z-index: 10;
|
2021-11-30 17:42:14 +00:00
|
|
|
right: 30rpx;
|
2022-01-09 15:09:32 +00:00
|
|
|
top: 110rpx;
|
2021-10-08 14:10:11 +00:00
|
|
|
}
|
2022-11-20 13:31:42 +00:00
|
|
|
.head-right .item .icon {
|
|
|
|
|
width: 35rpx;
|
|
|
|
|
height: 35rpx;
|
|
|
|
|
}
|
|
|
|
|
.head-right .item .badge-icon {
|
2021-10-08 14:10:11 +00:00
|
|
|
top: -10px;
|
|
|
|
|
right: -2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 行内导航列表
|
|
|
|
|
*/
|
|
|
|
|
.nav-list .nav-item {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
.nav-list .nav-item .item-icon {
|
|
|
|
|
width: 40rpx;
|
|
|
|
|
height: 40rpx;
|
|
|
|
|
}
|
|
|
|
|
.nav-list .nav-item .item-desc {
|
|
|
|
|
margin-right: 50rpx;
|
|
|
|
|
margin-top: 2rpx;
|
|
|
|
|
width: calc(100% - 300rpx);
|
|
|
|
|
}
|
|
|
|
|
.nav-list .nav-item .item-arrow {
|
|
|
|
|
width: 25rpx;
|
|
|
|
|
}
|
|
|
|
|
.nav-list-sub {
|
|
|
|
|
padding: 20rpx 0;
|
|
|
|
|
}
|
|
|
|
|
.nav-list-sub .item {
|
|
|
|
|
width: 20%;
|
|
|
|
|
}
|
|
|
|
|
.nav-list-sub .item .item-icon {
|
2021-10-11 16:18:14 +00:00
|
|
|
width: 50rpx;
|
|
|
|
|
height: 50rpx;
|
2021-10-08 14:10:11 +00:00
|
|
|
}
|
|
|
|
|
.nav-list-sub .item .badge-icon {
|
|
|
|
|
top: -2px;
|
2021-12-02 15:52:21 +00:00
|
|
|
left: calc(50% + 35rpx);
|
|
|
|
|
z-index: 1;
|
2021-10-08 14:10:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 聚合导航
|
|
|
|
|
*/
|
|
|
|
|
.nav-box .nav-item {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
width: 25%;
|
|
|
|
|
}
|
|
|
|
|
.nav-box .nav-item .item-icon {
|
2021-10-11 16:18:14 +00:00
|
|
|
width: 45rpx;
|
2021-10-20 09:08:36 +00:00
|
|
|
height: 45rpx !important;
|
2021-10-08 14:10:11 +00:00
|
|
|
}
|
|
|
|
|
.nav-box .nav-item .item-desc {
|
|
|
|
|
margin-right: 50rpx;
|
|
|
|
|
margin-top: 2rpx;
|
|
|
|
|
width: calc(100% - 300rpx);
|
|
|
|
|
}
|