messageHeadline.wxss 519 B

1234567891011121314151617181920212223242526
  1. /* components/messageHeadline/messageHeadline.wxss */
  2. .message-headline {
  3. position: relative;
  4. display: flex;
  5. align-items: center;
  6. justify-content: space-between;
  7. background-color: #ffffff;
  8. }
  9. .message-headline::before {
  10. content: "";
  11. position: absolute;
  12. top: 0;
  13. left: 30rpx;
  14. right: 30rpx;
  15. height: 2rpx;
  16. background-color: #efefef;
  17. }
  18. .message-headline .num {
  19. font-size: 26rpx;
  20. font-family: PingFangSC-Regular, PingFang SC;
  21. font-weight: 400;
  22. color: rgba(51, 51, 51, 1);
  23. padding: 30rpx;
  24. }