index.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .global-card {
  2. .tag-box {
  3. margin-top: 10rpx;
  4. .tag {
  5. height: 40rpx;
  6. font-size: 20rpx;
  7. font-family: PingFang SC-Regular, PingFang SC;
  8. padding: 0 12rpx;
  9. margin-right: 8rpx;
  10. }
  11. }
  12. .title {
  13. position: relative;
  14. display: flex;
  15. height: 42rpx;
  16. align-items: center;
  17. >text {
  18. display: inline-block;
  19. width: 80%;
  20. font-size: 30rpx;
  21. color: #333333;
  22. }
  23. .status {
  24. position: absolute;
  25. right: -30rpx;
  26. width: 132rpx;
  27. height: 40rpx;
  28. border-radius: 20rpx 0px 0px 20rpx;
  29. box-sizing: border-box;
  30. padding-left: 30rpx;
  31. line-height: 40rpx;
  32. font-size: 24rpx;
  33. font-family: PingFang SC-Regular, PingFang SC;
  34. color: #FFFFFF;
  35. }
  36. }
  37. .exp {
  38. height: 34rpx;
  39. font-size: 24rpx;
  40. color: #666;
  41. margin-top: 8rpx;
  42. text {
  43. color: #333333;
  44. }
  45. }
  46. }
  47. .line-1 {
  48. overflow: hidden;
  49. white-space: nowrap;
  50. text-overflow: ellipsis;
  51. }