123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- page {
- background-color: #f1f2f3;
- }
- .type {
- padding: 5px;
- font-size: 22rpx;
- color: #fff;
- letter-spacing: 3px;
- writing-mode: vertical-lr;
- background: #4F7BFD;
- border-radius: 3px;
- margin-right: 5px;
- }
- .flex-column-between {
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .small {
- font-size: 26rpx;
- color: #333;
- line-height: 25px;
- }
- .tags {
- width: 100%;
- }
- .mr-5 {
- margin-right: 5px;
- }
- .mt-5 {
- margin-bottom: 5px;
- }
- .textIndentNodeChild {
- padding-left: 10px;
- }
- .smallChild {
- font-size: 24rpx;
- color: #666
- }
- .footer {
- display: flex;
- justify-content: space-between;
- padding: 0 30rpx;
- position: fixed;
- width: 100vw;
- height: 130rpx;
- background: #FFFFFF;
- box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
- bottom: 0;
- box-sizing: border-box;
- z-index: 9999;
- padding-top: 10rpx;
- .but-box {
- .but {
- min-width: 180rpx;
- height: 90rpx;
- background: #3874F6;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- }
- .delete {
- background: var(--warning);
- }
- .abandon {
- background: var(--error);
- }
- }
- }
|