123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- .headImg {
- display: flex;
- }
- .tabs {
- margin-top: -42px;
- :global {
- .van-tabs__wrap {
- height: 42px;
- }
- .van-tabs__nav {
- background-color: rgba(0, 0, 0, 0.68);
- backdrop-filter: blur(10px);
- -webkit-backdrop-filter: blur(10px);
- }
- .van-tabs__line {
- background-color: transparent !important;
- height: 0;
- width: 0;
- border: 8px solid transparent;
- border-bottom-color: #fff;
- border-radius: 0;
- }
- .van-empty__image {
- width: 100px;
- height: 114px;
- }
- }
- }
- .tabContent {
- position: relative;
- padding: 12px;
- box-sizing: border-box;
- overflow-y: auto;
- }
- .tabContent.hasUser {
- padding-bottom: 80px;
- }
- .itemContent {
- padding: 12px;
- border-radius: 12px;
- background-color: #fff;
- min-height: 100%;
- box-sizing: border-box;
- }
- .item {
- display: flex;
- padding: 10px 0;
- box-sizing: border-box;
- align-items: center;
- .left {
- width: 32px;
- margin: 0 21px 0 2px;
- text-align: center;
- font-weight: bold;
- }
- .center {
- display: flex;
- align-items: center;
- }
- .right {
- margin-left: auto;
- text-align: right;
- .fraction {
- font-size: 14px;
- font-weight: 600;
- color: #fa6400;
- margin-bottom: 4px;
- }
- .time {
- font-size: 12px;
- color: #999;
- }
- }
- &:first-child {
- padding-top: 0;
- border-bottom: 1px solid #eee;
- }
- &:last-child {
- padding-bottom: 0;
- }
- .user {
- margin-left: 6px;
- .userContent{
- display: flex;
- align-items: center;
- margin-bottom: 4px;
- }
- .name {
- font-size: 15px;
- color: #333;
- margin-right: 6px;
- }
- .tag {
- font-size: 12px;
- background-color: #ffe2b2;
- color: #ff8c00;
- border-radius: 4px;
- margin-right: 4px;
- padding: 1px 2px;
- }
- .times{
- font-size: 12px;
- color: #999;
- }
- }
- }
- .activeUser {
- --van-cell-line-height: 20px;
- position: absolute;
- left: 0;
- bottom: 0;
- width: 100%;
- box-sizing: border-box;
- box-shadow: 0 -8px 12px #ebedf0;
- background-color: #fff;
- :global {
- .van-cell__title {
- font-weight: bold;
- }
- .van-cell__label {
- font-weight: 400;
- }
- .van-cell__value {
- flex: initial;
- margin-left: 8px;
- }
- }
- .avator {
- width: 48px;
- height: 48px;
- margin-right: 12px;
- }
- .btn {
- padding: 4px 10px;
- border: none;
- background: linear-gradient(180deg, #ffa200 0%, #ff6900 100%);
- border-radius: 16px;
- }
- .num {
- font-size: 14px;
- font-weight: bold;
- color: #fa6400;
- }
- }
|