index.scss 947 B

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