| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- .history_item {
- display: flex;
- flex-direction: row;
- width: 750px;
- padding-top: 28px;
- padding-left: 40px;
- padding-right: 40px;
- box-sizing: border-box;
- padding-bottom: 40px;
- position: relative;
- background-color: #fff;
- }
- .history_ring {
- display: flex;
- position: relative;
- width: 76px;
- height: 76px;
- margin-right: 22px;
- align-items: center;
- justify-content: center;
- }
- .history_date {
- margin-right: 40px;
- width: 50px;
- height: 60px;
- align-items: center;
- justify-content: center;
- display: flex;
- color: #000;
- font-size: 50px;
- font-weight: bold;
- }
- .history_content {
- display: flex;
- flex-direction: column;
- }
- .history_item_duration {
- margin-left: 16px;
- color: #000000;
- font-size: 26px;
- }
- .history_item_title {
- font-size: 32px;
- line-height: 44px;
- color: #5C7099;
- }
- .history_item_desc {
- font-size: 32px;
- line-height: 44px;
- color: #000;
- }
- .no_more {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 750px;
- text-align: center;
- margin-top: 20px;
- color: #B2B2B2;
- }
- .media {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- }
- .media_item {
- width: 155px;
- height: 155px;
- margin-right: 4px;
- margin-bottom: 4px;
- }
- .recent {
- background-color: #fff;
- position: relative;
- height: 108px;
- padding-left: 52px;
- padding-right: 40px;
- display: flex;
- align-items: center;
- }
- .recent_text{
- font-weight: bold;
- color: #000;
- font-size: 26px;
- }
- .history_duration_bg{
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-top: 20px;
- background-color: #F5F5F5;
- height: 68px;
- padding-left: 26px;
- width: 572px;
- }
|