| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- .food_timeline_item {
- margin-bottom: 60px;
- display: flex;
- flex-direction: row;
- }
- .tags {
- margin-left: 45px;
- width: 164px;
- display: flex;
- flex-direction: column;
- font-size: 24px;
- align-items: center;
- box-sizing: border-box;
- position: relative;
- height: 304px;
- }
- .food_timeline_item_day{
- font-size: 36px;
- line-height: 36px;
- color: #fff;
- font-weight: bold;
- // margin-bottom: 12px;
- margin-bottom: -8px;
- }
- .tag-item{
- height: 48px;
- box-sizing: border-box;
- border-radius: 24px;
- border: solid 2px #ffffff66;
- padding-left: 24px;
- padding-right: 24px;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 20px;
- }
- .more_tag{
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- height: 72px;
- width: 100%;
- line-height: 72px;
- text-align: center;
- color: #fff;
- font-size: 20px;
- opacity: 0.4;
- // background-color: red;
- }
- .thumb_bg {
- position: relative;
- width: 304px;
- height: 304px;
- border-radius: 36px;
- background-color: #1c1c1c;
- overflow: hidden;
- }
- .thumb {
- width: 304px;
- height: 304px;
- border-radius: 36px;
- }
- .food_desc {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- height: 72px;
- border-bottom-left-radius: 36px;
- border-bottom-right-radius: 36px;
- backdrop-filter: blur(20px);
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- color: #fff;
- }
- .food_desc_text {
- color: #fff;
- opacity: 0.8;
- font-size: 24px;
- line-height: 26px;
- text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
- font-weight: bold;
- }
- .food_item_date {
- color: #fff;
- }
- .food_share {
- margin-top: 24px;
- width: 72px;
- height: 72px;
- display: flex;
- flex-direction: column;
- align-items: center;
- position: relative;
- margin-left: 36px;
- }
- .food_share_btn {
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- opacity: 0;
- }
- .food_share_text {
- font-size: 20px;
- line-height: 24px;
- color: #fff;
- opacity: 0.4;
- margin-top: 12px;
- }
- .food_item_point{
- width: 16px;
- height: 16px;
- border-radius: 8px;
- margin-left: -9px;
- margin-right: 12px;
- }
- .food_item_score{
- font-size: 28px;
- line-height: 40px;
- font-weight: bold;
- }
- .food_timeline_more{
- position: absolute;
- right: 22px;
- width: 48px;
- height: 48px;
- top: 36px;
- }
- .center_line3{
- position: absolute;
- left: 374px;
- width: 2px;
- top: 0;
- bottom: 0;
- background-color: #fff;
- opacity: 0.2;
- z-index: -1;
- }
|