| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .photo_wall{
- height: 108px;
- background-color: #fff;
- position: relative;
- display: flex;
- flex-direction: row;
- align-items: center;
- padding-right: 42px;
- }
- .album_line{
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- height: 2px;
- transform: scaleY(0.5);
- background-color: #B2B2B2;
- opacity: 0.2;
- }
- .photo_wall_text{
- color: #5C7099;
- font-size: 26px;
- font-weight: bold;
- }
- .photo_wall_arrow{
- width: 34px;
- height: 34px;
- }
- .album_item{
- display: flex;
- flex-direction: row;
- padding-top: 40px;
- padding-bottom: 44px;
- position: relative;
- background-color: #fff;
- }
- .album_date{
- margin-left: 40px;
- margin-right: 30px;
- width: 68px;
- height: 68px;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #000;
- font-size: 50px;
- font-weight: bold;
- }
- .album_container{
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- }
- .album_phone{
- width: 155px;
- height: 155px;
- margin-left: 4px;
- margin-bottom: 4px;
- }
|