common.scss 1009 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .content{
  2. display: flex;
  3. flex-direction: column;
  4. width: 94%;
  5. margin-left: 3%;
  6. background-color: white;
  7. border-radius: 16rpx;
  8. box-shadow: 0rpx 0rpx 10rpx 0rpx lightgray;
  9. }
  10. .contentInRowL{
  11. display: flex;
  12. flex-direction: row;
  13. justify-content: flex-start;
  14. }
  15. .contentInRowR{
  16. display: flex;
  17. flex-direction: row;
  18. justify-content:flex-end;
  19. }
  20. .contentInRowC{
  21. display: flex;
  22. flex-direction: row;
  23. justify-content: center;
  24. align-items: center;
  25. }
  26. .contentInRowS{
  27. display: flex;
  28. flex-direction: row;
  29. align-items: center;
  30. justify-content: space-between;
  31. }
  32. .contentColumn{
  33. display: flex;
  34. flex-direction: column;
  35. }
  36. .contentColumnC{
  37. display: flex;
  38. flex-direction: column;
  39. align-items: center;
  40. justify-content: center;
  41. }
  42. .text1row{
  43. overflow: hidden;
  44. text-overflow: ellipsis;
  45. display: -webkit-box;
  46. -webkit-line-clamp: 1;
  47. -webkit-box-orient: vertical;
  48. }
  49. .text2row{
  50. overflow: hidden;
  51. text-overflow: ellipsis;
  52. display: -webkit-box;
  53. -webkit-line-clamp: 2;
  54. -webkit-box-orient: vertical;
  55. }