History.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. .history_item {
  2. display: flex;
  3. flex-direction: row;
  4. width: 750px;
  5. padding-top: 28px;
  6. padding-left: 40px;
  7. padding-right: 40px;
  8. box-sizing: border-box;
  9. padding-bottom: 40px;
  10. position: relative;
  11. background-color: #fff;
  12. }
  13. .history_ring {
  14. display: flex;
  15. position: relative;
  16. width: 76px;
  17. height: 76px;
  18. margin-right: 22px;
  19. align-items: center;
  20. justify-content: center;
  21. }
  22. .history_date {
  23. margin-right: 40px;
  24. width: 50px;
  25. height: 60px;
  26. align-items: center;
  27. justify-content: center;
  28. display: flex;
  29. color: #000;
  30. font-size: 50px;
  31. font-weight: bold;
  32. }
  33. .history_content {
  34. display: flex;
  35. flex-direction: column;
  36. }
  37. .history_item_duration {
  38. margin-left: 16px;
  39. color: #000000;
  40. font-size: 26px;
  41. }
  42. .history_item_title {
  43. font-size: 32px;
  44. line-height: 44px;
  45. color: #5C7099;
  46. }
  47. .history_item_desc {
  48. font-size: 32px;
  49. line-height: 44px;
  50. color: #000;
  51. }
  52. .no_more {
  53. display: flex;
  54. align-items: center;
  55. justify-content: center;
  56. width: 750px;
  57. text-align: center;
  58. margin-top: 20px;
  59. color: #B2B2B2;
  60. }
  61. .media {
  62. display: flex;
  63. flex-direction: row;
  64. flex-wrap: wrap;
  65. }
  66. .media_item {
  67. width: 155px;
  68. height: 155px;
  69. margin-right: 4px;
  70. margin-bottom: 4px;
  71. }
  72. .recent {
  73. background-color: #fff;
  74. position: relative;
  75. height: 108px;
  76. padding-left: 52px;
  77. padding-right: 40px;
  78. display: flex;
  79. align-items: center;
  80. }
  81. .recent_text{
  82. font-weight: bold;
  83. color: #000;
  84. font-size: 26px;
  85. }
  86. .history_duration_bg{
  87. display: flex;
  88. flex-direction: row;
  89. align-items: center;
  90. margin-top: 20px;
  91. background-color: #F5F5F5;
  92. height: 68px;
  93. padding-left: 26px;
  94. width: 572px;
  95. }