| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- .head {
- display: flex;
- align-items: center;
- width: 100vw;
- height: 120rpx;
- padding: 0 20rpx 0 30rpx;
- box-sizing: border-box;
- .count {
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .expand {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- .but {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- width: 80rpx;
- height: 80rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- border: 2rpx solid #CCCCCC;
- margin-left: 20rpx;
- color: #666666;
- }
- }
- }
- .exp {
- margin-top: 8rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .trace-box {
- background-color: #ffffff;
- margin-bottom: 20rpx;
- .item {
- position: relative;
- width: 100vw;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- .resource {
- position: absolute;
- padding: 4rpx 14rpx;
- background-color: #3874F6;
- color: #fff;
- font-size: 24rpx;
- top: 20rpx;
- right: 20rpx;
- border-radius: 2rpx;
- }
- .user {
- display: flex;
- .portrait {
- width: 80rpx;
- height: 80rpx;
- text-align: center;
- line-height: 80rpx;
- border-radius: 50%;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- margin-right: 20rpx;
- flex-shrink: 0;
- }
- .content {
- .label {
- font-size: 30rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- text {
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- }
- }
- }
- .exp {
- color: #999999;
- }
- }
- .text {
- width: 100%;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- word-break: break-all;
- margin-top: 10rpx;
- }
- .type {
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin-top: 10rpx;
- text {
- font-size: 24rpx;
- color: #333333;
- }
- }
- }
- .bottom {
- border-top: 1px solid #DDDDDD;
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- height: 70rpx;
- background: #FFFFFF;
- box-sizing: border-box;
- padding: 0 30rpx;
- navigator {
- padding: 0 20rpx;
- line-height: 70rpx;
- border-radius: 8rpx;
- .iconfont {
- font-size: 28rpx;
- color: #999999;
- margin-right: 8rpx;
- }
- font-size: 24rpx;
- font-family: PingFang SC-Regular,
- PingFang SC;
- color: #333333;
- }
- .comment {
- padding: 0 10rpx;
- margin-left: -10rpx;
- }
- }
- }
- .custom-class {
- --search-background-color: #fff !important;
- padding-right: 10rpx !important;
- }
- .createdate {
- display: flex;
- align-items: center;
- font-size: 24rpx;
- color: #3874F6;
- margin-bottom: 20rpx;
- }
- .createdate::before {
- content: '';
- display: inline-block;
- width: 16rpx;
- height: 16rpx;
- border-radius: 50%;
- border: 4rpx solid #3874F6;
- box-sizing: border-box;
- margin-right: 8rpx;
- }
|